diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be0e71d..aae175b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,8 @@ jobs: - 2.5 - 2.6 - 2.7 - #- 3.0 # net-http-persistent - #- ruby-head # net-http-persistent + - 3.0 + - ruby-head #- jruby # Nokogumbo steps: - name: Clone repository diff --git a/Gemfile b/Gemfile index 4acb6d8..32f551d 100644 --- a/Gemfile +++ b/Gemfile @@ -11,7 +11,7 @@ gem 'rdf', branch: 'develop' group :development, :test do - gem 'ruby-prof' + gem 'ruby-prof', platform: :mri 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' @@ -26,6 +26,7 @@ group :development, :test do gem 'sparql', git: 'https://github.com/ruby-rdf/sparql.git', branch: 'develop' gem 'sparql-client', git: 'https://github.com/ruby-rdf/sparql-client.git', branch: 'develop' gem 'sxp', git: 'https://github.com/dryruby/sxp.rb.git', branch: 'develop' + gem 'nokogumbo', '~> 2.0', platform: :mri gem 'simplecov', platforms: :mri gem 'coveralls', '~> 0.8', platforms: :mri diff --git a/README.md b/README.md index ef938dc..4a3765e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Common OWL/RDFS Vocabularies for use with Ruby [RDF.rb][] [![Gem Version](https://badge.fury.io/rb/rdf-vocab.png)](https://badge.fury.io/rb/rdf-vocab) [![Build Status](https://github.com/ruby-rdf/rdf-vocab/workflows/CI/badge.svg?branch=develop)](https://github.com/ruby-rdf/rdf-vocab/actions?query=workflow%3ACI) -[![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-vocab/badge.svg)](https://coveralls.io/github/ruby-rdf/rdf-vocab) +[![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-vocab/badge.svg?branch=develop)](https://coveralls.io/github/ruby-rdf/rdf-vocab?branch=develop) [![Gitter chat](https://badges.gitter.im/ruby-rdf/rdf.png)](https://gitter.im/ruby-rdf/rdf) ## Extensions diff --git a/Rakefile b/Rakefile index 62f012a..2ad70c2 100755 --- a/Rakefile +++ b/Rakefile @@ -53,7 +53,8 @@ RDF::Vocab::VOCABS.each do |id, v| cmd += " --module-name #{v.fetch(:module_name, "RDF::Vocab")}" cmd += " --class-name #{v[:class_name] ? v[:class_name] : id.to_s.upcase}" cmd += " --strict" if v.fetch(:strict, true) - cmd += " --extra #{URI.encode v[:extra].to_json}" if v[:extra] + cmd += " --noDoc" + cmd += " --extra #{URI.encode_www_form_component v[:extra].to_json}" if v[:extra] cmd += " -o lib/rdf/vocab/#{id}.rb_t" cmd += " '" + v.fetch(:source, v[:uri]) + "'" puts " #{cmd}" diff --git a/VERSION b/VERSION index c7a2498..efd03d1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.1.10 +3.1.11 diff --git a/etc/doap.ttl b/etc/doap.ttl index 8158334..d48153a 100644 --- a/etc/doap.ttl +++ b/etc/doap.ttl @@ -11,8 +11,8 @@ doap:name "RDF::Vocab" ; doap:homepage ; doap:license ; - doap:shortdesc "A library of RDF vocabularies"@en ; - doap:description "Defines several standard RDF vocabularies"@en ; + doap:shortdesc "A library of RDF vocabularies for RDF.rb."@en ; + doap:description "Defines several standard RDF vocabularies for the Ruby RDF.rb library suite."@en ; doap:created "2015-04-04"^^xsd:date ; doap:programming-language "Ruby" ; doap:category , diff --git a/lib/rdf/vocab.rb b/lib/rdf/vocab.rb index 90827ed..e31b584 100644 --- a/lib/rdf/vocab.rb +++ b/lib/rdf/vocab.rb @@ -7,7 +7,19 @@ module RDF module Vocab autoload :VERSION, 'rdf/vocab/version' VOCABS = { - acl: {uri: "http://www.w3.org/ns/auth/acl#"}, + acl: { + uri: "http://www.w3.org/ns/auth/acl#", + patch: %{ + @prefix acl: . + @prefix rdfs: . + DeleteExisting { + acl:Access acl:label "access"@en . + } . + AddNew { + acl:Access rdfs:label "access"@en . + } . + } + }, as: {uri: "https://www.w3.org/ns/activitystreams#", source: 'etc/as.ttl'}, bf2: {uri: 'http://id.loc.gov/ontologies/bibframe/'}, bibframe: { diff --git a/lib/rdf/vocab/acl.rb b/lib/rdf/vocab/acl.rb index 2072569..2047682 100644 --- a/lib/rdf/vocab/acl.rb +++ b/lib/rdf/vocab/acl.rb @@ -3,138 +3,51 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/auth/acl# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Basic Access Control ontology - # # - # # Defines the class Authorization and its essential properties, and also some classes of access such as read and write. - # class ACL < RDF::StrictVocabulary - # # Any kind of access to a resource. Don't use this, use R W and RW - # # @return [RDF::Vocabulary::Term] - # attr_reader :Access - # - # # Append accesses are specific write access which only add information, and do not remove information. For text files, for example, append access allows bytes to be added onto the end of the file. For RDF graphs, Append access allows adds triples to the graph but does not remove any. Append access is useful for dropbox functionality. Dropbox can be used for link notification, which the information added is a notification that a some link has been made elsewhere relevant to the given resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Append - # - # # A class of agents who have been authenticated. In other words, anyone can access this resource, but not anonymously. The social expectation is that the authentication process will provide an identify and a name, or pseudonym. (A new ID should not be minted for every access: the intent is that the user is able to continue to use the ID for continues interactions with peers, and for example to develop a reputation) - # # @return [RDF::Vocabulary::Term] - # attr_reader :AuthenticatedAgent - # - # # An element of access control, allowing agent to agents access of some kind to resources or classes of resources - # # @return [RDF::Vocabulary::Term] - # attr_reader :Authorization - # - # # Allows read/write access to the ACL for the resource(s) - # # @return [RDF::Vocabulary::Term] - # attr_reader :Control - # - # # An Origin is basically a web site (Note WITHOUT the trailing slash after the domain name and port in its URI) and is the basis for controlling access to data by web apps in the Same Origin Model of web security. All scripts from the same origin are given the same right. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Origin - # - # # The class of read operations - # # @return [RDF::Vocabulary::Term] - # attr_reader :Read - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Write - # - # # The Access Control file for this information resource. This may of course be a virtual resource implemented by the access control system. Note also HTTP's header Link: foo.meta ;rel=meta can be used for this. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessControl - # - # # The information resource to which access is being granted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessTo - # - # # A class of information resources to which access is being granted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessToClass - # - # # A person or social entity to being given the right - # # @return [RDF::Vocabulary::Term] - # attr_reader :agent - # - # # A class of persons or social entities to being given the right - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentClass - # - # # A group of persons or social entities to being given the right. The right is given to any entity which is a vcard:member of the group, as defined by the document received when the Group is dereferenced. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentGroup - # - # # If a resource has no ACL file (it is 404), then access to the resource if given by the ACL of the immediately containing directory, or failing that (404) the ACL of the recursively next containing directory which has an ACL file. Within that ACL file, any Authentication which has that directory as its acl:default applies to the resource. (The highest directory must have an ACL file.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :default - # - # # THIS IS OBSOLETE AS OF 2017-08-01. See 'default'. Was: A directory for which this authorization is used for new files in the directory. - # # @return [RDF::Vocabulary::Term] - # attr_reader :defaultForNew - # - # # Delegates a person or another agent to act on behalf of the agent. For example, Alice delegates Bob to act on behalf of Alice for ACL purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :delegates - # - # # A mode of access such as read or write. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mode - # - # # A web application, identified by its Origin, such as , being given the right. When a user of the web application at a certain origin accesses the server, then the browser sets the Origin: header to warn that a possibly untrusted webapp is being used. Then, BOTH the user AND the origin must have the required access. - # # @return [RDF::Vocabulary::Term] - # attr_reader :origin - # - # # The person or other agent which owns this. For example, the owner of a file in a filesystem. There is a sense of right to control. Typically defaults to the agent who craeted something but can be changed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :owner - # - # end ACL = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/auth/acl#")) do # Ontology definition ontology :"http://www.w3.org/ns/auth/acl#", comment: "Defines the class Authorization and its essential properties,\n and also some classes of access such as read and write. ".freeze, - "dc11:title": "Basic Access Control ontology".freeze + "http://purl.org/dc/elements/1.1/title": "Basic Access Control ontology".freeze # Class definitions term :Access, - "acl:label": "access".freeze, comment: "Any kind of access to a resource. Don't use this, use R W and RW".freeze, - type: "rdfs:Class".freeze + label: "access".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Append, comment: "Append accesses are specific write access which only add information, and do not remove information.\n For text files, for example, append access allows bytes to be added onto the end of the file.\n For RDF graphs, Append access allows adds triples to the graph but does not remove any.\n Append access is useful for dropbox functionality.\n Dropbox can be used for link notification, which the information added is a notification\n that a some link has been made elsewhere relevant to the given resource.\n ".freeze, label: "append".freeze, - subClassOf: ["acl:Access".freeze, "acl:Write".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/auth/acl#Access".freeze, "http://www.w3.org/ns/auth/acl#Write".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AuthenticatedAgent, comment: "A class of agents who have been authenticated.\nIn other words, anyone can access this resource, but not anonymously.\nThe social expectation is that the authentication process will provide an\nidentify and a name, or pseudonym.\n(A new ID should not be minted for every access: the intent is that the user\nis able to continue to use the ID for continues interactions with peers,\nand for example to develop a reputation)\n".freeze, label: "Anyone authenticated".freeze, - subClassOf: "foaf:Agent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Authorization, comment: "An element of access control,\n allowing agent to agents access of some kind to resources or classes of resources".freeze, label: "authorization".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Control, comment: "Allows read/write access to the ACL for the resource(s)".freeze, label: "control".freeze, - subClassOf: "acl:Access".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/auth/acl#Access".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Origin, comment: "An Origin is basically a web site\n (Note WITHOUT the trailing slash after the domain name and port in its URI)\n and is the basis for controlling access to data by web apps\n in the Same Origin Model of web security.\n All scripts from the same origin are given the same right.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin".freeze, label: "Origin".freeze, - "rdfs:seeAlso": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Read, comment: "The class of read operations".freeze, label: "read".freeze, - subClassOf: "acl:Access".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/auth/acl#Access".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Write, label: "write".freeze, - subClassOf: "acl:Access".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/auth/acl#Access".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :accessControl, @@ -142,70 +55,70 @@ module RDF::Vocab domain: "http://www.w3.org/2006/gen/ont#InformationResource".freeze, label: "access control".freeze, range: "http://www.w3.org/2006/gen/ont#InformationResource".freeze, - subPropertyOf: "rdfs:seeAlso".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessTo, comment: "The information resource to which access is being granted.".freeze, - domain: "acl:Authorization".freeze, + domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze, label: "to".freeze, range: "http://www.w3.org/2006/gen/ont#InformationResource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessToClass, comment: "A class of information resources to which access is being granted.".freeze, - domain: "acl:Authorization".freeze, + domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze, label: "to all in".freeze, - range: "rdfs:Class".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agent, comment: "A person or social entity to being given the right".freeze, - domain: "acl:Authorization".freeze, + domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze, label: "agent".freeze, - range: "foaf:Agent".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentClass, comment: "A class of persons or social entities to being given the right".freeze, - domain: "acl:Authorization".freeze, + domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze, label: "agent class".freeze, - range: "rdfs:Class".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentGroup, comment: "A group of persons or social entities to being given the right.\n The right is given to any entity which is a vcard:member of the group,\n as defined by the document received when the Group is dereferenced.".freeze, - domain: "acl:Authorization".freeze, + domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze, label: "agent group".freeze, - range: "vcard:Group".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2006/vcard/ns#Group".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :default, comment: "If a resource has no ACL file (it is 404),\n then access to the resource if given by the ACL of the immediately\n containing directory, or failing that (404) the ACL of the recursively next\n containing directory which has an ACL file.\n Within that ACL file,\n any Authentication which has that directory as its acl:default applies to the\n resource. (The highest directory must have an ACL file.)\n".freeze, - domain: "acl:Authorization".freeze, + domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze, label: "default access for things in this".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :defaultForNew, comment: "THIS IS OBSOLETE AS OF 2017-08-01. See 'default'.\n Was: A directory for which this authorization is used for new files in the directory.".freeze, - domain: "acl:Authorization".freeze, + domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze, label: "default access for new things in the object".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :delegates, comment: "Delegates a person or another agent to act on behalf of the agent.\n For example, Alice delegates Bob to act on behalf of Alice for ACL purposes.".freeze, label: "delegates".freeze, - range: "foaf:Agent".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mode, comment: "A mode of access such as read or write.".freeze, - domain: "acl:Authorization".freeze, + domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze, label: "access mode".freeze, - range: "rdfs:Class".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :origin, comment: "A web application, identified by its Origin, such as\n , being given the right.\n When a user of the web application at a certain origin accesses the server,\n then the browser sets the Origin: header to warn that a possibly untrusted webapp\n is being used.\n Then, BOTH the user AND the origin must have the required access.".freeze, - domain: "acl:Authorization".freeze, + domain: "http://www.w3.org/ns/auth/acl#Authorization".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin".freeze, label: "origin".freeze, - range: "acl:Origin".freeze, - "rdfs:seeAlso": "https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/auth/acl#Origin".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :owner, comment: "The person or other agent which owns this.\n For example, the owner of a file in a filesystem.\n There is a sense of right to control. Typically defaults to the agent who craeted\n something but can be changed.".freeze, label: "owner".freeze, - range: "foaf:Agent".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/as.rb b/lib/rdf/vocab/as.rb index 1305ff2..288d329 100644 --- a/lib/rdf/vocab/as.rb +++ b/lib/rdf/vocab/as.rb @@ -3,1350 +3,837 @@ # This file generated automatically using rdf vocabulary format from https://www.w3.org/ns/activitystreams# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Activity Streams 2.0 - # # - # # Extended Activity Streams 2.0 Vocabulary - # class AS < RDF::StrictVocabulary - # # Actor accepts the Object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Accept - # - # # An Object representing some form of Action that has been taken - # # @return [RDF::Vocabulary::Term] - # attr_reader :Activity - # - # # To Add an Object or Link to Something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Add - # - # # Actor announces the object to the target - # # @return [RDF::Vocabulary::Term] - # attr_reader :Announce - # - # # Represents a software application of any sort - # # @return [RDF::Vocabulary::Term] - # attr_reader :Application - # - # # To Arrive Somewhere (can be used, for instance, to indicate that a particular entity is currently located somewhere, e.g. a "check-in") - # # @return [RDF::Vocabulary::Term] - # attr_reader :Arrive - # - # # A written work. Typically several paragraphs long. For example, a blog post or a news article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Article - # - # # An audio file - # # @return [RDF::Vocabulary::Term] - # attr_reader :Audio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Block - # - # # An ordered or unordered collection of Objects or Links - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # A subset of items from a Collection - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollectionPage - # - # # To Create Something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Create - # - # # To Delete Something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Delete - # - # # The actor dislikes the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dislike - # - # # Represents a digital document/file of any sort - # # @return [RDF::Vocabulary::Term] - # attr_reader :Document - # - # # An Event of any kind - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # To flag something (e.g. flag as inappropriate, flag as spam, etc) - # # @return [RDF::Vocabulary::Term] - # attr_reader :Flag - # - # # To Express Interest in Something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Follow - # - # # A Group of any kind. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Group - # - # # Actor is ignoring the Object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ignore - # - # # An Image file - # # @return [RDF::Vocabulary::Term] - # attr_reader :Image - # - # # An Activity that has no direct object - # # @return [RDF::Vocabulary::Term] - # attr_reader :IntransitiveActivity - # - # # To invite someone or something to something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Invite - # - # # To Join Something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Join - # - # # To Leave Something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Leave - # - # # To Like Something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Like - # - # # Represents a qualified reference to another resource. Patterned after the RFC5988 Web Linking Model - # # @return [RDF::Vocabulary::Term] - # attr_reader :Link - # - # # The actor listened to the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Listen - # - # # A specialized Link that represents an @mention - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mention - # - # # The actor is moving the object. The target specifies where the object is moving to. The origin specifies where the object is moving from. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Move - # - # # A Short note, typically less than a single paragraph. A "tweet" is an example, or a "status update" - # # @return [RDF::Vocabulary::Term] - # attr_reader :Note - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Object - # - # # To Offer something to someone or something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Offer - # - # # A variation of Collection in which items are strictly ordered - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderedCollection - # - # # An ordered subset of items from an OrderedCollection - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderedCollectionPage - # - # # A rdf:List variant for Objects and Links - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderedItems - # - # # An Organization - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # A Web Page - # # @return [RDF::Vocabulary::Term] - # attr_reader :Page - # - # # A Person - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # A physical or logical location - # # @return [RDF::Vocabulary::Term] - # attr_reader :Place - # - # # A Profile Document - # # @return [RDF::Vocabulary::Term] - # attr_reader :Profile - # - # # A question of any sort. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Question - # - # # The actor read the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Read - # - # # Actor rejects the Object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Reject - # - # # Represents a Social Graph relationship between two Individuals (indicated by the 'a' and 'b' properties) - # # @return [RDF::Vocabulary::Term] - # attr_reader :Relationship - # - # # To Remove Something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Remove - # - # # A service provided by some entity - # # @return [RDF::Vocabulary::Term] - # attr_reader :Service - # - # # Actor tentatively accepts the Object - # # @return [RDF::Vocabulary::Term] - # attr_reader :TentativeAccept - # - # # Actor tentatively rejects the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :TentativeReject - # - # # A placeholder for a deleted object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tombstone - # - # # The actor is traveling to the target. The origin specifies where the actor is traveling from. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Travel - # - # # To Undo Something. This would typically be used to indicate that a previous Activity has been undone. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Undo - # - # # To Update/Modify Something - # # @return [RDF::Vocabulary::Term] - # attr_reader :Update - # - # # A Video document of any kind. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Video - # - # # The actor viewed the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :View - # - # # Specifies the accuracy around the point established by the longitude and latitude - # # @return [RDF::Vocabulary::Term] - # attr_reader :accuracy - # - # # Subproperty of as:attributedTo that identifies the primary actor - # # @return [RDF::Vocabulary::Term] - # attr_reader :actor - # - # # The altitude of a place - # # @return [RDF::Vocabulary::Term] - # attr_reader :altitude - # - # # Describes a possible inclusive answer or option for a question. - # # @return [RDF::Vocabulary::Term] - # attr_reader :anyOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :attachment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :attachments - # - # # Identifies an entity to which an object is attributed - # # @return [RDF::Vocabulary::Term] - # attr_reader :attributedTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :audience - # - # # Identifies the author of an object. Deprecated. Use as:attributedTo instead - # # @return [RDF::Vocabulary::Term] - # attr_reader :author - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bcc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bto - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cc - # - # # The content of the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :content - # - # # Specifies the context within which an object exists or an activity was performed - # # @return [RDF::Vocabulary::Term] - # attr_reader :context - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :current - # - # # Specifies the date and time the object was deleted - # # @return [RDF::Vocabulary::Term] - # attr_reader :deleted - # - # # On a Profile object, describes the object described by the profile - # # @return [RDF::Vocabulary::Term] - # attr_reader :describes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :downstreamDuplicates - # - # # The duration of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # The ending time of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :endTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :first - # - # # On a Tombstone object, describes the former type of the deleted object - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generator - # - # # The display height expressed as device independent pixels - # # @return [RDF::Vocabulary::Term] - # attr_reader :height - # - # # The target URI of the Link - # # @return [RDF::Vocabulary::Term] - # attr_reader :href - # - # # A hint about the language of the referenced resource - # # @return [RDF::Vocabulary::Term] - # attr_reader :hreflang - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :icon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :id - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :image - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inReplyTo - # - # # Indentifies an object used (or to be used) to complete an activity - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :items - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :last - # - # # The latitude - # # @return [RDF::Vocabulary::Term] - # attr_reader :latitude - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :location - # - # # The longitude - # # @return [RDF::Vocabulary::Term] - # attr_reader :longitude - # - # # The MIME Media Type - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :next - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :object - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :objectType - # - # # Describes a possible exclusive answer or option for a question. - # # @return [RDF::Vocabulary::Term] - # attr_reader :oneOf - # - # # For certain activities, specifies the entity from which the action is directed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :origin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prev - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :preview - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provider - # - # # Specifies the date and time the object was published - # # @return [RDF::Vocabulary::Term] - # attr_reader :published - # - # # Specifies a radius around the point established by the longitude and latitude - # # @return [RDF::Vocabulary::Term] - # attr_reader :radius - # - # # A numeric rating (>= 0.0, <= 5.0) for the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :rating - # - # # The RFC 5988 or HTML5 Link Relation associated with the Link - # # @return [RDF::Vocabulary::Term] - # attr_reader :rel - # - # # On a Relationship object, describes the type of relationship - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationship - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :replies - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :result - # - # # In a strictly ordered logical collection, specifies the index position of the first item in the items list - # # @return [RDF::Vocabulary::Term] - # attr_reader :startIndex - # - # # The starting time of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :startTime - # - # # On a Relationship object, identifies the subject. e.g. when saying "John is connected to Sally", 'subject' refers to 'John' - # # @return [RDF::Vocabulary::Term] - # attr_reader :subject - # - # # A short summary of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :summary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tag - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tags - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :target - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :to - # - # # The total number of items in a logical collection - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalItems - # - # # Identifies the unit of measurement used by the radius, altitude and accuracy properties. The value can be expressed either as one of a set of predefined units or as a well-known common URI that identifies units. - # # @return [RDF::Vocabulary::Term] - # attr_reader :units - # - # # Specifies when the object was last updated - # # @return [RDF::Vocabulary::Term] - # attr_reader :updated - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :upstreamDuplicates - # - # # Specifies a link to a specific representation of the Object - # # @return [RDF::Vocabulary::Term] - # attr_reader :url - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :verb - # - # # Specifies the preferred display width of the content, expressed in terms of device independent pixels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :width - # - # end AS = Class.new(RDF::StrictVocabulary("https://www.w3.org/ns/activitystreams#")) do # Ontology definition ontology :"https://www.w3.org/ns/activitystreams#", comment: "Extended Activity Streams 2.0 Vocabulary".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://www.w3.org/ns/prov#".freeze, label: "Activity Streams 2.0".freeze, - "owl:imports": "prov:".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Accept, comment: "Actor accepts the Object".freeze, label: "Accept".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Activity, comment: "An Object representing some form of Action that has been taken".freeze, label: "Activity".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Add, comment: "To Add an Object or Link to Something".freeze, label: "Add".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Announce, comment: "Actor announces the object to the target".freeze, label: "Announce".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Application, comment: "Represents a software application of any sort".freeze, label: "Application".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Arrive, comment: "To Arrive Somewhere (can be used, for instance, to indicate that a particular entity is currently located somewhere, e.g. a \"check-in\")".freeze, label: "Arrive".freeze, - subClassOf: "as:IntransitiveActivity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#IntransitiveActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Article, comment: "A written work. Typically several paragraphs long. For example, a blog post or a news article.".freeze, label: "Article".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Audio, comment: "An audio file".freeze, label: "Audio".freeze, - subClassOf: "as:Document".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Block, label: "Block".freeze, - subClassOf: "as:Ignore".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Ignore".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Collection, comment: "An ordered or unordered collection of Objects or Links".freeze, label: "Collection".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CollectionPage, comment: "A subset of items from a Collection".freeze, label: "CollectionPage".freeze, - subClassOf: "as:Collection".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Collection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Create, comment: "To Create Something".freeze, label: "Create".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Delete, comment: "To Delete Something".freeze, label: "Delete".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dislike, comment: "The actor dislikes the object".freeze, label: "Dislike".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Document, comment: "Represents a digital document/file of any sort".freeze, label: "Document".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Event, comment: "An Event of any kind".freeze, label: "Event".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Flag, comment: "To flag something (e.g. flag as inappropriate, flag as spam, etc)".freeze, label: "Flag".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Follow, comment: "To Express Interest in Something".freeze, label: "Follow".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Group, comment: "A Group of any kind.".freeze, label: "Group".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Ignore, comment: "Actor is ignoring the Object".freeze, label: "Ignore".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Image, comment: "An Image file".freeze, label: "Image".freeze, - subClassOf: "as:Document".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IntransitiveActivity, comment: "An Activity that has no direct object".freeze, label: "IntransitiveActivity".freeze, - subClassOf: ["as:Activity".freeze, term( + subClassOf: ["https://www.w3.org/ns/activitystreams#Activity".freeze, term( maxCardinality: "0".freeze, - onProperty: "as:object".freeze, - type: "owl:Restriction".freeze + onProperty: "https://www.w3.org/ns/activitystreams#object".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Invite, comment: "To invite someone or something to something".freeze, label: "Invite".freeze, - subClassOf: "as:Offer".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Offer".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Join, comment: "To Join Something".freeze, label: "Join".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Leave, comment: "To Leave Something".freeze, label: "Leave".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Like, comment: "To Like Something".freeze, label: "Like".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Link, comment: "Represents a qualified reference to another resource. Patterned after the RFC5988 Web Linking Model".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "https://www.w3.org/ns/activitystreams#Object".freeze, label: "Link".freeze, - "owl:disjointWith": "as:Object".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Listen, comment: "The actor listened to the object".freeze, label: "Listen".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Mention, comment: "A specialized Link that represents an @mention".freeze, label: "Mention".freeze, - subClassOf: "as:Link".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Link".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Move, comment: "The actor is moving the object. The target specifies where the object is moving to. The origin specifies where the object is moving from.".freeze, label: "Move".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Note, comment: "A Short note, typically less than a single paragraph. A \"tweet\" is an example, or a \"status update\"".freeze, label: "Note".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Object, label: "Object".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Offer, comment: "To Offer something to someone or something".freeze, label: "Offer".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OrderedCollection, comment: "A variation of Collection in which items are strictly ordered".freeze, label: "OrderedCollection".freeze, subClassOf: term( - intersectionOf: list("as:Collection".freeze, term( - allValuesFrom: term( - intersectionOf: list("as:OrderedItems".freeze, term( - "owl:complementOf": term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) - ), - type: "owl:Class".freeze - )), - type: "owl:Class".freeze - ), - onProperty: "as:items".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("https://www.w3.org/ns/activitystreams#Collection".freeze, "_:g14420".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OrderedCollectionPage, comment: "An ordered subset of items from an OrderedCollection".freeze, label: "OrderedCollectionPage".freeze, - subClassOf: ["as:CollectionPage".freeze, "as:OrderedCollection".freeze], - type: "owl:Class".freeze + subClassOf: ["https://www.w3.org/ns/activitystreams#CollectionPage".freeze, "https://www.w3.org/ns/activitystreams#OrderedCollection".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OrderedItems, comment: "A rdf:List variant for Objects and Links".freeze, label: "OrderedItems".freeze, subClassOf: term( - intersectionOf: list("rdf:List".freeze, term( - allValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) - ), - onProperty: "rdf:first".freeze, - type: "owl:Restriction".freeze - ), term( - allValuesFrom: "as:OrderedItems".freeze, - onProperty: "rdf:rest".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, "_:g16060".freeze, "_:g16100".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Organization, comment: "An Organization".freeze, label: "Organization".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Page, comment: "A Web Page".freeze, label: "Page".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Person, comment: "A Person".freeze, label: "Person".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Place, comment: "A physical or logical location".freeze, label: "Place".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Profile, comment: "A Profile Document".freeze, label: "Profile".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Question, comment: "A question of any sort.".freeze, label: "Question".freeze, - subClassOf: "as:IntransitiveActivity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#IntransitiveActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Read, comment: "The actor read the object".freeze, label: "Read".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Reject, comment: "Actor rejects the Object".freeze, label: "Reject".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Relationship, comment: "Represents a Social Graph relationship between two Individuals (indicated by the 'a' and 'b' properties)".freeze, label: "Relationship".freeze, - subClassOf: "as:Object".freeze, - type: ["owl:Class".freeze, "rdf:Statement".freeze] + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Remove, comment: "To Remove Something".freeze, label: "Remove".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Service, comment: "A service provided by some entity".freeze, label: "Service".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TentativeAccept, comment: "Actor tentatively accepts the Object".freeze, label: "TentativeAccept".freeze, - subClassOf: "as:Accept".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Accept".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TentativeReject, comment: "Actor tentatively rejects the object".freeze, label: "TentativeReject".freeze, - subClassOf: "as:Reject".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Reject".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Tombstone, comment: "A placeholder for a deleted object".freeze, label: "Tombstone".freeze, - subClassOf: "as:Object".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Travel, comment: "The actor is traveling to the target. The origin specifies where the actor is traveling from.".freeze, label: "Travel".freeze, - subClassOf: "as:IntransitiveActivity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#IntransitiveActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Undo, comment: "To Undo Something. This would typically be used to indicate that a previous Activity has been undone.".freeze, label: "Undo".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Update, comment: "To Update/Modify Something".freeze, label: "Update".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Video, comment: "A Video document of any kind.".freeze, label: "Video".freeze, - subClassOf: "as:Document".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :View, comment: "The actor viewed the object".freeze, label: "View".freeze, - subClassOf: "as:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "https://www.w3.org/ns/activitystreams#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :accuracy, comment: "Specifies the accuracy around the point established by the longitude and latitude".freeze, - domain: "as:Place".freeze, + domain: "https://www.w3.org/ns/activitystreams#Place".freeze, label: "accuracy".freeze, range: term( - "owl:onDatatype": "xsd:float".freeze, - "owl:withRestrictions": list(term( - "xsd:minInclusive": "0.0".freeze - )), - type: "rdfs:Datatype".freeze + "http://www.w3.org/2002/07/owl#onDatatype": "http://www.w3.org/2001/XMLSchema#float".freeze, + "http://www.w3.org/2002/07/owl#withRestrictions": list("_:g15580".freeze), + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze ), - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :actor, comment: "Subproperty of as:attributedTo that identifies the primary actor".freeze, - domain: "as:Activity".freeze, + domain: "https://www.w3.org/ns/activitystreams#Activity".freeze, label: "actor".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - subPropertyOf: "as:attributedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "https://www.w3.org/ns/activitystreams#attributedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :altitude, comment: "The altitude of a place".freeze, - domain: "as:Place".freeze, + domain: "https://www.w3.org/ns/activitystreams#Place".freeze, label: "altitude".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :anyOf, comment: "Describes a possible inclusive answer or option for a question.".freeze, - domain: "as:Question".freeze, + domain: "https://www.w3.org/ns/activitystreams#Question".freeze, label: "oneOf".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :attachment, - domain: "as:Object".freeze, - equivalentProperty: "as:attachments".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, + equivalentProperty: "https://www.w3.org/ns/activitystreams#attachments".freeze, label: "attachment".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Link".freeze, "as:Object".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Link".freeze, "https://www.w3.org/ns/activitystreams#Object".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :attachments, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "attachments".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :attributedTo, comment: "Identifies an entity to which an object is attributed".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), label: "attributedTo".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :audience, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "audience".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :author, comment: "Identifies the author of an object. Deprecated. Use as:attributedTo instead".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "author".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - subPropertyOf: "as:attributedTo".freeze, - type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze] + subPropertyOf: "https://www.w3.org/ns/activitystreams#attributedTo".freeze, + type: ["http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :bcc, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "bcc".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :bto, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "bto".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :cc, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "cc".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :content, comment: "The content of the object.".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "content".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list(term( - type: "rdfs:Datatype".freeze - ), "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g15980".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :context, comment: "Specifies the context within which an object exists or an activity was performed".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "context".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :current, - domain: "as:Collection".freeze, + domain: "https://www.w3.org/ns/activitystreams#Collection".freeze, label: "current".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:CollectionPage".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#CollectionPage".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :deleted, comment: "Specifies the date and time the object was deleted".freeze, - domain: "as:Tombstone".freeze, + domain: "https://www.w3.org/ns/activitystreams#Tombstone".freeze, label: "deleted".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :describes, comment: "On a Profile object, describes the object described by the profile".freeze, - domain: "as:Profile".freeze, + domain: "https://www.w3.org/ns/activitystreams#Profile".freeze, label: "describes".freeze, - range: "as:Object".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :downstreamDuplicates, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "downstreamDuplicates".freeze, - range: "xsd:anyURI".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :duration, comment: "The duration of the object".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "duration".freeze, - range: "xsd:duration".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#duration".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :endTime, comment: "The ending time of the object".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "endTime".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :first, - domain: "as:Collection".freeze, + domain: "https://www.w3.org/ns/activitystreams#Collection".freeze, label: "first".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:CollectionPage".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#CollectionPage".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :formerType, comment: "On a Tombstone object, describes the former type of the deleted object".freeze, - domain: "as:Tombstone".freeze, + domain: "https://www.w3.org/ns/activitystreams#Tombstone".freeze, label: "formerType".freeze, - range: "as:Object".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "https://www.w3.org/ns/activitystreams#Object".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :generator, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "generator".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :height, comment: "The display height expressed as device independent pixels".freeze, - domain: "as:Link".freeze, + domain: "https://www.w3.org/ns/activitystreams#Link".freeze, label: "height".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :href, comment: "The target URI of the Link".freeze, - domain: "as:Link".freeze, + domain: "https://www.w3.org/ns/activitystreams#Link".freeze, label: "href".freeze, - range: "xsd:anyURI".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hreflang, comment: "A hint about the language of the referenced resource".freeze, - domain: "as:Link".freeze, + domain: "https://www.w3.org/ns/activitystreams#Link".freeze, label: "hreflang".freeze, - range: "xsd:language".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#language".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :icon, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "icon".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Image".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Image".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :id, domain: term( - type: "owl:Class".freeze, - unionOf: list("as:Link".freeze, "as:Object".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Link".freeze, "https://www.w3.org/ns/activitystreams#Object".freeze) ), label: "id".freeze, - range: "xsd:anyURI".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :image, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "image".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Image".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Image".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :inReplyTo, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "inReplyTo".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :instrument, comment: "Indentifies an object used (or to be used) to complete an activity".freeze, - domain: "as:Activity".freeze, + domain: "https://www.w3.org/ns/activitystreams#Activity".freeze, label: "instrument".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :items, - domain: "as:Collection".freeze, + domain: "https://www.w3.org/ns/activitystreams#Collection".freeze, label: "items".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list(term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) - ), "as:OrderedItems".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g15260".freeze, "https://www.w3.org/ns/activitystreams#OrderedItems".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :last, - domain: "as:Collection".freeze, + domain: "https://www.w3.org/ns/activitystreams#Collection".freeze, label: "last".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:CollectionPage".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#CollectionPage".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :latitude, comment: "The latitude".freeze, - domain: "as:Place".freeze, + domain: "https://www.w3.org/ns/activitystreams#Place".freeze, label: "latitude".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :location, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "location".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :longitude, comment: "The longitude".freeze, - domain: "as:Place".freeze, + domain: "https://www.w3.org/ns/activitystreams#Place".freeze, label: "longitude".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :mediaType, comment: "The MIME Media Type".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("as:Link".freeze, "as:Object".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Link".freeze, "https://www.w3.org/ns/activitystreams#Object".freeze) ), label: "mediaType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :name, domain: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), + "http://www.w3.org/2000/01/rdf-schema#name": "The default, plain-text display name of the object or link.".freeze, label: "name".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list(term( - type: "rdfs:Datatype".freeze - ), "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g15160".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - "rdfs:name": "The default, plain-text display name of the object or link.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :next, - domain: "as:CollectionPage".freeze, + domain: "https://www.w3.org/ns/activitystreams#CollectionPage".freeze, label: "next".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:CollectionPage".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#CollectionPage".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :object, domain: term( - type: "owl:Class".freeze, - unionOf: list("as:Activity".freeze, "as:Relationship".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Activity".freeze, "https://www.w3.org/ns/activitystreams#Relationship".freeze) ), label: "object".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :objectType, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "objectType".freeze, - range: "xsd:anyURI".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :oneOf, comment: "Describes a possible exclusive answer or option for a question.".freeze, - domain: "as:Question".freeze, + domain: "https://www.w3.org/ns/activitystreams#Question".freeze, label: "oneOf".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :origin, comment: "For certain activities, specifies the entity from which the action is directed.".freeze, - domain: "as:Activity".freeze, + domain: "https://www.w3.org/ns/activitystreams#Activity".freeze, label: "origin".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :partOf, - domain: "as:CollectionPage".freeze, + domain: "https://www.w3.org/ns/activitystreams#CollectionPage".freeze, label: "partOf".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Collection".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Collection".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :prev, - domain: "as:CollectionPage".freeze, + domain: "https://www.w3.org/ns/activitystreams#CollectionPage".freeze, label: "prev".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:CollectionPage".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#CollectionPage".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :preview, domain: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), label: "preview".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :provider, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "provider".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :published, comment: "Specifies the date and time the object was published".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "published".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :radius, comment: "Specifies a radius around the point established by the longitude and latitude".freeze, - domain: "as:Place".freeze, + domain: "https://www.w3.org/ns/activitystreams#Place".freeze, label: "radius".freeze, range: term( - "owl:onDatatype": "xsd:float".freeze, - "owl:withRestrictions": list(term( - "xsd:minInclusive": "0.0".freeze - )), - type: "rdfs:Datatype".freeze + "http://www.w3.org/2002/07/owl#onDatatype": "http://www.w3.org/2001/XMLSchema#float".freeze, + "http://www.w3.org/2002/07/owl#withRestrictions": list("_:g14720".freeze), + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze ), - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :rating, comment: "A numeric rating (>= 0.0, <= 5.0) for the object".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "rating".freeze, range: term( - "owl:onDatatype": "xsd:float".freeze, - "owl:withRestrictions": list(term( - "xsd:minInclusive": "0.0".freeze - ), term( - "xsd:maxInclusive": "5.0".freeze - )), - type: "rdfs:Datatype".freeze + "http://www.w3.org/2002/07/owl#onDatatype": "http://www.w3.org/2001/XMLSchema#float".freeze, + "http://www.w3.org/2002/07/owl#withRestrictions": list("_:g14140".freeze, "_:g14180".freeze), + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze ), - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :rel, comment: "The RFC 5988 or HTML5 Link Relation associated with the Link".freeze, - domain: "as:Link".freeze, + domain: "https://www.w3.org/ns/activitystreams#Link".freeze, label: "rel".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :relationship, comment: "On a Relationship object, describes the type of relationship".freeze, - domain: "as:Relationship".freeze, + domain: "https://www.w3.org/ns/activitystreams#Relationship".freeze, label: "relationship".freeze, - range: "rdf:Property".freeze, - subPropertyOf: "rdf:predicate".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + subPropertyOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :replies, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "replies".freeze, - range: "as:Collection".freeze, - type: "owl:ObjectProperty".freeze + range: "https://www.w3.org/ns/activitystreams#Collection".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :result, - domain: "as:Activity".freeze, + domain: "https://www.w3.org/ns/activitystreams#Activity".freeze, label: "result".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :startIndex, comment: "In a strictly ordered logical collection, specifies the index position of the first item in the items list".freeze, - domain: "as:OrderedCollectionPage".freeze, + domain: "https://www.w3.org/ns/activitystreams#OrderedCollectionPage".freeze, label: "startIndex".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :startTime, comment: "The starting time of the object".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "startTime".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :subject, comment: "On a Relationship object, identifies the subject. e.g. when saying \"John is connected to Sally\", 'subject' refers to 'John'".freeze, - domain: "as:Relationship".freeze, + domain: "https://www.w3.org/ns/activitystreams#Relationship".freeze, label: "a".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Link".freeze, "as:Object".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Link".freeze, "https://www.w3.org/ns/activitystreams#Object".freeze) ), - subPropertyOf: "rdf:subject".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + subPropertyOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#subject".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :summary, comment: "A short summary of the object".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "summary".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list(term( - type: "rdfs:Datatype".freeze - ), "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g15000".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :tag, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "tag".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :tags, - domain: "as:Object".freeze, - equivalentProperty: "as:tag".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, + equivalentProperty: "https://www.w3.org/ns/activitystreams#tag".freeze, label: "tags".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :target, - domain: "as:Activity".freeze, + domain: "https://www.w3.org/ns/activitystreams#Activity".freeze, label: "target".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :to, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "to".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Object".freeze, "as:Link".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Object".freeze, "https://www.w3.org/ns/activitystreams#Link".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :totalItems, comment: "The total number of items in a logical collection".freeze, - domain: "as:Collection".freeze, + domain: "https://www.w3.org/ns/activitystreams#Collection".freeze, label: "totalItems".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :units, comment: "Identifies the unit of measurement used by the radius, altitude and accuracy properties. The value can be expressed either as one of a set of predefined units or as a well-known common URI that identifies units.".freeze, - domain: "as:Place".freeze, + domain: "https://www.w3.org/ns/activitystreams#Place".freeze, label: "units".freeze, range: term( - type: "rdfs:Datatype".freeze, - unionOf: list(term( - "owl:oneOf": list("inches".freeze, "feet".freeze, "miles".freeze, "cm".freeze, "m".freeze, "km".freeze), - type: "rdfs:Datatype".freeze - ), "xsd:anyURI".freeze) + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze, + unionOf: list("_:g14600".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze) ), - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :updated, comment: "Specifies when the object was last updated".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "updated".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :upstreamDuplicates, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "upstreamDuplicates".freeze, - range: "xsd:anyURI".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :url, comment: "Specifies a link to a specific representation of the Object".freeze, - domain: "as:Object".freeze, + domain: "https://www.w3.org/ns/activitystreams#Object".freeze, label: "url".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("as:Link".freeze, "owl:Thing".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("https://www.w3.org/ns/activitystreams#Link".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :verb, - domain: "as:Activity".freeze, + domain: "https://www.w3.org/ns/activitystreams#Activity".freeze, label: "verb".freeze, - range: "xsd:anyURI".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :width, comment: "Specifies the preferred display width of the content, expressed in terms of device independent pixels.".freeze, - domain: "as:Link".freeze, + domain: "https://www.w3.org/ns/activitystreams#Link".freeze, label: "width".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] end end diff --git a/lib/rdf/vocab/bf2.rb b/lib/rdf/vocab/bf2.rb index 58d1f5c..5994d31 100644 --- a/lib/rdf/vocab/bf2.rb +++ b/lib/rdf/vocab/bf2.rb @@ -3,3810 +3,2490 @@ # This file generated automatically using rdf vocabulary format from http://id.loc.gov/ontologies/bibframe/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # BIBFRAME vocabulary - # # @version 2.0.1 - # class BF2 < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :AbbreviatedTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AccessPolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AcquisitionSource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdminMetadata - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ansi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AppliedMaterial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Archival - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Arrangement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AspectRatio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Audio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioIssueNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioTake - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Barcode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BaseMaterial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastStandard - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Capture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Carrier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cartographic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CartographicDataType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CartographicObjectType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cartography - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Chronology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Classification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationDdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationLcc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationNlm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationUdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Coden - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollectiveTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ColorContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Content - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContentAccessibility - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Contribution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CopyrightNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CopyrightRegistration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CoverArt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dataset - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DescriptionAuthentication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DescriptionConventions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dissertation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DissertationIdentifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Distribution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Doi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ean - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Electronic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Emulsion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EncodedBitrate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EncodingFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Enumeration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnumerationAndChronology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Extent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Family - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FileSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FileType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fingerprint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FontSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Frequency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Generation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GenerationProcess - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GenreForm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeographicCoverage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GrooveCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gtin14Number - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hdl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Identifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Illustration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImmediateAcquisition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Instance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :IntendedAudience - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Isan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Isbn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ismn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Isni - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Iso - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Isrc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Issn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :IssnL - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Issuance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Istc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Iswc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Item - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Jurisdiction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :KeyTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Language - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Layout - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LcOverseasAcq - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lccn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Local - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manufacture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manuscript - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MatrixNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Media - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Meeting - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MixedMaterial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovementNotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovingImage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Multimedia - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicDistributorNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicEnsemble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicInstrument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicMedium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicNotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicPlate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicPublisherNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicVoice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Nbn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotatedMovement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotatedMusic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Notation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Note - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Object - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ObjectCount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParallelTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Place - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlaybackChannels - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlaybackCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlayingSpeed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Polarity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PostalRegistration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PresentationFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Print - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Production - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductionMethod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Projection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProjectionCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProjectionSpeed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProvisionActivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Publication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublisherNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecordingMedium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecordingMethod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReductionRatio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RegionalEncoding - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReportNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resolution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RetentionPolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Review - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Role - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Scale - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Script - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMark - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMarkDdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMarkLcc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMarkNlm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMarkUdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sici - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoundCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoundContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Source - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Status - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :StillImage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :StockNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Strn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :StudyNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sublocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Summary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SupplementaryContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SystemRequirement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TableOfContents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tactile - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TactileNotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TapeConfig - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Temporal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Text - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Title - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Topic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrackConfig - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Unit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Upc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Urn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsageAndAccessPolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsePolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VariantTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoRecordingNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Work - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :absorbed - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :absorbedBy - # - # # Used with Work, Instance or Item - # # - # # Expected value Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :accompaniedBy - # - # # Used with Work, Instance or Item - # # - # # Expected value Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :accompanies - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquisitionSource - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquisitionTerms - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :adminMetadata - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :agent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :appliedMaterial - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrangement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ascensionAndDeclination - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :aspectRatio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :assigner - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :awards - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :baseMaterial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookFormat - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :capture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :carrier - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :cartographicAttributes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :changeDate - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :classification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :classificationPortion - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :code - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :colorContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :content - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentAccessibility - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :continuedBy - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :continuedInPartBy - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :continues - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :continuesInPart - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :contribution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coordinates - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightDate - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightRegistration - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :count - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :coverArt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :creationDate - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :credits - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :custodialHistory - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataSource - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :date - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :degree - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivativeOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivedFrom - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :descriptionAuthentication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :descriptionConventions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :descriptionLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :descriptionModifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :digitalCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dimensions - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :dissertation - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :edition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :editionEnumeration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :editionStatement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :electronicLocator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :emulsion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ensemble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ensembleType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :enumerationAndChronology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :equinox - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventContentOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :exclusionGRing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :expressionOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :extent - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :findingAid - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :findingAidOf - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstIssue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fontSize - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :frequency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generationProcess - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :genreForm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geographicCoverage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grantingInstitution - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDerivative - # - # # Used with Work, Instance or Item - # # - # # Expected value Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEquivalent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasExpression - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInstance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasItem - # - # # 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 - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSeries - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSubseries - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :heldBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hierarchicalLevel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :historyOfWork - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifiedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifies - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :illustrativeContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :immediateAcquisition - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :index - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :indexOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :instanceOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrumentalType - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :intendedAudience - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuedWith - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemPortion - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastIssue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :layout - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainTitle - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :media - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :mergedToForm - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :mergerOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mount - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicKey - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicMedium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicOpusNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicSerialNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicThematicNumber - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :natureOfContent - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :notation - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :note - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :noteType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :organization - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originPlace - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalVersion - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalVersionOf - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherEdition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherPhysicalFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :outerGRing - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :part - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :partName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :partNumber - # - # # Used with Work, Instance or Item - # # - # # Expected value Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pattern - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :physicalLocation - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :place - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :polarity - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :precededBy - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :preferredCitation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionMethod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectionCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provisionActivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provisionActivityStatement - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reductionRatio - # - # # Used with Work, Instance or Item - # # - # # Expected value Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencedBy - # - # # 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 - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacedBy - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacementOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reproductionOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :responsibilityStatement - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :review - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :scale - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :schedulePart - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :separatedFrom - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seriesEnumeration - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :seriesOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seriesStatement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shelfMark - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soundCharacteristic - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :soundContent - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :source - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spanEnd - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :splitInto - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :status - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :subject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sublocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subseriesEnumeration - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :subseriesOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subseriesStatement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subtitle - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :succeededBy - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :summary - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplement - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplementTo - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplementaryContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :systemRequirement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :table - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :tableOfContents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tableSeq - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :temporalCoverage - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :translation - # - # # Expected value Work or Instance - # # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :translationOf - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :unit - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :usageAndAccessPolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :variantType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :voice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :voiceType - # - # end BF2 = Class.new(RDF::StrictVocabulary("http://id.loc.gov/ontologies/bibframe/")) do # Ontology definition ontology :"http://id.loc.gov/ontologies/bibframe/", - "dc:modified": "2020-03-06T16:54:50.319-05:00".freeze, + "http://purl.org/dc/terms/modified": "2020-03-06T16:54:50.319-05:00".freeze, + "http://www.w3.org/2002/07/owl#ontologyIRI": "http://id.loc.gov/ontologies/bibframe/".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://id.loc.gov/ontologies/bibframe-2-0-0/".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://id.loc.gov/ontologies/bibframe-2-0-1/".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "2.0.1".freeze, label: "BIBFRAME vocabulary".freeze, - "owl:ontologyIRI": "bf2:".freeze, - "owl:priorVersion": "http://id.loc.gov/ontologies/bibframe-2-0-0/".freeze, - "owl:versionIRI": "http://id.loc.gov/ontologies/bibframe-2-0-1/".freeze, - "owl:versionInfo": "2.0.1".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AbbreviatedTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title as abbreviated for citation, indexing, and/or identification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Abbreviated title".freeze, - subClassOf: "bf2:VariantTitle".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AccessPolicy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Access restrictions and allowances regarding access to a resource, e.g., lending policy, access restrictions, embargos.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Access policy".freeze, - subClassOf: "bf2:UsageAndAccessPolicy".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AcquisitionSource, - "dc:modified": "2017-02-06 (New)".freeze, definition: "Information about an organization, person, etc., from which a resource may be obtained.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze, label: "Acquisition source".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AdminMetadata, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Metadata about the metadata, especially provenance information.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Administrative metadata".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Agent, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-05-13 (New subclass)".freeze], definition: "Entity having a role in a resource, such as a person or organization.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-13 (New subclass)".freeze], label: "Agent".freeze, - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Ansi, - "dc:modified": "2016-04-21 (New)".freeze, definition: "American National Standards Institute identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ANSI number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AppliedMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Physical or chemical substance applied to a base material of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Applied material".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Archival, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resources organically created, accumulated, and/or used by a person, family, or organization in the course of conduct of affairs and preserved because of their continuing value.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Archival controlled".freeze, - subClassOf: "bf2:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Arrangement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the organization and arrangement of a collection of items. For instance, for computer files, organization and arrangement information may be the file structure and sort sequence of a file; for visual materials, this information may be how a collection is arranged.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Organization of materials information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AspectRatio, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Proportional relationship between an image's width and its height.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Aspect ratio".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Audio, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resources expressed in an audible form, including music or other sounds.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Audio".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioIssueNumber, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised property name and definition)".freeze], definition: "Number assigned by publishers of sound recordings to identify the issue designation, or serial identification, of the resource.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised property name and definition)".freeze], label: "Audio issue number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioTake, - "dc:modified": "2017-02-03 (New)".freeze, definition: "Identifier assigned to the smallest identifiable unit of a recording session, e.g., a specific recording of an individual song.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Audio recording take".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Barcode, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Moved to Identifier class group from Item group)".freeze], definition: "Optical machine-readable representation of data relating to the item to which it is attached.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Moved to Identifier class group from Item group)".freeze], label: "Barcode".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BaseMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Underlying physical material of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Base material".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BookFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Result of folding a printed sheet to form a gathering of leaves.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Book format".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BroadcastStandard, - "dc:modified": "2016-04-21 (New)".freeze, definition: "System used to format a video resource for television broadcast, e.g., HDTV, PAL.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Broadcast standard".freeze, - subClassOf: "bf2:VideoCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VideoCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Capture, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about place and date associated with the capture (i.e., recording, filming, etc.) of the content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Capture of content".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Carrier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the format of the storage medium and housing of a carrier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Carrier type".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Cartographic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Content that represents the whole or part of the earth, any celestial body, or imaginary place at any scale.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CartographicDataType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Data type for encoding of geospatial information in a cartographic resource, e.g., raster, vector, point.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital cartographic data type".freeze, - subClassOf: "bf2:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CartographicObjectType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Object type for encoding of geospatial information in a cartographic resource, e.g., point, line, polygon.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital cartographic object type".freeze, - subClassOf: "bf2:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Cartography, - "dc:modified": "2016-04-25 (fixed typo in definition)".freeze, definition: "Resource that shows spatial information, including maps, atlases, globes, digital, and other cartographic resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-25 (fixed typo in definition)".freeze, label: "Cartography".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Chronology, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Dates associated with issues or items held.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Chronology".freeze, - subClassOf: "bf2:EnumerationAndChronology".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Classification, - "dc:modified": "2016-04-21 (New)".freeze, definition: "System of coding and organizing materials according to their subject.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClassificationDdc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Dewey Decimal Classification number used for subject access.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "DDC Classification".freeze, - subClassOf: "bf2:Classification".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClassificationLcc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Library of Congress Classification number used for subject access.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "LCC Classification".freeze, - subClassOf: "bf2:Classification".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClassificationNlm, - "dc:modified": "2016-04-21 (New)".freeze, definition: "National Library of Medicine Classification number used for subject access".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "NLM classification".freeze, - subClassOf: "bf2:Classification".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClassificationUdc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Universal Decimal Classification number used for subject access.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "UDC Classification".freeze, - subClassOf: "bf2:Classification".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Coden, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier for scientific and technical periodical titles assigned by the International CODEN Section of Chemical Abstracts Service.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "CODEN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Collection, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Aggregation of resources, generally gathered together artificially.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Collection".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CollectiveTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title for a compilation of resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Collective title".freeze, - subClassOf: "bf2:VariantTitle".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ColorContent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Color characteristics of a resource, e.g., black and white, multicolored, etc.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Color content".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Content, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the fundamental form of communication in which the content is expressed and the human sense through which it is intended to be perceived.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Content type".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ContentAccessibility, - "dc:modified": "2017-02-07 (New)".freeze, definition: "Information that assists those with a sensory impairment for greater understanding of content, e.g., captions.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-07 (New)".freeze, label: "Content accessibility information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Contribution, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Agent and role with respect to the resource being described.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Contribution".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CopyrightNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier assigned to a copyright registration or legal deposit.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Copyright-legal deposit number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CopyrightRegistration, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Class name corrected)".freeze], definition: "Copyright or Legal Deposit registration information".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Class name corrected)".freeze], label: "Copyright registration".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CoverArt, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Cover illustration of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cover art".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dataset, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Data encoded in a defined structure. Includes numeric data, environmental data,etc., used by applications software to calculate averages, correlations, etc., or to produce models, etc., but not normally displayed in its raw form.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dataset".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DescriptionAuthentication, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (fixed class name)".freeze], definition: "Indication of specific types of reviews that have been carried out on the description information.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (fixed class name)".freeze], label: "Metadata authentication".freeze, - subClassOf: "bf2:AdminMetadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DescriptionConventions, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze], definition: "Rules used for the descriptive content of the resource description.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze], label: "Description conventions".freeze, - subClassOf: "bf2:AdminMetadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DigitalCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital characteristic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dissertation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about a work presented as part of the formal requirements for an academic degree.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dissertation information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DissertationIdentifier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier assigned to a thesis or dissertation for identification purposes .".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dissertation Identifier".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Distribution, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information relating to distribution of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Distributor".freeze, - subClassOf: "bf2:ProvisionActivity".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Doi, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Digital Object Identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "DOI".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Ean, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Article Identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "EAN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Electronic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is intended for manipulation by a computer, accessed either directly or remotely.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Electronic".freeze, - subClassOf: "bf2:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Emulsion, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche, e.g., silver halide.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Emulsion".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EncodedBitrate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Speed at which streaming audio, video, etc., is designed to play, e.g., 32 kbps.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Encoded bitrate".freeze, - subClassOf: "bf2:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EncodingFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Schema, standard, etc., used to encode the digital content of a resource, e.g., MP3, XML, JPEG.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Encoding format".freeze, - subClassOf: "bf2:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Enumeration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numbering or other enumeration associated with issues or items held.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Enumeration".freeze, - subClassOf: "bf2:EnumerationAndChronology".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EnumerationAndChronology, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numbering or other enumeration and dates associated with issues or items held.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Enumeration and chronology".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Event, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Something that happens at a certain time and location, such as a performance, speech, or athletic event, that is documented by a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Event entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Extent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number and type of units and/or subunits making up a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Extent".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Family, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Two or more persons related by birth, marriage, adoption, civil union, or similar legal status, or who otherwise present themselves as a family.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Family".freeze, - subClassOf: "bf2:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FileSize, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number of bytes in a digital file, e.g., 162 KB.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "File size".freeze, - subClassOf: "bf2:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FileType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "General type of data content encoded in a computer file, e.g., text file, audio file.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "File type".freeze, - subClassOf: "bf2:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Fingerprint, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier that is used to assist in the identification of antiquarian books by recording information comprising groups of characters taken from specified positions on specified pages of the book.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Fingerprint identifier".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FontSize, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Size of the type used to represent the characters and symbols in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Font size".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Frequency, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about intervals at which the parts of a serially produced resource or the updates to an integrating resource are issued.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Frequency".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Generation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Relationship between an original carrier and the carrier of a reproduction made from the original.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Generation".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GenerationProcess, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze], definition: "Indication of the program or process used to generate the description by application of a particular transformation.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze], label: "Generation process".freeze, - subClassOf: "bf2:AdminMetadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GenreForm, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Characteristics of works with similar plots, themes, settings, etc. (e.g., westerns, thrillers), or with a particular format of purpose (e.g., animation, short), or a combination (e.g., horror film where horror is the genre and film is the form).".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Genre/form".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GeographicCoverage, - "dc:modified": "2017-02-06 (New)".freeze, definition: "Geographic coverage of the content of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze, label: "Geographic coverage".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GrooveCharacteristic, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze, "2017-02-03 (Fixed name of property)".freeze], definition: "Groove width of an analog disc or the groove pitch of an analog cylinder, e.g., coarse groove, microgroove".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze, "2017-02-03 (Fixed name of property)".freeze], label: "Groove characteristic".freeze, - subClassOf: "bf2:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Gtin14Number, - "dc:modified": "2017-02-03 (New)".freeze, definition: "14 digit number assigned to identify trade items as various packaging levels. GTIN-14 encompasses EAN/UCC-128 and ITF-14.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Global Trade Item Number 14".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Hdl, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Unique and persistent identifier for digital objects developed by the Corporation for National Research Initiatives.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Handle".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Identifier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Token or name that is associated with a resource, such as a URI or an ISBN.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Identifier".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Illustration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about content intended to illustrate a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Illustrative content".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ImmediateAcquisition, - "dc:modified": "2017-02-06 (New)".freeze, definition: "Information about the circumstances, e.g., source, date, method, under which the resource was directly acquired.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze, label: "Immediate acquisition".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Instance, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource reflecting an individual, material embodiment of a Work.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Instance".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IntendedAudience, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information that identifies the specific intended or target audience or intellectual level for which the content described is considered appropriate. Also used to record interest and motivation levels and special learner characteristics.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Intended audience information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Isan, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Audiovisual Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISAN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Isbn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Book Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISBN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Ismn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Music Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISMN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Isni, - "dc:modified": "2017-02-03 (New)".freeze, definition: "International Standard Name Identifier, a unique, persistent reference number for the identities of contributors to creative works.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "ISNI".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Iso, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Organization for Standardization standard number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISO number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Isrc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Recording Code.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISRC".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Issn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Serial Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISSN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IssnL, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Serial Number that links together various media versions of a continuing resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISSN-L".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Issuance, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about whether a resource is issued in one or more parts, the way it is updated, and its intended termination.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mode of issuance".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Istc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Text Code, a numbering system developed to enable the unique identification of textual works.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISTC".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Iswc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Musical Work Code, a unique, persistent reference number for the identification of musical works.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISWC".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Item, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Single example of an Instance.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Item".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Jurisdiction, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Legal or political unit administering a geographic area.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Jurisdiction".freeze, - subClassOf: "bf2:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :KeyTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Unique title for a continuing resource that is assigned by the ISSN International Center in conjunction with an ISSN.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Key title".freeze, - subClassOf: "bf2:VariantTitle".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Language, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Language entity.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Language entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Layout, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Arrangement of text, images, tactile notation, etc., in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Layout".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LcOverseasAcq, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification number assigned by the Library of Congress to works acquired through one of its collaborative overseas acquisition programs.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "LC acquisition program".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Lccn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Library of Congress Control Number that identifies a resource description.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "LCCN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Local, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier established locally and not a standard number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Local identifier".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Manufacture, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information relating to manufacture of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Manufacturer".freeze, - subClassOf: "bf2:ProvisionActivity".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Manuscript, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is written in handwriting or typescript. These are generally unique resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Manuscript".freeze, - subClassOf: "bf2:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MatrixNumber, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], definition: "Matrix identifier assigned to the master from which a specific sound recording was pressed.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], label: "Audio matrix number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Media, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Media type".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Meeting, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Gathering of individuals or representatives of various bodies for the purpose of discussing and/or acting on topics of common interest.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Meeting".freeze, - subClassOf: "bf2:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MixedMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource comprised of multiple types which is not driven by software; for instance, a manuscript collection of text, photographs and sound recordings.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mixed material".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Mount, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Physical material used for the support or backing to which the base material of a resource has been attached.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mount".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MovementNotation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the symbol system used to convey the content of a movement resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Movement notation used".freeze, - subClassOf: "bf2:Notation".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MovingImage, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze], definition: "Images intended to be perceived as moving, including motion pictures (using liveaction and/or animation), video recordings of performances, events,etc.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze], label: "Moving image".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Multimedia, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Electronic resource that is a computer program (i.e., digitally encoded instructions intended to be processed and performed by a computer) or which consists of multiple media types that are software driven, such as videogames.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Software or multimedia".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicDistributorNumber, - "dc:modified": "2017-02-07 (New)".freeze, definition: "Identifier appearing on a resource assigned by a distributor to a specific audio recording, notated music publication, music-related publication, or videorecording.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-07 (New)".freeze, label: "Music distributor number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicEnsemble, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Ensemble for which a musical work is appropriate.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music ensemble".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Layout for content of a resource that is presented in the form of musical notation.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notated music format".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicInstrument, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Instrument for which a musical work is appropriate.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Musical instrument".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicMedium, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Summary statement of the medium for a musical work.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music medium information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicNotation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the symbol system used to convey the content of a music resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music notation used".freeze, - subClassOf: "bf2:Notation".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicPlate, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], definition: "Identifiers assigned by a music publisher or printer to the printing plates for the notated portion of a notated music publication, or an identifier that emulates the printing plate tradition in contemporary publications.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], label: "Music plate number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicPublisherNumber, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], definition: "Identifier assigned to a notated music publication other than an issue, matrix, or plate number.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], label: "Music publisher number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicVoice, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Voice for which a musical work is appropriate.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music voice".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Nbn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "National Bibliography Number that identifies a resource description.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "NBN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NotatedMovement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Graphic, non-realized representations of movement intended to be perceived visually, e.g. dance.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notated movement".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NotatedMusic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Graphic, non-realized representations of musical works intended to be perceived visually.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notated music".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Notation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, movement notation, and musical notation.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notation".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Note, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information, usually in textual form, on attributes of a resource or some aspect of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Note".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Object, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource in a form intended to be perceived visually in three-dimensions. Includes man-made objects such as models, sculptures, clothing, and toys, as well as naturally occurring objects such as specimens mounted for viewing.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Three-dimensional object".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ObjectCount, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number of objects in encoded geospatial information in a cartographic resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital cartographic object count".freeze, - subClassOf: "bf2:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Organization, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Corporation or group of persons and/or organizations that acts, or may act, as a unit.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Organization".freeze, - subClassOf: "bf2:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ParallelTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title in another language and/or script.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Parallel title proper".freeze, - subClassOf: "bf2:VariantTitle".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Person, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Individual or identity established by an individual (either alone or in collaboration with one or more other individuals).".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Person".freeze, - subClassOf: ["bf2:Agent".freeze, "foaf:Person".freeze], - type: "owl:Class".freeze + subClassOf: ["http://id.loc.gov/ontologies/bibframe/Agent".freeze, "http://xmlns.com/foaf/0.1/Person".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Place, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Geographic location.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Place".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PlaybackChannels, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Configuration/number of sound channels used to make a recording, such as one channel for a monophonic recording, e.g., mono, stereo, quadraphonic, surround.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Configuration of playback channels".freeze, - subClassOf: "bf2:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PlaybackCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Equalization system, noise reduction system, etc., used in making an audio recording, e.g., CCIR standard, CX encoded, Dolby.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Special playback characteristics".freeze, - subClassOf: "bf2:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PlayingSpeed, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Speed at which an audio carrier must be operated to produce the sound intended, e.g., 78 rpm, 19 cm/s.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Playing speed".freeze, - subClassOf: "bf2:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Polarity, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Relationship of the colors and tones in an image to the colors and tones of the object reproduced.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Polarity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PostalRegistration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number assigned to a publication for which the specified postal service permits the use of a special mailing class privilege.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Postal registration number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PresentationFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Format used in the production of a projected image, e.g., Cinerama, IMAX.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Presentation format".freeze, - subClassOf: "bf2:ProjectionCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Print, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is printed.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Printed".freeze, - subClassOf: "bf2:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Production, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information relating to production of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Producer".freeze, - subClassOf: "bf2:ProvisionActivity".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProductionMethod, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Process used to produce a resource".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Production method".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Projection, - "dc:modified": "2017-02-03 (New)".freeze, definition: "Method or system used to represent the surface of the earth or of a celestial sphere on a plane.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Projection".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProjectionCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the projection of a motion picture film.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Projection characteristic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProjectionSpeed, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Speed at which a projected carrier must be operated to produce the moving image intended, e.g., 20 fps.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Projection speed".freeze, - subClassOf: "bf2:ProjectionCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProvisionActivity, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the agent or place relating to the publication, printing, distribution, issue, release, or production of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Provider entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Publication, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information relating to publication of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Publisher".freeze, - subClassOf: "bf2:ProvisionActivity".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PublisherNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number assigned by a publisher that is not one of the specific defined types.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Publisher number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RecordingMedium, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Type of medium used to record sound on an audio carrier, e.g., magnetic, optical.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Recording medium".freeze, - subClassOf: "bf2:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RecordingMethod, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Method used to encode audio content for playback, e.g., analog, digital.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Type of recording".freeze, - subClassOf: "bf2:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReductionRatio, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Size of a micro-image in relation to the original from which it was produced.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Reduction ratio".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RegionalEncoding, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification of the region of the world for which a videodisc has been encoded, e.g., region 4.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Regional encoding".freeze, - subClassOf: "bf2:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReportNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification number of a technical report that is not a Standard Technical Report Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Technical report number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Resolution, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Clarity or fineness of detail in a digital image, expressed by the measurement of the image in pixels, etc., e.g., 3.1 megapixels.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Resolution".freeze, - subClassOf: "bf2:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RetentionPolicy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Policy of holding institution for retaining resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Retention policy".freeze, - subClassOf: "bf2:UsageAndAccessPolicy".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Review, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Review of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Review".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Role, - "dc:modified": "2017-02-03 (New)".freeze, definition: "Function played or provided by a contributor, e.g., author, illustrator, etc.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Role".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Scale, - "dc:modified": "2017-02-03 (New)".freeze, definition: "Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents, e.g., for images or cartographic resources.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Scale".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Script, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the script, or symbol system used to convey the content of a text resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Script used".freeze, - subClassOf: "bf2:Notation".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMark, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Piece/item identifier, such as a call or other type of number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Shelf location".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMarkDdc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Shelf mark based on Dewey Decimal Classification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "DDC call number".freeze, - subClassOf: "bf2:ShelfMark".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMarkLcc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Shelf mark based on Library of Congress Classification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "LCC call number".freeze, - subClassOf: "bf2:ShelfMark".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMarkNlm, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Shelf mark based on National Library of Medicine Classification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "NLM call number".freeze, - subClassOf: "bf2:ShelfMark".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMarkUdc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Shelf mark based on Universal Decimal Classification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "UDC call number".freeze, - subClassOf: "bf2:ShelfMark".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Sici, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Serial Item and Contribution Identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "SICI".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SoundCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the encoding of sound in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Sound characteristic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SoundContent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Indication of whether the production of sound is an integral part of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Sound content".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Source, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource from which value or label came or was derived.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Source".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Status, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Designation of the validity or position of something, e.g., whether something is incorrect or available.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Status".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StillImage, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource expressed through line, shape, shading, etc., intended to be perceived visually as a still image or images in two dimensions. Includes two-dimensional images and slides and transparencies.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Still image".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StockNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification number used for stock purposes and assigned by agencies such as distributors, publishers, or vendors.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Stock number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Strn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Standard Technical Report Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "STRN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StudyNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification number for a computer data file.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Study number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Sublocation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific place within the holding entity where the item is located or made available.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Sublocation".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Summary, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Description of the content of a resource, such as an abstract, summary, etc..".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Summary".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SupplementaryContent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Index, bibliography, appendix, etc. intended to supplement the primary content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Supplementary material".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SystemRequirement, - "dc:modified": "2017-02-06 (New)".freeze, definition: "Equipment or system requirements beyond what is normal and obvious for the type of carrier or type of file, such as make and model of equipment or hardware, operating system, amount of memory, programming language, other necessary software, any plug-ins or peripherals required to play, view, or run the resource, etc.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze, label: "System Requirement".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TableOfContents, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Table of contents of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Table of contents".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Tactile, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is intended to be perceived by touch.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Tactile material".freeze, - subClassOf: "bf2:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TactileNotation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the symbol system used to convey the content of a tactile resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Tactile notation used".freeze, - subClassOf: "bf2:Notation".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TapeConfig, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number of tracks on an audiotape, e.g., 12 track.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Tape configuration".freeze, - subClassOf: "bf2:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Temporal, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Chronological period.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Temporal concept".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Text, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource intended to be perceived visually and understood through the use of language in written or spoken form.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Text".freeze, - subClassOf: "bf2:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Title, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Definition changed)".freeze], definition: "Title information relating to a resource: work title, preferred title, instance title, transcribed title, translated title, variant form of title, etc.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Definition changed)".freeze], label: "Title entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Topic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Concept or area of knowledge.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Topic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TrackConfig, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Configuration of the audio track on a sound-track film, e.g., center track, edge track.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Track configuration".freeze, - subClassOf: "bf2:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Unit, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Units in which a value is expressed.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Unit".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Upc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Universal Product Code.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "UPC".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Urn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Uniform Resource Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "URN".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :UsageAndAccessPolicy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "General statement of allowances and restrictions on access to a resource, including retention, reproduction, access, and lending.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Use and access conditions".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :UsePolicy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Usage limitations placed on a resource with respect to reproduction, publication, exhibition, etc..".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Use policy".freeze, - subClassOf: "bf2:UsageAndAccessPolicy".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VariantTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title associated with the resource that is different from the Work or Instance title.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Title variation".freeze, - subClassOf: "bf2:Title".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VideoCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the encoding of video images in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Video characteristic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VideoFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Standard, etc., used to encode the analog video content of a resource, e.g., Beta, 8mm.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Video format".freeze, - subClassOf: "bf2:VideoCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VideoCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VideoRecordingNumber, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected case in class name)".freeze], definition: "Number assigned by a publisher to a video recording.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected case in class name)".freeze], label: "Video recording number".freeze, - subClassOf: "bf2:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Work, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource reflecting a conceptual essence of a cataloging resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Work".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :absorbed, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that has been incorporated into another resource.".freeze, - inverseOf: "bf2:absorbedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/absorbedBy".freeze, label: "Absorption of".freeze, - subPropertyOf: "bf2:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :absorbedBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that incorporates another resource.".freeze, - inverseOf: "bf2:absorbed".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/absorbed".freeze, label: "Absorbed by".freeze, - subPropertyOf: "bf2:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :accompaniedBy, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that accompanies the described resource.".freeze, - inverseOf: "bf2:accompanies".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, label: "Accompanied by".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :accompanies, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that adds to or is issued with the described resource.".freeze, - inverseOf: "bf2:accompaniedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze, label: "Accompanies".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :acquisitionSource, comment: "Used with Work or Instance".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property".freeze, "slight change to definition)".freeze], definition: "Information about an organization, person, etc., from which a resource may be obtained.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property".freeze, "slight change to definition)".freeze], label: "Source of acquisition".freeze, - range: "bf2:AcquisitionSource".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/AcquisitionSource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :acquisitionTerms, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Conditions under which the publisher, distributor, etc., will normally supply a resource, e.g., price of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Terms of acquisition".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :adminMetadata, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Metadata about the metadata, especially provenance information.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Administrative metadata".freeze, - range: "bf2:AdminMetadata".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :agent, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Entity associated with a resource or element of description, such as the name of the entity responsible for the content or of the publication, printing, distribution, issue, release or production of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Associated agent".freeze, - range: "bf2:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :appliedMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Physical or chemical substance applied to a base material of a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Applied material".freeze, - range: "bf2:AppliedMaterial".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/AppliedMaterial".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :arrangement, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the organization and arrangement of a collection of resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Organization and arrangement".freeze, - range: "bf2:Arrangement".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Arrangement".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :ascensionAndDeclination, - "dc:modified": "2016-04-21 (New)".freeze, definition: "System for identifying the location of a celestial object in the sky covered by the cartographic content of a resource using the angles of right ascension and declination.".freeze, - domain: "bf2:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic ascension and declination".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :aspectRatio, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Proportional relationship between an image's width and its height.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Aspect ratio".freeze, - range: "bf2:AspectRatio".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/AspectRatio".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :assigner, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Entity that assigned the metadata, such as the entity that assigned a classification number, entity that assigned a name, entity that assigned an identifier.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Assigner".freeze, - range: "bf2:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :awards, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on awards associated with the described resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Award note".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :baseMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Underlying physical material of a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Base material".freeze, - range: "bf2:BaseMaterial".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/BaseMaterial".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :bookFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Result of folding a printed sheet to form a gathering of leaves.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Book format".freeze, - range: "bf2:BookFormat".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/BookFormat".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :capture, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about place and date associated with the capture (e.g., recording, filming) of the content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Capture of content".freeze, - range: "bf2:Capture".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Capture".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :carrier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the format of the storage medium and housing of a carrier.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Carrier type".freeze, - range: "bf2:Carrier".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Carrier".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :cartographicAttributes, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Cartographic data that identifies characteristics of the resource, such as coordinates, projection, etc.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic data".freeze, - range: "bf2:Cartographic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :changeDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date or date and time on which the metadata was modified.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description change date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bf2:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :classification, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Classification number in any scheme.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification".freeze, - range: "bf2:Classification".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :classificationPortion, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Classification number (single class number or beginning number of a span) that indicates the subject by applying a formal system of coding and organizing resources.".freeze, - domain: "bf2:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :code, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "String of characters that serves as a code representing information.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Code".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :colorContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Color characteristics, e.g., black and white, multicolored.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Color content".freeze, - range: "bf2:ColorContent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ColorContent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :content, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the fundamental form of communication in which the content is expressed and the human sense through which it is intended to be perceived.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Content type".freeze, - range: "bf2:Content".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Content".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :contentAccessibility, comment: "Used with Work or Instance".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze, "2017-03-15 fixed typo in range".freeze], definition: "Information that assists those with a sensory impairment for greater understanding of content, e.g., captions.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze, "2017-03-15 fixed typo in range".freeze], label: "Content accessibility information".freeze, - range: "bf2:ContentAccessibility".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ContentAccessibility".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :continuedBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource whose content continues an earlier resource under a new title.".freeze, - inverseOf: "bf2:continues".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/continues".freeze, label: "Continued by".freeze, - subPropertyOf: "bf2:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :continuedInPartBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource part of whose content separated from an earlier resource to form a new resource.".freeze, - inverseOf: "bf2:separatedFrom".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/separatedFrom".freeze, label: "Continued in part by".freeze, - subPropertyOf: "bf2:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :continues, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that is continued by the content of a later resource under a new title.".freeze, - inverseOf: "bf2:continuedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/continuedBy".freeze, label: "Continuation of".freeze, - subPropertyOf: "bf2:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :continuesInPart, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that split into two or more separate resources with new titles.".freeze, - inverseOf: "bf2:splitInto".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/splitInto".freeze, label: "Continuation in part of".freeze, - subPropertyOf: "bf2:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :contribution, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected label)".freeze], definition: "Agent and its role in relation to the resource.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected label)".freeze], label: "Contributor and role".freeze, - range: "bf2:Contribution".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Contribution".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :coordinates, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Mathematical system for identifying the area covered by the cartographic content of a resource, expressed either by means of longitude and latitude on the surface of planets or by the angles of right ascension and declination for celestial cartographic content.".freeze, - domain: "bf2:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic coordinates".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :copyrightDate, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date associated with a claim of protection under copyright or a similar regime.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Copyright date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bf2:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :copyrightRegistration, comment: "Used with Work or Instance".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Corrected expected value)".freeze], definition: "Copyright and Legal Deposit registration information".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Corrected expected value)".freeze], label: "Copyright registration information".freeze, - range: "bf2:CopyrightRegistration".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/CopyrightRegistration".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :count, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number associated with a measure of units, such as the number of units and/or subunits making up a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Number of units".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :coverArt, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Cover art image of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cover art".freeze, - range: "bf2:CoverArt".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/CoverArt".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :creationDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date or date and time on which the original metadata first created.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description creation date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bf2:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :credits, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information in note form of credits for persons or organizations who have participated in the creation and/or production of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Credits note".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :custodialHistory, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the provenance, such as origin, ownership and custodial history (chain of custody), of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Custodial history".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :dataSource, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (updated range)".freeze], definition: "Resource that is a data source to which the described resource is related. It may contain information about other files, printed sources, or collection procedures.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (updated range)".freeze], label: "Data source".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :date, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date designation associated with a resource or element of description, such as date of title variation; year a degree was awarded; date associated with the publication, printing, distribution, issue, release or production of a resource. May be date typed.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Date".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :degree, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Degree for which author was a candidate.".freeze, - domain: "bf2:Dissertation".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Dissertation".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Degree".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :derivativeOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Source work from which the described resource is derived.".freeze, - inverseOf: "bf2:hasDerivative".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasDerivative".freeze, label: "Is derivative of".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :derivedFrom, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Link to the metadata that was the source of the data.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Source metadata".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :descriptionAuthentication, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Indication of specific types of reviews that have been carried out on the description information.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description authentication".freeze, - range: "bf2:DescriptionAuthentication".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/DescriptionAuthentication".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :descriptionConventions, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed domain name)".freeze], definition: "Rules used for the descriptive content of the resource description.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed domain name)".freeze], label: "Description conventions".freeze, - range: "bf2:DescriptionConventions".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/DescriptionConventions".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :descriptionLanguage, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Language used for the metadata.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description language".freeze, - range: "bf2:Language".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Language".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :descriptionModifier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Agency that modified a description.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description modifier".freeze, - range: "bf2:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :digitalCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital characteristic".freeze, - range: "bf2:DigitalCharacteristic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :dimensions, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Measurements of the carrier or carriers and/or the container of a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dimensions".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :dissertation, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Work presented as part of the formal requirements for an academic degree.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dissertation Information".freeze, - range: "bf2:Dissertation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Dissertation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :duration, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the playing time, running time, etc. of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Duration".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :edition, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Edition of the classification scheme, such as full, abridged or a number, when a classification scheme designates editions.".freeze, - domain: "bf2:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification scheme edition".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :editionEnumeration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Enumeration of the edition; usually transcribed.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Edition enumeration".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :editionStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information identifying the edition or version of the resource and associated statements of responsibility for the edition; usually transcribed.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Edition statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :electronicLocator, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Electronic location from which the resource is available.".freeze, - domain: "bf2:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Electronic location".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :emulsion, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche, e.g., silver halide.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Emulsion".freeze, - range: "bf2:Emulsion".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Emulsion".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :ensemble, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Ensemble for which a musical work is appropriate.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Ensemble".freeze, - range: "bf2:MusicEnsemble".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicEnsemble".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :ensembleType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific type of ensemble, such as orchestra, band, guitar ensemble.".freeze, - domain: "bf2:MusicEnsemble".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/MusicEnsemble".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Ensemble type".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :enumerationAndChronology, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numbering and dates of issues or items held.".freeze, - domain: "bf2:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Numbering or other enumeration and dates associated with issues or items held.".freeze, - range: "bf2:EnumerationAndChronology".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :equinox, - "dc:modified": "2016-04-21 (New)".freeze, definition: "One of two points of intersection of the ecliptic and the celestial equator, occupied by the sun when its declination is 0 degrees.".freeze, - domain: "bf2:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic equinox".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :eventContent, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Work whose content is the described event.".freeze, - domain: "bf2:Event".freeze, - inverseOf: "bf2:eventContentOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Event".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/eventContentOf".freeze, label: "Event content".freeze, - range: "bf2:Work".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :eventContentOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Event that is the content of the described work.".freeze, - domain: "bf2:Work".freeze, - inverseOf: "bf2:eventContent".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/eventContent".freeze, label: "Has event content".freeze, - range: "bf2:Event".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Event".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :exclusionGRing, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Coordinate pairs that identify the closed non-intersecting boundary of the area contained within the G-polygon outer ring that is excluded.".freeze, - domain: "bf2:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic G ring area excluded".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :expressionOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Work that the described Work is an expression of. For use to connect Works under FRBR/RDA rules.".freeze, - domain: "bf2:Work".freeze, - inverseOf: "bf2:hasExpression".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasExpression".freeze, label: "Expression of".freeze, - range: "bf2:Work".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :extent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number and type of units and/or subunits making up a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Extent".freeze, - range: "bf2:Extent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Extent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :findingAid, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Relationship for archival, visual, and manuscript resources to a finding aid or similar control materials.".freeze, - inverseOf: "bf2:findingAidOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/findingAidOf".freeze, label: "Finding aid".freeze, - subPropertyOf: "bf2:accompaniedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :findingAidOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Finding aid or similar control materials for archival, visual, and manuscript resources.".freeze, - inverseOf: "bf2:findingAid".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/findingAid".freeze, label: "Finding aid for".freeze, - subPropertyOf: "bf2:accompanies".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :firstIssue, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Beginning date of a resource and/or the sequential designations.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Multipart first issue".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :fontSize, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Size of the type used to represent the characters and symbols in a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Font size".freeze, - range: "bf2:FontSize".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/FontSize".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :frequency, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Intervals at which the parts of a serially produced resource or the updates to an integrating resource are issued.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Frequency".freeze, - range: "bf2:Frequency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Frequency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Relationship between an original carrier and the carrier of a reproduction made from the original.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Generation".freeze, - range: "bf2:Generation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Generation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generationDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date of conversion of the metadata from another format.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Date generated".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bf2:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :generationProcess, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Indication of the program or process used to generate the description by application of a particular transformation.".freeze, - domain: "bf2:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description generation".freeze, - range: "bf2:GenerationProcess".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/GenerationProcess".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :genreForm, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Form category or genre to which a resource belongs".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Genre/form".freeze, - range: "bf2:GenreForm".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/GenreForm".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :geographicCoverage, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze], definition: "Geographic coverage of the content of the resource.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze], label: "Geographic coverage".freeze, - range: "bf2:GeographicCoverage".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/GeographicCoverage".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :grantingInstitution, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Name of degree granting institution.".freeze, - domain: "bf2:Dissertation".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Dissertation".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Degree issuing institution".freeze, - range: "bf2:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDerivative, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that is a modification of the described work.".freeze, - inverseOf: "bf2:derivativeOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze, label: "Has derivative".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEquivalent, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource embodies the same content as the described resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Equivalence".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:SymmetricProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :hasExpression, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Work that is an expression of a described Work. For use to relate Works under FRBR/RDA rules.".freeze, - domain: "bf2:Work".freeze, - inverseOf: "bf2:expressionOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/expressionOf".freeze, label: "Expressed as".freeze, - range: "bf2:Work".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasInstance, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Instance is related to described Work. For use to connect Works to Instances in the BIBFRAME structure.".freeze, - domain: "bf2:Work".freeze, - inverseOf: "bf2:instanceOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/instanceOf".freeze, label: "Instance of Work".freeze, - range: "bf2:Instance".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasItem, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze], definition: "Item which is an example of the described Instance.".freeze, - domain: "bf2:Instance".freeze, - inverseOf: "bf2:itemOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/itemOf".freeze, label: "Has holding".freeze, - range: "bf2:Item".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPart, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that is included either physically or logically in the described resource".freeze, - inverseOf: "bf2:partOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/partOf".freeze, label: "Has part".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasReproduction, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that reproduces another Resource.".freeze, - domain: "bf2:Instance".freeze, - inverseOf: "bf2:reproductionOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/reproductionOf".freeze, label: "Reproduced as".freeze, - range: "bf2:Instance".freeze, - subPropertyOf: "bf2:hasEquivalent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasEquivalent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSeries, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource in which the part has been issued; the title of the larger resource appears on the part.".freeze, - inverseOf: "bf2:seriesOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/seriesOf".freeze, label: "In series".freeze, - subPropertyOf: "bf2:partOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/partOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSubseries, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "series resource that is part of another series.".freeze, - inverseOf: "bf2:subseriesOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/subseriesOf".freeze, label: "Subseries".freeze, - subPropertyOf: "bf2:partOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/partOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :heldBy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Entity holding the item or from which it is available.".freeze, - domain: "bf2:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Held by".freeze, - range: "bf2:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hierarchicalLevel, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Hierarchical position of the described materials relative to other material from the same source.".freeze, - domain: "bf2:Arrangement".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Arrangement".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Hierarchical level of material".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :historyOfWork, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the history of a Work.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "History of the work".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identifiedBy, comment: "Used with Unspecified".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-05-04 (New inverse)".freeze], definition: "Character string associated with a resource that serves to differentiate that resource from other resources, i.e., that uniquely identifies an entity.".freeze, - inverseOf: "bf2:identifies".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-05-04 (New inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/identifies".freeze, label: "Identifier".freeze, - range: "bf2:Identifier".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :identifies, - "dc:modified": "2017-02-03 (New inverse)".freeze, definition: "Resource that is associated with a character string that serves to differentiate one resource from another.".freeze, - domain: "bf2:Identifier".freeze, - inverseOf: "bf2:identifiedBy".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New inverse)".freeze, + inverseOf: "http://id.loc.gov/ontologies/bibframe/identifiedBy".freeze, label: "Resource identified".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :illustrativeContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about content intended to illustrate a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Illustrative content information".freeze, - range: "bf2:Illustration".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Illustration".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :immediateAcquisition, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze], definition: "Information about the circumstances, e.g., source, date, method, under which the resource was directly acquired.".freeze, - domain: "bf2:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze], label: "Immediate acquisition".freeze, - range: "bf2:ImmediateAcquisition".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ImmediateAcquisition".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :index, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected label)".freeze], definition: "Resource has an accompanying index".freeze, - inverseOf: "bf2:indexOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected label)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/indexOf".freeze, label: "Has index".freeze, - subPropertyOf: "bf2:accompaniedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :indexOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Index that accompanies a resource.".freeze, - inverseOf: "bf2:index".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/index".freeze, label: "Index to".freeze, - subPropertyOf: "bf2:accompanies".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :instanceOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Work the Instance described instantiates or manifests. For use to connect Instances to Works in the BIBFRAME structure.".freeze, - domain: "bf2:Instance".freeze, - inverseOf: "bf2:hasInstance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasInstance".freeze, label: "Instance of".freeze, - range: "bf2:Work".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :instrument, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Instrument for which a musical Work is appropriate.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Instrument".freeze, - range: "bf2:MusicInstrument".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicInstrument".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :instrumentalType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific role of instrument, such as alternate, doubling, solo, ensemble.".freeze, - domain: "bf2:MusicInstrument".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/MusicInstrument".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Instrument role".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :intendedAudience, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information that identifies the specific audience or intellectual level for which the content of the resource is considered appropriate.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Intended audience".freeze, - range: "bf2:IntendedAudience".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/IntendedAudience".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :issuance, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting whether a resource is issued in one or more parts, the way it is updated, and its intended termination.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mode of issuance".freeze, - range: "bf2:Issuance".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Issuance".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :issuedWith, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is issued on the same carrier as the resource being described.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Issued with".freeze, - range: "bf2:Instance".freeze, - subPropertyOf: "bf2:accompanies".freeze, - type: "owl:SymmetricProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :itemOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze], definition: "Instance for which the described Item is an example.".freeze, - domain: "bf2:Item".freeze, - inverseOf: "bf2:hasItem".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasItem".freeze, label: "Holding for".freeze, - range: "bf2:Instance".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :itemPortion, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number attached to a classification string that indicates a particular item.".freeze, - domain: "bf2:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification item number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :language, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Language associated with a resource or its parts.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Language information".freeze, - range: "bf2:Language".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Language".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :lastIssue, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Ending date of a resource and/or the sequential designations.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Multipart last issue".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :layout, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Arrangement of text, images, tactile notation, etc., in a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Layout".freeze, - range: "bf2:Layout".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Layout".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :legalDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date of legal work, or promulgation of a law, or signing of a treaty.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Date of legal work".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bf2:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :mainTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title being addressed. Possible title component.".freeze, - domain: "bf2:Title".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Main title".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :media, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Media type".freeze, - range: "bf2:Media".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Media".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :mergedToForm, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "One of two or more resources that come together to form a new resource.".freeze, - inverseOf: "bf2:mergerOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/mergerOf".freeze, label: "Merged to form".freeze, - subPropertyOf: "bf2:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :mergerOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "One of two or more resources which came together to form a new resource.".freeze, - inverseOf: "bf2:mergedToForm".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/mergedToForm".freeze, label: "Merger of".freeze, - subPropertyOf: "bf2:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :mount, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Physical material used for the support or backing to which the base material of a resource has been attached.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mount material".freeze, - range: "bf2:Mount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Mount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :musicFormat, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Layout for content of a resource that is presented in the form of musical notation, such as full score, condensed score, vocal score, etc.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Format of notated music".freeze, - range: "bf2:MusicFormat".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicFormat".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :musicKey, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Pitch and mode for music.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music key".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :musicMedium, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Instrumental, vocal, and/or other medium of performance for which a musical resource was originally conceived, written or performed.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music medium of performance".freeze, - range: "bf2:MusicMedium".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicMedium".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :musicOpusNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numeric designation of a musical work assigned by a composer, publisher, or a musicologist.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music opus number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :musicSerialNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numeric designation for musical works consecutively numbered in music reference sources.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music serial number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :musicThematicNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numeric designation for a musical work as found in a thematic index for the composer.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music thematic number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :natureOfContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Characterization that epitomizes the primary content of a resource, e.g., field recording of birdsong; combined time series analysis and graph plotting system.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Content nature".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :notation, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, movement notation, and musical notation.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notation system".freeze, - range: "bf2:Notation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :note, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "General textual information relating to a resource, such as Information about a specific copy of a resource or information about a particular attribute of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Note".freeze, - range: "bf2:Note".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Note".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :noteType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Type of note.".freeze, - domain: "bf2:Note".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Note".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Note type".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :organization, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Manner in which the resource is divided into smaller units.".freeze, - domain: "bf2:Arrangement".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Arrangement".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Organization of material".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :originDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date or date range associated with the creation of a Work.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Associated title date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bf2:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :originPlace, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Place from which the creation of the Work originated.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Associated title place".freeze, - range: "bf2:Place".freeze, - subPropertyOf: "bf2:place".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Place".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/place".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :originalVersion, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource is the original version of which this resource is a reproduction.".freeze, - inverseOf: "bf2:originalVersionOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/originalVersionOf".freeze, label: "Original version".freeze, - subPropertyOf: "bf2:derivativeOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :originalVersionOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Original version of a resource.".freeze, - inverseOf: "bf2:originalVersion".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/originalVersion".freeze, label: "Original version of".freeze, - subPropertyOf: "bf2:hasDerivative".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasDerivative".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :otherEdition, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-05-13 (symmetrical)".freeze], definition: "Resource has other available editions, for example simultaneously published language editions or reprints.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-13 (symmetrical)".freeze], label: "Other edition".freeze, - subPropertyOf: "bf2:derivativeOf".freeze, - type: "owl:SymmetricProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze, + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :otherPhysicalFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is manifested in another physical carrier.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Has other physical format".freeze, - range: "bf2:Instance".freeze, - subPropertyOf: "bf2:hasEquivalent".freeze, - type: "owl:SymmetricProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasEquivalent".freeze, + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :outerGRing, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Coordinate pairs that identify the closed non-intersecting boundary of the area covered.".freeze, - domain: "bf2:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic outer G ring area covered".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :part, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Part of a resource to which information applies.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Part".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partName, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Part or section name of a title. Possible title component.".freeze, - domain: "bf2:Title".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Part title".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Part or section enumeration of a title. Possible title component.".freeze, - domain: "bf2:Title".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Part number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partOf, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource in which the described resource is physically or logically contained.".freeze, - inverseOf: "bf2:hasPart".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasPart".freeze, label: "Is part of".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :pattern, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Pattern of arrangement of materials within a unit.".freeze, - domain: "bf2:Arrangement".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Arrangement".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Arrangement of material".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :physicalLocation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Location in the holding agency where the item is shelved or stored.".freeze, - domain: "bf2:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Storing or shelving location".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :place, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Geographic location or place entity associated with a resource or element of description, such as the place associated with the publication, printing, distribution, issue, release or production of a resource, place of an event.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Place".freeze, - range: "bf2:Place".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Place".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :polarity, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Relationship of the colors and tones in an image to the colors and tones of the object reproduced.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Polarity".freeze, - range: "bf2:Polarity".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Polarity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :precededBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that precedes the resource being described, e.g., is earlier in time or before in narrative.".freeze, - inverseOf: "bf2:succeededBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, label: "Preceded by".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :preferredCitation, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Citation to the resource preferred by its custodian of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Preferred citation".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :productionMethod, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Process used to produce a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Production method".freeze, - range: "bf2:ProductionMethod".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ProductionMethod".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :projection, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze], definition: "Method or system used to represent the surface of the earth or of a celestial sphere on a plane.".freeze, - domain: "bf2:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze], label: "Cartographic projection".freeze, - range: "bf2:Projection".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Projection".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :projectionCharacteristic, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (fixed typo in property name)".freeze], definition: "Technical specification relating to the projection of a motion picture film.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (fixed typo in property name)".freeze], label: "Projection characteristic".freeze, - range: "bf2:ProjectionCharacteristic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :provisionActivity, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (revised label and slightly revised definition)".freeze], definition: "Place, name, and/or date information relating to the publication, printing, distribution, issue, release, production, etc. of a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (revised label and slightly revised definition)".freeze], label: "Provision activity".freeze, - range: "bf2:ProvisionActivity".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :provisionActivityStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Statement relating to providers of a resource; usually transcribed.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Provider statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :qualifier, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Qualifier of information, such as an addition to a title to make it unique or qualifying information associated with an identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Qualifier".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :reductionRatio, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Size of a micro-image in relation to the original from which it was produced.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Reduction ratio".freeze, - range: "bf2:ReductionRatio".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ReductionRatio".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :referencedBy, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that references the described resource".freeze, - inverseOf: "bf2:references".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/references".freeze, label: "Referenced by".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :references, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that is referenced by the described resource.".freeze, - inverseOf: "bf2:referencedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/referencedBy".freeze, label: "References".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedTo, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Any relationship between Work, Instance, and Item resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Related resource".freeze, - type: "owl:SymmetricProperty".freeze + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :replacedBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Later resource used in place of an earlier resource, usually because the later resource contains updated or new information.".freeze, - inverseOf: "bf2:replacementOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/replacementOf".freeze, label: "Succeeded by".freeze, - subPropertyOf: "bf2:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :replacementOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Earlier resource whose content has been replaced by a later resource, usually because the later resource contains updated or new information.".freeze, - inverseOf: "bf2:replacedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/replacedBy".freeze, label: "Preceded by".freeze, - subPropertyOf: "bf2:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :reproductionOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that is a reproduction of another Resource.".freeze, - domain: "bf2:Instance".freeze, - inverseOf: "bf2:hasReproduction".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasReproduction".freeze, label: "Reproduction of".freeze, - range: "bf2:Instance".freeze, - subPropertyOf: "bf2:hasEquivalent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasEquivalent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :responsibilityStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Statement relating to any persons, families, or corporate bodies responsible for the creation of, or contributing to the content of a resource; usually transcribed.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Creative responsibility statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :review, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Review of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Review content".freeze, - range: "bf2:Review".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Review".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :role, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Changed from data to object property, adjusted label and definition)".freeze], definition: "Function provided by a contributor, e.g., author, illustrator, etc.".freeze, - domain: "bf2:Contribution".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Contribution".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Changed from data to object property, adjusted label and definition)".freeze], label: "Contributor role".freeze, - range: "bf2:Role".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Role".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :scale, comment: "Used with Work or Instance".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze], definition: "Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents, e.g., for images or cartographic resources.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze], label: "Scale".freeze, - range: "bf2:Scale".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Scale".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :schedulePart, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Designates whether the classification number is from the standard or optional part of a schedule or table.".freeze, - domain: "bf2:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification designation".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :separatedFrom, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that spun off a part of its content to form a new resource.".freeze, - inverseOf: "bf2:continuedInPartBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/continuedInPartBy".freeze, label: "Separated from".freeze, - subPropertyOf: "bf2:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :seriesEnumeration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Series enumeration of the resource; usually transcribed.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Series enumeration".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :seriesOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that is a part of a larger resource.".freeze, - inverseOf: "bf2:hasSeries".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasSeries".freeze, label: "Series container of".freeze, - subPropertyOf: "bf2:hasPart".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :seriesStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Statement of the series the resource is in; usually transcribed; includes the ISSN if applicable.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Series statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :shelfMark, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Piece identifier, such as a call or other type of number.".freeze, - domain: "bf2:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Shelf mark".freeze, - range: "bf2:ShelfMark".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :soundCharacteristic, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-21 (fixed name and range typos)".freeze], definition: "Technical specification relating to the encoding of sound in a resource.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-21 (fixed name and range typos)".freeze], label: "Sound characteristic".freeze, - range: "bf2:SoundCharacteristic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :soundContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Indication of whether the production of sound is an integral part of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Sound content".freeze, - range: "bf2:SoundContent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/SoundContent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :source, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource from which value or label came or was derived, such as the formal source/scheme from which a classification number is taken or derived, list from which an agent name is taken or derived, source within which an identifier is unique.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Source".freeze, - range: "bf2:Source".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Source".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :spanEnd, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Ending number of classification number span.".freeze, - domain: "bf2:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification number span end".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :splitInto, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "One of two or more resources resulting from the division of an earlier resource into separate resources.".freeze, - inverseOf: "bf2:continuesInPart".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/continuesInPart".freeze, label: "Split into".freeze, - subPropertyOf: "bf2:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :status, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Designation of the validity or position of something, such as indication that the classification number is canceled or invalid, circulation availability of an item, indication of whether the identifier is canceled or invalid.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Status".freeze, - range: "bf2:Status".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Status".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subject, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Subject term(s) describing a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Subject".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sublocation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific place within the holding entity where the item is located or made available.".freeze, - domain: "bf2:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Held in sublocation".freeze, - range: "bf2:Sublocation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Sublocation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subseriesEnumeration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Subseries enumeration of the resource; usually transcribed.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Subseries enumeration".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :subseriesOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Series resource of which the described resource is a part.".freeze, - inverseOf: "bf2:hasSubseries".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasSubseries".freeze, label: "Subseries of".freeze, - subPropertyOf: "bf2:hasPart".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subseriesStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Statement of the subseries the resource is in; usually transcribed; includes the ISSN if applicable.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Subseries statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :subtitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Word, character, or group of words and/or characters that contains the remainder of the title after the main title. Possible title component.".freeze, - domain: "bf2:Title".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Subtitle".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :succeededBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that succeeds the resource being described, e.g., later in time or after in a narrative.".freeze, - inverseOf: "bf2:precededBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, label: "Succeeded by".freeze, - subPropertyOf: "bf2:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :summary, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Summary or abstract of the resource described.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Summary content".freeze, - range: "bf2:Summary".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Summary".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supplement, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that updates or otherwise complements the predominant resource.".freeze, - inverseOf: "bf2:supplementTo".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/supplementTo".freeze, label: "Supplement".freeze, - subPropertyOf: "bf2:accompaniedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supplementTo, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that is updated or otherwise complemented by the augmenting resource.".freeze, - inverseOf: "bf2:supplement".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/supplement".freeze, label: "Supplement to".freeze, - subPropertyOf: "bf2:accompanies".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supplementaryContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Material such as an index, bibliography, appendix intended to supplement the primary content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Supplementary material".freeze, - range: "bf2:SupplementaryContent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/SupplementaryContent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :systemRequirement, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property, changed property name from plural to singular)".freeze], definition: "Equipment or system requirement beyond what is normal and obvious for the type of carrier or type of file, such as make and model of equipment or hardware, operating system, amount of memory, programming language, other necessary software, any plug-ins or peripherals required to play, view, or run the resource, etc.".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property, changed property name from plural to singular)".freeze], label: "Equipment or system requirements".freeze, - range: "bf2:SystemRequirement".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/SystemRequirement".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :table, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number of the table from which the classification number in a subdivision entry is taken, e.g., a DDC table.".freeze, - domain: "bf2:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification table identification".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :tableOfContents, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Table of contents of the described resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Table of contents content".freeze, - range: "bf2:TableOfContents".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/TableOfContents".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :tableSeq, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Sequence number or other identifier for an internal classification sub arrangement or add in a classification scheme.".freeze, - domain: "bf2:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification table sequence number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :temporalCoverage, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Time period coverage of the content of the resource.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Temporal coverage".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :title, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Name given to a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Title resource".freeze, - range: "bf2:Title".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :translation, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze], definition: "Resource that translates the text of the source entity into a language different from that of the original.".freeze, - inverseOf: "bf2:translationOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/translationOf".freeze, label: "Translation as".freeze, - subPropertyOf: "bf2:hasDerivative".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasDerivative".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :translationOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze], definition: "Resource that has been translated, i.e., the text is expressed in a language different from that of the original resource.".freeze, - inverseOf: "bf2:translation".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/translation".freeze, label: "Translation of".freeze, - subPropertyOf: "bf2:derivativeOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :unit, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Units in which a value is expressed, such as the physical or logical constituent of a resource (e.g., a volume, audiocassette, film reel, a map, a digital file).".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Type of unit".freeze, - range: "bf2:Unit".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Unit".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usageAndAccessPolicy, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "General statement of allowances and restrictions on access to a resource, including retention, reproduction, access, and lending.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Use and access condition".freeze, - range: "bf2:UsageAndAccessPolicy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :variantType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Type of title variation, e.g., acronym, cover, spine, earlier, later, series version.".freeze, - domain: "bf2:VariantTitle".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Variant title type".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :version, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Term or terms that identify works such as arranged for music, vulgate for religious work, etc.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Version".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :videoCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the encoding of video images in a resource".freeze, - domain: "bf2:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Video characteristic".freeze, - range: "bf2:VideoCharacteristic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/VideoCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :voice, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Voice for which a musical work is appropriate, such as soprano, tenor, mixed.".freeze, - domain: "bf2:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Voice".freeze, - range: "bf2:MusicVoice".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicVoice".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :voiceType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific type of voice group, such as chorus, solo.".freeze, - domain: "bf2:MusicVoice".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/MusicVoice".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Type of voice".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze end end diff --git a/lib/rdf/vocab/bibframe.rb b/lib/rdf/vocab/bibframe.rb index e15df20..0b33333 100644 --- a/lib/rdf/vocab/bibframe.rb +++ b/lib/rdf/vocab/bibframe.rb @@ -3,3810 +3,2490 @@ # This file generated automatically using rdf vocabulary format from http://id.loc.gov/ontologies/bibframe/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # BIBFRAME vocabulary - # # @version 2.0.1 - # class Bibframe < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :AbbreviatedTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AccessPolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AcquisitionSource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdminMetadata - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ansi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AppliedMaterial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Archival - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Arrangement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AspectRatio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Audio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioIssueNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioTake - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Barcode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BaseMaterial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastStandard - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Capture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Carrier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cartographic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CartographicDataType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CartographicObjectType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cartography - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Chronology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Classification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationDdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationLcc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationNlm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationUdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Coden - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollectiveTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ColorContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Content - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContentAccessibility - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Contribution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CopyrightNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CopyrightRegistration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CoverArt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dataset - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DescriptionAuthentication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DescriptionConventions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dissertation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DissertationIdentifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Distribution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Doi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ean - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Electronic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Emulsion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EncodedBitrate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EncodingFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Enumeration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnumerationAndChronology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Extent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Family - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FileSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FileType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fingerprint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FontSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Frequency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Generation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GenerationProcess - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GenreForm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeographicCoverage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GrooveCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gtin14Number - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hdl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Identifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Illustration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImmediateAcquisition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Instance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :IntendedAudience - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Isan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Isbn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ismn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Isni - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Iso - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Isrc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Issn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :IssnL - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Issuance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Istc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Iswc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Item - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Jurisdiction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :KeyTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Language - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Layout - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LcOverseasAcq - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lccn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Local - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manufacture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manuscript - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MatrixNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Media - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Meeting - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MixedMaterial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovementNotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovingImage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Multimedia - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicDistributorNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicEnsemble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicInstrument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicMedium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicNotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicPlate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicPublisherNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicVoice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Nbn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotatedMovement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotatedMusic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Notation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Note - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Object - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ObjectCount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParallelTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Place - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlaybackChannels - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlaybackCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlayingSpeed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Polarity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PostalRegistration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PresentationFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Print - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Production - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductionMethod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Projection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProjectionCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProjectionSpeed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProvisionActivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Publication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublisherNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecordingMedium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecordingMethod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReductionRatio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RegionalEncoding - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReportNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resolution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RetentionPolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Review - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Role - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Scale - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Script - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMark - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMarkDdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMarkLcc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMarkNlm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShelfMarkUdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sici - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoundCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoundContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Source - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Status - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :StillImage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :StockNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Strn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :StudyNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sublocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Summary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SupplementaryContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SystemRequirement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TableOfContents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tactile - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TactileNotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TapeConfig - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Temporal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Text - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Title - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Topic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrackConfig - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Unit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Upc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Urn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsageAndAccessPolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsePolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VariantTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoRecordingNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Work - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :absorbed - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :absorbedBy - # - # # Expected value Work, Instance or Item - # # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :accompaniedBy - # - # # Expected value Work, Instance or Item - # # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :accompanies - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquisitionSource - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquisitionTerms - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :adminMetadata - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :agent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :appliedMaterial - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrangement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ascensionAndDeclination - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :aspectRatio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :assigner - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :awards - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :baseMaterial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookFormat - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :capture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :carrier - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :cartographicAttributes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :changeDate - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :classification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :classificationPortion - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :code - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :colorContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :content - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentAccessibility - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :continuedBy - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :continuedInPartBy - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :continues - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :continuesInPart - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :contribution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coordinates - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightDate - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightRegistration - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :count - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :coverArt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :creationDate - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :credits - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :custodialHistory - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataSource - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :date - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :degree - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivativeOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivedFrom - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :descriptionAuthentication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :descriptionConventions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :descriptionLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :descriptionModifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :digitalCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dimensions - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :dissertation - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :edition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :editionEnumeration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :editionStatement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :electronicLocator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :emulsion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ensemble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ensembleType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :enumerationAndChronology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :equinox - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventContentOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :exclusionGRing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :expressionOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :extent - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :findingAid - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :findingAidOf - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstIssue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fontSize - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :frequency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generationProcess - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :genreForm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geographicCoverage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grantingInstitution - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDerivative - # - # # Expected value Work, Instance or Item - # # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEquivalent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasExpression - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInstance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasItem - # - # # Expected value Work, Instance or Item - # # - # # Used with 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSeries - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSubseries - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :heldBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hierarchicalLevel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :historyOfWork - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifiedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifies - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :illustrativeContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :immediateAcquisition - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :index - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :indexOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :instanceOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrumentalType - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :intendedAudience - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuedWith - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemPortion - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastIssue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :layout - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainTitle - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :media - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :mergedToForm - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :mergerOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mount - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicKey - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicMedium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicOpusNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicSerialNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicThematicNumber - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :natureOfContent - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :notation - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :note - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :noteType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :organization - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originPlace - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalVersion - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalVersionOf - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherEdition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherPhysicalFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :outerGRing - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :part - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :partName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :partNumber - # - # # Expected value Work, Instance or Item - # # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pattern - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :physicalLocation - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :place - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :polarity - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :precededBy - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :preferredCitation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionMethod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectionCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provisionActivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provisionActivityStatement - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reductionRatio - # - # # Expected value Work, Instance or Item - # # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencedBy - # - # # Expected value Work, Instance or Item - # # - # # Used with 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacedBy - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacementOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reproductionOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :responsibilityStatement - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :review - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :scale - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :schedulePart - # - # # Used with Work or Instance - # # - # # Expected value 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :seriesOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seriesStatement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shelfMark - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soundCharacteristic - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :soundContent - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :source - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spanEnd - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :splitInto - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :status - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :subject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sublocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subseriesEnumeration - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :subseriesOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subseriesStatement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subtitle - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :succeededBy - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :summary - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplement - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplementTo - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplementaryContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :systemRequirement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :table - # - # # Used with Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :tableOfContents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tableSeq - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :temporalCoverage - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :translation - # - # # Used with Work or Instance - # # - # # Expected value Work or Instance - # # @return [RDF::Vocabulary::Term] - # attr_reader :translationOf - # - # # Used with Unspecified - # # @return [RDF::Vocabulary::Term] - # attr_reader :unit - # - # # Used with Work, Instance or Item - # # @return [RDF::Vocabulary::Term] - # attr_reader :usageAndAccessPolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :variantType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoCharacteristic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :voice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :voiceType - # - # end Bibframe = Class.new(RDF::StrictVocabulary("http://id.loc.gov/ontologies/bibframe/")) do # Ontology definition ontology :"http://id.loc.gov/ontologies/bibframe/", - "dc:modified": "2020-03-06T16:54:50.319-05:00".freeze, + "http://purl.org/dc/terms/modified": "2020-03-06T16:54:50.319-05:00".freeze, + "http://www.w3.org/2002/07/owl#ontologyIRI": "http://id.loc.gov/ontologies/bibframe/".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://id.loc.gov/ontologies/bibframe-2-0-0/".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://id.loc.gov/ontologies/bibframe-2-0-1/".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "2.0.1".freeze, label: "BIBFRAME vocabulary".freeze, - "owl:ontologyIRI": "bibframe:".freeze, - "owl:priorVersion": "http://id.loc.gov/ontologies/bibframe-2-0-0/".freeze, - "owl:versionIRI": "http://id.loc.gov/ontologies/bibframe-2-0-1/".freeze, - "owl:versionInfo": "2.0.1".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AbbreviatedTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title as abbreviated for citation, indexing, and/or identification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Abbreviated title".freeze, - subClassOf: "bibframe:VariantTitle".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AccessPolicy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Access restrictions and allowances regarding access to a resource, e.g., lending policy, access restrictions, embargos.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Access policy".freeze, - subClassOf: "bibframe:UsageAndAccessPolicy".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AcquisitionSource, - "dc:modified": "2017-02-06 (New)".freeze, definition: "Information about an organization, person, etc., from which a resource may be obtained.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze, label: "Acquisition source".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AdminMetadata, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Metadata about the metadata, especially provenance information.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Administrative metadata".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Agent, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-05-13 (New subclass)".freeze], definition: "Entity having a role in a resource, such as a person or organization.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-13 (New subclass)".freeze], label: "Agent".freeze, - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Ansi, - "dc:modified": "2016-04-21 (New)".freeze, definition: "American National Standards Institute identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ANSI number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AppliedMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Physical or chemical substance applied to a base material of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Applied material".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Archival, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resources organically created, accumulated, and/or used by a person, family, or organization in the course of conduct of affairs and preserved because of their continuing value.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Archival controlled".freeze, - subClassOf: "bibframe:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Arrangement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the organization and arrangement of a collection of items. For instance, for computer files, organization and arrangement information may be the file structure and sort sequence of a file; for visual materials, this information may be how a collection is arranged.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Organization of materials information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AspectRatio, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Proportional relationship between an image's width and its height.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Aspect ratio".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Audio, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resources expressed in an audible form, including music or other sounds.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Audio".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioIssueNumber, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised property name and definition)".freeze], definition: "Number assigned by publishers of sound recordings to identify the issue designation, or serial identification, of the resource.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised property name and definition)".freeze], label: "Audio issue number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioTake, - "dc:modified": "2017-02-03 (New)".freeze, definition: "Identifier assigned to the smallest identifiable unit of a recording session, e.g., a specific recording of an individual song.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Audio recording take".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Barcode, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Moved to Identifier class group from Item group)".freeze], definition: "Optical machine-readable representation of data relating to the item to which it is attached.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Moved to Identifier class group from Item group)".freeze], label: "Barcode".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BaseMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Underlying physical material of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Base material".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BookFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Result of folding a printed sheet to form a gathering of leaves.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Book format".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BroadcastStandard, - "dc:modified": "2016-04-21 (New)".freeze, definition: "System used to format a video resource for television broadcast, e.g., HDTV, PAL.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Broadcast standard".freeze, - subClassOf: "bibframe:VideoCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VideoCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Capture, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about place and date associated with the capture (i.e., recording, filming, etc.) of the content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Capture of content".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Carrier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the format of the storage medium and housing of a carrier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Carrier type".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Cartographic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Content that represents the whole or part of the earth, any celestial body, or imaginary place at any scale.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CartographicDataType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Data type for encoding of geospatial information in a cartographic resource, e.g., raster, vector, point.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital cartographic data type".freeze, - subClassOf: "bibframe:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CartographicObjectType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Object type for encoding of geospatial information in a cartographic resource, e.g., point, line, polygon.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital cartographic object type".freeze, - subClassOf: "bibframe:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Cartography, - "dc:modified": "2016-04-25 (fixed typo in definition)".freeze, definition: "Resource that shows spatial information, including maps, atlases, globes, digital, and other cartographic resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-25 (fixed typo in definition)".freeze, label: "Cartography".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Chronology, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Dates associated with issues or items held.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Chronology".freeze, - subClassOf: "bibframe:EnumerationAndChronology".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Classification, - "dc:modified": "2016-04-21 (New)".freeze, definition: "System of coding and organizing materials according to their subject.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClassificationDdc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Dewey Decimal Classification number used for subject access.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "DDC Classification".freeze, - subClassOf: "bibframe:Classification".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClassificationLcc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Library of Congress Classification number used for subject access.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "LCC Classification".freeze, - subClassOf: "bibframe:Classification".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClassificationNlm, - "dc:modified": "2016-04-21 (New)".freeze, definition: "National Library of Medicine Classification number used for subject access".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "NLM classification".freeze, - subClassOf: "bibframe:Classification".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClassificationUdc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Universal Decimal Classification number used for subject access.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "UDC Classification".freeze, - subClassOf: "bibframe:Classification".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Coden, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier for scientific and technical periodical titles assigned by the International CODEN Section of Chemical Abstracts Service.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "CODEN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Collection, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Aggregation of resources, generally gathered together artificially.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Collection".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CollectiveTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title for a compilation of resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Collective title".freeze, - subClassOf: "bibframe:VariantTitle".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ColorContent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Color characteristics of a resource, e.g., black and white, multicolored, etc.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Color content".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Content, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the fundamental form of communication in which the content is expressed and the human sense through which it is intended to be perceived.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Content type".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ContentAccessibility, - "dc:modified": "2017-02-07 (New)".freeze, definition: "Information that assists those with a sensory impairment for greater understanding of content, e.g., captions.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-07 (New)".freeze, label: "Content accessibility information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Contribution, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Agent and role with respect to the resource being described.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Contribution".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CopyrightNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier assigned to a copyright registration or legal deposit.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Copyright-legal deposit number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CopyrightRegistration, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Class name corrected)".freeze], definition: "Copyright or Legal Deposit registration information".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Class name corrected)".freeze], label: "Copyright registration".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CoverArt, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Cover illustration of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cover art".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dataset, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Data encoded in a defined structure. Includes numeric data, environmental data,etc., used by applications software to calculate averages, correlations, etc., or to produce models, etc., but not normally displayed in its raw form.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dataset".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DescriptionAuthentication, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (fixed class name)".freeze], definition: "Indication of specific types of reviews that have been carried out on the description information.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (fixed class name)".freeze], label: "Metadata authentication".freeze, - subClassOf: "bibframe:AdminMetadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DescriptionConventions, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze], definition: "Rules used for the descriptive content of the resource description.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze], label: "Description conventions".freeze, - subClassOf: "bibframe:AdminMetadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DigitalCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital characteristic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dissertation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about a work presented as part of the formal requirements for an academic degree.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dissertation information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DissertationIdentifier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier assigned to a thesis or dissertation for identification purposes .".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dissertation Identifier".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Distribution, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information relating to distribution of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Distributor".freeze, - subClassOf: "bibframe:ProvisionActivity".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Doi, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Digital Object Identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "DOI".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Ean, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Article Identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "EAN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Electronic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is intended for manipulation by a computer, accessed either directly or remotely.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Electronic".freeze, - subClassOf: "bibframe:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Emulsion, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche, e.g., silver halide.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Emulsion".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EncodedBitrate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Speed at which streaming audio, video, etc., is designed to play, e.g., 32 kbps.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Encoded bitrate".freeze, - subClassOf: "bibframe:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EncodingFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Schema, standard, etc., used to encode the digital content of a resource, e.g., MP3, XML, JPEG.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Encoding format".freeze, - subClassOf: "bibframe:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Enumeration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numbering or other enumeration associated with issues or items held.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Enumeration".freeze, - subClassOf: "bibframe:EnumerationAndChronology".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EnumerationAndChronology, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numbering or other enumeration and dates associated with issues or items held.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Enumeration and chronology".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Event, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Something that happens at a certain time and location, such as a performance, speech, or athletic event, that is documented by a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Event entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Extent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number and type of units and/or subunits making up a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Extent".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Family, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Two or more persons related by birth, marriage, adoption, civil union, or similar legal status, or who otherwise present themselves as a family.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Family".freeze, - subClassOf: "bibframe:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FileSize, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number of bytes in a digital file, e.g., 162 KB.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "File size".freeze, - subClassOf: "bibframe:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FileType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "General type of data content encoded in a computer file, e.g., text file, audio file.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "File type".freeze, - subClassOf: "bibframe:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Fingerprint, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier that is used to assist in the identification of antiquarian books by recording information comprising groups of characters taken from specified positions on specified pages of the book.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Fingerprint identifier".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FontSize, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Size of the type used to represent the characters and symbols in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Font size".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Frequency, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about intervals at which the parts of a serially produced resource or the updates to an integrating resource are issued.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Frequency".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Generation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Relationship between an original carrier and the carrier of a reproduction made from the original.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Generation".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GenerationProcess, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze], definition: "Indication of the program or process used to generate the description by application of a particular transformation.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze], label: "Generation process".freeze, - subClassOf: "bibframe:AdminMetadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GenreForm, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Characteristics of works with similar plots, themes, settings, etc. (e.g., westerns, thrillers), or with a particular format of purpose (e.g., animation, short), or a combination (e.g., horror film where horror is the genre and film is the form).".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Genre/form".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GeographicCoverage, - "dc:modified": "2017-02-06 (New)".freeze, definition: "Geographic coverage of the content of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze, label: "Geographic coverage".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GrooveCharacteristic, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze, "2017-02-03 (Fixed name of property)".freeze], definition: "Groove width of an analog disc or the groove pitch of an analog cylinder, e.g., coarse groove, microgroove".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze, "2017-02-03 (Fixed name of property)".freeze], label: "Groove characteristic".freeze, - subClassOf: "bibframe:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Gtin14Number, - "dc:modified": "2017-02-03 (New)".freeze, definition: "14 digit number assigned to identify trade items as various packaging levels. GTIN-14 encompasses EAN/UCC-128 and ITF-14.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Global Trade Item Number 14".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Hdl, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Unique and persistent identifier for digital objects developed by the Corporation for National Research Initiatives.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Handle".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Identifier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Token or name that is associated with a resource, such as a URI or an ISBN.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Identifier".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Illustration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about content intended to illustrate a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Illustrative content".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ImmediateAcquisition, - "dc:modified": "2017-02-06 (New)".freeze, definition: "Information about the circumstances, e.g., source, date, method, under which the resource was directly acquired.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze, label: "Immediate acquisition".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Instance, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource reflecting an individual, material embodiment of a Work.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Instance".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IntendedAudience, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information that identifies the specific intended or target audience or intellectual level for which the content described is considered appropriate. Also used to record interest and motivation levels and special learner characteristics.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Intended audience information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Isan, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Audiovisual Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISAN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Isbn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Book Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISBN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Ismn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Music Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISMN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Isni, - "dc:modified": "2017-02-03 (New)".freeze, definition: "International Standard Name Identifier, a unique, persistent reference number for the identities of contributors to creative works.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "ISNI".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Iso, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Organization for Standardization standard number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISO number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Isrc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Recording Code.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISRC".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Issn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Serial Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISSN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IssnL, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Serial Number that links together various media versions of a continuing resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISSN-L".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Issuance, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about whether a resource is issued in one or more parts, the way it is updated, and its intended termination.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mode of issuance".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Istc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Text Code, a numbering system developed to enable the unique identification of textual works.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISTC".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Iswc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "International Standard Musical Work Code, a unique, persistent reference number for the identification of musical works.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "ISWC".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Item, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Single example of an Instance.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Item".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Jurisdiction, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Legal or political unit administering a geographic area.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Jurisdiction".freeze, - subClassOf: "bibframe:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :KeyTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Unique title for a continuing resource that is assigned by the ISSN International Center in conjunction with an ISSN.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Key title".freeze, - subClassOf: "bibframe:VariantTitle".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Language, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Language entity.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Language entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Layout, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Arrangement of text, images, tactile notation, etc., in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Layout".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LcOverseasAcq, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification number assigned by the Library of Congress to works acquired through one of its collaborative overseas acquisition programs.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "LC acquisition program".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Lccn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Library of Congress Control Number that identifies a resource description.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "LCCN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Local, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identifier established locally and not a standard number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Local identifier".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Manufacture, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information relating to manufacture of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Manufacturer".freeze, - subClassOf: "bibframe:ProvisionActivity".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Manuscript, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is written in handwriting or typescript. These are generally unique resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Manuscript".freeze, - subClassOf: "bibframe:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MatrixNumber, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], definition: "Matrix identifier assigned to the master from which a specific sound recording was pressed.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], label: "Audio matrix number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Media, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Media type".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Meeting, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Gathering of individuals or representatives of various bodies for the purpose of discussing and/or acting on topics of common interest.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Meeting".freeze, - subClassOf: "bibframe:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MixedMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource comprised of multiple types which is not driven by software; for instance, a manuscript collection of text, photographs and sound recordings.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mixed material".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Mount, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Physical material used for the support or backing to which the base material of a resource has been attached.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mount".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MovementNotation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the symbol system used to convey the content of a movement resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Movement notation used".freeze, - subClassOf: "bibframe:Notation".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MovingImage, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze], definition: "Images intended to be perceived as moving, including motion pictures (using liveaction and/or animation), video recordings of performances, events,etc.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze], label: "Moving image".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Multimedia, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Electronic resource that is a computer program (i.e., digitally encoded instructions intended to be processed and performed by a computer) or which consists of multiple media types that are software driven, such as videogames.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Software or multimedia".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicDistributorNumber, - "dc:modified": "2017-02-07 (New)".freeze, definition: "Identifier appearing on a resource assigned by a distributor to a specific audio recording, notated music publication, music-related publication, or videorecording.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-07 (New)".freeze, label: "Music distributor number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicEnsemble, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Ensemble for which a musical work is appropriate.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music ensemble".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Layout for content of a resource that is presented in the form of musical notation.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notated music format".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicInstrument, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Instrument for which a musical work is appropriate.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Musical instrument".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicMedium, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Summary statement of the medium for a musical work.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music medium information".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicNotation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the symbol system used to convey the content of a music resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music notation used".freeze, - subClassOf: "bibframe:Notation".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicPlate, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], definition: "Identifiers assigned by a music publisher or printer to the printing plates for the notated portion of a notated music publication, or an identifier that emulates the printing plate tradition in contemporary publications.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], label: "Music plate number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicPublisherNumber, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], definition: "Identifier assigned to a notated music publication other than an issue, matrix, or plate number.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze], label: "Music publisher number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicVoice, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Voice for which a musical work is appropriate.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music voice".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Nbn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "National Bibliography Number that identifies a resource description.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "NBN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NotatedMovement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Graphic, non-realized representations of movement intended to be perceived visually, e.g. dance.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notated movement".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NotatedMusic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Graphic, non-realized representations of musical works intended to be perceived visually.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notated music".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Notation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, movement notation, and musical notation.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notation".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Note, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information, usually in textual form, on attributes of a resource or some aspect of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Note".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Object, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource in a form intended to be perceived visually in three-dimensions. Includes man-made objects such as models, sculptures, clothing, and toys, as well as naturally occurring objects such as specimens mounted for viewing.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Three-dimensional object".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ObjectCount, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number of objects in encoded geospatial information in a cartographic resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital cartographic object count".freeze, - subClassOf: "bibframe:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Organization, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Corporation or group of persons and/or organizations that acts, or may act, as a unit.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Organization".freeze, - subClassOf: "bibframe:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ParallelTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title in another language and/or script.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Parallel title proper".freeze, - subClassOf: "bibframe:VariantTitle".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Person, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Individual or identity established by an individual (either alone or in collaboration with one or more other individuals).".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Person".freeze, - subClassOf: ["bibframe:Agent".freeze, "foaf:Person".freeze], - type: "owl:Class".freeze + subClassOf: ["http://id.loc.gov/ontologies/bibframe/Agent".freeze, "http://xmlns.com/foaf/0.1/Person".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Place, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Geographic location.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Place".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PlaybackChannels, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Configuration/number of sound channels used to make a recording, such as one channel for a monophonic recording, e.g., mono, stereo, quadraphonic, surround.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Configuration of playback channels".freeze, - subClassOf: "bibframe:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PlaybackCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Equalization system, noise reduction system, etc., used in making an audio recording, e.g., CCIR standard, CX encoded, Dolby.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Special playback characteristics".freeze, - subClassOf: "bibframe:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PlayingSpeed, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Speed at which an audio carrier must be operated to produce the sound intended, e.g., 78 rpm, 19 cm/s.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Playing speed".freeze, - subClassOf: "bibframe:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Polarity, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Relationship of the colors and tones in an image to the colors and tones of the object reproduced.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Polarity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PostalRegistration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number assigned to a publication for which the specified postal service permits the use of a special mailing class privilege.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Postal registration number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PresentationFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Format used in the production of a projected image, e.g., Cinerama, IMAX.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Presentation format".freeze, - subClassOf: "bibframe:ProjectionCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Print, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is printed.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Printed".freeze, - subClassOf: "bibframe:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Production, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information relating to production of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Producer".freeze, - subClassOf: "bibframe:ProvisionActivity".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProductionMethod, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Process used to produce a resource".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Production method".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Projection, - "dc:modified": "2017-02-03 (New)".freeze, definition: "Method or system used to represent the surface of the earth or of a celestial sphere on a plane.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Projection".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProjectionCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the projection of a motion picture film.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Projection characteristic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProjectionSpeed, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Speed at which a projected carrier must be operated to produce the moving image intended, e.g., 20 fps.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Projection speed".freeze, - subClassOf: "bibframe:ProjectionCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProvisionActivity, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the agent or place relating to the publication, printing, distribution, issue, release, or production of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Provider entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Publication, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information relating to publication of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Publisher".freeze, - subClassOf: "bibframe:ProvisionActivity".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PublisherNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number assigned by a publisher that is not one of the specific defined types.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Publisher number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RecordingMedium, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Type of medium used to record sound on an audio carrier, e.g., magnetic, optical.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Recording medium".freeze, - subClassOf: "bibframe:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RecordingMethod, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Method used to encode audio content for playback, e.g., analog, digital.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Type of recording".freeze, - subClassOf: "bibframe:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReductionRatio, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Size of a micro-image in relation to the original from which it was produced.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Reduction ratio".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RegionalEncoding, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification of the region of the world for which a videodisc has been encoded, e.g., region 4.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Regional encoding".freeze, - subClassOf: "bibframe:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReportNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification number of a technical report that is not a Standard Technical Report Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Technical report number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Resolution, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Clarity or fineness of detail in a digital image, expressed by the measurement of the image in pixels, etc., e.g., 3.1 megapixels.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Resolution".freeze, - subClassOf: "bibframe:DigitalCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RetentionPolicy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Policy of holding institution for retaining resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Retention policy".freeze, - subClassOf: "bibframe:UsageAndAccessPolicy".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Review, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Review of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Review".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Role, - "dc:modified": "2017-02-03 (New)".freeze, definition: "Function played or provided by a contributor, e.g., author, illustrator, etc.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Role".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Scale, - "dc:modified": "2017-02-03 (New)".freeze, definition: "Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents, e.g., for images or cartographic resources.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New)".freeze, label: "Scale".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Script, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the script, or symbol system used to convey the content of a text resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Script used".freeze, - subClassOf: "bibframe:Notation".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMark, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Piece/item identifier, such as a call or other type of number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Shelf location".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMarkDdc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Shelf mark based on Dewey Decimal Classification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "DDC call number".freeze, - subClassOf: "bibframe:ShelfMark".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMarkLcc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Shelf mark based on Library of Congress Classification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "LCC call number".freeze, - subClassOf: "bibframe:ShelfMark".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMarkNlm, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Shelf mark based on National Library of Medicine Classification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "NLM call number".freeze, - subClassOf: "bibframe:ShelfMark".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShelfMarkUdc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Shelf mark based on Universal Decimal Classification.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "UDC call number".freeze, - subClassOf: "bibframe:ShelfMark".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Sici, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Serial Item and Contribution Identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "SICI".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SoundCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the encoding of sound in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Sound characteristic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SoundContent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Indication of whether the production of sound is an integral part of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Sound content".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Source, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource from which value or label came or was derived.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Source".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Status, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Designation of the validity or position of something, e.g., whether something is incorrect or available.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Status".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StillImage, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource expressed through line, shape, shading, etc., intended to be perceived visually as a still image or images in two dimensions. Includes two-dimensional images and slides and transparencies.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Still image".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StockNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification number used for stock purposes and assigned by agencies such as distributors, publishers, or vendors.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Stock number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Strn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Standard Technical Report Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "STRN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StudyNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Identification number for a computer data file.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Study number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Sublocation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific place within the holding entity where the item is located or made available.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Sublocation".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Summary, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Description of the content of a resource, such as an abstract, summary, etc..".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Summary".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SupplementaryContent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Index, bibliography, appendix, etc. intended to supplement the primary content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Supplementary material".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SystemRequirement, - "dc:modified": "2017-02-06 (New)".freeze, definition: "Equipment or system requirements beyond what is normal and obvious for the type of carrier or type of file, such as make and model of equipment or hardware, operating system, amount of memory, programming language, other necessary software, any plug-ins or peripherals required to play, view, or run the resource, etc.".freeze, + "http://purl.org/dc/terms/modified": "2017-02-06 (New)".freeze, label: "System Requirement".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TableOfContents, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Table of contents of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Table of contents".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Tactile, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is intended to be perceived by touch.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Tactile material".freeze, - subClassOf: "bibframe:Instance".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TactileNotation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on the symbol system used to convey the content of a tactile resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Tactile notation used".freeze, - subClassOf: "bibframe:Notation".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TapeConfig, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number of tracks on an audiotape, e.g., 12 track.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Tape configuration".freeze, - subClassOf: "bibframe:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Temporal, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Chronological period.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Temporal concept".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Text, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource intended to be perceived visually and understood through the use of language in written or spoken form.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Text".freeze, - subClassOf: "bibframe:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Title, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Definition changed)".freeze], definition: "Title information relating to a resource: work title, preferred title, instance title, transcribed title, translated title, variant form of title, etc.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Definition changed)".freeze], label: "Title entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Topic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Concept or area of knowledge.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Topic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TrackConfig, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Configuration of the audio track on a sound-track film, e.g., center track, edge track.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Track configuration".freeze, - subClassOf: "bibframe:SoundCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Unit, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Units in which a value is expressed.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Unit".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Upc, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Universal Product Code.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "UPC".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Urn, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Uniform Resource Number.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "URN".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :UsageAndAccessPolicy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "General statement of allowances and restrictions on access to a resource, including retention, reproduction, access, and lending.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Use and access conditions".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :UsePolicy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Usage limitations placed on a resource with respect to reproduction, publication, exhibition, etc..".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Use policy".freeze, - subClassOf: "bibframe:UsageAndAccessPolicy".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VariantTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title associated with the resource that is different from the Work or Instance title.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Title variation".freeze, - subClassOf: "bibframe:Title".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VideoCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the encoding of video images in a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Video characteristic".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VideoFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Standard, etc., used to encode the analog video content of a resource, e.g., Beta, 8mm.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Video format".freeze, - subClassOf: "bibframe:VideoCharacteristic".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/VideoCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VideoRecordingNumber, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected case in class name)".freeze], definition: "Number assigned by a publisher to a video recording.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected case in class name)".freeze], label: "Video recording number".freeze, - subClassOf: "bibframe:Identifier".freeze, - type: "owl:Class".freeze + subClassOf: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Work, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource reflecting a conceptual essence of a cataloging resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Work".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :absorbed, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that has been incorporated into another resource.".freeze, - inverseOf: "bibframe:absorbedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/absorbedBy".freeze, label: "Absorption of".freeze, - subPropertyOf: "bibframe:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :absorbedBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that incorporates another resource.".freeze, - inverseOf: "bibframe:absorbed".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/absorbed".freeze, label: "Absorbed by".freeze, - subPropertyOf: "bibframe:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :accompaniedBy, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that accompanies the described resource.".freeze, - inverseOf: "bibframe:accompanies".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, label: "Accompanied by".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :accompanies, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that adds to or is issued with the described resource.".freeze, - inverseOf: "bibframe:accompaniedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze, label: "Accompanies".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :acquisitionSource, comment: "Used with Work or Instance".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property".freeze, "slight change to definition)".freeze], definition: "Information about an organization, person, etc., from which a resource may be obtained.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property".freeze, "slight change to definition)".freeze], label: "Source of acquisition".freeze, - range: "bibframe:AcquisitionSource".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/AcquisitionSource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :acquisitionTerms, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Conditions under which the publisher, distributor, etc., will normally supply a resource, e.g., price of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Terms of acquisition".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :adminMetadata, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Metadata about the metadata, especially provenance information.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Administrative metadata".freeze, - range: "bibframe:AdminMetadata".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :agent, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Entity associated with a resource or element of description, such as the name of the entity responsible for the content or of the publication, printing, distribution, issue, release or production of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Associated agent".freeze, - range: "bibframe:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :appliedMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Physical or chemical substance applied to a base material of a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Applied material".freeze, - range: "bibframe:AppliedMaterial".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/AppliedMaterial".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :arrangement, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the organization and arrangement of a collection of resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Organization and arrangement".freeze, - range: "bibframe:Arrangement".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Arrangement".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :ascensionAndDeclination, - "dc:modified": "2016-04-21 (New)".freeze, definition: "System for identifying the location of a celestial object in the sky covered by the cartographic content of a resource using the angles of right ascension and declination.".freeze, - domain: "bibframe:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic ascension and declination".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :aspectRatio, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Proportional relationship between an image's width and its height.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Aspect ratio".freeze, - range: "bibframe:AspectRatio".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/AspectRatio".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :assigner, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Entity that assigned the metadata, such as the entity that assigned a classification number, entity that assigned a name, entity that assigned an identifier.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Assigner".freeze, - range: "bibframe:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :awards, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information on awards associated with the described resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Award note".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :baseMaterial, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Underlying physical material of a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Base material".freeze, - range: "bibframe:BaseMaterial".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/BaseMaterial".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :bookFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Result of folding a printed sheet to form a gathering of leaves.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Book format".freeze, - range: "bibframe:BookFormat".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/BookFormat".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :capture, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about place and date associated with the capture (e.g., recording, filming) of the content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Capture of content".freeze, - range: "bibframe:Capture".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Capture".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :carrier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the format of the storage medium and housing of a carrier.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Carrier type".freeze, - range: "bibframe:Carrier".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Carrier".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :cartographicAttributes, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Cartographic data that identifies characteristics of the resource, such as coordinates, projection, etc.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic data".freeze, - range: "bibframe:Cartographic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :changeDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date or date and time on which the metadata was modified.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description change date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibframe:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :classification, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Classification number in any scheme.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification".freeze, - range: "bibframe:Classification".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :classificationPortion, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Classification number (single class number or beginning number of a span) that indicates the subject by applying a formal system of coding and organizing resources.".freeze, - domain: "bibframe:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :code, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "String of characters that serves as a code representing information.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Code".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :colorContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Color characteristics, e.g., black and white, multicolored.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Color content".freeze, - range: "bibframe:ColorContent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ColorContent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :content, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the fundamental form of communication in which the content is expressed and the human sense through which it is intended to be perceived.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Content type".freeze, - range: "bibframe:Content".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Content".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :contentAccessibility, comment: "Used with Work or Instance".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze, "2017-03-15 fixed typo in range".freeze], definition: "Information that assists those with a sensory impairment for greater understanding of content, e.g., captions.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze, "2017-03-15 fixed typo in range".freeze], label: "Content accessibility information".freeze, - range: "bibframe:ContentAccessibility".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ContentAccessibility".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :continuedBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource whose content continues an earlier resource under a new title.".freeze, - inverseOf: "bibframe:continues".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/continues".freeze, label: "Continued by".freeze, - subPropertyOf: "bibframe:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :continuedInPartBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource part of whose content separated from an earlier resource to form a new resource.".freeze, - inverseOf: "bibframe:separatedFrom".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/separatedFrom".freeze, label: "Continued in part by".freeze, - subPropertyOf: "bibframe:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :continues, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that is continued by the content of a later resource under a new title.".freeze, - inverseOf: "bibframe:continuedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/continuedBy".freeze, label: "Continuation of".freeze, - subPropertyOf: "bibframe:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :continuesInPart, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that split into two or more separate resources with new titles.".freeze, - inverseOf: "bibframe:splitInto".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/splitInto".freeze, label: "Continuation in part of".freeze, - subPropertyOf: "bibframe:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :contribution, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected label)".freeze], definition: "Agent and its role in relation to the resource.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected label)".freeze], label: "Contributor and role".freeze, - range: "bibframe:Contribution".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Contribution".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :coordinates, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Mathematical system for identifying the area covered by the cartographic content of a resource, expressed either by means of longitude and latitude on the surface of planets or by the angles of right ascension and declination for celestial cartographic content.".freeze, - domain: "bibframe:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic coordinates".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :copyrightDate, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date associated with a claim of protection under copyright or a similar regime.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Copyright date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibframe:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :copyrightRegistration, comment: "Used with Work or Instance".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Corrected expected value)".freeze], definition: "Copyright and Legal Deposit registration information".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Corrected expected value)".freeze], label: "Copyright registration information".freeze, - range: "bibframe:CopyrightRegistration".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/CopyrightRegistration".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :count, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number associated with a measure of units, such as the number of units and/or subunits making up a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Number of units".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :coverArt, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Cover art image of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cover art".freeze, - range: "bibframe:CoverArt".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/CoverArt".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :creationDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date or date and time on which the original metadata first created.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description creation date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibframe:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :credits, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information in note form of credits for persons or organizations who have participated in the creation and/or production of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Credits note".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :custodialHistory, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the provenance, such as origin, ownership and custodial history (chain of custody), of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Custodial history".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :dataSource, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (updated range)".freeze], definition: "Resource that is a data source to which the described resource is related. It may contain information about other files, printed sources, or collection procedures.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (updated range)".freeze], label: "Data source".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :date, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date designation associated with a resource or element of description, such as date of title variation; year a degree was awarded; date associated with the publication, printing, distribution, issue, release or production of a resource. May be date typed.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Date".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :degree, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Degree for which author was a candidate.".freeze, - domain: "bibframe:Dissertation".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Dissertation".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Degree".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :derivativeOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Source work from which the described resource is derived.".freeze, - inverseOf: "bibframe:hasDerivative".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasDerivative".freeze, label: "Is derivative of".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :derivedFrom, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Link to the metadata that was the source of the data.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Source metadata".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :descriptionAuthentication, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Indication of specific types of reviews that have been carried out on the description information.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description authentication".freeze, - range: "bibframe:DescriptionAuthentication".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/DescriptionAuthentication".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :descriptionConventions, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed domain name)".freeze], definition: "Rules used for the descriptive content of the resource description.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed domain name)".freeze], label: "Description conventions".freeze, - range: "bibframe:DescriptionConventions".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/DescriptionConventions".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :descriptionLanguage, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Language used for the metadata.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description language".freeze, - range: "bibframe:Language".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Language".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :descriptionModifier, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Agency that modified a description.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description modifier".freeze, - range: "bibframe:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :digitalCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Digital characteristic".freeze, - range: "bibframe:DigitalCharacteristic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/DigitalCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :dimensions, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Measurements of the carrier or carriers and/or the container of a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dimensions".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :dissertation, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Work presented as part of the formal requirements for an academic degree.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Dissertation Information".freeze, - range: "bibframe:Dissertation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Dissertation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :duration, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the playing time, running time, etc. of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Duration".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :edition, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Edition of the classification scheme, such as full, abridged or a number, when a classification scheme designates editions.".freeze, - domain: "bibframe:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification scheme edition".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :editionEnumeration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Enumeration of the edition; usually transcribed.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Edition enumeration".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :editionStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information identifying the edition or version of the resource and associated statements of responsibility for the edition; usually transcribed.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Edition statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :electronicLocator, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Electronic location from which the resource is available.".freeze, - domain: "bibframe:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Electronic location".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :emulsion, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche, e.g., silver halide.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Emulsion".freeze, - range: "bibframe:Emulsion".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Emulsion".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :ensemble, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Ensemble for which a musical work is appropriate.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Ensemble".freeze, - range: "bibframe:MusicEnsemble".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicEnsemble".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :ensembleType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific type of ensemble, such as orchestra, band, guitar ensemble.".freeze, - domain: "bibframe:MusicEnsemble".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/MusicEnsemble".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Ensemble type".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :enumerationAndChronology, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numbering and dates of issues or items held.".freeze, - domain: "bibframe:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Numbering or other enumeration and dates associated with issues or items held.".freeze, - range: "bibframe:EnumerationAndChronology".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/EnumerationAndChronology".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :equinox, - "dc:modified": "2016-04-21 (New)".freeze, definition: "One of two points of intersection of the ecliptic and the celestial equator, occupied by the sun when its declination is 0 degrees.".freeze, - domain: "bibframe:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic equinox".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :eventContent, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Work whose content is the described event.".freeze, - domain: "bibframe:Event".freeze, - inverseOf: "bibframe:eventContentOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Event".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/eventContentOf".freeze, label: "Event content".freeze, - range: "bibframe:Work".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :eventContentOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Event that is the content of the described work.".freeze, - domain: "bibframe:Work".freeze, - inverseOf: "bibframe:eventContent".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/eventContent".freeze, label: "Has event content".freeze, - range: "bibframe:Event".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Event".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :exclusionGRing, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Coordinate pairs that identify the closed non-intersecting boundary of the area contained within the G-polygon outer ring that is excluded.".freeze, - domain: "bibframe:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic G ring area excluded".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :expressionOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Work that the described Work is an expression of. For use to connect Works under FRBR/RDA rules.".freeze, - domain: "bibframe:Work".freeze, - inverseOf: "bibframe:hasExpression".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasExpression".freeze, label: "Expression of".freeze, - range: "bibframe:Work".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :extent, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number and type of units and/or subunits making up a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Extent".freeze, - range: "bibframe:Extent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Extent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :findingAid, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Relationship for archival, visual, and manuscript resources to a finding aid or similar control materials.".freeze, - inverseOf: "bibframe:findingAidOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/findingAidOf".freeze, label: "Finding aid".freeze, - subPropertyOf: "bibframe:accompaniedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :findingAidOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Finding aid or similar control materials for archival, visual, and manuscript resources.".freeze, - inverseOf: "bibframe:findingAid".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/findingAid".freeze, label: "Finding aid for".freeze, - subPropertyOf: "bibframe:accompanies".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :firstIssue, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Beginning date of a resource and/or the sequential designations.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Multipart first issue".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :fontSize, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Size of the type used to represent the characters and symbols in a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Font size".freeze, - range: "bibframe:FontSize".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/FontSize".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :frequency, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Intervals at which the parts of a serially produced resource or the updates to an integrating resource are issued.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Frequency".freeze, - range: "bibframe:Frequency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Frequency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Relationship between an original carrier and the carrier of a reproduction made from the original.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Generation".freeze, - range: "bibframe:Generation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Generation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generationDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date of conversion of the metadata from another format.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Date generated".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibframe:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :generationProcess, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Indication of the program or process used to generate the description by application of a particular transformation.".freeze, - domain: "bibframe:AdminMetadata".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/AdminMetadata".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Description generation".freeze, - range: "bibframe:GenerationProcess".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/GenerationProcess".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :genreForm, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Form category or genre to which a resource belongs".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Genre/form".freeze, - range: "bibframe:GenreForm".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/GenreForm".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :geographicCoverage, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze], definition: "Geographic coverage of the content of the resource.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze], label: "Geographic coverage".freeze, - range: "bibframe:GeographicCoverage".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/GeographicCoverage".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :grantingInstitution, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Name of degree granting institution.".freeze, - domain: "bibframe:Dissertation".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Dissertation".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Degree issuing institution".freeze, - range: "bibframe:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDerivative, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that is a modification of the described work.".freeze, - inverseOf: "bibframe:derivativeOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze, label: "Has derivative".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEquivalent, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource embodies the same content as the described resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Equivalence".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:SymmetricProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :hasExpression, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Work that is an expression of a described Work. For use to relate Works under FRBR/RDA rules.".freeze, - domain: "bibframe:Work".freeze, - inverseOf: "bibframe:expressionOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/expressionOf".freeze, label: "Expressed as".freeze, - range: "bibframe:Work".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasInstance, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Instance is related to described Work. For use to connect Works to Instances in the BIBFRAME structure.".freeze, - domain: "bibframe:Work".freeze, - inverseOf: "bibframe:instanceOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/instanceOf".freeze, label: "Instance of Work".freeze, - range: "bibframe:Instance".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasItem, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze], definition: "Item which is an example of the described Instance.".freeze, - domain: "bibframe:Instance".freeze, - inverseOf: "bibframe:itemOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/itemOf".freeze, label: "Has holding".freeze, - range: "bibframe:Item".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPart, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that is included either physically or logically in the described resource".freeze, - inverseOf: "bibframe:partOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/partOf".freeze, label: "Has part".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasReproduction, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that reproduces another Resource.".freeze, - domain: "bibframe:Instance".freeze, - inverseOf: "bibframe:reproductionOf".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/reproductionOf".freeze, label: "Reproduced as".freeze, - range: "bibframe:Instance".freeze, - subPropertyOf: "bibframe:hasEquivalent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasEquivalent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSeries, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource in which the part has been issued; the title of the larger resource appears on the part.".freeze, - inverseOf: "bibframe:seriesOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/seriesOf".freeze, label: "In series".freeze, - subPropertyOf: "bibframe:partOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/partOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSubseries, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "series resource that is part of another series.".freeze, - inverseOf: "bibframe:subseriesOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/subseriesOf".freeze, label: "Subseries".freeze, - subPropertyOf: "bibframe:partOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/partOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :heldBy, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Entity holding the item or from which it is available.".freeze, - domain: "bibframe:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Held by".freeze, - range: "bibframe:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hierarchicalLevel, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Hierarchical position of the described materials relative to other material from the same source.".freeze, - domain: "bibframe:Arrangement".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Arrangement".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Hierarchical level of material".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :historyOfWork, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about the history of a Work.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "History of the work".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identifiedBy, comment: "Used with Unspecified".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-05-04 (New inverse)".freeze], definition: "Character string associated with a resource that serves to differentiate that resource from other resources, i.e., that uniquely identifies an entity.".freeze, - inverseOf: "bibframe:identifies".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-05-04 (New inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/identifies".freeze, label: "Identifier".freeze, - range: "bibframe:Identifier".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :identifies, - "dc:modified": "2017-02-03 (New inverse)".freeze, definition: "Resource that is associated with a character string that serves to differentiate one resource from another.".freeze, - domain: "bibframe:Identifier".freeze, - inverseOf: "bibframe:identifiedBy".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Identifier".freeze, + "http://purl.org/dc/terms/modified": "2017-02-03 (New inverse)".freeze, + inverseOf: "http://id.loc.gov/ontologies/bibframe/identifiedBy".freeze, label: "Resource identified".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :illustrativeContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information about content intended to illustrate a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Illustrative content information".freeze, - range: "bibframe:Illustration".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Illustration".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :immediateAcquisition, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze], definition: "Information about the circumstances, e.g., source, date, method, under which the resource was directly acquired.".freeze, - domain: "bibframe:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze], label: "Immediate acquisition".freeze, - range: "bibframe:ImmediateAcquisition".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ImmediateAcquisition".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :index, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected label)".freeze], definition: "Resource has an accompanying index".freeze, - inverseOf: "bibframe:indexOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected label)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/indexOf".freeze, label: "Has index".freeze, - subPropertyOf: "bibframe:accompaniedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :indexOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Index that accompanies a resource.".freeze, - inverseOf: "bibframe:index".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/index".freeze, label: "Index to".freeze, - subPropertyOf: "bibframe:accompanies".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :instanceOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Work the Instance described instantiates or manifests. For use to connect Instances to Works in the BIBFRAME structure.".freeze, - domain: "bibframe:Instance".freeze, - inverseOf: "bibframe:hasInstance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasInstance".freeze, label: "Instance of".freeze, - range: "bibframe:Work".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :instrument, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Instrument for which a musical Work is appropriate.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Instrument".freeze, - range: "bibframe:MusicInstrument".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicInstrument".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :instrumentalType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific role of instrument, such as alternate, doubling, solo, ensemble.".freeze, - domain: "bibframe:MusicInstrument".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/MusicInstrument".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Instrument role".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :intendedAudience, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Information that identifies the specific audience or intellectual level for which the content of the resource is considered appropriate.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Intended audience".freeze, - range: "bibframe:IntendedAudience".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/IntendedAudience".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :issuance, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting whether a resource is issued in one or more parts, the way it is updated, and its intended termination.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mode of issuance".freeze, - range: "bibframe:Issuance".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Issuance".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :issuedWith, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is issued on the same carrier as the resource being described.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Issued with".freeze, - range: "bibframe:Instance".freeze, - subPropertyOf: "bibframe:accompanies".freeze, - type: "owl:SymmetricProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :itemOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze], definition: "Instance for which the described Item is an example.".freeze, - domain: "bibframe:Item".freeze, - inverseOf: "bibframe:hasItem".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasItem".freeze, label: "Holding for".freeze, - range: "bibframe:Instance".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :itemPortion, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number attached to a classification string that indicates a particular item.".freeze, - domain: "bibframe:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification item number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :language, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Language associated with a resource or its parts.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Language information".freeze, - range: "bibframe:Language".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Language".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :lastIssue, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Ending date of a resource and/or the sequential designations.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Multipart last issue".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :layout, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Arrangement of text, images, tactile notation, etc., in a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Layout".freeze, - range: "bibframe:Layout".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Layout".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :legalDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date of legal work, or promulgation of a law, or signing of a treaty.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Date of legal work".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibframe:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :mainTitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Title being addressed. Possible title component.".freeze, - domain: "bibframe:Title".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Main title".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :media, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Media type".freeze, - range: "bibframe:Media".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Media".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :mergedToForm, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "One of two or more resources that come together to form a new resource.".freeze, - inverseOf: "bibframe:mergerOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/mergerOf".freeze, label: "Merged to form".freeze, - subPropertyOf: "bibframe:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :mergerOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "One of two or more resources which came together to form a new resource.".freeze, - inverseOf: "bibframe:mergedToForm".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/mergedToForm".freeze, label: "Merger of".freeze, - subPropertyOf: "bibframe:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :mount, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Physical material used for the support or backing to which the base material of a resource has been attached.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Mount material".freeze, - range: "bibframe:Mount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Mount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :musicFormat, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Layout for content of a resource that is presented in the form of musical notation, such as full score, condensed score, vocal score, etc.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Format of notated music".freeze, - range: "bibframe:MusicFormat".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicFormat".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :musicKey, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Pitch and mode for music.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music key".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :musicMedium, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Instrumental, vocal, and/or other medium of performance for which a musical resource was originally conceived, written or performed.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music medium of performance".freeze, - range: "bibframe:MusicMedium".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicMedium".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :musicOpusNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numeric designation of a musical work assigned by a composer, publisher, or a musicologist.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music opus number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :musicSerialNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numeric designation for musical works consecutively numbered in music reference sources.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music serial number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :musicThematicNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Numeric designation for a musical work as found in a thematic index for the composer.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Music thematic number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :natureOfContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Characterization that epitomizes the primary content of a resource, e.g., field recording of birdsong; combined time series analysis and graph plotting system.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Content nature".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :notation, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, movement notation, and musical notation.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Notation system".freeze, - range: "bibframe:Notation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Notation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :note, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "General textual information relating to a resource, such as Information about a specific copy of a resource or information about a particular attribute of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Note".freeze, - range: "bibframe:Note".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Note".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :noteType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Type of note.".freeze, - domain: "bibframe:Note".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Note".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Note type".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :organization, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Manner in which the resource is divided into smaller units.".freeze, - domain: "bibframe:Arrangement".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Arrangement".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Organization of material".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :originDate, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Date or date range associated with the creation of a Work.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Associated title date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibframe:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :originPlace, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Place from which the creation of the Work originated.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Associated title place".freeze, - range: "bibframe:Place".freeze, - subPropertyOf: "bibframe:place".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Place".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/place".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :originalVersion, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource is the original version of which this resource is a reproduction.".freeze, - inverseOf: "bibframe:originalVersionOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/originalVersionOf".freeze, label: "Original version".freeze, - subPropertyOf: "bibframe:derivativeOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :originalVersionOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Original version of a resource.".freeze, - inverseOf: "bibframe:originalVersion".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/originalVersion".freeze, label: "Original version of".freeze, - subPropertyOf: "bibframe:hasDerivative".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasDerivative".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :otherEdition, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-05-13 (symmetrical)".freeze], definition: "Resource has other available editions, for example simultaneously published language editions or reprints.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-05-13 (symmetrical)".freeze], label: "Other edition".freeze, - subPropertyOf: "bibframe:derivativeOf".freeze, - type: "owl:SymmetricProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze, + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :otherPhysicalFormat, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource that is manifested in another physical carrier.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Has other physical format".freeze, - range: "bibframe:Instance".freeze, - subPropertyOf: "bibframe:hasEquivalent".freeze, - type: "owl:SymmetricProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasEquivalent".freeze, + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :outerGRing, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Coordinate pairs that identify the closed non-intersecting boundary of the area covered.".freeze, - domain: "bibframe:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Cartographic outer G ring area covered".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :part, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Part of a resource to which information applies.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Part".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partName, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Part or section name of a title. Possible title component.".freeze, - domain: "bibframe:Title".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Part title".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partNumber, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Part or section enumeration of a title. Possible title component.".freeze, - domain: "bibframe:Title".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Part number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partOf, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource in which the described resource is physically or logically contained.".freeze, - inverseOf: "bibframe:hasPart".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasPart".freeze, label: "Is part of".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :pattern, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Pattern of arrangement of materials within a unit.".freeze, - domain: "bibframe:Arrangement".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Arrangement".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Arrangement of material".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :physicalLocation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Location in the holding agency where the item is shelved or stored.".freeze, - domain: "bibframe:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Storing or shelving location".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :place, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Geographic location or place entity associated with a resource or element of description, such as the place associated with the publication, printing, distribution, issue, release or production of a resource, place of an event.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Place".freeze, - range: "bibframe:Place".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Place".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :polarity, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Relationship of the colors and tones in an image to the colors and tones of the object reproduced.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Polarity".freeze, - range: "bibframe:Polarity".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Polarity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :precededBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that precedes the resource being described, e.g., is earlier in time or before in narrative.".freeze, - inverseOf: "bibframe:succeededBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, label: "Preceded by".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :preferredCitation, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Citation to the resource preferred by its custodian of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Preferred citation".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :productionMethod, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Process used to produce a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Production method".freeze, - range: "bibframe:ProductionMethod".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ProductionMethod".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :projection, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze], definition: "Method or system used to represent the surface of the earth or of a celestial sphere on a plane.".freeze, - domain: "bibframe:Cartographic".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Cartographic".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze], label: "Cartographic projection".freeze, - range: "bibframe:Projection".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Projection".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :projectionCharacteristic, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (fixed typo in property name)".freeze], definition: "Technical specification relating to the projection of a motion picture film.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (fixed typo in property name)".freeze], label: "Projection characteristic".freeze, - range: "bibframe:ProjectionCharacteristic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ProjectionCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :provisionActivity, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (revised label and slightly revised definition)".freeze], definition: "Place, name, and/or date information relating to the publication, printing, distribution, issue, release, production, etc. of a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (revised label and slightly revised definition)".freeze], label: "Provision activity".freeze, - range: "bibframe:ProvisionActivity".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ProvisionActivity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :provisionActivityStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Statement relating to providers of a resource; usually transcribed.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Provider statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :qualifier, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Qualifier of information, such as an addition to a title to make it unique or qualifying information associated with an identifier.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Qualifier".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :reductionRatio, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Size of a micro-image in relation to the original from which it was produced.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Reduction ratio".freeze, - range: "bibframe:ReductionRatio".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ReductionRatio".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :referencedBy, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that references the described resource".freeze, - inverseOf: "bibframe:references".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/references".freeze, label: "Referenced by".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :references, comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that is referenced by the described resource.".freeze, - inverseOf: "bibframe:referencedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/referencedBy".freeze, label: "References".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedTo, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Any relationship between Work, Instance, and Item resources.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Related resource".freeze, - type: "owl:SymmetricProperty".freeze + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :replacedBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Later resource used in place of an earlier resource, usually because the later resource contains updated or new information.".freeze, - inverseOf: "bibframe:replacementOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/replacementOf".freeze, label: "Succeeded by".freeze, - subPropertyOf: "bibframe:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :replacementOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Earlier resource whose content has been replaced by a later resource, usually because the later resource contains updated or new information.".freeze, - inverseOf: "bibframe:replacedBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/replacedBy".freeze, label: "Preceded by".freeze, - subPropertyOf: "bibframe:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :reproductionOf, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that is a reproduction of another Resource.".freeze, - domain: "bibframe:Instance".freeze, - inverseOf: "bibframe:hasReproduction".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasReproduction".freeze, label: "Reproduction of".freeze, - range: "bibframe:Instance".freeze, - subPropertyOf: "bibframe:hasEquivalent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasEquivalent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :responsibilityStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Statement relating to any persons, families, or corporate bodies responsible for the creation of, or contributing to the content of a resource; usually transcribed.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Creative responsibility statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :review, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Review of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Review content".freeze, - range: "bibframe:Review".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Review".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :role, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Changed from data to object property, adjusted label and definition)".freeze], definition: "Function provided by a contributor, e.g., author, illustrator, etc.".freeze, - domain: "bibframe:Contribution".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Contribution".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Changed from data to object property, adjusted label and definition)".freeze], label: "Contributor role".freeze, - range: "bibframe:Role".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Role".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :scale, comment: "Used with Work or Instance".freeze, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze], definition: "Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents, e.g., for images or cartographic resources.".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze], label: "Scale".freeze, - range: "bibframe:Scale".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Scale".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :schedulePart, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Designates whether the classification number is from the standard or optional part of a schedule or table.".freeze, - domain: "bibframe:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification designation".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :separatedFrom, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that spun off a part of its content to form a new resource.".freeze, - inverseOf: "bibframe:continuedInPartBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/continuedInPartBy".freeze, label: "Separated from".freeze, - subPropertyOf: "bibframe:precededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :seriesEnumeration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Series enumeration of the resource; usually transcribed.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Series enumeration".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :seriesOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that is a part of a larger resource.".freeze, - inverseOf: "bibframe:hasSeries".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasSeries".freeze, label: "Series container of".freeze, - subPropertyOf: "bibframe:hasPart".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :seriesStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Statement of the series the resource is in; usually transcribed; includes the ISSN if applicable.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Series statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :shelfMark, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Piece identifier, such as a call or other type of number.".freeze, - domain: "bibframe:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Shelf mark".freeze, - range: "bibframe:ShelfMark".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/ShelfMark".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :soundCharacteristic, - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-21 (fixed name and range typos)".freeze], definition: "Technical specification relating to the encoding of sound in a resource.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-21 (fixed name and range typos)".freeze], label: "Sound characteristic".freeze, - range: "bibframe:SoundCharacteristic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/SoundCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :soundContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Indication of whether the production of sound is an integral part of the resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Sound content".freeze, - range: "bibframe:SoundContent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/SoundContent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :source, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Resource from which value or label came or was derived, such as the formal source/scheme from which a classification number is taken or derived, list from which an agent name is taken or derived, source within which an identifier is unique.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Source".freeze, - range: "bibframe:Source".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Source".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :spanEnd, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Ending number of classification number span.".freeze, - domain: "bibframe:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification number span end".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :splitInto, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "One of two or more resources resulting from the division of an earlier resource into separate resources.".freeze, - inverseOf: "bibframe:continuesInPart".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/continuesInPart".freeze, label: "Split into".freeze, - subPropertyOf: "bibframe:succeededBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/succeededBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :status, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Designation of the validity or position of something, such as indication that the classification number is canceled or invalid, circulation availability of an item, indication of whether the identifier is canceled or invalid.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Status".freeze, - range: "bibframe:Status".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Status".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subject, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Subject term(s) describing a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Subject".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sublocation, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific place within the holding entity where the item is located or made available.".freeze, - domain: "bibframe:Item".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Item".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Held in sublocation".freeze, - range: "bibframe:Sublocation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Sublocation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subseriesEnumeration, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Subseries enumeration of the resource; usually transcribed.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Subseries enumeration".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :subseriesOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Series resource of which the described resource is a part.".freeze, - inverseOf: "bibframe:hasSubseries".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/hasSubseries".freeze, label: "Subseries of".freeze, - subPropertyOf: "bibframe:hasPart".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subseriesStatement, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Statement of the subseries the resource is in; usually transcribed; includes the ISSN if applicable.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Subseries statement".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :subtitle, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Word, character, or group of words and/or characters that contains the remainder of the title after the main title. Possible title component.".freeze, - domain: "bibframe:Title".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Subtitle".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :succeededBy, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], definition: "Resource that succeeds the resource being described, e.g., later in time or after in a narrative.".freeze, - inverseOf: "bibframe:precededBy".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/precededBy".freeze, label: "Succeeded by".freeze, - subPropertyOf: "bibframe:relatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :summary, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Summary or abstract of the resource described.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Summary content".freeze, - range: "bibframe:Summary".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Summary".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supplement, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that updates or otherwise complements the predominant resource.".freeze, - inverseOf: "bibframe:supplementTo".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/supplementTo".freeze, label: "Supplement".freeze, - subPropertyOf: "bibframe:accompaniedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompaniedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supplementTo, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], definition: "Resource that is updated or otherwise complemented by the augmenting resource.".freeze, - inverseOf: "bibframe:supplement".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/supplement".freeze, label: "Supplement to".freeze, - subPropertyOf: "bibframe:accompanies".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/accompanies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supplementaryContent, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Material such as an index, bibliography, appendix intended to supplement the primary content of a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Supplementary material".freeze, - range: "bibframe:SupplementaryContent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/SupplementaryContent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :systemRequirement, - "dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property, changed property name from plural to singular)".freeze], definition: "Equipment or system requirement beyond what is normal and obvious for the type of carrier or type of file, such as make and model of equipment or hardware, operating system, amount of memory, programming language, other necessary software, any plug-ins or peripherals required to play, view, or run the resource, etc.".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property, changed property name from plural to singular)".freeze], label: "Equipment or system requirements".freeze, - range: "bibframe:SystemRequirement".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/SystemRequirement".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :table, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Number of the table from which the classification number in a subdivision entry is taken, e.g., a DDC table.".freeze, - domain: "bibframe:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification table identification".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :tableOfContents, comment: "Used with Work or Instance".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Table of contents of the described resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Table of contents content".freeze, - range: "bibframe:TableOfContents".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/TableOfContents".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :tableSeq, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Sequence number or other identifier for an internal classification sub arrangement or add in a classification scheme.".freeze, - domain: "bibframe:Classification".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Classification".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Classification table sequence number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :temporalCoverage, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Time period coverage of the content of the resource.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Temporal coverage".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :title, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Name given to a resource.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Title resource".freeze, - range: "bibframe:Title".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Title".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :translation, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze], definition: "Resource that translates the text of the source entity into a language different from that of the original.".freeze, - inverseOf: "bibframe:translationOf".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/translationOf".freeze, label: "Translation as".freeze, - subPropertyOf: "bibframe:hasDerivative".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/hasDerivative".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :translationOf, comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze], - "dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze], definition: "Resource that has been translated, i.e., the text is expressed in a language different from that of the original resource.".freeze, - inverseOf: "bibframe:translation".freeze, + "http://purl.org/dc/terms/modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze], + inverseOf: "http://id.loc.gov/ontologies/bibframe/translation".freeze, label: "Translation of".freeze, - subPropertyOf: "bibframe:derivativeOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://id.loc.gov/ontologies/bibframe/derivativeOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :unit, comment: "Used with Unspecified".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Units in which a value is expressed, such as the physical or logical constituent of a resource (e.g., a volume, audiocassette, film reel, a map, a digital file).".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Type of unit".freeze, - range: "bibframe:Unit".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/Unit".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usageAndAccessPolicy, comment: "Used with Work, Instance or Item".freeze, - "dc:modified": "2016-04-21 (New)".freeze, definition: "General statement of allowances and restrictions on access to a resource, including retention, reproduction, access, and lending.".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Use and access condition".freeze, - range: "bibframe:UsageAndAccessPolicy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/UsageAndAccessPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :variantType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Type of title variation, e.g., acronym, cover, spine, earlier, later, series version.".freeze, - domain: "bibframe:VariantTitle".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/VariantTitle".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Variant title type".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :version, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Term or terms that identify works such as arranged for music, vulgate for religious work, etc.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Version".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :videoCharacteristic, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Technical specification relating to the encoding of video images in a resource".freeze, - domain: "bibframe:Instance".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Instance".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Video characteristic".freeze, - range: "bibframe:VideoCharacteristic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/VideoCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :voice, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Voice for which a musical work is appropriate, such as soprano, tenor, mixed.".freeze, - domain: "bibframe:Work".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/Work".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Voice".freeze, - range: "bibframe:MusicVoice".freeze, - type: "owl:ObjectProperty".freeze + range: "http://id.loc.gov/ontologies/bibframe/MusicVoice".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :voiceType, - "dc:modified": "2016-04-21 (New)".freeze, definition: "Specific type of voice group, such as chorus, solo.".freeze, - domain: "bibframe:MusicVoice".freeze, + domain: "http://id.loc.gov/ontologies/bibframe/MusicVoice".freeze, + "http://purl.org/dc/terms/modified": "2016-04-21 (New)".freeze, label: "Type of voice".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze end end diff --git a/lib/rdf/vocab/bibo.rb b/lib/rdf/vocab/bibo.rb index e05fef1..283d69f 100644 --- a/lib/rdf/vocab/bibo.rb +++ b/lib/rdf/vocab/bibo.rb @@ -3,1668 +3,1166 @@ # This file generated automatically using rdf vocabulary format from http://purl.org/ontology/bibo/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The Bibliographic Ontology - # # - # # The Bibliographic Ontology describes bibliographic things on the semantic Web in RDF. This ontology can be used as a citation ontology, as a document classification ontology, or simply as a way to describe any kind of document in RDF. It has been inspired by many existing document description metadata formats, and can be used as a common ground for converting other bibliographic data sources. - # # @version http://purl.org/ontology/bibo/1.3/ - # class BIBO < RDF::StrictVocabulary - # # A scholarly academic article, typically published in a journal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AcademicArticle - # - # # A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a book or other publication, as a newspaper or magazine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Article - # - # # An audio document; aka record. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioDocument - # - # # An audio-visual document; film, video, and so forth. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioVisualDocument - # - # # Draft legislation presented for discussion to a legal body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bill - # - # # A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Book - # - # # A section of a book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookSection - # - # # A written argument submitted to a court. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brief - # - # # A chapter of a book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Chapter - # - # # A collection of statutes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Code - # - # # A document that simultaneously contains other documents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollectedDocument - # - # # A collection of Documents or Collections - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # A meeting for consultation or discussion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Conference - # - # # A collection of legal cases. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CourtReporter - # - # # A document (noun) is a bounded physical representation of body of information designed with the capacity (and usually intent) to communicate. A document may manifest symbolic, diagrammatic or sensory-representational information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Document - # - # # a distinct part of a larger document or collected document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DocumentPart - # - # # The status of the publication of a document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DocumentStatus - # - # # An edited book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EditedBook - # - # # A written communication addressed to a person or organization and transmitted electronically. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Email - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # A passage selected from a larger work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Excerpt - # - # # aka movie. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Film - # - # # An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hearing - # - # # A document that presents visual or diagrammatic information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Image - # - # # A formalized discussion between two or more people. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Interview - # - # # something that is printed or published and distributed, esp. a given number of a periodical - # # @return [RDF::Vocabulary::Term] - # attr_reader :Issue - # - # # A periodical of scholarly journal Articles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Journal - # - # # A document accompanying a legal case. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalCaseDocument - # - # # A document containing an authoritative determination (as a decree or judgment) made after consideration of facts or law. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalDecision - # - # # A legal document; for example, a court decision, a brief, and so forth. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalDocument - # - # # A legal document proposing or enacting a law or a group of laws. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Legislation - # - # # A written or printed communication addressed to a person or organization and usually transmitted by mail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Letter - # - # # A periodical of magazine Articles. A magazine is a publication that is issued periodically, usually bound in a paper cover, and typically contains essays, stories, poems, etc., by many writers, and often photographs and drawings, frequently specializing in a particular subject or area, as hobbies, news, or sports. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Magazine - # - # # A small reference book, especially one giving instructions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manual - # - # # An unpublished Document, which may also be submitted to a publisher for publication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manuscript - # - # # A graphical depiction of geographic features. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Map - # - # # A loose, thematic, collection of Documents, often Books. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MultiVolumeBook - # - # # A periodical of documents, usually issued daily or weekly, containing current news, editorials, feature articles, and usually advertising. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Newspaper - # - # # Notes or annotations about a resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Note - # - # # A document describing the exclusive right granted by a government to an inventor to manufacture, use, or sell an invention for a certain number of years. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Patent - # - # # A public performance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Performance - # - # # A group of related documents issued at regular intervals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Periodical - # - # # A communication between an agent and one or more specific recipients. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PersonalCommunication - # - # # A personal communication manifested in some document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PersonalCommunicationDocument - # - # # A compilation of documents published from an event, such as a conference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Proceedings - # - # # An excerpted collection of words. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Quote - # - # # A document that presents authoritative reference information, such as a dictionary or encylopedia . - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReferenceSource - # - # # A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Report - # - # # A loose, thematic, collection of Documents, often Books. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Series - # - # # A slide in a slideshow - # # @return [RDF::Vocabulary::Term] - # attr_reader :Slide - # - # # A presentation of a series of slides, usually presented in front of an audience with written text and images. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Slideshow - # - # # A document describing a specification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Specification - # - # # A document describing a standard: a specification organized through a standards body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Standard - # - # # A bill enacted into law. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Statute - # - # # A document created to summarize research findings associated with the completion of an academic degree. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thesis - # - # # The academic degree of a Thesis - # # @return [RDF::Vocabulary::Term] - # attr_reader :ThesisDegree - # - # # A web page is an online document available (at least initially) on the world wide web. A web page is written first and foremost to appear on the web, as distinct from other online resources such as books, manuscripts or audio documents which use the web primarily as a distribution mechanism alongside other more traditional methods such as print. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Webpage - # - # # A group of Webpages accessible on the Web. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Website - # - # # A seminar, discussion group, or the like, that emphasizes zxchange of ideas and the demonstration and application of techniques, skills, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Workshop - # - # # A summary of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :abstract - # - # # A legal decision that affirms a ruling. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affirmedBy - # - # # Critical or explanatory note for a Document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotates - # - # # The date on which a legal case is argued before a court. Date is of format xsd:date - # # @return [RDF::Vocabulary::Term] - # attr_reader :argued - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :asin - # - # # An ordered list of authors. Normally, this list is seen as a priority list that order authors by importance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :authorList - # - # # An chapter number - # # @return [RDF::Vocabulary::Term] - # attr_reader :chapter - # - # # Relates a document to another document that cites the first document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :citedBy - # - # # Relates a document to another document that is cited by the first document as reference, comment, review, quotation or for another purpose. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cites - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coden - # - # # This property is for a plain-text rendering of the content of a Document. While the plain-text content of an entire document could be described by this property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :content - # - # # An ordered list of contributors. Normally, this list is seen as a priority list that order contributors by importance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contributorList - # - # # A court associated with a legal document; for example, that which issues a decision. - # # @return [RDF::Vocabulary::Term] - # attr_reader :court - # - # # The thesis degree. - # # @return [RDF::Vocabulary::Term] - # attr_reader :degree - # - # # A Film director. - # # @return [RDF::Vocabulary::Term] - # attr_reader :director - # - # # Distributor of a document or a collection of documents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distributor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :doi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eanucc13 - # - # # The name defining a special edition of a document. Normally its a literal value composed of a version number and words. - # # @return [RDF::Vocabulary::Term] - # attr_reader :edition - # - # # A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editor - # - # # An ordered list of editors. Normally, this list is seen as a priority list that order editors by importance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorList - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eissn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin14 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :handle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifier - # - # # An agent that is interviewed by another agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interviewee - # - # # An agent that interview another agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interviewer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isbn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isbn10 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isbn13 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :issn - # - # # An issue number - # # @return [RDF::Vocabulary::Term] - # attr_reader :issue - # - # # An entity responsible for issuing often informally published documents such as press releases, reports, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lccn - # - # # A description (often numeric) that locates an item within a containing document or collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locator - # - # # The number of pages contained in a document - # # @return [RDF::Vocabulary::Term] - # attr_reader :numPages - # - # # The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :numVolumes - # - # # A generic item or document number. Not to be confused with issue number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :number - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oclcnum - # - # # The organizer of an event; includes conference organizers, but also government agencies or other bodies that are responsible for conducting hearings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organizer - # - # # Owner of a document or a collection of documents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :owner - # - # # Ending page number within a continuous page range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageEnd - # - # # Starting page number within a continuous page range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageStart - # - # # A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. For continuous page ranges, use the pageStart and pageEnd properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pages - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :performer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pmid - # - # # The prefix of a name - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefixName - # - # # Relates a document to an event; for example, a paper to a conference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :presentedAt - # - # # Relates an event to associated documents; for example, conference to a paper. - # # @return [RDF::Vocabulary::Term] - # attr_reader :presents - # - # # Producer of a document or a collection of documents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :producer - # - # # An agent that receives a communication document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipient - # - # # The resource in which another resource is reproduced. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reproducedIn - # - # # A legal decision that reverses a ruling. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reversedBy - # - # # Relates a review document to a reviewed thing (resource, item, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewOf - # - # # A section number - # # @return [RDF::Vocabulary::Term] - # attr_reader :section - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shortDescription - # - # # The abbreviation of a title. - # # @return [RDF::Vocabulary::Term] - # attr_reader :shortTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sici - # - # # The publication status of (typically academic) content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :status - # - # # A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :subsequentLegalDecision - # - # # The suffix of a name - # # @return [RDF::Vocabulary::Term] - # attr_reader :suffixName - # - # # Relates a document to some transcribed original. - # # @return [RDF::Vocabulary::Term] - # attr_reader :transcriptOf - # - # # Relates a translated document to the original document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :translationOf - # - # # A person who translates written document from one language to another. - # # @return [RDF::Vocabulary::Term] - # attr_reader :translator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :upc - # - # # Universal Resource Identifier of a document - # # @return [RDF::Vocabulary::Term] - # attr_reader :uri - # - # # A volume number - # # @return [RDF::Vocabulary::Term] - # attr_reader :volume - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bdarcus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fgiasson - # - # end BIBO = Class.new(RDF::StrictVocabulary("http://purl.org/ontology/bibo/")) do # Ontology definition ontology :"http://purl.org/ontology/bibo/", - "dc:creator": ["bibo:bdarcus".freeze, "bibo:fgiasson".freeze], - "dc:description": "The Bibliographic Ontology describes\nbibliographic things on the semantic Web in RDF. This ontology can be\nused as a citation ontology, as a document classification ontology, or\nsimply as a way to describe any kind of document in RDF. It has been\ninspired by many existing document description metadata formats, and\ncan be used as a common ground for converting other bibliographic data\nsources.".freeze, - "dc:title": "The Bibliographic Ontology".freeze, - "owl:versionInfo": "http://purl.org/ontology/bibo/1.3/".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/terms/creator": ["http://purl.org/ontology/bibo/bdarcus".freeze, "http://purl.org/ontology/bibo/fgiasson".freeze], + "http://purl.org/dc/terms/description": "The Bibliographic Ontology describes\nbibliographic things on the semantic Web in RDF. This ontology can be\nused as a citation ontology, as a document classification ontology, or\nsimply as a way to describe any kind of document in RDF. It has been\ninspired by many existing document description metadata formats, and\ncan be used as a common ground for converting other bibliographic data\nsources.".freeze, + "http://purl.org/dc/terms/title": "The Bibliographic Ontology".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "http://purl.org/ontology/bibo/1.3/".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AcademicArticle, comment: "A scholarly academic article, typically published in a journal.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Academic Article".freeze, - subClassOf: "bibo:Article".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Article".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Article, comment: "A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a book or other publication, as a newspaper or magazine.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Article".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioDocument, comment: "An audio document; aka record.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "audio document".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioVisualDocument, comment: "An audio-visual document; film, video, and so forth.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "audio-visual document".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Bill, comment: "Draft legislation presented for discussion to a legal body.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Bill".freeze, - subClassOf: "bibo:Legislation".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Legislation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Book, comment: "A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Book".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BookSection, comment: "A section of a book.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Book Section".freeze, - subClassOf: "bibo:DocumentPart".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/DocumentPart".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Brief, comment: "A written argument submitted to a court.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Brief".freeze, - subClassOf: "bibo:LegalCaseDocument".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/LegalCaseDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Chapter, comment: "A chapter of a book.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Chapter".freeze, - subClassOf: "bibo:BookSection".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/BookSection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Code, comment: "A collection of statutes.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Code".freeze, - subClassOf: ["bibo:Periodical".freeze, term( - allValuesFrom: "bibo:Legislation".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Periodical".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Legislation".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CollectedDocument, comment: "A document that simultaneously contains other documents.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Collected Document".freeze, - subClassOf: ["bibo:Document".freeze, term( - allValuesFrom: "bibo:Document".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Document".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Document".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Collection, comment: "A collection of Documents or Collections".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Collection".freeze, subClassOf: term( - allValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) - ), - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "_:g13460".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Conference, comment: "A meeting for consultation or discussion.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Conference".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CourtReporter, comment: "A collection of legal cases.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Court Reporter".freeze, - subClassOf: ["bibo:Periodical".freeze, term( - allValuesFrom: "bibo:LegalDocument".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Periodical".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/LegalDocument".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Document, comment: "A document (noun) is a bounded physical representation of body of information designed with the capacity (and usually intent) to communicate. A document may manifest symbolic, diagrammatic or sensory-representational information.".freeze, - equivalentClass: "foaf:Document".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DocumentPart, comment: "a distinct part of a larger document or collected document.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "document part".freeze, - subClassOf: ["bibo:Document".freeze, term( + subClassOf: ["http://purl.org/ontology/bibo/Document".freeze, term( maxCardinality: "1".freeze, - onProperty: "dc:isPartOf".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DocumentStatus, comment: "The status of the publication of a document.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Document Status".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EditedBook, comment: "An edited book.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Edited Book".freeze, - subClassOf: "bibo:CollectedDocument".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/CollectedDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Email, comment: "A written communication addressed to a person or organization and transmitted electronically.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "EMail".freeze, - subClassOf: "bibo:PersonalCommunicationDocument".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/PersonalCommunicationDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Event, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Excerpt, comment: "A passage selected from a larger work.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Excerpt".freeze, - subClassOf: "bibo:DocumentPart".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/DocumentPart".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Film, comment: "aka movie.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Film".freeze, - subClassOf: "bibo:AudioVisualDocument".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/AudioVisualDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Hearing, comment: "An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Hearing".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Image, comment: "A document that presents visual or diagrammatic information.".freeze, - equivalentClass: "foaf:Image".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Image".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Image".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Interview, comment: "A formalized discussion between two or more people.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Interview".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Issue, comment: "something that is printed or published and distributed, esp. a given number of a periodical".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Issue".freeze, - subClassOf: ["bibo:CollectedDocument".freeze, term( - allValuesFrom: "bibo:Article".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/CollectedDocument".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Article".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Journal, comment: "A periodical of scholarly journal Articles.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Journal".freeze, - subClassOf: ["bibo:Periodical".freeze, term( - allValuesFrom: "bibo:Issue".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Periodical".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Issue".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LegalCaseDocument, comment: "A document accompanying a legal case.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Legal Case Document".freeze, - subClassOf: "bibo:LegalDocument".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/LegalDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LegalDecision, comment: "A document containing an authoritative determination (as a decree or judgment) made after consideration of facts or law.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Decision".freeze, - subClassOf: "bibo:LegalCaseDocument".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/LegalCaseDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LegalDocument, comment: "A legal document; for example, a court decision, a brief, and so forth.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Legal Document".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Legislation, comment: "A legal document proposing or enacting a law or a group of laws.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Legislation".freeze, - subClassOf: "bibo:LegalDocument".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/LegalDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Letter, comment: "A written or printed communication addressed to a person or organization and usually transmitted by mail.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Letter".freeze, - subClassOf: "bibo:PersonalCommunicationDocument".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/PersonalCommunicationDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Magazine, comment: "A periodical of magazine Articles. A magazine is a publication that is issued periodically, usually bound in a paper cover, and typically contains essays, stories, poems, etc., by many writers, and often photographs and drawings, frequently specializing in a particular subject or area, as hobbies, news, or sports.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Magazine".freeze, - subClassOf: ["bibo:Periodical".freeze, term( - allValuesFrom: "bibo:Issue".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Periodical".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Issue".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Manual, comment: "A small reference book, especially one giving instructions.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Manual".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Manuscript, comment: "An unpublished Document, which may also be submitted to a publisher for publication.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Manuscript".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Map, comment: "A graphical depiction of geographic features.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Map".freeze, - subClassOf: "bibo:Image".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/Image".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MultiVolumeBook, comment: "A loose, thematic, collection of Documents, often Books.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Multivolume Book".freeze, - subClassOf: ["bibo:Collection".freeze, term( - allValuesFrom: "bibo:Book".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Collection".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Book".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Newspaper, comment: "A periodical of documents, usually issued daily or weekly, containing current news, editorials, feature articles, and usually advertising.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Newspaper".freeze, - subClassOf: ["bibo:Periodical".freeze, term( - allValuesFrom: "bibo:Issue".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Periodical".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Issue".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Note, comment: "Notes or annotations about a resource.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Note".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Patent, comment: "A document describing the exclusive right granted by a government to an inventor to manufacture, use, or sell an invention for a certain number of years.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Patent".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Performance, comment: "A public performance.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Performance".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Periodical, comment: "A group of related documents issued at regular intervals.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Periodical".freeze, - subClassOf: ["bibo:Collection".freeze, term( - allValuesFrom: "bibo:Issue".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Collection".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Issue".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PersonalCommunication, comment: "A communication between an agent and one or more specific recipients.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Personal Communication".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PersonalCommunicationDocument, comment: "A personal communication manifested in some document.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Personal Communication Document".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Proceedings, comment: "A compilation of documents published from an event, such as a conference.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Proceedings".freeze, - subClassOf: "bibo:Book".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/Book".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Quote, comment: "An excerpted collection of words.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Quote".freeze, - subClassOf: "bibo:Excerpt".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Excerpt".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReferenceSource, comment: "A document that presents authoritative reference information, such as a dictionary or encylopedia .".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Reference Source".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Report, comment: "A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc..".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Report".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Series, comment: "A loose, thematic, collection of Documents, often Books.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Series".freeze, - subClassOf: ["bibo:Collection".freeze, term( - allValuesFrom: "bibo:Document".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Collection".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Document".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Slide, comment: "A slide in a slideshow".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Slide".freeze, - subClassOf: "bibo:DocumentPart".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/DocumentPart".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Slideshow, comment: "A presentation of a series of slides, usually presented in front of an audience with written text and images.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Slideshow".freeze, - subClassOf: ["bibo:Document".freeze, term( - allValuesFrom: "bibo:Slide".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Document".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Slide".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Specification, comment: "A document describing a specification.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Specification".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Standard, comment: "A document describing a standard: a specification organized through a standards body.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Standard".freeze, - subClassOf: "bibo:Specification".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Statute, comment: "A bill enacted into law.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Statute".freeze, - subClassOf: "bibo:Legislation".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Legislation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Thesis, comment: "A document created to summarize research findings associated with the completion of an academic degree.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Thesis".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ThesisDegree, comment: "The academic degree of a Thesis".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Thesis degree".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Webpage, comment: "A web page is an online document available (at least initially) on the world wide web. A web page is written first and foremost to appear on the web, as distinct from other online resources such as books, manuscripts or audio documents which use the web primarily as a distribution mechanism alongside other more traditional methods such as print.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Webpage".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Website, comment: "A group of Webpages accessible on the Web.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Website".freeze, - subClassOf: ["bibo:Collection".freeze, term( - allValuesFrom: "bibo:Webpage".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Collection".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Webpage".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Workshop, comment: "A seminar, discussion group, or the like, that emphasizes zxchange of ideas and the demonstration and application of techniques, skills, etc.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Workshop".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :abstract, comment: "A summary of the resource.".freeze, - domain: "rdfs:Resource".freeze, + domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "abstract".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :affirmedBy, comment: "A legal decision that affirms a ruling.".freeze, - domain: "bibo:LegalDecision".freeze, + domain: "http://purl.org/ontology/bibo/LegalDecision".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, - range: "bibo:LegalDecision".freeze, - subPropertyOf: "bibo:subsequentLegalDecision".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ontology/bibo/LegalDecision".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/subsequentLegalDecision".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :annotates, comment: "Critical or explanatory note for a Document.".freeze, - domain: "bibo:Note".freeze, + domain: "http://purl.org/ontology/bibo/Note".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "annotates".freeze, - range: "rdfs:Resource".freeze, - subPropertyOf: "dc:relation".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + subPropertyOf: "http://purl.org/dc/terms/relation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :argued, comment: "The date on which a legal case is argued before a court. Date is of format xsd:date".freeze, - domain: "bibo:LegalDocument".freeze, + domain: "http://purl.org/ontology/bibo/LegalDocument".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "date argued".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :asin, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :authorList, comment: "An ordered list of authors. Normally, this list is seen as a priority list that order authors by importance.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "list of authors".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("rdf:List".freeze, "rdf:Seq".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq".freeze) ), - subPropertyOf: "bibo:contributorList".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + subPropertyOf: "http://purl.org/ontology/bibo/contributorList".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :chapter, comment: "An chapter number".freeze, - domain: "bibo:BookSection".freeze, + domain: "http://purl.org/ontology/bibo/BookSection".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "chapter".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:locator".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/locator".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :citedBy, comment: "Relates a document to another document that cites the\nfirst document.".freeze, - domain: "bibo:Document".freeze, - inverseOf: "bibo:cites".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/bibo/cites".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "cited by".freeze, - range: "bibo:Document".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :cites, comment: "Relates a document to another document that is cited\nby the first document as reference, comment, review, quotation or for\nanother purpose.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "cites".freeze, - range: "bibo:Document".freeze, - subPropertyOf: "dc:references".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/bibo/Document".freeze, + subPropertyOf: "http://purl.org/dc/terms/references".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :coden, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :content, comment: "This property is for a plain-text rendering of the content of a Document. While the plain-text content of an entire document could be described by this property.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "bibo:content has been deprecated; we recommend to use \"rdf:value\" for this purpose. Here is the rational behind this choice: http://www.w3.org/TR/2004/REC-rdf-primer-20040210/#rdfvalue".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "content".freeze, - "owl:deprecated": "true".freeze, - range: "rdfs:Literal".freeze, - "skos:historyNote": "bibo:content has been deprecated; we recommend to use \"rdf:value\" for this purpose. Here is the rational behind this choice: http://www.w3.org/TR/2004/REC-rdf-primer-20040210/#rdfvalue".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :contributorList, comment: "An ordered list of contributors. Normally, this list is seen as a priority list that order contributors by importance.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "list of contributors".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("rdf:List".freeze, "rdf:Seq".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq".freeze) ), - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :court, comment: "A court associated with a legal document; for example, that which issues a decision.".freeze, - domain: "bibo:LegalDocument".freeze, + domain: "http://purl.org/ontology/bibo/LegalDocument".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "court".freeze, - range: "foaf:Organization".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :degree, comment: "The thesis degree.".freeze, - domain: "bibo:Thesis".freeze, + domain: "http://purl.org/ontology/bibo/Thesis".freeze, editorialNote: "We are not defining, using an enumeration, the range of the bibo:degree to the defined list of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress if needed by some special usecases. Creating such an enumeration would restrict this to happen.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "degree".freeze, - range: "bibo:ThesisDegree".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/bibo/ThesisDegree".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :director, comment: "A Film director.".freeze, - domain: "bibo:AudioVisualDocument".freeze, + domain: "http://purl.org/ontology/bibo/AudioVisualDocument".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "director".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "dc:contributor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://purl.org/dc/terms/contributor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :distributor, comment: "Distributor of a document or a collection of documents.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "distributor".freeze, - range: "foaf:Agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :doi, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :eanucc13, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :edition, comment: "The name defining a special edition of a document. Normally its a literal value composed of a version number and words.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "edition".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :editor, comment: "A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "editor".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "dc:contributor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://purl.org/dc/terms/contributor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :editorList, comment: "An ordered list of editors. Normally, this list is seen as a priority list that order editors by importance.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "list of editors".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("rdf:List".freeze, "rdf:Seq".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq".freeze) ), - subPropertyOf: "bibo:contributorList".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + subPropertyOf: "http://purl.org/ontology/bibo/contributorList".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :eissn, - domain: "bibo:Collection".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://purl.org/ontology/bibo/Collection".freeze, + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :gtin14, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :handle, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identifier, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :interviewee, comment: "An agent that is interviewed by another agent.".freeze, - domain: "foaf:Agent".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "interviewee".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "dc:contributor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://purl.org/dc/terms/contributor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :interviewer, comment: "An agent that interview another agent.".freeze, - domain: "foaf:Agent".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "interviewer".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "dc:contributor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://purl.org/dc/terms/contributor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isbn, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :isbn10, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:isbn".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/isbn".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :isbn13, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:isbn".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/isbn".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :issn, - domain: "bibo:Collection".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://purl.org/ontology/bibo/Collection".freeze, + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :issue, comment: "An issue number".freeze, - domain: "bibo:Issue".freeze, + domain: "http://purl.org/ontology/bibo/Issue".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "issue".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:locator".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/locator".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :issuer, comment: "An entity responsible for issuing often informally published documents such as press releases, reports, etc.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "issuer".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "dc:publisher".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://purl.org/dc/terms/publisher".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :lccn, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locator, comment: "A description (often numeric) that locates an item within a containing document or collection.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "locator".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :numPages, comment: "The number of pages contained in a document".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "number of pages".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :numVolumes, comment: "The number of volumes contained in a collection of documents (usually a series, periodical, etc.).".freeze, - domain: "bibo:Collection".freeze, + domain: "http://purl.org/ontology/bibo/Collection".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "number of volumes".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :number, comment: "A generic item or document number. Not to be confused with issue number.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "number".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :oclcnum, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :organizer, comment: "The organizer of an event; includes conference organizers, but also government agencies or other bodies that are responsible for conducting hearings.".freeze, domain: "http://purl.org/NET/c4dm/event.owl#Event".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "organizer".freeze, - range: "foaf:Agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :owner, comment: "Owner of a document or a collection of documents.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "owner".freeze, - range: "foaf:Agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :pageEnd, comment: "Ending page number within a continuous page range.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "page end".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:locator".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/locator".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :pageStart, comment: "Starting page number within a continuous page range.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "page start".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:locator".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/locator".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :pages, comment: "A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. For continuous page ranges, use the pageStart and pageEnd properties.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "pages".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:locator".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/locator".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :performer, - domain: "bibo:Performance".freeze, + domain: "http://purl.org/ontology/bibo/Performance".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "performer".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "dc:contributor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://purl.org/dc/terms/contributor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :pmid, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :prefixName, comment: "The prefix of a name".freeze, - domain: "foaf:Agent".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "prefix name".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :presentedAt, comment: "Relates a document to an event; for example, a paper to a conference.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "presented at".freeze, - range: "bibo:Event".freeze, + range: "http://purl.org/ontology/bibo/Event".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#produced_in".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :presents, comment: "Relates an event to associated documents; for example, conference to a paper.".freeze, - domain: "bibo:Event".freeze, - inverseOf: "bibo:presentedAt".freeze, + domain: "http://purl.org/ontology/bibo/Event".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/bibo/presentedAt".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "presents".freeze, - range: "bibo:Document".freeze, + range: "http://purl.org/ontology/bibo/Document".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :producer, comment: "Producer of a document or a collection of documents.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "producer".freeze, - range: "foaf:Agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :recipient, comment: "An agent that receives a communication document.".freeze, - domain: "bibo:PersonalCommunicationDocument".freeze, + domain: "http://purl.org/ontology/bibo/PersonalCommunicationDocument".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "recipient".freeze, - range: "foaf:Agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :reproducedIn, comment: "The resource in which another resource is reproduced.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, - range: "bibo:Document".freeze, - subPropertyOf: "dc:isPartOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/bibo/Document".freeze, + subPropertyOf: "http://purl.org/dc/terms/isPartOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :reversedBy, comment: "A legal decision that reverses a ruling.".freeze, - domain: "bibo:LegalDecision".freeze, + domain: "http://purl.org/ontology/bibo/LegalDecision".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, - range: "bibo:LegalDecision".freeze, - subPropertyOf: "bibo:subsequentLegalDecision".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ontology/bibo/LegalDecision".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/subsequentLegalDecision".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :reviewOf, comment: "Relates a review document to a reviewed thing (resource, item, etc.).".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "review of".freeze, - range: "rdfs:Resource".freeze, - subPropertyOf: "dc:relation".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + subPropertyOf: "http://purl.org/dc/terms/relation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :section, comment: "A section number".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + "http://www.w3.org/2004/02/skos/core#example": "Di Rado, Alicia. 1995. Trekking through college: Classes explore\nmodern society using the world of Star trek. Los Angeles Times, March\n15, sec. A, p. 3.".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "section".freeze, - range: "rdfs:Literal".freeze, - "skos:example": "Di Rado, Alicia. 1995. Trekking through college: Classes explore\nmodern society using the world of Star trek. Los Angeles Times, March\n15, sec. A, p. 3.".freeze, - subPropertyOf: "bibo:locator".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/locator".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :shortDescription, - domain: "bibo:Document".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://purl.org/ontology/bibo/Document".freeze, + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :shortTitle, comment: "The abbreviation of a title.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "short title".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :sici, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :status, comment: "The publication status of (typically academic) content.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, editorialNote: "We are not defining, using an enumeration, the range of the bibo:status to the defined list of bibo:DocumentStatus. We won't do it because we want people to be able to define new status if needed by some special usecases. Creating such an enumeration would restrict this to happen.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "status".freeze, - range: "bibo:DocumentStatus".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/ontology/bibo/DocumentStatus".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subsequentLegalDecision, comment: "A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.).".freeze, - domain: "bibo:LegalDecision".freeze, + domain: "http://purl.org/ontology/bibo/LegalDecision".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, - range: "bibo:LegalDecision".freeze, - subPropertyOf: "dc:isReferencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ontology/bibo/LegalDecision".freeze, + subPropertyOf: "http://purl.org/dc/terms/isReferencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :suffixName, comment: "The suffix of a name".freeze, - domain: "foaf:Agent".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "suffix name".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :transcriptOf, comment: "Relates a document to some transcribed original.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "transcript of".freeze, - range: "rdfs:Resource".freeze, - subPropertyOf: "dc:relation".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + subPropertyOf: "http://purl.org/dc/terms/relation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :translationOf, comment: "Relates a translated document to the original document.".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "translation of".freeze, - range: "bibo:Document".freeze, - subPropertyOf: "dc:isVersionOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/ontology/bibo/Document".freeze, + subPropertyOf: "http://purl.org/dc/terms/isVersionOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :translator, comment: "A person who translates written document from one language to another.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "translator".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "dc:contributor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://purl.org/dc/terms/contributor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :upc, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :uri, comment: "Universal Resource Identifier of a document".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/bibo/Collection".freeze, "http://purl.org/ontology/bibo/Document".freeze) ), + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "uri".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :volume, comment: "A volume number".freeze, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "volume".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "bibo:locator".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/ontology/bibo/locator".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze # Extra definitions term :bdarcus, - "foaf:name": "Bruce D'Arcus".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/net/darcusb/info#me".freeze, + "http://xmlns.com/foaf/0.1/name": "Bruce D'Arcus".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, - "rdfs:seeAlso": "http://purl.org/net/darcusb/info#me".freeze, - type: ["foaf:Person".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze] + type: ["http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze, "http://xmlns.com/foaf/0.1/Person".freeze] term :"degrees/ma", comment: "masters degree in arts".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "M.A.".freeze, - type: ["bibo:ThesisDegree".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/ThesisDegree".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"degrees/ms", comment: "masters degree in science".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "M.S.".freeze, - type: ["bibo:ThesisDegree".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/ThesisDegree".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"degrees/phd", comment: "PhD degree".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "PhD degree".freeze, - type: ["bibo:ThesisDegree".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/ThesisDegree".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :fgiasson, - "foaf:name": "Frederick Giasson".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://fgiasson.com/me/".freeze, + "http://xmlns.com/foaf/0.1/name": "Frederick Giasson".freeze, isDefinedBy: "http://purl.org/ontology/bibo/".freeze, - "rdfs:seeAlso": "http://fgiasson.com/me/".freeze, - type: ["foaf:Person".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze] + type: ["http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze, "http://xmlns.com/foaf/0.1/Person".freeze] term :"status/accepted", comment: "Accepted for publication after peer reviewing.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "accepted".freeze, - type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/DocumentStatus".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"status/draft", comment: "Document drafted".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "draft".freeze, - type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/DocumentStatus".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"status/forthcoming", comment: "Document to be published".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "forthcoming".freeze, - type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/DocumentStatus".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"status/legal", comment: "Legal document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "legal".freeze, - type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/DocumentStatus".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"status/nonPeerReviewed", comment: "A document that is not peer reviewed".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "non peer reviewed".freeze, - type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/DocumentStatus".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"status/peerReviewed", comment: "The process by which articles are chosen to be included in a refereed journal. An editorial board consisting of experts in the same field as the author review the article and decide if it is authoritative enough for publication.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "peer reviewed".freeze, - type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/DocumentStatus".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"status/published", comment: "Published document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "published".freeze, - type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/DocumentStatus".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"status/rejected", comment: "Rejected for publication after peer reviewing.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "rejected".freeze, - type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/DocumentStatus".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] term :"status/unpublished", comment: "Unpublished document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, label: "unpublished".freeze, - type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze], - "vs:term_status": "stable".freeze + type: ["http://purl.org/ontology/bibo/DocumentStatus".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] end end diff --git a/lib/rdf/vocab/cc.rb b/lib/rdf/vocab/cc.rb index 5bcc3d7..e52e62c 100644 --- a/lib/rdf/vocab/cc.rb +++ b/lib/rdf/vocab/cc.rb @@ -3,254 +3,144 @@ # This file generated automatically using rdf vocabulary format from http://creativecommons.org/ns# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class CC < RDF::StrictVocabulary - # # the legal jurisdiction of a license - # # @return [RDF::Vocabulary::Term] - # attr_reader :Jurisdiction - # - # # a set of requests/permissions to users of a Work, e.g. a copyright license, the public domain, information for distributors - # # @return [RDF::Vocabulary::Term] - # attr_reader :License - # - # # an action that may or may not be allowed or desired - # # @return [RDF::Vocabulary::Term] - # attr_reader :Permission - # - # # something you may be asked not to do - # # @return [RDF::Vocabulary::Term] - # attr_reader :Prohibition - # - # # an action that may or may not be requested of you - # # @return [RDF::Vocabulary::Term] - # attr_reader :Requirement - # - # # a potentially copyrightable work - # # @return [RDF::Vocabulary::Term] - # attr_reader :Work - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :attributionName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :attributionURL - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deprecatedOn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :jurisdiction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalcode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :license - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :morePermissions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :permits - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prohibits - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :requires - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :useGuidelines - # - # # credit be given to copyright holder and/or author - # # @return [RDF::Vocabulary::Term] - # attr_reader :Attribution - # - # # exercising rights for commercial purposes - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommercialUse - # - # # derivative and combined works must be licensed under specified terms, similar to those on the original work - # # @return [RDF::Vocabulary::Term] - # attr_reader :Copyleft - # - # # distribution of derivative works - # # @return [RDF::Vocabulary::Term] - # attr_reader :DerivativeWorks - # - # # distribution, public display, and publicly performance - # # @return [RDF::Vocabulary::Term] - # attr_reader :Distribution - # - # # use in a non-developing country - # # @return [RDF::Vocabulary::Term] - # attr_reader :HighIncomeNationUse - # - # # derivative works must be licensed under specified terms, with at least the same conditions as the original work; combinations with the work may be licensed under different terms - # # @return [RDF::Vocabulary::Term] - # attr_reader :LesserCopyleft - # - # # copyright and license notices be kept intact - # # @return [RDF::Vocabulary::Term] - # attr_reader :Notice - # - # # making multiple copies - # # @return [RDF::Vocabulary::Term] - # attr_reader :Reproduction - # - # # derivative works be licensed under the same terms or compatible terms as the original work - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShareAlike - # - # # permits commercial derivatives, but only non-commercial distribution - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sharing - # - # # source code (the preferred form for making modifications) must be provided when exercising some rights granted by the license. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SourceCode - # - # end CC = Class.new(RDF::StrictVocabulary("http://creativecommons.org/ns#")) do # Ontology definition ontology :"http://creativecommons.org/ns#", - "xhv:license": "https://creativecommons.org/licenses/by/4.0/".freeze, - "xhv:stylesheet": "https://creativecommons.org/includes/bootstrap.min.css".freeze + "http://www.w3.org/1999/xhtml/vocab#license": "https://creativecommons.org/licenses/by/4.0/".freeze, + "http://www.w3.org/1999/xhtml/vocab#stylesheet": "https://creativecommons.org/includes/bootstrap.min.css".freeze # Class definitions term :Jurisdiction, comment: "the legal jurisdiction\nof a license".freeze, label: "Jurisdiction".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :License, comment: "a set of\nrequests/permissions to users of a Work, e.g. a\ncopyright license, the public domain, information\nfor distributors".freeze, label: "License".freeze, - subClassOf: "dc:LicenseDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/LicenseDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Permission, comment: "an action that may or\nmay not be allowed or desired".freeze, label: "Permission".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Prohibition, comment: "something you may be\nasked not to do".freeze, label: "Prohibition".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Requirement, comment: "an action that may or\nmay not be requested of you".freeze, label: "Requirement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Work, comment: "a potentially\ncopyrightable work".freeze, label: "Work".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :attributionName, - domain: "cc:Work".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + domain: "http://creativecommons.org/ns#Work".freeze, + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :attributionURL, - domain: "cc:Work".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + domain: "http://creativecommons.org/ns#Work".freeze, + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deprecatedOn, - domain: "cc:License".freeze, + domain: "http://creativecommons.org/ns#License".freeze, label: "deprecated\non".freeze, range: "http://www.w3.org/2001/XMLSchema-datatypes#date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jurisdiction, - domain: "cc:License".freeze, + domain: "http://creativecommons.org/ns#License".freeze, label: "jurisdiction".freeze, - range: "cc:Jurisdiction".freeze, - type: "rdf:Property".freeze + range: "http://creativecommons.org/ns#Jurisdiction".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legalcode, - domain: "cc:License".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + domain: "http://creativecommons.org/ns#License".freeze, + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :license, - domain: "cc:Work".freeze, + domain: "http://creativecommons.org/ns#Work".freeze, + "http://www.w3.org/2002/07/owl#sameAs": "http://www.w3.org/1999/xhtml/vocab#license".freeze, label: "has\nlicense".freeze, - "owl:sameAs": "xhv:license".freeze, - range: "cc:License".freeze, - subPropertyOf: "dc:license".freeze, - type: "rdf:Property".freeze + range: "http://creativecommons.org/ns#License".freeze, + subPropertyOf: "http://purl.org/dc/terms/license".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :morePermissions, - domain: "cc:Work".freeze, - range: "rdfs:Resource".freeze, - subPropertyOf: "dc:relation".freeze, - type: "rdf:Property".freeze + domain: "http://creativecommons.org/ns#Work".freeze, + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + subPropertyOf: "http://purl.org/dc/terms/relation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permits, - domain: "cc:License".freeze, + domain: "http://creativecommons.org/ns#License".freeze, label: "permits".freeze, - range: "cc:Permission".freeze, - type: "rdf:Property".freeze + range: "http://creativecommons.org/ns#Permission".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prohibits, - domain: "cc:License".freeze, + domain: "http://creativecommons.org/ns#License".freeze, label: "prohibits".freeze, - range: "cc:Prohibition".freeze, - type: "rdf:Property".freeze + range: "http://creativecommons.org/ns#Prohibition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requires, - domain: "cc:License".freeze, + domain: "http://creativecommons.org/ns#License".freeze, label: "requires".freeze, - range: "cc:Requirement".freeze, - type: "rdf:Property".freeze + range: "http://creativecommons.org/ns#Requirement".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :useGuidelines, - domain: "cc:Work".freeze, - range: "rdfs:Resource".freeze, - subPropertyOf: "dc:relation".freeze, - type: "rdf:Property".freeze + domain: "http://creativecommons.org/ns#Work".freeze, + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + subPropertyOf: "http://purl.org/dc/terms/relation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :Attribution, comment: "credit be given to\ncopyright holder and/or author".freeze, label: "Attribution".freeze, - type: "cc:Requirement".freeze + type: "http://creativecommons.org/ns#Requirement".freeze term :CommercialUse, comment: "exercising rights for\ncommercial purposes".freeze, label: "Commercial Use".freeze, - type: "cc:Prohibition".freeze + type: "http://creativecommons.org/ns#Prohibition".freeze term :Copyleft, comment: "derivative and\ncombined works must be licensed under specified\nterms, similar to those on the original\nwork".freeze, label: "Copyleft".freeze, - type: "cc:Requirement".freeze + type: "http://creativecommons.org/ns#Requirement".freeze term :DerivativeWorks, comment: "distribution of\nderivative works".freeze, label: "Derivative Works".freeze, - type: "cc:Permission".freeze + type: "http://creativecommons.org/ns#Permission".freeze term :Distribution, comment: "distribution, public\ndisplay, and publicly performance".freeze, label: "Distribution".freeze, - type: "cc:Permission".freeze + type: "http://creativecommons.org/ns#Permission".freeze term :HighIncomeNationUse, comment: "use in a\nnon-developing country".freeze, label: "High Income Nation Use".freeze, - type: "cc:Prohibition".freeze + type: "http://creativecommons.org/ns#Prohibition".freeze term :LesserCopyleft, comment: "derivative works must\nbe licensed under specified terms, with at least\nthe same conditions as the original work;\ncombinations with the work may be licensed under\ndifferent terms".freeze, label: "Lesser Copyleft".freeze, - type: "cc:Requirement".freeze + type: "http://creativecommons.org/ns#Requirement".freeze term :Notice, comment: "copyright and license\nnotices be kept intact".freeze, label: "Notice".freeze, - type: "cc:Requirement".freeze + type: "http://creativecommons.org/ns#Requirement".freeze term :Reproduction, comment: "making multiple\ncopies".freeze, label: "Reproduction".freeze, - type: "cc:Permission".freeze + type: "http://creativecommons.org/ns#Permission".freeze term :ShareAlike, comment: "derivative works be\nlicensed under the same terms or compatible terms\nas the original work".freeze, label: "Share Alike".freeze, - type: "cc:Requirement".freeze + type: "http://creativecommons.org/ns#Requirement".freeze term :Sharing, comment: "permits commercial\nderivatives, but only non-commercial\ndistribution".freeze, label: "Sharing".freeze, - type: "cc:Permission".freeze + type: "http://creativecommons.org/ns#Permission".freeze term :SourceCode, comment: "source code (the\npreferred form for making modifications) must be\nprovided when exercising some rights granted by\nthe license.".freeze, label: "Source Code".freeze, - type: "cc:Requirement".freeze + type: "http://creativecommons.org/ns#Requirement".freeze end end diff --git a/lib/rdf/vocab/cert.rb b/lib/rdf/vocab/cert.rb index f009525..de8cb54 100644 --- a/lib/rdf/vocab/cert.rb +++ b/lib/rdf/vocab/cert.rb @@ -3,206 +3,135 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/auth/cert# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Ontology for Certificates and crypto stuff. - # # - # # 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://www.w3.org/ns/auth/X509Uml.svg - # # @see http://lists.foaf-project.org/mailman/listinfo/foaf-protocols - # # @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] - # attr_reader :Certificate - # - # # the class of keys - # # @return [RDF::Vocabulary::Term] - # attr_reader :Key - # - # # the class of PGP Certificates - # # @return [RDF::Vocabulary::Term] - # attr_reader :PGPCertificate - # - # # Private Key - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrivateKey - # - # # Public Key - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicKey - # - # # The union of the public and private components of an RSAKey. Usually those pieces are not kept together - # # @return [RDF::Vocabulary::Term] - # attr_reader :RSAKey - # - # # The RSA public key. Padded message m are encrypted by applying the function modulus(power(m,exponent),modulus) - # # @return [RDF::Vocabulary::Term] - # attr_reader :RSAPublicKey - # - # # the class of signtatures - # # @return [RDF::Vocabulary::Term] - # attr_reader :Signature - # - # # the class of X509 Certificates - # # @return [RDF::Vocabulary::Term] - # attr_reader :X509Certificate - # - # # The exponent used to encrypt the message. Number chosen between 1 and the totient(p*q). Often named 'e' . - # # @return [RDF::Vocabulary::Term] - # attr_reader :exponent - # - # # the identity of the public key. This is the entity that knows the private key and so can decrypt messages encrypted with the public key, or encrypt messages that can be decrypted with the public key. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identity - # - # # relates an agent to a key - most often the public key. - # # @return [RDF::Vocabulary::Term] - # attr_reader :key - # - # #

The modulus of an RSA public and private key. Or the modulus of a DSA Key. The modulus is encoded as a hex binary. The binary is the same as the one encoded in the XML DSIG CryptoBinary

This specification defines the ds:CryptoBinary simple type for representing arbitrary-length integers (e.g. "bignums") in XML as octet strings. The integer value is first converted to a "big endian" bitstring. The bitstring is then padded with leading zero bits so that the total number of bits == 0 mod 8 (so that there are an integral number of octets). If the bitstring contains entire leading octets that are zero, these are removed (so the high-order octet is always non-zero).

The only difference is that the octet string is then encoded using either xsd:base64Binary or xsd:hexBinary. Currently for all usages of this relation, the xsd:hexBinary datatype should be used until the SPARQL working group specifies specifies in its D-Entailment that those two types are equivalent.

It would have been better had there been a hexInteger datatype that was standard and supported by all tools.

- # # @return [RDF::Vocabulary::Term] - # attr_reader :modulus - # - # # The exponent used to decrypt the message calculated as public_exponent*private_exponent = 1 modulo totient(p*q) The private exponent is often named 'd' - # # @return [RDF::Vocabulary::Term] - # attr_reader :privateExponent - # - # #

An encoding of a positive integer (from 0 to infinity) as a hexadecimal string that makes it easy to read and/or fun to present on the web.

The purpose of this way of representing hexadecimals is to enable users to copy and paste hexadecimal notations as shown by most browsers, keychains or tools such as opensso, into their rdf representation of choice. There are a wide variety of ways in which such strings can be presented. One finds the following:

   e1 dc d5 e1 00 8f 21 5e d5 cc 7c 7e c4 9c ad 86    64 aa dc 29 f2 8d d9 56 7f 31 b6 bd 1b fd b8 ee    51 0d 3c 84 59 a2 45 d2 13 59 2a 14 82 1a 0f 6e    d3 d1 4a 2d a9 4c 7e db 90 07 fc f1 8d a3 8e 38    25 21 0a 32 c1 95 31 3c ba 56 cc 17 45 87 e1 eb    fd 9f 0f 82 16 67 9f 67 fa 91 e4 0d 55 4e 52 c0    66 64 2f fe 98 8f ae f8 96 21 5e ea 38 9e 5c 4f    27 e2 48 ca ca f2 90 23 ad 99 4b cc 38 32 6d bf   

Or the same as the above, with ':' instead of spaces. We can't guarantee that these are the only ways such tools will present hexadecimals, so we are very lax.

The letters can be uppercase or lowercase, or mixed.

Some strings may start with initial 00's, and can be stripped in this notation as they often are. Doing this could, in complement of 2 notation turn a positive number into a negative one, if the first hexadecimal character happens to be one of the set {'8', '9', 'a', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', 'E', 'f', 'F'} . As we interpret this string as a hexadecimal number leading 00s are not important (Complement of 2 notation and hexadecimal overlap for positive numbers)

In order to make this fun, we allow any unicode characters in the string. A parser should

  1. remove all non hexadecimal characters
  2. treat the resulting as a hexadecimal representation of a number

This will allow people to make an ascii - better yet a UTF-8 - picture of their public key when publishing it on the web.

Cert hex is also a datatype property because we used to write it out like this

    [] a rsa:RSAPublicKey;      rsa:public_exponent [ cert:hex "e1 dc d5 ..."]   

The above notation is now deprecated. Now we prefer the literal format below.

    [] a rsa:RSAPublicKey;      rsa:public_exponent "e1 dc d5 ..."^^cert:hex .  
- # # @return [RDF::Vocabulary::Term] - # attr_reader :hex - # - # end CERT = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/auth/cert#")) do # Ontology definition ontology :"http://www.w3.org/ns/auth/cert#", comment: "\n Ontology for Certificates and crypto stuff.\n This is in development. \n Some other ontologies to look at:\n * http://www.w3.org/2000/10/swap/crypto\n + has cwm builtins: http://www.w3.org/2000/10/swap/doc/Trust\n - a bit old perhaps. It imports daml+oil\n - would help to be more completely specified\n - uses literals as subjects a little liberally, which makes this a \n bit difficult to work with frameworks that don't permit this\n * http://xmlns.com/wot/0.1/\n - limited very much to PGP (though on can map PGP to X509)\n - a little coarse grained, mixes up the PGP certificate with the PGP\n public key\n *\n Todo: \n - add some classes and relations for DSA\n - 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?\n - expand more on the certification side of things\n - verify this by security experts\n - owl2 has some constructs for combined inverse functional properties. \n This may be useful to use in defining an RSA key which is identified\n by two numbers.\n - also create html version of the spec by using this as a template.\n - should comments such as this be in html?\n ".freeze, - "dc:created": "2008-11-13".freeze, - "foaf:maker": "http://bblfish.net/people/henry/card#me".freeze, + "http://purl.org/dc/terms/created": "2008-11-13".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://lists.foaf-project.org/mailman/listinfo/foaf-protocols".freeze, "http://www.w3.org/ns/auth/X509Uml.svg".freeze, "http://www.w3.org/ns/auth/rsa".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + "http://xmlns.com/foaf/0.1/maker": "http://bblfish.net/people/henry/card#me".freeze, label: "Ontology for Certificates and crypto stuff.".freeze, - "rdfs:seeAlso": ["http://lists.foaf-project.org/mailman/listinfo/foaf-protocols".freeze, "http://www.w3.org/ns/auth/X509Uml.svg".freeze, "http://www.w3.org/ns/auth/rsa".freeze], - type: "owl:Ontology".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Certificate, comment: "A certificate is a Document that is signed.\n As explained here http://www.pgpi.org/doc/pgpintro/#p16\n 'A digital certificate consists of three things:\n * A public key.\n * Certificate information. ('Identity' information about the \n user, such as name, user ID, and so on.)\n * One or more digital signatures.'\n ".freeze, - isDefinedBy: "cert:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "Certificate".freeze, - subClassOf: "foaf:Document".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Key, comment: "the class of keys".freeze, - isDefinedBy: "cert:".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PGPCertificate, comment: "the class of PGP Certificates".freeze, - equivalentClass: "wot:PubKey".freeze, - isDefinedBy: "cert:".freeze, + equivalentClass: "http://xmlns.com/wot/0.1/PubKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "PGPCertificate".freeze, - subClassOf: "cert:Certificate".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://www.w3.org/ns/auth/cert#Certificate".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PrivateKey, comment: "Private Key".freeze, - isDefinedBy: "cert:".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "PrivateKey".freeze, - subClassOf: "cert:Key".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/auth/cert#Key".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PublicKey, comment: "Public Key".freeze, - isDefinedBy: "cert:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "PublicKey".freeze, - subClassOf: "cert:Key".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://www.w3.org/ns/auth/cert#Key".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RSAKey, comment: "\n The union of the public and private components of an RSAKey.\n Usually those pieces are not kept together\n ".freeze, - isDefinedBy: "cert:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "RSA Key".freeze, - subClassOf: "cert:Key".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://www.w3.org/ns/auth/cert#Key".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RSAPublicKey, comment: "\n The RSA public key. Padded message m are encrypted by applying the function\n modulus(power(m,exponent),modulus)\n ".freeze, - isDefinedBy: "cert:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://en.wikipedia.org/wiki/RSA".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "RSA Public Key".freeze, - "rdfs:seeAlso": "http://en.wikipedia.org/wiki/RSA".freeze, - subClassOf: ["cert:PublicKey".freeze, "cert:RSAKey".freeze], - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: ["http://www.w3.org/ns/auth/cert#PublicKey".freeze, "http://www.w3.org/ns/auth/cert#RSAKey".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Signature, comment: "the class of signtatures".freeze, - isDefinedBy: "cert:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "Signature".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :X509Certificate, comment: "the class of X509 Certificates".freeze, - isDefinedBy: "cert:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://en.wikipedia.org/wiki/X509".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "X509Certificate".freeze, - "rdfs:seeAlso": "http://en.wikipedia.org/wiki/X509".freeze, - subClassOf: "cert:Certificate".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://www.w3.org/ns/auth/cert#Certificate".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :exponent, comment: "\n The exponent used to encrypt the message. Number chosen between\n 1 and the totient(p*q). Often named 'e' .\n ".freeze, - domain: "cert:RSAPublicKey".freeze, - isDefinedBy: "cert:".freeze, + domain: "http://www.w3.org/ns/auth/cert#RSAPublicKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "exponent".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identity, comment: "\n the identity of the public key. This is the entity that knows the private key and \n so can decrypt messages encrypted with the public key, or encrypt messages that can \n be decrypted with the public key. \n ".freeze, - domain: "cert:PublicKey".freeze, + domain: "http://www.w3.org/ns/auth/cert#PublicKey".freeze, editorialNote: "\n It turns out that this relation is unintuitive to write out and to name.\n One should instead use cert:key\n ".freeze, - inverseOf: "cert:key".freeze, - isDefinedBy: "cert:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + inverseOf: "http://www.w3.org/ns/auth/cert#key".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "identity".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "archaic".freeze + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :key, comment: "relates an agent to a key - most often the public key.".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "cert:identity".freeze, - isDefinedBy: "cert:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://www.w3.org/ns/auth/cert#identity".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "key".freeze, - range: ["cert:Key".freeze, "cert:PublicKey".freeze], - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "unstable".freeze + range: ["http://www.w3.org/ns/auth/cert#Key".freeze, "http://www.w3.org/ns/auth/cert#PublicKey".freeze], + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :modulus, comment: " \n

The modulus of an RSA public and private key. \n Or the modulus of a DSA Key.\n The modulus is encoded as a hex binary. The binary is the same as the one encoded in the \n XML DSIG CryptoBinary\n

\n
\n This specification defines the ds:CryptoBinary simple type for representing arbitrary-length integers (e.g. \"bignums\") in XML as octet strings. The integer value is first converted to a \"big endian\" bitstring. The bitstring is then padded with leading zero bits so that the total number of bits == 0 mod 8 (so that there are an integral number of octets). If the bitstring contains entire leading octets that are zero, these are removed (so the high-order octet is always non-zero).\n
\n

The only difference is that the octet string is then encoded using either xsd:base64Binary or xsd:hexBinary. Currently for all usages of this relation, the xsd:hexBinary datatype should be used until the SPARQL working group specifies specifies in its D-Entailment that those two types are equivalent.

\n

It would have been better had there been a hexInteger datatype that was standard and supported by all tools.

\n ".freeze, - domain: "cert:RSAKey".freeze, - isDefinedBy: "cert:".freeze, + domain: "http://www.w3.org/ns/auth/cert#RSAKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "modulus".freeze, - range: ["xsd:base64Binary".freeze, "xsd:hexBinary".freeze], - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: ["http://www.w3.org/2001/XMLSchema#base64Binary".freeze, "http://www.w3.org/2001/XMLSchema#hexBinary".freeze], + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :privateExponent, comment: "\n The exponent used to decrypt the message\n calculated as \n public_exponent*private_exponent = 1 modulo totient(p*q)\n The private exponent is often named 'd'\n ".freeze, - domain: "cert:PrivateKey".freeze, - isDefinedBy: "cert:".freeze, + domain: "http://www.w3.org/ns/auth/cert#PrivateKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "private".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze # Datatype definitions term :hex, comment: "

\n An encoding of a positive integer (from 0 to infinity) as a hexadecimal string that makes it easy to read and/or fun to present on the web.

\n

The purpose of this way of representing hexadecimals is to enable users to copy and paste hexadecimal notations as shown by most browsers, keychains or tools such as opensso, into their rdf representation of choice. There are a wide variety of ways in which such strings can be presented. One finds the following:

\n
\n  e1 dc d5 e1 00 8f 21 5e d5 cc 7c 7e c4 9c ad 86 \n  64 aa dc 29 f2 8d d9 56 7f 31 b6 bd 1b fd b8 ee \n  51 0d 3c 84 59 a2 45 d2 13 59 2a 14 82 1a 0f 6e \n  d3 d1 4a 2d a9 4c 7e db 90 07 fc f1 8d a3 8e 38 \n  25 21 0a 32 c1 95 31 3c ba 56 cc 17 45 87 e1 eb \n  fd 9f 0f 82 16 67 9f 67 fa 91 e4 0d 55 4e 52 c0 \n  66 64 2f fe 98 8f ae f8 96 21 5e ea 38 9e 5c 4f \n  27 e2 48 ca ca f2 90 23 ad 99 4b cc 38 32 6d bf  \n
\n

\n Or the same as the above, with ':' instead of spaces. We can't guarantee that these are the only ways such tools will present hexadecimals, so we are very lax.

\n

The letters can be uppercase or lowercase, or mixed.

\n

Some strings may start with initial 00's, and can be stripped in this notation as they often are. Doing this could, in complement of 2 notation turn a positive number into a negative one, if the first hexadecimal character happens to be one of the set {'8', '9', 'a', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', 'E', 'f', 'F'} . As we interpret this string as a hexadecimal number leading 00s are not important (Complement of 2 notation and hexadecimal overlap for positive numbers)

\n

In order to make this fun, we allow any unicode characters in the string. A parser should

\n
    \n
  1. remove all non hexadecimal characters
  2. \n
  3. treat the resulting as a hexadecimal representation of a number
  4. \n
\n

\n This will allow people to make an ascii - better yet a UTF-8 - picture of their public key when publishing it on the web.\n

\n

\n Cert hex is also a datatype property because we used to write it out like this\n

\n
\n   [] a rsa:RSAPublicKey;\n     rsa:public_exponent [ cert:hex \"e1 dc d5 ...\"] \n 
\n

The above notation is now deprecated. Now we prefer the literal format below.

\n
\n   [] a rsa:RSAPublicKey;\n     rsa:public_exponent \"e1 dc d5 ...\"^^cert:hex .\n 
\n
\n ".freeze, editorialNote: "

\n This relation should slowly be transited to just being a datatype.

\n

Being a datatype and a property is legal as explained here\n on the semantic web mailing list in March 2010. \n But it may be somewhat confusing, especially if it goes against a pattern - still to be set - by the xsd datatypes as the follow up email makes clear.

\n ".freeze, - equivalentClass: "xsd:nonNegativeInteger".freeze, - isDefinedBy: "cert:".freeze, + equivalentClass: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://en.wikipedia.org/wiki/Hexadecimal".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://www.w3.org/ns/auth/cert#".freeze, label: "hexadecimal".freeze, - "rdfs:seeAlso": "http://en.wikipedia.org/wiki/Hexadecimal".freeze, - type: "rdfs:Datatype".freeze, - "vs:term_status": "archaic".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze end end diff --git a/lib/rdf/vocab/cnt.rb b/lib/rdf/vocab/cnt.rb index 9a07df5..a2ceaea 100644 --- a/lib/rdf/vocab/cnt.rb +++ b/lib/rdf/vocab/cnt.rb @@ -3,203 +3,121 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2011/content# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Representing Content in RDF - # # - # # Representing Content in RDF as defined by http://www.w3.org/TR/Content-in-RDF/ - # # @version Working Draft 29 April 2011 - # # @see http://www.w3.org/WAI/intro/earl - # class CNT < RDF::StrictVocabulary - # # The content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Content - # - # # The base64 encoded content (can be used for binary content). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContentAsBase64 - # - # # The text content (can be used for text content). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContentAsText - # - # # The XML content (can only be used for XML-wellformed content). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContentAsXML - # - # # The document type declaration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DoctypeDecl - # - # # The Base64 encoded byte sequence of the content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bytes - # - # # The character encoding used to create a character sequence from a byte sequence or vice versa. - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterEncoding - # - # # The character sequence of the text content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :chars - # - # # The character encoding declared in the XML declaration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :declaredEncoding - # - # # The document type name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :doctypeName - # - # # The document type declaration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dtDecl - # - # # The internal document type definition subset within the document type declarations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :internalSubset - # - # # The XML content preceding the document type declaration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :leadingMisc - # - # # The document type declarations's public identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicId - # - # # The XML content following the document type declaration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rest - # - # # The standalone declaration in the XML declaration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :standalone - # - # # The document type declarations's system identifier (typed: xsd:anyURI) - # # @return [RDF::Vocabulary::Term] - # attr_reader :systemId - # - # # The XML version declared in the XML declaration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # end CNT = Class.new(RDF::StrictVocabulary("http://www.w3.org/2011/content#")) do # Ontology definition ontology :"http://www.w3.org/2011/content#", comment: "Representing Content in RDF as defined by http://www.w3.org/TR/Content-in-RDF/".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/WAI/intro/earl".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://purl.org/dc/terms/".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "Working Draft 29 April 2011".freeze, isDefinedBy: "http://www.w3.org/TR/Content-in-RDF/".freeze, label: "Representing Content in RDF".freeze, - "owl:imports": "dc:".freeze, - "owl:versionInfo": "Working Draft 29 April 2011".freeze, - "rdfs:seeAlso": "http://www.w3.org/WAI/intro/earl".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Content, comment: "The content.".freeze, label: "Content".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ContentAsBase64, comment: "The base64 encoded content (can be used for binary content).".freeze, label: "Base64 content".freeze, - subClassOf: "cnt:Content".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2011/content#Content".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ContentAsText, comment: "The text content (can be used for text content).".freeze, label: "Text content".freeze, - subClassOf: "cnt:Content".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2011/content#Content".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ContentAsXML, comment: "The XML content (can only be used for XML-wellformed content).".freeze, label: "XML content".freeze, - subClassOf: "cnt:Content".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2011/content#Content".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :DoctypeDecl, comment: "The document type declaration.".freeze, label: "Document type declaration".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :bytes, comment: "The Base64 encoded byte sequence of the content.".freeze, - domain: "cnt:ContentAsBase64".freeze, + domain: "http://www.w3.org/2011/content#ContentAsBase64".freeze, label: "Base64 encoded byte sequence".freeze, - range: "xsd:base64Binary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#base64Binary".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :characterEncoding, comment: "The character encoding used to create a character sequence from a byte sequence or vice versa.".freeze, - domain: "cnt:Content".freeze, + domain: "http://www.w3.org/2011/content#Content".freeze, label: "Character encoding".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :chars, comment: "The character sequence of the text content.".freeze, - domain: "cnt:ContentAsText".freeze, + domain: "http://www.w3.org/2011/content#ContentAsText".freeze, label: "Character sequence".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :declaredEncoding, comment: "The character encoding declared in the XML declaration.".freeze, - domain: "cnt:ContentAsXML".freeze, + domain: "http://www.w3.org/2011/content#ContentAsXML".freeze, label: "XML character encoding".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :doctypeName, comment: "The document type name.".freeze, - domain: "cnt:DoctypeDecl".freeze, + domain: "http://www.w3.org/2011/content#DoctypeDecl".freeze, label: "Document type name".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :dtDecl, comment: "The document type declaration.".freeze, - domain: "cnt:ContentAsXML".freeze, + domain: "http://www.w3.org/2011/content#ContentAsXML".freeze, label: "Document type declaration".freeze, - range: "cnt:DoctypeDecl".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2011/content#DoctypeDecl".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :internalSubset, comment: "The internal document type definition subset within the document type declarations.".freeze, - domain: "cnt:DoctypeDecl".freeze, + domain: "http://www.w3.org/2011/content#DoctypeDecl".freeze, label: "Internal DTD subset".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :leadingMisc, comment: "The XML content preceding the document type declaration.".freeze, - domain: "cnt:ContentAsXML".freeze, + domain: "http://www.w3.org/2011/content#ContentAsXML".freeze, label: "XML leading misc".freeze, - range: "rdf:XMLLiteral".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :publicId, comment: "The document type declarations's public identifier.".freeze, - domain: "cnt:DoctypeDecl".freeze, + domain: "http://www.w3.org/2011/content#DoctypeDecl".freeze, label: "Public ID".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :rest, comment: "The XML content following the document type declaration.".freeze, - domain: "cnt:ContentAsXML".freeze, + domain: "http://www.w3.org/2011/content#ContentAsXML".freeze, label: "XML rest".freeze, - range: "rdf:XMLLiteral".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :standalone, comment: "The standalone declaration in the XML declaration.".freeze, - domain: "cnt:ContentAsXML".freeze, + domain: "http://www.w3.org/2011/content#ContentAsXML".freeze, label: "XML standalone document declaration".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :systemId, comment: "The document type declarations's system identifier (typed: xsd:anyURI)".freeze, - domain: "cnt:DoctypeDecl".freeze, + domain: "http://www.w3.org/2011/content#DoctypeDecl".freeze, label: "System ID".freeze, - range: "xsd:anyURI".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :version, comment: "The XML version declared in the XML declaration.".freeze, - domain: "cnt:ContentAsXML".freeze, + domain: "http://www.w3.org/2011/content#ContentAsXML".freeze, label: "XML version".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] end end diff --git a/lib/rdf/vocab/crm.rb b/lib/rdf/vocab/crm.rb index dd4c23b..0f0e67d 100644 --- a/lib/rdf/vocab/crm.rb +++ b/lib/rdf/vocab/crm.rb @@ -3,3478 +3,2172 @@ # This file generated automatically using rdf vocabulary format from http://www.cidoc-crm.org/cidoc-crm/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class CRM < RDF::StrictVocabulary - # # This class comprises transfers of physical custody of objects between instances of E39 Actor. The recording of the donor and/or recipient is optional. It is possible that in an instance of E10 Transfer of Custody there is either no donor or no recipient. Depending on the circumstances it may describe: 1. the beginning of custody 2. the end of custody 3. the transfer of custody 4. the receipt of custody from an unknown source 5. the declared loss of an object The distinction between the legal responsibility for custody and the actual physical possession of the object should be expressed using the property P2 has type (is type of). A specific case of transfer of custody is theft. The interpretation of the museum notion of "accession" differs between institutions. The CRM therefore models legal ownership and physical custody separately. Institutions will then model their specific notions of accession and deaccession as combinations of these. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E10_Transfer_of_Custody - # - # # This class comprises all instances of E7 Activity that create, alter or change E24 Physical Man-Made Thing. This class includes the production of an item from raw materials, and other so far undocumented objects, and the preventive treatment or restoration of an object for conservation. Since the distinction between modification and production is not always clear, modification is regarded as the more generally applicable concept. This implies that some items may be consumed or destroyed in a Modification, and that others may be produced as a result of it. An event should also be documented using E81 Transformation if it results in the destruction of one or more objects and the simultaneous production of others using parts or material from the originals. In this case, the new items have separate identities. If the instance of the E29 Design or Procedure utilized for the modification prescribes the use of specific materials, they should be documented using property P68 foresees use of (use foreseen by): E57 Material of E29 Design or Procedure, rather than via P126 employed (was employed in): E57 Material. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E11_Modification - # - # # This class comprises activities that are designed to, and succeed in, creating one or more new items. It specializes the notion of modification into production. The decision as to whether or not an object is regarded as new is context sensitive. Normally, items are considered “new” if there is no obvious overall similarity between them and the consumed items and material used in their production. In other cases, an item is considered “new” because it becomes relevant to documentation by a modification. For example, the scribbling of a name on a potsherd may make it a voting token. The original potsherd may not be worth documenting, in contrast to the inscribed one. This entity can be collective: the printing of a thousand books, for example, would normally be considered a single event. An event should also be documented using E81 Transformation if it results in the destruction of one or more objects and the simultaneous production of others using parts or material from the originals. In this case, the new items have separate identities and matter is preserved, but identity is not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E12_Production - # - # # This class comprises the actions of making assertions about properties of an object or any relation between two items or concepts. This class allows the documentation of how the respective assignment came about, and whose opinion it was. All the attributes or properties assigned in such an action can also be seen as directly attached to the respective item or concept, possibly as a collection of contradictory values. All cases of properties in this model that are also described indirectly through an action are characterised as "short cuts" of this action. This redundant modelling of two alternative views is preferred because many implementations may have good reasons to model either the action or the short cut, and the relation between both alternatives can be captured by simple rules. In particular, the class describes the actions of people making propositions and statements during certain museum procedures, e.g. the person and date when a condition statement was made, an identifier was assigned, the museum object was measured, etc. Which kinds of such assignments and statements need to be documented explicitly in structures of a schema rather than free text, depends on if this information should be accessible by structured queries. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E13_Attribute_Assignment - # - # # This class describes the act of assessing the state of preservation of an object during a particular period. The condition assessment may be carried out by inspection, measurement or through historical research. This class is used to document circumstances of the respective assessment that may be relevant to interpret its quality at a later stage, or to continue research on related documents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E14_Condition_Assessment - # - # # This class comprises activities that result in the allocation of an identifier to an instance of E1 CRM Entity. An E15 Identifier Assignment may include the creation of the identifier from multiple constituents, which themselves may be instances of E41 Appellation. The syntax and kinds of constituents to be used may be declared in a rule constituting an instance of E29 Design or Procedure. Examples of such identifiers include Find Numbers, Inventory Numbers, uniform titles in the sense of librarianship and Digital Object Identifiers (DOI). Documenting the act of identifier assignment and deassignment is especially useful when objects change custody or the identification system of an organization is changed. In order to keep track of the identity of things in such cases, it is important to document by whom, when and for what purpose an identifier is assigned to an item. The fact that an identifier is a preferred one for an organisation can be expressed by using the property E1 CRM Entity. P48 has preferred identifier (is preferred identifier of): E42 Identifier. It can better be expressed in a context independent form by assigning a suitable E55 Type, such as “preferred identifier assignment”, to the respective instance of E15 Identifier Assignment via the P2 has type property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E15_Identifier_Assignment - # - # # This class comprises actions measuring physical properties and other values that can be determined by a systematic procedure. Examples include measuring the monetary value of a collection of coins or the running time of a specific video cassette. The E16 Measurement may use simple counting or tools, such as yardsticks or radiation detection devices. The interest is in the method and care applied, so that the reliability of the result may be judged at a later stage, or research continued on the associated documents. The date of the event is important for dimensions, which may change value over time, such as the length of an object subject to shrinkage. Details of methods and devices are best handled as free text, whereas basic techniques such as "carbon 14 dating" should be encoded using P2 has type (is type of:) E55 Type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E16_Measurement - # - # # This class comprises the actions of classifying items of whatever kind. Such items include objects, specimens, people, actions and concepts. This class allows for the documentation of the context of classification acts in cases where the value of the classification depends on the personal opinion of the classifier, and the date that the classification was made. This class also encompasses the notion of "determination," i.e. the systematic and molecular identification of a specimen in biology. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E17_Type_Assignment - # - # # This class comprises all persistent physical items with a relatively stable form, man-made or natural. Depending on the existence of natural boundaries of such things, the CRM distinguishes the instances of E19 Physical Object from instances of E26 Physical Feature, such as holes, rivers, pieces of land etc. Most instances of E19 Physical Object can be moved (if not too heavy), whereas features are integral to the surrounding matter. The CRM is generally not concerned with amounts of matter in fluid or gaseous states. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E18_Physical_Thing - # - # # This class comprises items of a material nature that are units for documentation and have physical boundaries that separate them completely in an objective way from other objects. The class also includes all aggregates of objects made for functional purposes of whatever kind, independent of physical coherence, such as a set of chessmen. Typically, instances of E19 Physical Object can be moved (if not too heavy). In some contexts, such objects, except for aggregates, are also called “bona fide objects” (Smith & Varzi, 2000, pp.401-420), i.e. naturally defined objects. The decision as to what is documented as a complete item, rather than by its parts or components, may be a purely administrative decision or may be a result of the order in which the item was acquired. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E19_Physical_Object - # - # # This class comprises all things in the universe of discourse of the CIDOC Conceptual Reference Model. It is an abstract concept providing for three general properties: 1. Identification by name or appellation, and in particular by a preferred identifier 2. Classification by type, allowing further refinement of the specific subclass an instance belongs to 3. Attachment of free text for the expression of anything not captured by formal properties With the exception of E59 Primitive Value, all other classes within the CRM are directly or indirectly specialisations of E1 CRM Entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E1_CRM_Entity - # - # # This class comprises individual items of a material nature, which live, have lived or are natural products of or from living organisms. Artificial objects that incorporate biological elements, such as Victorian butterfly frames, can be documented as both instances of E20 Biological Object and E22 Man-Made Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E20_Biological_Object - # - # # This class comprises real persons who live or are assumed to have lived. Legendary figures that may have existed, such as Ulysses and King Arthur, fall into this class if the documentation refers to them as historical figures. In cases where doubt exists as to whether several persons are in fact identical, multiple instances can be created and linked to indicate their relationship. The CRM does not propose a specific form to support reasoning about possible identity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E21_Person - # - # # This class comprises identifiable features that are physically attached in an integral way to particular physical objects. Instances of E26 Physical Feature share many of the attributes of instances of E19 Physical Object. They may have a one-, two- or three-dimensional geometric extent, but there are no natural borders that separate them completely in an objective way from the carrier objects. For example, a doorway is a feature but the door itself, being attached by hinges, is not. Instances of E26 Physical Feature can be features in a narrower sense, such as scratches, holes, reliefs, surface colours, reflection zones in an opal crystal or a density change in a piece of wood. In the wider sense, they are portions of particular objects with partially imaginary borders, such as the core of the Earth, an area of property on the surface of the Earth, a landscape or the head of a contiguous marble statue. They can be measured and dated, and it is sometimes possible to state who or what is or was responsible for them. They cannot be separated from the carrier object, but a segment of the carrier object may be identified (or sometimes removed) carrying the complete feature. This definition coincides with the definition of "fiat objects" (Smith & Varzi, 2000, pp.401-420), with the exception of aggregates of “bona fide objects”. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E26_Physical_Feature - # - # # This class comprises pieces of land or sea floor. In contrast to the purely geometric notion of E53 Place, this class describes constellations of matter on the surface of the Earth or other celestial body, which can be represented by photographs, paintings and maps. Instances of E27 Site are composed of relatively immobile material items and features in a particular configuration at a particular location - # # @return [RDF::Vocabulary::Term] - # attr_reader :E27_Site - # - # # This class comprises non-material products of our minds and other human produced data that have become objects of a discourse about their identity, circumstances of creation or historical implication. The production of such information may have been supported by the use of technical devices such as cameras or computers. Characteristically, instances of this class are created, invented or thought by someone, and then may be documented or communicated between persons. Instances of E28 Conceptual Object have the ability to exist on more than one particular carrier at the same time, such as paper, electronic signals, marks, audio media, paintings, photos, human memories, etc. They cannot be destroyed. They exist as long as they can be found on at least one carrier or in at least one human memory. Their existence ends when the last carrier and the last memory are lost. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E28_Conceptual_Object - # - # # This class comprises documented plans for the execution of actions in order to achieve a result of a specific quality, form or contents. In particular it comprises plans for deliberate human activities that may result in the modification or production of instances of E24 Physical Thing. Instances of E29 Design or Procedure can be structured in parts and sequences or depend on others. This is modelled using P69 has association with (is associated with). Designs or procedures can be seen as one of the following: 1. A schema for the activities it describes 2. A schema of the products that result from their application. 3. An independent intellectual product that may have never been applied, such as Leonardo da Vinci’s famous plans for flying machines. Because designs or procedures may never be applied or only partially executed, the CRM models a loose relationship between the plan and the respective product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E29_Design_or_Procedure - # - # # This class comprises all phenomena, such as the instances of E4 Periods, E5 Events and states, which happen over a limited extent in time. In some contexts, these are also called perdurants. This class is disjoint from E77 Persistent Item. This is an abstract class and has no direct instances. E2 Temporal Entity is specialized into E4 Period, which applies to a particular geographic area (defined with a greater or lesser degree of precision), and E3 Condition State, which applies to instances of E18 Physical Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E2_Temporal_Entity - # - # # This class comprises legal privileges concerning material and immaterial things or their derivatives. These include reproduction and property rights - # # @return [RDF::Vocabulary::Term] - # attr_reader :E30_Right - # - # # This class comprises identifiable immaterial items that make propositions about reality. These propositions may be expressed in text, graphics, images, audiograms, videograms or by other similar means. Documentation databases are regarded as a special case of E31 Document. This class should not be confused with the term “document” in Information Technology, which is compatible with E73 Information Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E31_Document - # - # # This class comprises encyclopaedia, thesauri, authority lists and other documents that define terminology or conceptual systems for consistent use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E32_Authority_Document - # - # # This class comprises identifiable expressions in natural language or languages. Instances of E33 Linguistic Object can be expressed in many ways: e.g. as written texts, recorded speech or sign language. However, the CRM treats instances of E33 Linguistic Object independently from the medium or method by which they are expressed. Expressions in formal languages, such as computer code or mathematical formulae, are not treated as instances of E33 Linguistic Object by the CRM. These should be modelled as instances of E73 Information Object. The text of an instance of E33 Linguistic Object can be documented in a note by P3 has note: E62 String - # # @return [RDF::Vocabulary::Term] - # attr_reader :E33_Linguistic_Object - # - # # This class comprises recognisable, short texts attached to instances of E24 Physical Man-Made Thing. The transcription of the text can be documented in a note by P3 has note: E62 String. The alphabet used can be documented by P2 has type: E55 Type. This class does not intend to describe the idiosyncratic characteristics of an individual physical embodiment of an inscription, but the underlying prototype. The physical embodiment is modelled in the CRM as E24 Physical Man-Made Thing. The relationship of a physical copy of a book to the text it contains is modelled using E84 Information Carrier. P128 carries (is carried by): E33 Linguistic Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E34_Inscription - # - # # This class comprises the names assigned to works, such as texts, artworks or pieces of music. Titles are proper noun phrases or verbal phrases, and should not be confused with generic object names such as “chair”, “painting” or “book” (the latter are common nouns that stand for instances of E55 Type). Titles may be assigned by the creator of the work itself, or by a social group. This class also comprises the translations of titles that are used as surrogates for the original titles in different social contexts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E35_Title - # - # # This class comprises the intellectual or conceptual aspects of recognisable marks and images. This class does not intend to describe the idiosyncratic characteristics of an individual physical embodiment of a visual item, but the underlying prototype. For example, a mark such as the ICOM logo is generally considered to be the same logo when used on any number of publications. The size, orientation and colour may change, but the logo remains uniquely identifiable. The same is true of images that are reproduced many times. This means that visual items are independent of their physical support. The class E36 Visual Item provides a means of identifying and linking together instances of E24 Physical Man-Made Thing that carry the same visual symbols, marks or images etc. The property P62 depicts (is depicted by) between E24 Physical Man-Made Thing and depicted subjects (E1 CRM Entity) can be regarded as a short-cut of the more fully developed path from E24 Physical Man-Made Thing through P65 shows visual item (is shown by), E36 Visual Item, P138 represents (has representation) to E1CRM Entity, which in addition captures the optical features of the depiction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E36_Visual_Item - # - # # This class comprises symbols, signs, signatures or short texts applied to instances of E24 Physical Man-Made Thing by arbitrary techniques in order to indicate the creator, owner, dedications, purpose, etc. This class specifically excludes features that have no semantic significance, such as scratches or tool marks. These should be documented as instances of E25 Man-Made Feature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E37_Mark - # - # # This class comprises distributions of form, tone and colour that may be found on surfaces such as photos, paintings, prints and sculptures or directly on electronic media. The degree to which variations in the distribution of form and colour affect the identity of an instance of E38 Image depends on a given purpose. The original painting of the Mona Lisa in the Louvre may be said to bear the same instance of E38 Image as reproductions in the form of transparencies, postcards, posters or T-shirts, even though they may differ in size and carrier and may vary in tone and colour. The images in a “spot the difference” competition are not the same with respect to their context, however similar they may at first appear. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E38_Image - # - # # This class comprises people, either individually or in groups, who have the potential to perform intentional actions of kinds for which someone may be held responsible. The CRM does not attempt to model the inadvertent actions of such actors. Individual people should be documented as instances of E21 Person, whereas groups should be documented as instances of either E74 Group or its subclass E40 Legal Body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E39_Actor - # - # # This class comprises the states of objects characterised by a certain condition over a time-span. An instance of this class describes the prevailing physical condition of any material object or feature during a specific E52 Time Span. In general, the time-span for which a certain condition can be asserted may be shorter than the real time-span, for which this condition held. The nature of that condition can be described using P2 has type. For example, the E3 Condition State “condition of the SS Great Britain between 22 September 1846 and 27 August 1847” can be characterized as E55 Type “wrecked”. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E3_Condition_State - # - # # This class comprises institutions or groups of people that have obtained a legal recognition as a group and can act collectively as agents. This means that they can perform actions, own property, create or destroy things and can be held collectively responsible for their actions like individual people. The term 'personne morale' is often used for this in French. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E40_Legal_Body - # - # # This class comprises signs, either meaningful or not, or arrangements of signs following a specific syntax, that are used or can be used to refer to and identify a specific instance of some class or category within a certain context. Instances of E41 Appellation do not identify things by their meaning, even if they happen to have one, but instead by convention, tradition, or agreement. Instances of E41 Appellation are cultural constructs; as such, they have a context, a history, and a use in time and space by some group of users. A given instance of E41 Appellation can have alternative forms, i.e., other instances of E41 Appellation that are always regarded as equivalent independent from the thing it denotes. Specific subclasses of E41 Appellation should be used when instances of E41 Appellation of a characteristic form are used for particular objects. Instances of E49 Time Appellation, for example, which take the form of instances of E50 Date, can be easily recognised. E41 Appellation should not be confused with the act of naming something. Cf. E15 Identifier Assignment - # # @return [RDF::Vocabulary::Term] - # attr_reader :E41_Appellation - # - # # This class comprises strings or codes assigned to instances of E1 CRM Entity in order to identify them uniquely and permanently within the context of one or more organisations. Such codes are often known as inventory numbers, registration codes, etc. and are typically composed of alphanumeric sequences. The class E42 Identifier is not normally used for machine-generated identifiers used for automated processing unless these are also used by human agents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E42_Identifier - # - # # This class comprises any sort of identifier characteristically used to refer to an E53 Place. Instances of E44 Place Appellation may vary in their degree of precision and their meaning may vary over time - the same instance of E44 Place Appellation may be used to refer to several places, either because of cultural shifts, or because objects used as reference points have moved around. Instances of E44 Place Appellation can be extremely varied in form: postal addresses, instances of E47 Spatial Coordinate, and parts of buildings can all be considered as instances of E44 Place Appellation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E44_Place_Appellation - # - # # This class comprises identifiers expressed in coding systems for places, such as postal addresses used for mailing. An E45 Address can be considered both as the name of an E53 Place and as an E51 Contact Point for an E39 Actor. This dual aspect is reflected in the multiple inheritance. However, some forms of mailing addresses, such as a postal box, are only instances of E51 Contact Point, since they do not identify any particular Place. These should not be documented as instances of E45 Address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E45_Address - # - # # This class comprises areas of objects referred to in terms specific to the general geometry or structure of its kind. The 'prow' of the boat, the 'frame' of the picture, the 'front' of the building are all instances of E46 Section Definition. The class highlights the fact that parts of objects can be treated as locations. This holds in particular for features without natural boundaries, such as the “head” of a marble statue made out of one block (cf. E53 Place). In answer to the question 'where is the signature?' one might reply 'on the lower left corner'. (Section Definition is closely related to the term “segment” in Gerstl, P.& Pribbenow, S, 1996 “ A conceptual theory of part – whole relations and its applications”, Data & Knowledge Engineering 20 305-322, North Holland- Elsevier ). - # # @return [RDF::Vocabulary::Term] - # attr_reader :E46_Section_Definition - # - # # This class comprises the textual or numeric information required to locate specific instances of E53 Place within schemes of spatial identification. Coordinates are a specific form of E44 Place Appellation, that is, a means of referring to a particular E53 Place. Coordinates are not restricted to longitude, latitude and altitude. Any regular system of reference that maps onto an E19 Physical Object can be used to generate coordinates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E47_Spatial_Coordinates - # - # # This class comprises particular and common forms of E44 Place Appellation. Place Names may change their application over time: the name of an E53 Place may change, and a name may be reused for a different E53 Place. Instances of E48 Place Name are typically subject to place name gazetteers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E48_Place_Name - # - # # This class comprises all forms of names or codes, such as historical periods, and dates, which are characteristically used to refer to a specific E52 Time-Span. The instances of E49 Time Appellation may vary in their degree of precision, and they may be relative to other time frames, “Before Christ” for example. Instances of E52 Time-Span are often defined by reference to a cultural period or an event e.g. ‘the duration of the Ming Dynasty’. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E49_Time_Appellation - # - # # This class comprises sets of coherent phenomena or cultural manifestations bounded in time and space. It is the social or physical coherence of these phenomena that identify an E4 Period and not the associated spatiotemporal bounds. These bounds are a mere approximation of the actual process of growth, spread and retreat. Consequently, different periods can overlap and coexist in time and space, such as when a nomadic culture exists in the same area as a sedentary culture. As the actual extent of an E4 Period in spacetime we regard the trajectories of the participating physical things during their participation in an instance of E4 Period, the open spaces via which they have interacted and the spaces by which they had the potential to interact during that period or event in the way defined by the type of the respective period or event, such as the air in a meeting room transferring the voices. Since these phenomena are fuzzy, we assume the spatiotemporal extent to be contiguous, except for cases of phenomena spreading out over islands or other separated areas. In these cases, the trajectories necessary for participants to travel between these areas are not regarded as part of the spatiotemporal extent. Consequently, instances of E4 Period may occupy each a limited number of disjoint spacetime volumes, however there must not be a discontinuity in the total timespan covered by these spacetime volumes. Typically this class is used to describe prehistoric or historic periods such as the “Neolithic Period”, the “Ming Dynasty” or the “McCarthy Era”, but also geopolitical units and activities of settlements are regarded as special cases of E4 Period. Geopolitical units may be distributed over disconnected areas, such as islands or colonies. In such cases, the spatiotemporal extent is composed of more than one spacetime volume. One may argue that the activities to govern disconnected areas imply travelling through spaces connecting them and that these areas hence are spatially connected in a way, but it appears counterintuitive to consider for instance travel routes in international waters as extensions of geopolitical units. Nevertheless, an instance of E4 Period must be contiguous in time. I.e., if it has ended in all areas, it has ended as a whole, but it may involve one area after another, such as the Polynesian migration, as long as it is ongoing at least in one area. There are no assumptions about the scale of the associated phenomena. In particular all events are seen as synthetic processes consisting of coherent phenomena. Therefore E4 Period is a superclass of E5 Event. For example, a modern clinical E67 Birth can be seen as both an atomic E5 Event and as an E4 Period that consists of multiple activities performed by multiple instances of E39 Actor. There are two different conceptualisations of ‘artistic style’, defined either by physical features or by historical context. For example, “Impressionism” can be viewed as a period lasting from approximately 1870 to 1905 during which paintings with particular characteristics were produced by a group of artists that included (among others) Monet, Renoir, Pissarro, Sisley and Degas. Alternatively, it can be regarded as a style applicable to all paintings sharing the characteristics of the works produced by the Impressionist painters, regardless of historical context. The first interpretation is an E4 Period, and the second defines morphological object types that fall under E55 Type. Another specific case of an E4 Period is the set of activities and phenomena associated with a settlement, such as the populated period of Nineveh. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E4_Period - # - # # This class comprises specific forms of E49 Time Appellation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E50_Date - # - # # This class comprises identifiers employed, or understood, by communication services to direct communications to an instance of E39 Actor. These include E-mail addresses, telephone numbers, post office boxes, Fax numbers, URLs etc. Most postal addresses can be considered both as instances of E44 Place Appellation and E51 Contact Point. In such cases the subclass E45 Address should be used. URLs are addresses used by machines to access another machine through an http request. Since the accessed machine acts on behalf of the E39 Actor providing the machine, URLs are considered as instances of E51 Contact Point to that E39 Actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E51_Contact_Point - # - # # This class comprises extents in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter. The instances of E53 Place are usually determined by reference to the position of “immobile” objects such as buildings, cities, mountains, rivers, or dedicated geodetic marks. A Place can be determined by combining a frame of reference and a location with respect to this frame. It may be identified by one or more instances of E44 Place Appellation. It is sometimes argued that instances of E53 Place are best identified by global coordinates or absolute reference systems. However, relative references are often more relevant in the context of cultural documentation and tend to be more precise. In particular, we are often interested in position in relation to large, mobile objects, such as ships. For example, the Place at which Nelson died is known with reference to a large mobile object – H.M.S Victory. A resolution of this Place in terms of absolute coordinates would require knowledge of the movements of the vessel and the precise time of death, either of which may be revised, and the result would lack historical and cultural relevance. Any object can serve as a frame of reference for E53 Place determination. The model foresees the notion of a "section" of an E19 Physical Object as a valid E53 Place determination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E53_Place - # - # # This class comprises quantifiable properties that can be measured by some calibrated means and can be approximated by values, i.e. points or regions in a mathematical or conceptual space, such as natural or real numbers, RGB values etc. An instance of E54 Dimension represents the true quantity, independent from its numerical approximation, e.g. in inches or in cm. The properties of the class E54 Dimension allow for expressing the numerical approximation of the values of an instance of E54 Dimension. If the true values belong to a non-discrete space, such as spatial distances, it is recommended to record them as approximations by intervals or regions of indeterminacy enclosing the assumed true values. For instance, a length of 5 cm may be recorded as 4.5-5.5 cm, according to the precision of the respective observation. Note, that interoperability of values described in different units depends critically on the representation as value regions. Numerical approximations in archaic instances of E58 Measurement Unit used in historical records should be preserved. Equivalents corresponding to current knowledge should be recorded as additional instances of E54 Dimension as appropriate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E54_Dimension - # - # # This class comprises concepts denoted by terms from thesauri and controlled vocabularies used to characterize and classify instances of CRM classes. Instances of E55 Type represent concepts in contrast to instances of E41 Appellation which are used to name instances of CRM classes. E55 Type is the CRM’s interface to domain specific ontologies and thesauri. These can be represented in the CRM as subclasses of E55 Type, forming hierarchies of terms, i.e. instances of E55 Type linked via P127 has broader term (has narrower term). Such hierarchies may be extended with additional properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E55_Type - # - # # This class is a specialization of E55 Type and comprises the natural languages in the sense of concepts. This type is used categorically in the model without reference to instances of it, i.e. the Model does not foresee the description of instances of instances of E56 Language, e.g.: “instances of Mandarin Chinese”. It is recommended that internationally or nationally agreed codes and terminology are used to denote instances of E56 Language, such as those defined in ISO 639:1988. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E56_Language - # - # # This class is a specialization of E55 Type and comprises the concepts of materials. Instances of E57 Material may denote properties of matter before its use, during its use, and as incorporated in an object, such as ultramarine powder, tempera paste, reinforced concrete. Discrete pieces of raw-materials kept in museums, such as bricks, sheets of fabric, pieces of metal, should be modelled individually in the same way as other objects. Discrete used or processed pieces, such as the stones from Nefer Titi's temple, should be modelled as parts (cf. P46 is composed of). This type is used categorically in the model without reference to instances of it, i.e. the Model does not foresee the description of instances of instances of E57 Material, e.g.: “instances of gold”. It is recommended that internationally or nationally agreed codes and terminology are used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E57_Material - # - # # This class is a specialization of E55 Type and comprises the types of measurement units: feet, inches, centimetres, litres, lumens, etc. This type is used categorically in the model without reference to instances of it, i.e. the Model does not foresee the description of instances of instances of E58 Measurement Unit, e.g.: “instances of cm”. Syst?me International (SI) units or internationally recognized non-SI terms should be used whenever possible. (ISO 1000:1992). Archaic Measurement Units used in historical records should be preserved. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E58_Measurement_Unit - # - # # This class comprises changes of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena. Such changes of state will affect instances of E77 Persistent Item or its subclasses. The distinction between an E5 Event and an E4 Period is partly a question of the scale of observation. Viewed at a coarse level of detail, an E5 Event is an ‘instantaneous’ change of state. At a fine level, the E5 Event can be analysed into its component phenomena within a space and time frame, and as such can be seen as an E4 Period. The reverse is not necessarily the case: not all instances of E4 Period give rise to a noteworthy change of state. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E5_Event - # - # # This class comprises events that bring into existence any E77 Persistent Item. It may be used for temporal reasoning about things (intellectual products, physical items, groups of people, living beings) beginning to exist; it serves as a hook for determination of a terminus post quem and ante quem. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E63_Beginning_of_Existence - # - # # This class comprises events that end the existence of any E77 Persistent Item. It may be used for temporal reasoning about things (physical items, groups of people, living beings) ceasing to exist; it serves as a hook for determination of a terminus postquem and antequem. In cases where substance from a Persistent Item continues to exist in a new form, the process would be documented by E81 Transformation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E64_End_of_Existence - # - # # This class comprises events that result in the creation of conceptual items or immaterial products, such as legends, poems, texts, music, images, movies, laws, types etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E65_Creation - # - # # This class comprises events that result in the formation of a formal or informal E74 Group of people, such as a club, society, association, corporation or nation. E66 Formation does not include the arbitrary aggregation of people who do not act as a collective. The formation of an instance of E74 Group does not mean that the group is populated with members at the time of formation. In order to express the joining of members at the time of formation, the respective activity should be simultaneously an instance of both E66 Formation and E85 Joining. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E66_Formation - # - # # This class comprises the births of human beings. E67 Birth is a biological event focussing on the context of people coming into life. (E63 Beginning of Existence comprises the coming into life of any living beings). Twins, triplets etc. are brought into life by the same E67 Birth event. The introduction of the E67 Birth event as a documentation element allows the description of a range of family relationships in a simple model. Suitable extensions may describe more details and the complexity of motherhood with the intervention of modern medicine. In this model, the biological father is not seen as a necessary participant in the E67 Birth event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E67_Birth - # - # # This class comprises the events that result in the formal or informal termination of an E74 Group of people. If the dissolution was deliberate, the Dissolution event should also be instantiated as an E7 Activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E68_Dissolution - # - # # This class comprises the deaths of human beings. If a person is killed, their death should be instantiated as E69 Death and as E7 Activity. The death or perishing of other living beings should be documented using E64 End of Existence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E69_Death - # - # # This class comprises events that destroy one or more instances of E18 Physical Thing such that they lose their identity as the subjects of documentation. Some destruction events are intentional, while others are independent of human activity. Intentional destruction may be documented by classifying the event as both an E6 Destruction and E7 Activity. The decision to document an object as destroyed, transformed or modified is context sensitive: 1. If the matter remaining from the destruction is not documented, the event is modelled solely as E6 Destruction. 2. An event should also be documented using E81 Transformation if it results in the destruction of one or more objects and the simultaneous production of others using parts or material from the original. In this case, the new items have separate identities. Matter is preserved, but identity is not. 3. When the initial identity of the changed instance of E18 Physical Thing is preserved, the event should be documented as E11 Modification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E6_Destruction - # - # # This general class comprises discrete, identifiable, instances of E77 Persistent Item that are documented as single units, that either consist of matter or depend on being carried by matter and are characterized by relative stability. They may be intellectual products or physical things. They may for instance have a solid physical form, an electronic encoding, or they may be a logical concept or structure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E70_Thing - # - # # This class comprises those material or immaterial items to which instances of E30 Right, such as the right of ownership or use, can be applied. This is true for all E18 Physical Thing. In the case of instances of E28 Conceptual Object, however, the identity of the E28 Conceptual Object or the method of its use may be too ambiguous to reliably establish instances of E30 Right, as in the case of taxa and inspirations. Ownership of corporations is currently regarded as out of scope of the CRM. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E72_Legal_Object - # - # # This class comprises identifiable immaterial items, such as a poems, jokes, data sets, images, texts, multimedia objects, procedural prescriptions, computer program code, algorithm or mathematical formulae, that have an objectively recognizable structure and are documented as single units. An E73 Information Object does not depend on a specific physical carrier, which can include human memory, and it can exist on one or more carriers simultaneously. Instances of E73 Information Object of a linguistic nature should be declared as instances of the E33 Linguistic Object subclass. Instances of E73 Information Object of a documentary nature should be declared as instances of the E31 Document subclass. Conceptual items such as types and classes are not instances of E73 Information Object, nor are ideas without a reproducible expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E73_Information_Object - # - # # This class comprises any gatherings or organizations of E39 Actors that act collectively or in a similar way due to any form of unifying relationship. In the wider sense this class also comprises official positions which used to be regarded in certain contexts as one actor, independent of the current holder of the office, such as the president of a country. In such cases, it may happen that the Group never had more than one member. A joint pseudonym (i.e., a name that seems indicative of an individual but that is actually used as a persona by two or more people) is a particular case of E74 Group. A gathering of people becomes an E74 Group when it exhibits organizational characteristics usually typified by a set of ideas or beliefs held in common, or actions performed together. These might be communication, creating some common artifact, a common purpose such as study, worship, business, sports, etc. Nationality can be modeled as membership in an E74 Group (cf. HumanML markup). Married couples and other concepts of family are regarded as particular examples of E74 Group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E74_Group - # - # # This class comprises appellations that are by their form or syntax specific to identifying instances of E28 Conceptual Object, such as intellectual products, standardized patterns etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E75_Conceptual_Object_Appellation - # - # # This class comprises items that have a persistent identity, sometimes known as “endurants” in philosophy. They can be repeatedly recognized within the duration of their existence by identity criteria rather than by continuity or observation. Persistent Items can be either physical entities, such as people, animals or things, or conceptual entities such as ideas, concepts, products of the imagination or common names. The criteria that determine the identity of an item are often difficult to establish -; the decision depends largely on the judgement of the observer. For example, a building is regarded as no longer existing if it is dismantled and the materials reused in a different configuration. On the other hand, human beings go through radical and profound changes during their life-span, affecting both material composition and form, yet preserve their identity by other criteria. Similarly, inanimate objects may be subject to exchange of parts and matter. The class E77 Persistent Item does not take any position about the nature of the applicable identity criteria and if actual knowledge about identity of an instance of this class exists. There may be cases, where the identity of an E77 Persistent Item is not decidable by a certain state of knowledge. The main classes of objects that fall outside the scope the E77 Persistent Item class are temporal objects such as periods, events and acts, and descriptive properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E77_Persistent_Item - # - # # This class comprises aggregations of instances of E18 Physical Thing that are assembled and maintained (“curated” and “preserved,” in museological terminology) by one or more instances of E39 Actor over time for a specific purpose and audience, and according to a particular collection development plan. Items may be added or removed from an E78 Collection in pursuit of this plan. This class should not be confused with the E39 Actor maintaining the E78 Collection often referred to with the name of the E78 Collection (e.g. “The Wallace Collection decided…”). Collective objects in the general sense, like a tomb full of gifts, a folder with stamps or a set of chessmen, should be documented as instances of E19 Physical Object, and not as instances of E78 Collection. This is because they form wholes either because they are physically bound together or because they are kept together for their functionality. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E78_Collection - # - # # This class comprises activities that result in an instance of E24 Physical Man-Made Thing being increased, enlarged or augmented by the addition of a part. Typical scenarios include the attachment of an accessory, the integration of a component, the addition of an element to an aggregate object, or the accessioning of an object into a curated E78 Collection. Objects to which parts are added are, by definition, man-made, since the addition of a part implies a human activity. Following the addition of parts, the resulting man-made assemblages are treated objectively as single identifiable wholes, made up of constituent or component parts bound together either physically (for example the engine becoming a part of the car), or by sharing a common purpose (such as the 32 chess pieces that make up a chess set). This class of activities forms a basis for reasoning about the history and continuity of identity of objects that are integrated into other objects over time, such as precious gemstones being repeatedly incorporated into different items of jewellery, or cultural artifacts being added to different museum instances of E78 Collection over their lifespan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E79_Part_Addition - # - # # This class comprises actions intentionally carried out by instances of E39 Actor that result in changes of state in the cultural, social, or physical systems documented. This notion includes complex, composite and long-lasting actions such as the building of a settlement or a war, as well as simple, short-lived actions such as the opening of a door. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E7_Activity - # - # # This class comprises the activities that result in an instance of E18 Physical Thing being decreased by the removal of a part. Typical scenarios include the detachment of an accessory, the removal of a component or part of a composite object, or the deaccessioning of an object from a curated E78 Collection. If the E80 Part Removal results in the total decomposition of the original object into pieces, such that the whole ceases to exist, the activity should instead be modelled as an E81 Transformation, i.e. a simultaneous destruction and production. In cases where the part removed has no discernible identity prior to its removal but does have an identity subsequent to its removal, the activity should be regarded as both E80 Part Removal and E12 Production. This class of activities forms a basis for reasoning about the history, and continuity of identity over time, of objects that are removed from other objects, such as precious gemstones being extracted from different items of jewelry, or cultural artifacts being deaccessioned from different museum collections over their lifespan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E80_Part_Removal - # - # # This class comprises the events that result in the simultaneous destruction of one or more than one E77 Persistent Item and the creation of one or more than one E77 Persistent Item that preserves recognizable substance from the first one(s) but has fundamentally different nature and identity. Although the old and the new instances of E77 Persistent Item are treated as discrete entities having separate, unique identities, they are causally connected through the E81 Transformation; the destruction of the old E77 Persistent Item(s) directly causes the creation of the new one(s) using or preserving some relevant substance. Instances of E81 Transformation are therefore distinct from re-classifications (documented using E17 Type Assignment) or modifications (documented using E11 Modification) of objects that do not fundamentally change their nature or identity. Characteristic cases are reconstructions and repurposing of historical buildings or ruins, fires leaving buildings in ruins, taxidermy of specimen in natural history and the reorganization of a corporate body into a new one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E81_Transformation - # - # # This class comprises any sort of name, number, code or symbol characteristically used to identify an E39 Actor. An E39 Actor will typically have more than one E82 Actor Appellation, and instances of E82 Actor Appellation in turn may have alternative representations. The distinction between corporate and personal names, which is particularly important in library applications, should be made by explicitly linking the E82 Actor Appellation to an instance of either E21 Person or E74 Group/E40 Legal Body. If this is not possible, the distinction can be made through the use of the P2 has type mechanism. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E82_Actor_Appellation - # - # # This class comprises activities formally defining new types of items. It is typically a rigorous scholarly or scientific process that ensures a type is exhaustively described and appropriately named. In some cases, particularly in archaeology and the life sciences, E83 Type Creation requires the identification of an exemplary specimen and the publication of the type definition in an appropriate scholarly forum. The activity of E83 Type Creation is central to research in the life sciences, where a type would be referred to as a “taxon,” the type description as a “protologue,” and the exemplary specimens as “orgininal element” or “holotype”. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E83_Type_Creation - # - # # This class comprises all instances of E22 Man-Made Object that are explicitly designed to act as persistent physical carriers for instances of E73 Information Object. An E84 Information Carrier may or may not contain information, e.g., a diskette. Note that any E18 Physical Thing may carry information, such as an E34 Inscription. However, unless it was specifically designed for this purpose, it is not an Information Carrier. Therefore the property P128 carries (is carried by) applies to E18 Physical Thing in general. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E84_Information_Carrier - # - # # This class comprises the activities that result in an instance of E39 Actor becoming a member of an instance of E74 Group. This class does not imply initiative by either party. Typical scenarios include becoming a member of a social organisation, becoming employee of a company, marriage, the adoption of a child by a family and the inauguration of somebody into an official position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E85_Joining - # - # # This class comprises the activities that result in an instance of E39 Actor to be disassociated from an instance of E74 Group. This class does not imply initiative by either party. Typical scenarios include the termination of membership in a social organisation, ending the employment at a company, divorce, and the end of tenure of somebody in an official position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E86_Leaving - # - # # This class comprises the activities that result in the continuity of management and the preservation and evolution of instances of E78 Collection, following an implicit or explicit curation plan. It specializes the notion of activity into the curation of a collection and allows the history of curation to be recorded. Items are accumulated and organized following criteria like subject, chronological period, material type, style of art etc. and can be added or removed from an E78 Collection for a specific purpose and/or audience. The initial aggregation of items of a collection is regarded as an instance of E12 Production Event while the activity of evolving, preserving and promoting a collection is regarded as an instance of E87 Curation Activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E87_Curation_Activity - # - # # This class comprises immaterial items, including but not limited to stories, plots, procedural prescriptions, algorithms, laws of physics or images that are, or represent in some sense, sets of propositions about real or imaginary things and that are documented as single units or serve as topics of discourse. This class also comprises items that are “about” something in the sense of a subject. In the wider sense, this class includes expressions of psychological value such as non-figural art and musical themes. However, conceptual items such as types and classes are not instances of E89 Propositional Object. This should not be confused with the definition of a type, which is indeed an instance of E89 Propositional Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E89_Propositional_Object - # - # # This class comprises transfers of legal ownership from one or more instances of E39 Actor to one or more other instances of E39 Actor. The class also applies to the establishment or loss of ownership of instances of E18 Physical Thing. It does not, however, imply changes of any other kinds of right. The recording of the donor and/or recipient is optional. It is possible that in an instance of E8 Acquisition there is either no donor or no recipient. Depending on the circumstances, it may describe: 1. the beginning of ownership 2. the end of ownership 3. the transfer of ownership 4. the acquisition from an unknown source 5. the loss of title due to destruction of the item It may also describe events where a collector appropriates legal title, for example by annexation or field collection. The interpretation of the museum notion of "accession" differs between institutions. The CRM therefore models legal ownership (E8 Acquisition) and physical custody (E10 Transfer of Custody) separately. Institutions will then model their specific notions of accession and deaccession as combinations of these. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E8_Acquisition - # - # # This class comprises identifiable symbols and any aggregation of symbols, such as characters, identifiers, traffic signs, emblems, texts, data sets, images, musical scores, multimedia objects, computer program code or mathematical formulae that have an objectively recognizable structure and that are documented as single units. It includes sets of signs of any nature, which may serve to designate something, or to communicate some propositional content. An instance of E90 Symbolic Object does not depend on a specific physical carrier, which can include human memory, and it can exist on one or more carriers simultaneously. An instance of E90 Symbolic Object may or may not have a specific meaning, for example an arbitrary character string. In some cases, the content of an instance of E90 Symbolic Object may completely be represented by a serialized content model, such.. as the property P3 has note allows for describing this content model…P3.1 has type: E55 Type to specify the encoding.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E90_Symbolic_Object - # - # # This class comprises 4 dimensional point sets (volumes) in physical spacetime regardless its true geometric form. They may derive their identity from being the extent of a material phenomenon or from being the interpretation of an expression defining an extent in spacetime. Intersections of instances of E92 Spacetime Volume, Place and Timespan are also regarded as instances of E92 Spacetime Volume. An instance of E92 Spacetime Volume is either contiguous or composed of a finite number of contiguous subsets. Its boundaries may be fuzzy due to the properties of the phenomena it derives from or due to the limited precision up to which defining expression can be identified with a real extent in spacetime. The duration of existence of an instance of a spacetime volume is trivially its projection on time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E92_Spacetime_Volume - # - # # This class comprises instances of E92 Spacetime Volume that result from intersection of instances of E92 Spacetime Volume with an instance of E52 Time-Span. The identity of an instance of this class is determined by the identities of the constituing spacetime volume and the time-span. This class can be used to define temporal snapshots at a particular time-span, such as the extent of the Roman Empire at 33 B.C., or the extent occupied by a museum object at rest in an exhibit. In particular, it can be used to define the spatial projection of a spacetime volume during a particular time-span, such as the maximal spatial extent of a flood at some particular hour, or all areas covered by the Poland within the 20th century AD - # # @return [RDF::Vocabulary::Term] - # attr_reader :E93_Spacetime_Snapshot - # - # # This class comprises changes of the physical location of the instances of E19 Physical Object. Note, that the class E9 Move inherits the property P7 took place at (witnessed): E53 Place. This property should be used to describe the trajectory or a larger area within which a move takes place, whereas the properties P26 moved to (was destination of), P27 moved from (was origin of) describe the start and end points only. Moves may also be documented to consist of other moves (via P9 consists of (forms part of)), in order to describe intermediate stages on a trajectory. In that case, start and end points of the partial moves should match appropriately between each other and with the overall event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :E9_Move - # - # # This property property links an E69 Death event to the E21 Person that died. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P100_was_death_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P100i_died_in - # - # # This property links an instance of E70 Thing to an E55 Type of usage. It allows the relationship between particular things, both physical and immaterial, and general methods and techniques of use to be documented. Thus it can be asserted that a baseball bat had a general use for sport and a specific use for threatening people during the Great Train Robbery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P101_had_as_general_use - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P101i_was_use_of - # - # # This property describes the E35 Title applied to an instance of E71 Man-Made Thing. The E55 Type of Title is assigned in a sub property. The P102.1 has type property of the P102 has title (is title of) property enables the relationship between the Title and the thing to be further clarified, for example, if the Title was a given Title, a supplied Title etc. It allows any man-made material or immaterial thing to be given a Title. It is possible to imagine a Title being created without a specific object in mind. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P102_has_title - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P102i_is_title_of - # - # # This property links an instance of E71 Man-Made Thing to an E55 Type of usage. It creates a property between specific man-made things, both physical and immaterial, to Types of intended methods and techniques of use. Note: A link between specific man-made things and a specific use activity should be expressed using P19 was intended use of (was made for). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P103_was_intended_for - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P103i_was_intention_of - # - # # This property links a particular E72 Legal Object to the instances of E30 Right to which it is subject. The Right is held by an E39 Actor as described by P75 possesses (is possessed by). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P104_is_subject_to - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P104i_applies_to - # - # # This property identifies the E39 Actor who holds the instances of E30 Right to an E72 Legal Object. It is a superproperty of P52 has current owner (is current owner of) because ownership is a right that is held on the owned object. P105 right held by (has right on) is a shortcut of the fully developed path from E72 Legal Object through P104 is subject to (applies to), E30 Right, P75 possesses (is possessed by) to E39 Actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P105_right_held_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P105i_has_right_on - # - # # This property associates an instance of E90 Symbolic Object with a part of it that is by itself an instance of E90 Symbolic Object, such as fragments of texts or clippings from an image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P106_is_composed_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P106i_forms_part_of - # - # # This property relates an E39 Actor to the E74 Group of which that E39 Actor is a member. Groups, Legal Bodies and Persons, may all be members of Groups. A Group necessarily consists of more than one member. This property is a shortcut of the more fully developed path from E74 Group through P144 joined with (gained member by), E85 Joining, P143 joined (was joined by) to E39 Actor The property P107.1 kind of member can be used to specify the type of membership or the role the member has in the group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P107_has_current_or_former_member - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P107i_is_current_or_former_member_of - # - # # This property identifies the E24 Physical Man-Made Thing that came into existence as a result of an E12 Production. The identity of an instance of E24 Physical Man-Made Thing is not defined by its matter, but by its existence as a subject of documentation. An E12 Production can result in the creation of multiple instances of E24 Physical Man-Made Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P108_has_produced - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P108i_was_produced_by - # - # # This property identifies the E39 Actor or Actors who assume or have assumed overall curatorial responsibility for an E78 Collection. This property is effectively a short-cut. It does not allow a history of curation to be recorded. This would require use of an Event assigning responsibility for a Collection to a curator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P109_has_current_or_former_curator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P109i_is_current_or_former_curator_of - # - # # This property describes an instance of E4 Period, which falls within the E53 Place and E52 Time-Span of another. The difference with P9 consists of (forms part of) is subtle. Unlike P9 consists of (forms part of), P10 falls within (contains) does not imply any logical connection between the two periods and it may refer to a period of a completely different type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P10_falls_within - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P10i_contains - # - # # This property identifies the E24 Physical Man-Made Thing that is added to (augmented) in an E79 Part Addition. Although a Part Addition event normally concerns only one item of Physical Man-Made Thing, it is possible to imagine circumstances under which more than one item might be added to (augmented). For example, the artist Jackson Pollock trailing paint onto multiple canvasses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P110_augmented - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P110i_was_augmented_by - # - # # This property identifies the E18 Physical Thing that is added during an E79 Part Addition activity - # # @return [RDF::Vocabulary::Term] - # attr_reader :P111_added - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P111i_was_added_by - # - # # This property identifies the E24 Physical Man-Made Thing that was diminished by E80 Part Removal. Although a Part removal activity normally concerns only one item of Physical Man-Made Thing, it is possible to imagine circumstances under which more than one item might be diminished by a single Part Removal activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P112_diminished - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P112i_was_diminished_by - # - # # This property identifies the E18 Physical Thing that is removed during an E80 Part Removal activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P113_removed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P113i_was_removed_by - # - # # This symmetric property allows the instances of E2 Temporal Entity with the same E52 Time-Span to be equated. This property is only necessary if the time span is unknown (otherwise the equivalence can be calculated). This property is the same as the "equal" relationship of Allen’s temporal logic (Allen, 1983, pp. 832-843). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P114_is_equal_in_time_to - # - # # This property allows the ending point for a E2 Temporal Entity to be situated by reference to the ending point of another temporal entity of longer duration. This property is only necessary if the time span is unknown (otherwise the relationship can be calculated). This property is the same as the "finishes / finished-by" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P115_finishes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P115i_is_finished_by - # - # # This property allows the starting point for a E2 Temporal Entity to be situated by reference to the starting point of another temporal entity of longer duration. This property is only necessary if the time span is unknown (otherwise the relationship can be calculated). This property is the same as the "starts / started-by" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P116_starts - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P116i_is_started_by - # - # # This property allows the entire E52 Time-Span of an E2 Temporal Entity to be situated within the Time-Span of another temporal entity that starts before and ends after the included temporal entity. This property is only necessary if the time span is unknown (otherwise the relationship can be calculated). This property is the same as the "during / includes" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P117_occurs_during - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P117i_includes - # - # # This property identifies an overlap between the instances of E52 Time-Span of two instances of E2 Temporal Entity. It implies a temporal order between the two entities: if A overlaps in time B, then A must start before B, and B must end after A. This property is only necessary if the relevant time spans are unknown (otherwise the relationship can be calculated). This property is the same as the "overlaps / overlapped-by" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P118_overlaps_in_time_with - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P118i_is_overlapped_in_time_by - # - # # This property indicates that one E2 Temporal Entity immediately follows another. It implies a particular order between the two entities: if A meets in time with B, then A must precede B. This property is only necessary if the relevant time spans are unknown (otherwise the relationship can be calculated). This property is the same as the "meets / met-by" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P119_meets_in_time_with - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P119i_is_met_in_time_by - # - # # This property describes the active or passive participation of instances of E39 Actors in an E5 Event. It connects the life-line of the related E39 Actor with the E53 Place and E50 Date of the event. The property implies that the Actor was involved in the event but does not imply any causal relationship. The subject of a portrait can be said to have participated in the creation of the portrait. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P11_had_participant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P11i_participated_in - # - # # This property identifies the relative chronological sequence of two temporal entities. It implies that a temporal gap exists between the end of A and the start of B. This property is only necessary if the relevant time spans are unknown (otherwise the relationship can be calculated). This property is the same as the "before / after" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P120_occurs_before - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P120i_occurs_after - # - # # This symmetric property allows the instances of E53 Place with overlapping geometric extents to be associated with each other. It does not specify anything about the shared area. This property is purely spatial, in contrast to Allen operators, which are purely temporal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P121_overlaps_with - # - # # This symmetric property allows the instances of E53 Place which share common borders to be related as such. This property is purely spatial, in contrast to Allen operators, which are purely temporal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P122_borders_with - # - # # This property identifies the E77 Persistent Item or items that are the result of an E81 Transformation. New items replace the transformed item or items, which cease to exist as units of documentation. The physical continuity between the old and the new is expressed by the link to the common Transformation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P123_resulted_in - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P123i_resulted_from - # - # # This property identifies the E77 Persistent Item or items that cease to exist due to a E81 Transformation. It is replaced by the result of the Transformation, which becomes a new unit of documentation. The continuity between both items, the new and the old, is expressed by the link to the common Transformation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P124_transformed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P124i_was_transformed_by - # - # # This property defines the kind of objects used in an E7 Activity, when the specific instance is either unknown or not of interest, such as use of "a hammer". - # # @return [RDF::Vocabulary::Term] - # attr_reader :P125_used_object_of_type - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P125i_was_type_of_object_used_in - # - # # This property identifies E57 Material employed in an E11 Modification. The E57 Material used during the E11 Modification does not necessarily become incorporated into the E24 Physical Man-Made Thing that forms the subject of the E11 Modification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P126_employed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P126i_was_employed_in - # - # # This property identifies a super-Type to which an E55 Type is related. It allows Types to be organised into hierarchies. This is the sense of "broader term generic (BTG)" as defined in ISO 2788 - # # @return [RDF::Vocabulary::Term] - # attr_reader :P127_has_broader_term - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P127i_has_narrower_term - # - # # This property identifies an E90 Symbolic Object carried by an instance of E18 Physical Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P128_carries - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P128i_is_carried_by - # - # # This property documents that an E89 Propositional Object has as subject an instance of E1 CRM Entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P129_is_about - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P129i_is_subject_of - # - # # This property describes the active or passive presence of an E77 Persistent Item in an E5 Event without implying any specific role. It connects the history of a thing with the E53 Place and E50 Date of an event. For example, an object may be the desk, now in a museum on which a treaty was signed. The presence of an immaterial thing implies the presence of at least one of its carriers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P12_occurred_in_the_presence_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P12i_was_present_at - # - # # This property generalises the notions of "copy of" and "similar to" into a dynamic, asymmetric relationship, where the domain expresses the derivative, if such a direction can be established. Otherwise, the relationship is symmetric. It is a short-cut of P15 was influenced by (influenced) in a creation or production, if such a reason for the similarity can be verified. Moreover it expresses similarity in cases that can be stated between two objects only, without historical knowledge about its reasons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P130_shows_features_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P130i_features_are_also_found_on - # - # # This property identifies a name used specifically to identify an E39 Actor. This property is a specialisation of P1 is identified by (identifies) is identified by. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P131_is_identified_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P131i_identifies - # - # # This symmetric property allows instances of E4 Period that overlap both temporally and spatially to be related, i,e. they share some spatio-temporal extent. This property does not imply any ordering or sequence between the two periods, either spatial or temporal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P132_overlaps_with - # - # # This symmetric property allows instances of E4 Period that do not overlap both temporally and spatially, to be related i,e. they do not share any spatio-temporal extent. This property does not imply any ordering or sequence between the two periods either spatial or temporal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P133_is_separated_from - # - # # This property associates two instances of E7 Activity, where the domain is considered as an intentional continuation of the range. A continuation of an activity may happen when the continued activity is still ongoing or after the continued activity has completely ended. The continuing activity may have started already before it decided to continue the other one. Continuation implies a coherence of intentions and outcomes of the involved activities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P134_continued - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P134i_was_continued_by - # - # # This property identifies the E55 Type, which is created in an E83Type Creation activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P135_created_type - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P135i_was_created_by - # - # # This property identifies one or more items that were used as evidence to declare a new E55 Type. The examination of these items is often the only objective way to understand the precise characteristics of a new Type. Such items should be deposited in a museum or similar institution for that reason. The taxonomic role renders the specific relationship of each item to the Type, such as "holotype" or "original element". - # # @return [RDF::Vocabulary::Term] - # attr_reader :P136_was_based_on - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P136i_supported_type_creation - # - # # This property allows an item to be declared as a particular example of an E55 Type or taxon The P137.1 in the taxonomic role property of P137 exemplifies (is exemplified by) allows differentiation of taxonomic roles. The taxonomic role renders the specific relationship of this example to the Type, such as "prototypical", "archetypical", "lectotype", etc. The taxonomic role "lectotype" is not associated with the Type Creation (E83) itself, but selected in a later phase. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P137_exemplifies - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P137i_is_exemplified_by - # - # # This property establishes the relationship between an E36 Visual Item and the entity that it visually represents. Any entity may be represented visually. This property is part of the fully developed path from E24 Physical Man-Made Thing through P65 shows visual item (is shown by), E36 Visual Item, P138 represents (has representation) to E1 CRM Entity, which is shortcut by P62depicts (is depicted by). P138.1 mode of representation allows the nature of the representation to be refined. This property is also used for the relationship between an original and a digitisation of the original by the use of techniques such as digital photography, flatbed or infrared scanning. Digitisation is here seen as a process with a mechanical, causal component rendering the spatial distribution of structural and optical properties of the original and does not necessarily include any visual similarity identifiable by human observation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P138_represents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P138i_has_representation - # - # # This property establishes a relationship of equivalence between two instances of E41 Appellation independent from any item identified by them. It is a dynamic asymmetric relationship, where the range expresses the derivative, if such a direction can be established. Otherwise, the relationship is symmetric. The relationship is not transitive. The equivalence applies to all cases of use of an instance of E41 Appellation. Multiple names assigned to an object, which are not equivalent for all things identified with a specific instance of E41 Appellation, should be modelled as repeated values of P1 is identified by (identifies). P139.1 has type allows the type of derivation, such as “transliteration from Latin 1 to ASCII” be refined.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P139_has_alternative_form - # - # # This property allows specific instances of E18 Physical Thing that have been destroyed to be related to a destruction event. Destruction implies the end of an item’s life as a subject of cultural documentation – the physical matter of which the item was composed may in fact continue to exist. A destruction event may be contiguous with a Production that brings into existence a derived object composed partly of matter from the destroyed object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P13_destroyed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P13i_was_destroyed_by - # - # # This property indicates the item to which an attribute or relation is assigned. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P140_assigned_attribute_to - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P140i_was_attributed_by - # - # # This property indicates the attribute that was assigned or the item that was related to the item denoted by a property P140 assigned attribute to in an Attribute assignment action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P141_assigned - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P141i_was_assigned_by - # - # # This property associates the event of assigning an instance of E42 Identifier to an entity, with the instances of E41 Appellation that were used as elements of the identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P142_used_constituent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P142i_was_used_in - # - # # This property identifies the instance of E39 Actor that becomes member of a E74 Group in an E85 Joining. Joining events allow for describing people becoming members of a group with a more detailed path from E74 Group through P144 joined with (gained member by), E85 Joining, P143 joined (was joined by) to E39 Actor, compared to the shortcut offered by P107 has current or former member (is current or former member of). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P143_joined - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P143i_was_joined_by - # - # # This property identifies the instance of E74 Group of which an instance of E39 Actor becomes a member through an instance of E85 Joining. Although a Joining activity normally concerns only one instance of E74 Group, it is possible to imagine circumstances under which becoming member of one Group implies becoming member of another Group as well. Joining events allow for describing people becoming members of a group with a more detailed path from E74 Group through P144 joined with (gained member by), E85 Joining, P143 joined (was joined by) to E39 Actor, compared to the shortcut offered by P107 has current or former member (is current or former member of). The property P144.1 kind of member can be used to specify the type of membership or the role the member has in the group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P144_joined_with - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P144i_gained_member_by - # - # # This property identifies the instance of E39 Actor that leaves an instance of E74 Group through an instance of E86 Leaving. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P145_separated - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P145i_left_by - # - # # This property identifies the instance of E74 Group an instance of E39 Actor leaves through an instance of E86 Leaving. Although a Leaving activity normally concerns only one instance of E74 Group, it is possible to imagine circumstances under which leaving one E74 Group implies leaving another E74 Group as well. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P146_separated_from - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P146i_lost_member_by - # - # # This property associates an instance of E87 Curation Activity with the instance of E78 Collection that is subject of that curation activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P147_curated - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P147i_was_curated_by - # - # # This property associates an instance of E89 Propositional Object with a structural part of it that is by itself an instance of E89 Propositional Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P148_has_component - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P148i_is_component_of - # - # # This property identifies an instance of E28 Conceptual Object using an instance of E75 Conceptual Object Appellation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P149_is_identified_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P149i_identifies - # - # # This property describes the active participation of an E39 Actor in an E7 Activity. It implies causal or legal responsibility. The P14.1 in the role of property of the property allows the nature of an Actor’s participation to be specified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P14_carried_out_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P14i_performed - # - # # The property "broaderPartitive" associates an instance of E55 Type “A” with an instance of E55 Type “B”, when items of type “A” typically form part of items of type “B”, such as “car motors” and “cars”. It allows Types to be organised into hierarchies. This is the sense of "broader term partitive (BTP)" as defined in ISO 2788 and “broaderPartitive” in SKOS. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P150_defines_typical_parts_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P150i_defines_typical_wholes_for - # - # # This property associates an instance of E66 Formation with an instance of E74 Group from which the new group was formed preserving a sense of continuity such as in mission, membership or tradition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P151_was_formed_from - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P151i_participated_in - # - # # This property associates an instance of E21 Person with another instance of E21 Person who plays the role of the first instance’s parent, regardless of whether the relationship is biological parenthood, assumed or pretended biological parenthood or an equivalent legal status of rights and obligations obtained by a social or legal act. This property is, among others, a shortcut of the fully developed paths from ‘E21Person’ through ‘P98i was born’, ‘E67 Birth’, ‘P96 by mother’ to ‘E21 Person’, and from ‘E21Person’ through ‘P98i was born’, ‘E67 Birth’, ‘P97 from father’ to ‘E21 Person’. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P152_has_parent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P152i_is_parent_of - # - # # This property describes the maximal real volume in space that an instance of E18 Physical Thing has occupied during its lifetime with respect to a reference space relative to which the thing is at rest. In other words, it is the volume that contains all the points which the thing has covered at some time during its existence. In the case of an E26 Physical Feature the default reference space is the one in which the object that bears the feature or at least the surrounding matter of the feature is at rest. In this case there is a 1:1 relation of E26 Feature and E53 Place. For simplicity of implementation multiple inheritance (E26 Feature IsA E53 Place) may be a practical approach. For instances of E19 Physical Objects the default reference space is the one which is at rest to the object itself, i.e. which moves together with the object. We include in the occupied space the space filled by the matter of the physical thing and all its inner spaces. This property is a shortcut of the fully developed path from ‘E18 Physical Thing’ through ‘P157 occupied’, ‘E92 Spacetime Volume’, ‘P159 has spatial projection’ to ‘E53 Place’. For some instances of E18 Physical Object the relative stability of form may not be sufficient to define a useful local reference space, for instance for an amoeba. In such cases the fully developed path to an external reference space and using a temporal validity component may be adequate to determine the place they have occupied. In contrast to P156 occupies, the property P53 has former or current location identifies an instance of E53 Place at which a thing is or has been for some unspecified time span. Further it does not constrain this reference space of the referred instance of P53 Place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P156_occupies - # - # # This property associates an instance of P53 Place with the instance of E18 Physical Thing that determines a reference space for this instance of P53 Place by being at rest with respect to this reference space. The relative stability of form of an E18 Physical Thing defines its default reference space. The reference space is not spatially limited to the referred thing. For example, a ship determines a reference space in terms of which other ships in its neighbourhood may be described. Larger constellations of matter, such as continental plates, may comprise many physical features that are at rest with them and define the same reference space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P157_is_at_rest_relative_to - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P157i_provides_reference_space_for - # - # # This property associates an instance of E4 Period with the real that is phenomenal, 4 dimensional point set or volume in spacetime that it has occupied. The associated instance of E92 Spacetime Volume includes the trajectories of the participating physical things during their participation in the instance of E4 Period. This consists of the open spaces via which they have interacted and the spaces by which they had the potential to interact during that period or event. Such interactions took place in the way defined by the type of the respective period or event, such as the air in a meeting room transferring the voices. Another example are the areas controlled by some military power. In case of phenomena spreading out over islands or other separated areas, the trajectories necessary for participants to travel between these areas are not regarded as part of the occupied spacetime volumes. Such instances of E4 Period occupy each a limited number of contiguous spacetime volumes, however there must not be a discontinuity in the total timespan covered by these spacetime volumes. The real spacetime volumes occupied by an instance of E4 Period must not be confused with declarations of spacetime approximating the real extent. In general, instances of E4 Period have fuzzy boundaries in spacetime. Therefore it cannot be verified, if two different instances of E4 Period occupy exactly the same spacetime volume. We therefore determine that a spacetime volume may only be occupied by one instance of E4 Period. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P158_occupied - # - # # This property describes the real that is (phenomenal), 4 dimensional point sets or volumes in spacetime that the trajectory of an instance of E18 Physical Thing occupies in the course of its existence. We include in the occupied space the space filled by the matter of the physical thing and all its inner spaces. Physical things consisting of aggregations of physically unconnected objects, such as a set of chessmen, occupy a number of individually contiguous spacetime volumes equal to the number of unconnected objects that constitute them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P159_occupied - # - # # This is a high level property, which captures the relationship between an E7 Activity and anything that may have had some bearing upon it. The property has more specific sub properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P15_was_influenced_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P15i_influenced - # - # # This property describes the temporal projection of an instance of an E92 Spacetime Volume. The property P4 has time-span is a shortcut of the more fully developed path from E4 Period through P158 occupied, E92 Spacetime Volume P160 has temporal projection to E52 Time Span. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P160_has_temporal_projection - # - # # This property associates an instance of a E92 Spacetime Volume with an instance of E53 Place that is the result of the spatial projection of the instance of a E92 Spacetime Volume on a reference space. In general there can be more than one useful reference space to describe the spatial projection of a spacetime volume, such as that of a battle ship versus that of the seafloor. Therefore the projection is not unique. The property P7 took place at is a shortcut of the more fully developed path from E4 Period through P158 occupied, E92 Spacetime Volume P161 has spatial projection to E53 Place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P161_has_spatial_projection - # - # # This property relates an E93 Spacetime Snapshot with an arbitrary E52 Time-Span that restricts the extent of the former to a volume within these time limits. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P164_is_restricted_by - # - # # This property associates an instance of E73 Information Object with an instance of E90 Symbolic Object (or any of its subclasses) that was included in it. This property makes it possible to recognise the autonomous status of the incorporated signs, which were created in a distinct context, and can be incorporated in many distinct self-contained expressions, and to highlight the difference between structural and accidental whole-part relationships between conceptual entities. It accounts for many cultural facts that are quite frequent and significant: the inclusion of a poem in an anthology, the re-use of an operatic aria in a new opera, the use of a reproduction of a painting for a book cover or a CD booklet, the integration of textual quotations, the presence of lyrics in a song that sets those lyrics to music, the presence of the text of a play in a movie based on that play, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P165_incorporates - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P165i_is_incorporated_in - # - # # This property describes the use of material or immaterial things in a way essential to the performance or the outcome of an E7 Activity. This property typically applies to tools, instruments, moulds, raw materials and items embedded in a product. It implies that the presence of the object in question was a necessary condition for the action. For example, the activity of writing this text required the use of a computer. An immaterial thing can be used if at least one of its carriers is present. For example, the software tools on a computer. Another example is the use of a particular name by a particular group of people over some span to identify a thing, such as a settlement. In this case, the physical carriers of this name are at least the people understanding its use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P16_used_specific_object - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P16i_was_used_for - # - # # This property describes an item or items that are regarded as a reason for carrying out the E7 Activity. For example, the discovery of a large hoard of treasure may call for a celebration, an order from head quarters can start a military manoeuvre. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P17_was_motivated_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P17i_motivated - # - # # This property relates an E7 Activity with objects created specifically for use in the activity. This is distinct from the intended use of an item in some general type of activity such as the book of common prayer which was intended for use in Church of England services (see P101 had as general use (was use of)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P19_was_intended_use_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P19i_was_made_for - # - # # This property describes the naming or identification of any real world item by a name or any other identifier. This property is intended for identifiers in general use, which form part of the world the model intends to describe, and not merely for internal database identifiers which are specific to a technical system, unless these latter also have a more general use outside the technical context. This property includes in particular identification by mathematical expressions such as coordinate systems used for the identification of instances of E53 Place. The property does not reveal anything about when, where and by whom this identifier was used. A more detailed representation can be made using the fully developed (i.e. indirect) path through E15 Identifier Assignment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P1_is_identified_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P1i_identifies - # - # # This property identifies the relationship between a preparatory activity and the event it is intended to be preparation for. This includes activities, orders and other organisational actions, taken in preparation for other activities or events. P20 had specific purpose (was purpose of) implies that an activity succeeded in achieving its aim. If it does not succeed, such as the setting of a trap that did not catch anything, one may document the unrealized intention using P21 had general purpose (was purpose of):E55 Type and/or P33 used specific technique (was used by): E29 Design or Procedure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P20_had_specific_purpose - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P20i_was_purpose_of - # - # # This property describes an intentional relationship between an E7 Activity and some general goal or purpose. This may involve activities intended as preparation for some type of activity or event. P21had general purpose (was purpose of) differs from P20 had specific purpose (was purpose of) in that no occurrence of an event is implied as the purpose. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P21_had_general_purpose - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P21i_was_purpose_of - # - # # This property identifies the E39 Actor that acquires the legal ownership of an object as a result of an E8 Acquisition. The property will typically describe an Actor purchasing or otherwise acquiring an object from another Actor. However, title may also be acquired, without any corresponding loss of title by another Actor, through legal fieldwork such as hunting, shooting or fishing. In reality the title is either transferred to or from someone, or both. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P22_transferred_title_to - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P22i_acquired_title_through - # - # # This property identifies the E39 Actor or Actors who relinquish legal ownership as the result of an E8 Acquisition. The property will typically be used to describe a person donating or selling an object to a museum. In reality title is either transferred to or from someone, or both. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P23_transferred_title_from - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P23i_surrendered_title_through - # - # # This property identifies the E18 Physical Thing or things involved in an E8 Acquisition. In reality, an acquisition must refer to at least one transferred item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P24_transferred_title_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P24i_changed_ownership_through - # - # # This property identifies the E19 Physical Object that is moved during a move event. The property implies the object’s passive participation. For example, Monet’s painting “Impression sunrise” was moved for the first Impressionist exhibition in 1874. In reality, a move must concern at least one object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P25_moved - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P25i_moved_by - # - # # This property identifies the destination of a E9 Move. A move will be linked to a destination, such as the move of an artefact from storage to display. A move may be linked to many terminal instances of E53 Places. In this case the move describes a distribution of a set of objects. The area of the move includes the origin, route and destination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P26_moved_to - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P26i_was_destination_of - # - # # This property identifies the starting E53 Place of an E9 Move. A move will be linked to an origin, such as the move of an artefact from storage to display. A move may be linked to many origins. In this case the move describes the picking up of a set of objects. The area of the move includes the origin, route and destination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P27_moved_from - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P27i_was_origin_of - # - # # This property identifies the E39 Actor or Actors who surrender custody of an instance of E18 Physical Thing in an E10 Transfer of Custody activity. The property will typically describe an Actor surrendering custody of an object when it is handed over to someone else’s care. On occasion, physical custody may be surrendered involuntarily – through accident, loss or theft. In reality, custody is either transferred to someone or from someone, or both. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P28_custody_surrendered_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P28i_surrendered_custody_through - # - # # This property identifies the E39 Actor or Actors who receive custody of an instance of E18 Physical Thing in an E10 Transfer of Custody activity. The property will typically describe Actors receiving custody of an object when it is handed over from another Actor’s care. On occasion, physical custody may be received involuntarily or illegally – through accident, unsolicited donation, or theft. In reality, custody is either transferred to someone or from someone, or both. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P29_custody_received_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P29i_received_custody_through - # - # # This property allows sub typing of CRM entities - a form of specialisation – through the use of a terminological hierarchy, or thesaurus. The CRM is intended to focus on the high-level entities and relationships needed to describe data structures. Consequently, it does not specialise entities any further than is required for this immediate purpose. However, entities in the isA hierarchy of the CRM may by specialised into any number of sub entities, which can be defined in the E55 Type hierarchy. E51 Contact Point, for example, may be specialised into “e-mail address”, “telephone number”, “post office box”, “URL” etc. none of which figures explicitly in the CRM hierarchy. Sub typing obviously requires consistency between the meaning of the terms assigned and the more general intent of the CRM entity in question. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P2_has_type - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P2i_is_type_of - # - # # This property identifies an item or items of E18 Physical Thing concerned in an E10 Transfer of Custody activity. The property will typically describe the object that is handed over by an E39 Actor to another Actor’s custody. On occasion, physical custody may be transferred involuntarily or illegally – through accident, unsolicited donation, or theft. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P30_transferred_custody_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P30i_custody_transferred_through - # - # # This property identifies the E24 Physical Man-Made Thing modified in an E11 Modification. If a modification is applied to a non-man-made object, it is regarded as an E22 Man-Made Object from that time onwards. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P31_has_modified - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P31i_was_modified_by - # - # # This property identifies the technique or method that was employed in an activity. These techniques should be drawn from an external E55 Type hierarchy of consistent terminology of general techniques or methods such as embroidery, oil-painting, carbon dating, etc. Specific documented techniques should be described as instances of E29 Design or Procedure. This property identifies the technique that was employed in an act of modification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P32_used_general_technique - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P32i_was_technique_of - # - # # This property identifies a specific instance of E29 Design or Procedure in order to carry out an instance of E7 Activity or parts of it. The property differs from P32 used general technique (was technique of) in that P33 refers to an instance of E29 Design or Procedure, which is a concrete information object in its own right rather than simply being a term or a method known by tradition. Typical examples would include intervention plans for conservation or the construction plans of a building. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P33_used_specific_technique - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P33i_was_used_by - # - # # This property identifies the E18 Physical Thing that was assessed during an E14 Condition Assessment activity. Conditions may be assessed either by direct observation or using recorded evidence. In the latter case the E18 Physical Thing does not need to be present or extant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P34_concerned - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P34i_was_assessed_by - # - # # This property identifies the E3 Condition State that was observed in an E14 Condition Assessment activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P35_has_identified - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P35i_was_identified_by - # - # # This property records the identifier that was assigned to an item in an Identifier Assignment activity. The same identifier may be assigned on more than one occasion. An Identifier might be created prior to an assignment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P37_assigned - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P37i_was_assigned_by - # - # # This property records the identifier that was deassigned from an instance of E1 CRM Entity. Deassignment of an identifier may be necessary when an item is taken out of an inventory, a new numbering system is introduced or items are merged or split up. The same identifier may be deassigned on more than one occasion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P38_deassigned - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P38i_was_deassigned_by - # - # # This property associates an instance of E16 Measurement with the instance of E1 CRM Entity to which it applied. An instance of E1 CRM Entity may be measured more than once. Material and immaterial things and processes may be measured, e.g. the number of words in a text, or the duration of an event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P39_measured - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P39i_was_measured_by - # - # # This property is a container for all informal descriptions about an object that have not been expressed in terms of CRM constructs. In particular it captures the characterisation of the item itself, its internal structures, appearance etc. Like property P2 has type (is type of), this property is a consequence of the restricted focus of the CRM. The aim is not to capture, in a structured form, everything that can be said about an item; indeed, the CRM formalism is not regarded as sufficient to express everything that can be said. Good practice requires use of distinct note fields for different aspects of a characterisation. The P3.1 has type property of P3 has note allows differentiation of specific notes, e.g. “construction”, “decoration” etc. An item may have many notes, but a note is attached to a specific item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P3_has_note - # - # # This property records the dimension that was observed in an E16 Measurement Event. E54 Dimension can be any quantifiable aspect of E70 Thing. Weight, image colour depth and monetary value are dimensions in this sense. One measurement activity may determine more than one dimension of one object. Dimensions may be determined either by direct observation or using recorded evidence. In the latter case the measured Thing does not need to be present or extant. Even though knowledge of the value of a dimension requires measurement, the dimension may be an object of discourse prior to, or even without, any measurement being made. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P40_observed_dimension - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P40i_was_observed_in - # - # # This property records the item to which a type was assigned in an E17 Type Assignment activity. Any instance of a CRM entity may be assigned a type through type assignment. Type assignment events allow a more detailed path from E1 CRM Entity through P41 classified (was classified), E17 Type Assignment, P42 assigned (was assigned by) to E55 Type for assigning types to objects compared to the shortcut offered by P2 has type (is type of). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P41_classified - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P41i_was_classified_by - # - # # This property records the type that was assigned to an entity by an E17 Type Assignment activity. Type assignment events allow a more detailed path from E1 CRM Entity through P41 classified (was classified by), E17 Type Assignment, P42 assigned (was assigned by) to E55 Type for assigning types to objects compared to the shortcut offered by P2 has type (is type of). For example, a fragment of an antique vessel could be assigned the type “attic red figured belly handled amphora” by expert A. The same fragment could be assigned the type “shoulder handled amphora” by expert B. A Type may be intellectually constructed independent from assigning an instance of it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P42_assigned - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P42i_was_assigned_by - # - # # This property records a E54 Dimension of some E70 Thing. It is a shortcut of the more fully developed path from E70 Thing through P39 measured (was measured by), E16 Measurement P40 observed dimension (was observed in) to E54 Dimension. It offers no information about how and when an E54 Dimension was established, nor by whom. An instance of E54 Dimension is specific to an instance of E70 Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P43_has_dimension - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P43i_is_dimension_of - # - # # This property records an E3 Condition State for some E18 Physical Thing. It is a shortcut of the more fully developed path from E18 Physical Thing through P34 concerned (was assessed by), E14 Condition Assessment P35 has identified (was identified by) to E3 Condition State. It offers no information about how and when the E3 Condition State was established, nor by whom. An instance of Condition State is specific to an instance of Physical Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P44_has_condition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P44i_is_condition_of - # - # # This property identifies the instances of E57 Materials of which an instance of E18 Physical Thing is composed. All physical things consist of physical materials. P45 consists of (is incorporated in) allows the different Materials to be recorded. P45 consists of (is incorporated in) refers here to observed Material as opposed to the consumed raw material. A Material, such as a theoretical alloy, may not have any physical instances - # # @return [RDF::Vocabulary::Term] - # attr_reader :P45_consists_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P45i_is_incorporated_in - # - # # This property allows instances of E18 Physical Thing to be analysed into component elements. Component elements, since they are themselves instances of E18 Physical Thing, may be further analysed into sub-components, thereby creating a hierarchy of part decomposition. An instance of E18 Physical Thing may be shared between multiple wholes, for example two buildings may share a common wall. This property is intended to describe specific components that are individually documented, rather than general aspects. Overall descriptions of the structure of an instance of E18 Physical Thing are captured by the P3 has note property. The instances of E57 Materials of which an item of E18 Physical Thing is composed should be documented using P45 consists of (is incorporated in). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P46_is_composed_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P46i_forms_part_of - # - # # This property records the preferred E42 Identifier that was used to identify an instance of E1 CRM Entity at the time this property was recorded. More than one preferred identifier may have been assigned to an item over time. Use of this property requires an external mechanism for assigning temporal validity to the respective CRM instance. P48 has preferred identifier (is preferred identifier of), is a shortcut for the path from E1 CRM Entity through P140 assigned attribute to (was attributed by), E15 Identifier Assignment, P37 assigned (was assigned by) to E42 Identifier. The fact that an identifier is a preferred one for an organisation can be better expressed in a context independent form by assigning a suitable E55 Type to the respective instance of E15 Identifier Assignment using the P2 has type property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P48_has_preferred_identifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P48i_is_preferred_identifier_of - # - # # This property identifies the E39 Actor or Actors who have or have had custody of an instance of E18 Physical Thing at some time. The distinction with P50 has current keeper (is current keeper of) is that P49 has former or current keeper (is former or current keeper of) leaves open the question as to whether the specified keepers are current. P49 has former or current keeper (is former or current keeper of) is a shortcut for the more detailed path from E18 Physical Thing through P30 transferred custody of (custody transferred through), E10 Transfer of Custody, P28 custody surrendered by (surrendered custody through) or P29 custody received by (received custody through) to E39 Actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P49_has_former_or_current_keeper - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P49i_is_former_or_current_keeper_of - # - # # This property identifies the E39 Actor or Actors who had custody of an instance of E18 Physical Thing at the time of validity of the record or database containing the statement that uses this property. P50 has current keeper (is current keeper of) is a shortcut for the more detailed path from E18 Physical Thing through P30 transferred custody of (custody transferred through), E10 Transfer of Custody, P29 custody received by (received custody through) to E39 Actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P50_has_current_keeper - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P50i_is_current_keeper_of - # - # # This property identifies the E39 Actor that is or has been the legal owner (i.e. title holder) of an instance of E18 Physical Thing at some time. The distinction with P52 has current owner (is current owner of) is that P51 has former or current owner (is former or current owner of) does not indicate whether the specified owners are current. P51 has former or current owner (is former or current owner of) is a shortcut for the more detailed path from E18 Physical Thing through P24 transferred title of (changed ownership through), E8 Acquisition, P23 transferred title from (surrendered title through), or P22 transferred title to (acquired title through) to E39 Actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P51_has_former_or_current_owner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P51i_is_former_or_current_owner_of - # - # # This property identifies the E21 Person, E74 Group or E40 Legal Body that was the owner of an instance of E18 Physical Thing at the time of validity of the record or database containing the statement that uses this property. P52 has current owner (is current owner of) is a shortcut for the more detailed path from E18 Physical Thing through P24 transferred title of (changed ownership through), E8 Acquisition, P22 transferred title to (acquired title through) to E39 Actor, if and only if this acquisition event is the most recent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P52_has_current_owner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P52i_is_current_owner_of - # - # # This property allows an instance of E53 Place to be associated as the former or current location of an instance of E18 Physical Thing. In the case of E19 Physical Objects, the property does not allow any indication of the Time-Span during which the Physical Object was located at this Place, nor if this is the current location. In the case of immobile objects, the Place would normally correspond to the Place of creation. P53 has former or current location (is former or current location of) is a shortcut. A more detailed representation can make use of the fully developed (i.e. indirect) path from E19 Physical Object through P25 moved (moved by), E9 Move, P26 moved to (was destination of) or P27 moved from (was origin of) to E53 Place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P53_has_former_or_current_location - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P53i_is_former_or_current_location_of - # - # # This property records the foreseen permanent location of an instance of E19 Physical Object at the time of validity of the record or database containing the statement that uses this property. P54 has current permanent location (is current permanent location of) is similar to P55 has current location (currently holds). However, it indicates the E53 Place currently reserved for an object, such as the permanent storage location or a permanent exhibit location. The object may be temporarily removed from the permanent location, for example when used in temporary exhibitions or loaned to another institution. The object may never actually be located at its permanent location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P54_has_current_permanent_location - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P54i_is_current_permanent_location_of - # - # # This property records the location of an E19 Physical Object at the time of validity of the record or database containing the statement that uses this property. This property is a specialisation of P53 has former or current location (is former or current location of). It indicates that the E53 Place associated with the E19 Physical Object is the current location of the object. The property does not allow any indication of how long the Object has been at the current location. P55 has current location (currently holds) is a shortcut. A more detailed representation can make use of the fully developed (i.e. indirect) path from E19 Physical Object through P25 moved (moved by), E9 Move P26 moved to (was destination of) to E53 Place if and only if this Move is the most recent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P55_has_current_location - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P55i_currently_holds - # - # # This property links an instance of E19 Physical Object to an instance of E26 Physical Feature that it bears. An E26 Physical Feature can only exist on one object. One object may bear more than one E26 Physical Feature. An E27 Site should be considered as an E26 Physical Feature on the surface of the Earth. An instance B of E26 Physical Feature being a detail of the structure of another instance A of E26 Physical Feature can be linked to B by use of the property P46 is composed of (forms part of). This implies that the subfeature B is P56i found on the same E19 Physical Object as A. P56 bears feature (is found on) is a shortcut. A more detailed representation can make use of the fully developed (i.e. indirect) path from E19 Physical Object through P59 has section (is located on or Definition of the CIDOC Conceptual Reference Model 149 within), E53 Place, P53 has former or current location (is former or current location of) to E26 Physical Feature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P56_bears_feature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P56i_is_found_on - # - # # This property documents the E60 Number of parts of which an instance of E19 Physical Object is composed. This may be used as a method of checking inventory counts with regard to aggregate or collective objects. What constitutes a part or component depends on the context and requirements of the documentation. Normally, the parts documented in this way would not be considered as worthy of individual attention. For a more complete description, objects may be decomposed into their components and constituents using P46 is composed of (forms parts of) and P45 consists of (is incorporated in). This allows each element to be described individually. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P57_has_number_of_parts - # - # # This property links an area (section) named by a E46 Section Definition to the instance of E18 Physical Thing upon which it is found. The CRM handles sections as locations (instances of E53 Place) within or on E18 Physical Thing that are identified by E46 Section Definitions. Sections need not be discrete and separable components or parts of an object. This is part of a more developed path from E18 Physical Thing through P58, E46 Section Definition, P87 is identified by (identifies) that allows a more precise definition of a location found on an object than the shortcut P59 has section (is located on or within). A particular instance of a Section Definition only applies to one instance of Physical Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P58_has_section_definition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P58i_defines_section - # - # # This property links an area to the instance of E18 Physical Thing upon which it is found. It is typically used when a named E46 Section Definition is not appropriate. E18 Physical Thing may be subdivided into arbitrary regions. P59 has section (is located on or within) is a shortcut. If the E53 Place is identified by a Section Definition, a more detailed representation can make use of the fully developed (i.e. indirect) path from E18 Physical Thing through P58 has section definition (defines section), E46 Section Definition, P87 is identified by (identifies) to E53 Place. A Place can only be located on or within one Physical Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P59_has_section - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P59i_is_located_on_or_within - # - # # This property describes the decomposition of an E3 Condition State into discrete, subsidiary states. It is assumed that the sub-states into which the condition state is analysed form a logical whole - although the entire story may not be completely known – and that the sub-states are in fact constitutive of the general condition state. For example, a general condition state of “in ruins” may be decomposed into the individual stages of decay - # # @return [RDF::Vocabulary::Term] - # attr_reader :P5_consists_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P5i_forms_part_of - # - # # This property identifies something that is depicted by an instance of E24 Physical Man-Made Thing. This property is a shortcut of the more fully developed path from E24 Physical Man-Made Thing through P65 shows visual item (is shown by), E36 Visual Item, P138 represents (has representation) to E1CRM Entity. P62.1 mode of depiction allows the nature of the depiction to be refined. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P62_depicts - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P62i_is_depicted_by - # - # # This property documents an E36 Visual Item shown by an instance of E24 Physical Man-Made Thing. This property is similar to P62 depicts (is depicted by) in that it associates an item of E24 Physical Man-Made Thing with a visual representation. However, P65 shows visual item (is shown by) differs from the P62 depicts (is depicted by) property in that it makes no claims about what the E36 Visual Item is deemed to represent. E36 Visual Item identifies a recognisable image or visual symbol, regardless of what this image may or may not represent. For example, all recent British coins bear a portrait of Queen Elizabeth II, a fact that is correctly documented using P62 depicts (is depicted by). Different portraits have been used at different periods, however. P65 shows visual item (is shown by) can be used to refer to a particular portrait. P65 shows visual item (is shown by) may also be used for Visual Items such as signs, marks and symbols, for example the 'Maltese Cross' or the 'copyright symbol’ that have no particular representational content. This property is part of the fully developed path from E24 Physical Man-Made Thing through P65 shows visual item (is shown by), E36 Visual Item, P138 represents (has representation) to E1 CRM Entity which is shortcut by, P62 depicts (is depicted by). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P65_shows_visual_item - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P65i_is_shown_by - # - # # This property documents that an E89 Propositional Object makes a statement about an instance of E1 CRM Entity. P67 refers to (is referred to by) has the P67.1 has type link to an instance of E55 Type. This is intended to allow a more detailed description of the type of reference. This differs from P129 is about (is subject of), which describes the primary subject or subjects of the E89 Propositional Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P67_refers_to - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P67i_is_referred_to_by - # - # # This property identifies an E57 Material foreseeen to be used by an E29 Design or Procedure. E29 Designs and procedures commonly foresee the use of particular E57 Materials. The fabrication of adobe bricks, for example, requires straw, clay and water. This property enables this to be documented. This property is not intended for the documentation of E57 Materials that were used on a particular occasion when an instance of E29 Design or Procedure was executed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P68_foresees_use_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P68i_use_foreseen_by - # - # # This property generalises relationships like whole-part, sequence, prerequisite or inspired by between instances of E29 Design or Procedure. Any instance of E29 Design or Procedure may be associated with other designs or procedures. The property is considered to be symmetrical unless otherwise indicated by P69.1 has type. The P69.1 has type property of P69 has association with allows the nature of the association to be specified reading from domain to range; examples of types of association between instances of E29 Design or Procedure include: has part, follows, requires, etc. The property can typically be used to model the decomposition of the description of a complete workflow into a series of separate procedures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P69_is_associated_with - # - # # This property describes the CRM Entities documented by instances of E31 Document. Documents may describe any conceivable entity, hence the link to the highest-level entity in the CRM hierarchy. This property is intended for cases where a reference is regarded as being of a documentary character, in the scholarly or scientific sense. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P70_documents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P70i_is_documented_in - # - # # This property documents a source E32 Authority Document for an instance of an E1 CRM Entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P71_lists - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P71i_is_listed_in - # - # # This property describes the E56 Language of an E33 Linguistic Object. Linguistic Objects are composed in one or more human Languages. This property allows these languages to be documented. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P72_has_language - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P72i_is_language_of - # - # # This property describes the source and target of instances of E33Linguistic Object involved in a translation. When a Linguistic Object is translated into a new language it becomes a new Linguistic Object, despite being conceptually similar to the source object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P73_has_translation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P73i_is_translation_of - # - # # This property describes the current or former E53 Place of residence of an E39 Actor. The residence may be either the Place where the Actor resides, or a legally registered address of any kind. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P74_has_current_or_former_residence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P74i_is_current_or_former_residence_of - # - # # This property identifies former or current instances of E30 Rights held by an E39 Actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P75_possesses - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P75i_is_possessed_by - # - # # This property identifies an E51 Contact Point of any type that provides access to an E39 Actor by any communication method, such as e-mail or fax. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P76_has_contact_point - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P76i_provides_access_to - # - # # This property identifies an E52 Time-Span using an E49Time Appellation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P78_is_identified_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P78i_identifies - # - # # This property qualifies the beginning of an E52 Time-Span in some way. The nature of the qualification may be certainty, precision, source etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P79_beginning_is_qualified_by - # - # # This property describes the spatial location of an instance of E4 Period. The related E53 Place should be seen as an approximation of the geographical area within which the phenomena that characterise the period in question occurred. P7took place at (witnessed) does not convey any meaning other than spatial positioning (generally on the surface of the earth). For example, the period “R?volution fran?aise” can be said to have taken place in “France”, the “Victorian” period, may be said to have taken place in “Britain” and its colonies, as well as other parts of Europe and north America. A period can take place at multiple locations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P7_took_place_at - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P7i_witnessed - # - # # This property qualifies the end of an E52 Time-Span in some way. The nature of the qualification may be certainty, precision, source etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P80_end_is_qualified_by - # - # # This property describes the minimum period of time covered by an E52 Time-Span. Since Time-Spans may not have precisely known temporal extents, the CRM supports statements about the minimum and maximum temporal extents of Time-Spans. This property allows a Time-Span’s minimum temporal extent (i.e. its inner boundary) to be assigned an E61 Time Primitive value. Time Primitives are treated by the CRM as application or system specific date intervals, and are not further analysed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P81_ongoing_throughout - # - # # This is defined as the first boundary of the property P81 - # # @return [RDF::Vocabulary::Term] - # attr_reader :P81a_end_of_the_begin - # - # # This is defined as the second boundary of the property P81 - # # @return [RDF::Vocabulary::Term] - # attr_reader :P81b_begin_of_the_end - # - # # This property describes the maximum period of time within which an E52 Time-Span falls. Since Time-Spans may not have precisely known temporal extents, the CRM supports statements about the minimum and maximum temporal extents of Time-Spans. This property allows a Time-Span’s maximum temporal extent (i.e. its outer boundary) to be assigned an E61 Time Primitive value. Time Primitives are treated by the CRM as application or system specific date intervals, and are not further analysed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P82_at_some_time_within - # - # # This is defined as the first boundary of the property P82 - # # @return [RDF::Vocabulary::Term] - # attr_reader :P82a_begin_of_the_begin - # - # # This is defined as the second boundary of the property P82 - # # @return [RDF::Vocabulary::Term] - # attr_reader :P82b_end_of_the_end - # - # # This property describes the minimum length of time covered by an E52 Time-Span. It allows an E52 Time-Span to be associated with an E54 Dimension representing it’s minimum duration (i.e. it’s inner boundary) independent from the actual beginning and end. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P83_had_at_least_duration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P83i_was_minimum_duration_of - # - # # This property describes the maximum length of time covered by an E52 Time-Span. It allows an E52 Time-Span to be associated with an E54 Dimension representing it’s maximum duration (i.e. it’s outer boundary) independent from the actual beginning and end. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P84_had_at_most_duration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P84i_was_maximum_duration_of - # - # # This property describes the inclusion relationship between two instances of E52 Time-Span. This property supports the notion that a Time-Span’s temporal extent falls within the temporal extent of another Time-Span. It addresses temporal containment only, and no contextual link between the two instances of Time-Span is implied. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P86_falls_within - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P86i_contains - # - # # This property identifies an E53 Place using an E44 Place Appellation. Examples of Place Appellations used to identify Places include instances of E48 Place Name, addresses, E47 Spatial Coordinates etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P87_is_identified_by - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P87i_identifies - # - # # This property identifies an instance of E53 Place that falls wholly within the extent of another E53 Place. It addresses spatial containment only, and does not imply any relationship between things or phenomena occupying these places. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P89_falls_within - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P89i_contains - # - # # This property describes the location of an instance of E4 Period with respect to an E18 Physical Thing. P8 took place on or within (witnessed) is a short-cut of a path defining a E53 Place with respect to the geometry of an object. cf. E46 Section Definition. This property is in effect a special case of P7 took place at. It describes a period that can be located with respect to the space defined by an E18 Physical Thing such as a ship or a building. The precise geographical location of the object during the period in question may be unknown or unimportant. For example, the French and German armistice of 22 June 1940 was signed in the same railway carriage as the armistice of 11 November 1918. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P8_took_place_on_or_within - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P8i_witnessed - # - # # This property allows an E54 Dimension to be approximated by an E60 Number primitive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P90_has_value - # - # # This property shows the type of unit an E54 Dimension was expressed in. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P91_has_unit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P91i_is_unit_of - # - # # This property allows an E63 Beginning of Existence event to be linked to the E77 Persistent Item brought into existence by it. It allows a “start” to be attached to any Persistent Item being documented i.e. E70 Thing, E72 Legal Object, E39 Actor, E41 Appellation, E51 Contact Point and E55 Type - # # @return [RDF::Vocabulary::Term] - # attr_reader :P92_brought_into_existence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P92i_was_brought_into_existence_by - # - # # This property allows an E64 End of Existence event to be linked to the E77 Persistent Item taken out of existence by it. In the case of immaterial things, the E64 End of Existence is considered to take place with the destruction of the last physical carrier. This allows an “end” to be attached to any Persistent Item being documented i.e. E70 Thing, E72 Legal Object, E39 Actor, E41 Appellation, E51 Contact Point and E55 Type. For many Persistent Items we know the maximum life-span and can infer, that they must have ended to exist. We assume in that case an End of Existence, which may be as unnoticeable as forgetting the secret knowledge by the last representative of some indigenous nation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P93_took_out_of_existence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P93i_was_taken_out_of_existence_by - # - # # This property allows a conceptual E65 Creation to be linked to the E28 Conceptual Object created by it. It represents the act of conceiving the intellectual content of the E28 Conceptual Object. It does not represent the act of creating the first physical carrier of the E28 Conceptual Object. As an example, this is the composition of a poem, not its commitment to paper. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P94_has_created - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P94i_was_created_by - # - # # This property links the founding or E66 Formation for an E74 Group with the Group itself. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P95_has_formed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P95i_was_formed_by - # - # # This property links an E67 Birth event to an E21 Person as a participant in the role of birth-giving mother. Note that biological fathers are not necessarily participants in the Birth (see P97 from father (was father for)). The Person being born is linked to the Birth with the property P98 brought into life (was born). This is not intended for use with general natural history material, only people. There is no explicit method for modelling conception and gestation except by using extensions. This is a sub-property of P11 had participant (participated in). - # # @return [RDF::Vocabulary::Term] - # attr_reader :P96_by_mother - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P96i_gave_birth - # - # # This property links an E67 Birth event to an E21 Person in the role of biological father. Note that biological fathers are not seen as necessary participants in the Birth, whereas birth-giving mothers are (see P96 by mother (gave birth)). The Person being born is linked to the Birth with the property P98 brought into life (was born). This is not intended for use with general natural history material, only people. There is no explicit method for modelling conception and gestation except by using extensions. A Birth event is normally (but not always) associated with one biological father. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P97_from_father - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P97i_was_father_for - # - # # This property links an E67Birth event to an E21 Person in the role of offspring. Twins, triplets etc. are brought into life by the same Birth event. This is not intended for use with general Natural History material, only people. There is no explicit method for modelling conception and gestation except by using extensions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P98_brought_into_life - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P98i_was_born - # - # # This property links the disbanding or E68 Dissolution of an E74 Group to the Group itself. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P99_dissolved - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P99i_was_dissolved_by - # - # # This property associates an instance of E4 Period with another instance of E4 Period that falls within the spacetime volumes occupied by the former and which is defined by phenomena that form part of or are refinements of the phenomena that define the former. - # # @return [RDF::Vocabulary::Term] - # attr_reader :P9_consists_of - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :P9i_forms_part_of - # - # end CRM = Class.new(RDF::StrictVocabulary("http://www.cidoc-crm.org/cidoc-crm/")) do # Class definitions term :E10_Transfer_of_Custody, comment: "This class comprises transfers of physical custody of objects between instances of E39 Actor. \nThe recording of the donor and/or recipient is optional. It is possible that in an instance of E10 Transfer of Custody there is either no donor or no recipient. Depending on the circumstances it may describe:\n1.\tthe beginning of custody \n2.\tthe end of custody \n3.\tthe transfer of custody \n4.\tthe receipt of custody from an unknown source\n5.\tthe declared loss of an object\nThe distinction between the legal responsibility for custody and the actual physical possession of the object should be expressed using the property P2 has type (is type of). A specific case of transfer of custody is theft.\nThe interpretation of the museum notion of \"accession\" differs between institutions. The CRM therefore models legal ownership and physical custody separately. Institutions will then model their specific notions of accession and deaccession as combinations of these.\n".freeze, label: "Transfer of Custody".freeze, - subClassOf: "crm:E7_Activity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E11_Modification, comment: "This class comprises all instances of E7 Activity that create, alter or change E24 Physical Man-Made Thing. \nThis class includes the production of an item from raw materials, and other so far undocumented objects, and the preventive treatment or restoration of an object for conservation. \nSince the distinction between modification and production is not always clear, modification is regarded as the more generally applicable concept. This implies that some items may be consumed or destroyed in a Modification, and that others may be produced as a result of it. An event should also be documented using E81 Transformation if it results in the destruction of one or more objects and the simultaneous production of others using parts or material from the originals. In this case, the new items have separate identities. \nIf the instance of the E29 Design or Procedure utilized for the modification prescribes the use of specific materials, they should be documented using property P68 foresees use of (use foreseen by): E57 Material of E29 Design or Procedure, rather than via P126 employed (was employed in): E57 Material.\n".freeze, label: "Modification".freeze, - subClassOf: "crm:E7_Activity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E12_Production, comment: "This class comprises activities that are designed to, and succeed in, creating one or more new items. \nIt specializes the notion of modification into production. The decision as to whether or not an object is regarded as new is context sensitive. Normally, items are considered “new” if there is no obvious overall similarity between them and the consumed items and material used in their production. In other cases, an item is considered “new” because it becomes relevant to documentation by a modification. For example, the scribbling of a name on a potsherd may make it a voting token. The original potsherd may not be worth documenting, in contrast to the inscribed one. \nThis entity can be collective: the printing of a thousand books, for example, would normally be considered a single event. \nAn event should also be documented using E81 Transformation if it results in the destruction of one or more objects and the simultaneous production of others using parts or material from the originals. In this case, the new items have separate identities and matter is preserved, but identity is not.\n".freeze, label: "Production".freeze, - subClassOf: ["crm:E11_Modification".freeze, "crm:E63_Beginning_of_Existence".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E11_Modification".freeze, "http://www.cidoc-crm.org/cidoc-crm/E63_Beginning_of_Existence".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E13_Attribute_Assignment, comment: "This class comprises the actions of making assertions about properties of an object or any relation between two items or concepts. \nThis class allows the documentation of how the respective assignment came about, and whose opinion it was. All the attributes or properties assigned in such an action can also be seen as directly attached to the respective item or concept, possibly as a collection of contradictory values. All cases of properties in this model that are also described indirectly through an action are characterised as \"short cuts\" of this action. This redundant modelling of two alternative views is preferred because many implementations may have good reasons to model either the action or the short cut, and the relation between both alternatives can be captured by simple rules. \nIn particular, the class describes the actions of people making propositions and statements during certain museum procedures, e.g. the person and date when a condition statement was made, an identifier was assigned, the museum object was measured, etc. Which kinds of such assignments and statements need to be documented explicitly in structures of a schema rather than free text, depends on if this information should be accessible by structured queries. \n".freeze, label: "Attribute Assignment".freeze, - subClassOf: "crm:E7_Activity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E14_Condition_Assessment, comment: "This class describes the act of assessing the state of preservation of an object during a particular period. \nThe condition assessment may be carried out by inspection, measurement or through historical research. This class is used to document circumstances of the respective assessment that may be relevant to interpret its quality at a later stage, or to continue research on related documents. \n".freeze, label: "Condition Assessment".freeze, - subClassOf: "crm:E13_Attribute_Assignment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E15_Identifier_Assignment, comment: "This class comprises activities that result in the allocation of an identifier to an instance of E1 CRM Entity. An E15 Identifier Assignment may include the creation of the identifier from multiple constituents, which themselves may be instances of E41 Appellation. The syntax and kinds of constituents to be used may be declared in a rule constituting an instance of E29 Design or Procedure.\nExamples of such identifiers include Find Numbers, Inventory Numbers, uniform titles in the sense of librarianship and Digital Object Identifiers (DOI). Documenting the act of identifier assignment and deassignment is especially useful when objects change custody or the identification system of an organization is changed. In order to keep track of the identity of things in such cases, it is important to document by whom, when and for what purpose an identifier is assigned to an item.\nThe fact that an identifier is a preferred one for an organisation can be expressed by using the property E1 CRM Entity. P48 has preferred identifier (is preferred identifier of): E42 Identifier. It can better be expressed in a context independent form by assigning a suitable E55 Type, such as “preferred identifier assignment”, to the respective instance of E15 Identifier Assignment via the P2 has type property.\n".freeze, label: "Identifier Assignment".freeze, - subClassOf: "crm:E13_Attribute_Assignment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E16_Measurement, comment: "This class comprises actions measuring physical properties and other values that can be determined by a systematic procedure. \nExamples include measuring the monetary value of a collection of coins or the running time of a specific video cassette. \nThe E16 Measurement may use simple counting or tools, such as yardsticks or radiation detection devices. The interest is in the method and care applied, so that the reliability of the result may be judged at a later stage, or research continued on the associated documents. The date of the event is important for dimensions, which may change value over time, such as the length of an object subject to shrinkage. Details of methods and devices are best handled as free text, whereas basic techniques such as \"carbon 14 dating\" should be encoded using P2 has type (is type of:) E55 Type.\n".freeze, label: "Measurement".freeze, - subClassOf: "crm:E13_Attribute_Assignment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E17_Type_Assignment, comment: "This class comprises the actions of classifying items of whatever kind. Such items include objects, specimens, people, actions and concepts. \nThis class allows for the documentation of the context of classification acts in cases where the value of the classification depends on the personal opinion of the classifier, and the date that the classification was made. This class also encompasses the notion of \"determination,\" i.e. the systematic and molecular identification of a specimen in biology. \n".freeze, label: "Type Assignment".freeze, - subClassOf: "crm:E13_Attribute_Assignment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E18_Physical_Thing, comment: "This class comprises all persistent physical items with a relatively stable form, man-made or natural. \nDepending on the existence of natural boundaries of such things, the CRM distinguishes the instances of E19 Physical Object from instances of E26 Physical Feature, such as holes, rivers, pieces of land etc. Most instances of E19 Physical Object can be moved (if not too heavy), whereas features are integral to the surrounding matter. \nThe CRM is generally not concerned with amounts of matter in fluid or gaseous states. \n".freeze, label: "Physical Thing".freeze, - subClassOf: "crm:E72_Legal_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E72_Legal_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E19_Physical_Object, comment: "This class comprises items of a material nature that are units for documentation and have physical boundaries that separate them completely in an objective way from other objects. \nThe class also includes all aggregates of objects made for functional purposes of whatever kind, independent of physical coherence, such as a set of chessmen. Typically, instances of E19 Physical Object can be moved (if not too heavy).\nIn some contexts, such objects, except for aggregates, are also called “bona fide objects” (Smith & Varzi, 2000, pp.401-420), i.e. naturally defined objects. \nThe decision as to what is documented as a complete item, rather than by its parts or components, may be a purely administrative decision or may be a result of the order in which the item was acquired.\n".freeze, label: "Physical Object".freeze, - subClassOf: "crm:E18_Physical_Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E1_CRM_Entity, comment: "This class comprises all things in the universe of discourse of the CIDOC Conceptual Reference Model. \nIt is an abstract concept providing for three general properties:\n1.\tIdentification by name or appellation, and in particular by a preferred identifier\n2.\tClassification by type, allowing further refinement of the specific subclass an instance belongs to \n3.\tAttachment of free text for the expression of anything not captured by formal properties\nWith the exception of E59 Primitive Value, all other classes within the CRM are directly or indirectly specialisations of E1 CRM Entity. \n".freeze, label: "CRM Entity".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E20_Biological_Object, comment: "This class comprises individual items of a material nature, which live, have lived or are natural products of or from living organisms. \nArtificial objects that incorporate biological elements, such as Victorian butterfly frames, can be documented as both instances of E20 Biological Object and E22 Man-Made Object. \n".freeze, label: "Biological Object".freeze, - subClassOf: "crm:E19_Physical_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E21_Person, comment: "This class comprises real persons who live or are assumed to have lived. \nLegendary figures that may have existed, such as Ulysses and King Arthur, fall into this class if the documentation refers to them as historical figures. In cases where doubt exists as to whether several persons are in fact identical, multiple instances can be created and linked to indicate their relationship. The CRM does not propose a specific form to support reasoning about possible identity.\n".freeze, label: "Person".freeze, - subClassOf: ["crm:E20_Biological_Object".freeze, "crm:E39_Actor".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E20_Biological_Object".freeze, "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :"E22_Man-Made_Object", comment: "This class comprises physical objects purposely created by human activity.\nNo assumptions are made as to the extent of modification required to justify regarding an object as man-made. For example, an inscribed piece of rock or a preserved butterfly are both regarded as instances of E22 Man-Made Object.\n".freeze, label: "Man-Made Object".freeze, - subClassOf: ["crm:E19_Physical_Object".freeze, "crm:E24_Physical_Man-Made_Thing".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :"E24_Physical_Man-Made_Thing", comment: "This class comprises all persistent physical items that are purposely created by human activity.\nThis class comprises man-made objects, such as a swords, and man-made features, such as rock art. No assumptions are made as to the extent of modification required to justify regarding an object as man-made. For example, a “cup and ring” carving on bedrock is regarded as instance of E24 Physical Man-Made Thing. \n".freeze, label: "Physical Man-Made Thing".freeze, - subClassOf: ["crm:E18_Physical_Thing".freeze, "crm:E71_Man-Made_Thing".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, "http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :"E25_Man-Made_Feature", comment: "This class comprises physical features that are purposely created by human activity, such as scratches, artificial caves, artificial water channels, etc. \nNo assumptions are made as to the extent of modification required to justify regarding a feature as man-made. For example, rock art or even “cup and ring” carvings on bedrock a regarded as types of E25 Man-Made Feature.\n".freeze, label: "Man-Made Feature".freeze, - subClassOf: ["crm:E24_Physical_Man-Made_Thing".freeze, "crm:E26_Physical_Feature".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, "http://www.cidoc-crm.org/cidoc-crm/E26_Physical_Feature".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E26_Physical_Feature, comment: "This class comprises identifiable features that are physically attached in an integral way to particular physical objects. \nInstances of E26 Physical Feature share many of the attributes of instances of E19 Physical Object. They may have a one-, two- or three-dimensional geometric extent, but there are no natural borders that separate them completely in an objective way from the carrier objects. For example, a doorway is a feature but the door itself, being attached by hinges, is not. \nInstances of E26 Physical Feature can be features in a narrower sense, such as scratches, holes, reliefs, surface colours, reflection zones in an opal crystal or a density change in a piece of wood. In the wider sense, they are portions of particular objects with partially imaginary borders, such as the core of the Earth, an area of property on the surface of the Earth, a landscape or the head of a contiguous marble statue. They can be measured and dated, and it is sometimes possible to state who or what is or was responsible for them. They cannot be separated from the carrier object, but a segment of the carrier object may be identified (or sometimes removed) carrying the complete feature. \nThis definition coincides with the definition of \"fiat objects\" (Smith & Varzi, 2000, pp.401-420), with the exception of aggregates of “bona fide objects”. \n".freeze, label: "Physical Feature".freeze, - subClassOf: "crm:E18_Physical_Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E27_Site, comment: "This class comprises pieces of land or sea floor. \nIn contrast to the purely geometric notion of E53 Place, this class describes constellations of matter on the surface of the Earth or other celestial body, which can be represented by photographs, paintings and maps.\n Instances of E27 Site are composed of relatively immobile material items and features in a particular configuration at a particular location".freeze, label: "Site".freeze, - subClassOf: "crm:E26_Physical_Feature".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E26_Physical_Feature".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E28_Conceptual_Object, comment: "This class comprises non-material products of our minds and other human produced data that \t\thave become objects of a discourse about their identity, circumstances of creation or historical \t\timplication. The production of such information may have been supported by the use of \t\ttechnical devices such as cameras or computers.\nCharacteristically, instances of this class are created, invented or thought by someone, and then may be documented or communicated between persons. Instances of E28 Conceptual Object have the ability to exist on more than one particular carrier at the same time, such as paper, electronic signals, marks, audio media, paintings, photos, human memories, etc.\nThey cannot be destroyed. They exist as long as they can be found on at least one carrier or in at least one human memory. Their existence ends when the last carrier and the last memory are lost. \n".freeze, label: "Conceptual Object".freeze, - subClassOf: "crm:E71_Man-Made_Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E29_Design_or_Procedure, comment: "This class comprises documented plans for the execution of actions in order to achieve a result of a specific quality, form or contents. In particular it comprises plans for deliberate human activities that may result in the modification or production of instances of E24 Physical Thing. \nInstances of E29 Design or Procedure can be structured in parts and sequences or depend on others. This is modelled using P69 has association with (is associated with). \nDesigns or procedures can be seen as one of the following:\n1.\tA schema for the activities it describes\n2.\tA schema of the products that result from their application. \n3.\tAn independent intellectual product that may have never been applied, such as Leonardo da Vinci’s famous plans for flying machines.\nBecause designs or procedures may never be applied or only partially executed, the CRM models a loose relationship between the plan and the respective product.\n".freeze, label: "Design or Procedure".freeze, - subClassOf: "crm:E73_Information_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E2_Temporal_Entity, comment: "This class comprises all phenomena, such as the instances of E4 Periods, E5 Events and states, which happen over a limited extent in time. \n\tIn some contexts, these are also called perdurants. This class is disjoint from E77 Persistent Item. This is an abstract class and has no direct instances. E2 Temporal Entity is specialized into E4 Period, which applies to a particular geographic area (defined with a greater or lesser degree of precision), and E3 Condition State, which applies to instances of E18 Physical Thing.\n".freeze, label: "Temporal Entity".freeze, - subClassOf: "crm:E1_CRM_Entity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E30_Right, comment: "This class comprises legal privileges concerning material and immaterial things or their derivatives. \nThese include reproduction and property rights".freeze, label: "Right".freeze, - subClassOf: "crm:E89_Propositional_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E31_Document, comment: "This class comprises identifiable immaterial items that make propositions about reality.\nThese propositions may be expressed in text, graphics, images, audiograms, videograms or by other similar means. Documentation databases are regarded as a special case of E31 Document. This class should not be confused with the term “document” in Information Technology, which is compatible with E73 Information Object.\n".freeze, label: "Document".freeze, - subClassOf: "crm:E73_Information_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E32_Authority_Document, comment: "This class comprises encyclopaedia, thesauri, authority lists and other documents that define terminology or conceptual systems for consistent use.\n".freeze, label: "Authority Document".freeze, - subClassOf: "crm:E31_Document".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E31_Document".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E33_Linguistic_Object, comment: "This class comprises identifiable expressions in natural language or languages. \nInstances of E33 Linguistic Object can be expressed in many ways: e.g. as written texts, recorded speech or sign language. However, the CRM treats instances of E33 Linguistic Object independently from the medium or method by which they are expressed. Expressions in formal languages, such as computer code or mathematical formulae, are not treated as instances of E33 Linguistic Object by the CRM. These should be modelled as instances of E73 Information Object.\nThe text of an instance of E33 Linguistic Object can be documented in a note by P3 has note: E62 String\n".freeze, label: "Linguistic Object".freeze, - subClassOf: "crm:E73_Information_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E34_Inscription, comment: "This class comprises recognisable, short texts attached to instances of E24 Physical Man-Made Thing. \nThe transcription of the text can be documented in a note by P3 has note: E62 String. The alphabet used can be documented by P2 has type: E55 Type. This class does not intend to describe the idiosyncratic characteristics of an individual physical embodiment of an inscription, but the underlying prototype. The physical embodiment is modelled in the CRM as E24 Physical Man-Made Thing.\nThe relationship of a physical copy of a book to the text it contains is modelled using E84 Information Carrier. P128 carries (is carried by): E33 Linguistic Object. \n".freeze, label: "Inscription".freeze, - subClassOf: ["crm:E33_Linguistic_Object".freeze, "crm:E37_Mark".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E33_Linguistic_Object".freeze, "http://www.cidoc-crm.org/cidoc-crm/E37_Mark".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E35_Title, comment: "This class comprises the names assigned to works, such as texts, artworks or pieces of music. \nTitles are proper noun phrases or verbal phrases, and should not be confused with generic object names such as “chair”, “painting” or “book” (the latter are common nouns that stand for instances of E55 Type). Titles may be assigned by the creator of the work itself, or by a social group. \nThis class also comprises the translations of titles that are used as surrogates for the original titles in different social contexts.\n".freeze, label: "Title".freeze, - subClassOf: ["crm:E33_Linguistic_Object".freeze, "crm:E41_Appellation".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E33_Linguistic_Object".freeze, "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E36_Visual_Item, comment: "This class comprises the intellectual or conceptual aspects of recognisable marks and images.\nThis class does not intend to describe the idiosyncratic characteristics of an individual physical embodiment of a visual item, but the underlying prototype. For example, a mark such as the ICOM logo is generally considered to be the same logo when used on any number of publications. The size, orientation and colour may change, but the logo remains uniquely identifiable. The same is true of images that are reproduced many times. This means that visual items are independent of their physical support. \nThe class E36 Visual Item provides a means of identifying and linking together instances of E24 Physical Man-Made Thing that carry the same visual symbols, marks or images etc. The property P62 depicts (is depicted by) between E24 Physical Man-Made Thing and depicted subjects (E1 CRM Entity) can be regarded as a short-cut of the more fully developed path from E24 Physical Man-Made Thing through P65 shows visual item (is shown by), E36 Visual Item, P138 represents (has representation) to E1CRM Entity, which in addition captures the optical features of the depiction. \n".freeze, label: "Visual Item".freeze, - subClassOf: "crm:E73_Information_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E37_Mark, comment: "This class comprises symbols, signs, signatures or short texts applied to instances of E24 Physical Man-Made Thing by arbitrary techniques in order to indicate the creator, owner, dedications, purpose, etc. \nThis class specifically excludes features that have no semantic significance, such as scratches or tool marks. These should be documented as instances of E25 Man-Made Feature. \n".freeze, label: "Mark".freeze, - subClassOf: "crm:E36_Visual_Item".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E36_Visual_Item".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E38_Image, comment: "This class comprises distributions of form, tone and colour that may be found on surfaces such as photos, paintings, prints and sculptures or directly on electronic media. \nThe degree to which variations in the distribution of form and colour affect the identity of an instance of E38 Image depends on a given purpose. The original painting of the Mona Lisa in the Louvre may be said to bear the same instance of E38 Image as reproductions in the form of transparencies, postcards, posters or T-shirts, even though they may differ in size and carrier and may vary in tone and colour. The images in a “spot the difference” competition are not the same with respect to their context, however similar they may at first appear.\n".freeze, label: "Image".freeze, - subClassOf: "crm:E36_Visual_Item".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E36_Visual_Item".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E39_Actor, comment: "This class comprises people, either individually or in groups, who have the potential to perform intentional actions of kinds for which someone may be held responsible.\nThe CRM does not attempt to model the inadvertent actions of such actors. Individual people should be documented as instances of E21 Person, whereas groups should be documented as instances of either E74 Group or its subclass E40 Legal Body.\n".freeze, label: "Actor".freeze, - subClassOf: "crm:E77_Persistent_Item".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E3_Condition_State, comment: "This class comprises the states of objects characterised by a certain condition over a time-span. \nAn instance of this class describes the prevailing physical condition of any material object or feature during a specific E52 Time Span. In general, the time-span for which a certain condition can be asserted may be shorter than the real time-span, for which this condition held.\n The nature of that condition can be described using P2 has type. For example, the E3 Condition State “condition of the SS Great Britain between 22 September 1846 and 27 August 1847” can be characterized as E55 Type “wrecked”. \n".freeze, label: "Condition State".freeze, - subClassOf: "crm:E2_Temporal_Entity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E40_Legal_Body, comment: "This class comprises institutions or groups of people that have obtained a legal recognition as a group and can act collectively as agents. \nThis means that they can perform actions, own property, create or destroy things and can be held collectively responsible for their actions like individual people. The term 'personne morale' is often used for this in French. \n".freeze, label: "Legal Body".freeze, - subClassOf: "crm:E74_Group".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E41_Appellation, comment: "This class comprises signs, either meaningful or not, or arrangements of signs following a specific syntax, that are used or can be used to refer to and identify a specific instance of some class or category within a certain context.\nInstances of E41 Appellation do not identify things by their meaning, even if they happen to have one, but instead by convention, tradition, or agreement. Instances of E41 Appellation are cultural constructs; as such, they have a context, a history, and a use in time and space by some group of users. A given instance of E41 Appellation can have alternative forms, i.e., other instances of E41 Appellation that are always regarded as equivalent independent from the thing it denotes. \nSpecific subclasses of E41 Appellation should be used when instances of E41 Appellation of a characteristic form are used for particular objects. Instances of E49 Time Appellation, for example, which take the form of instances of E50 Date, can be easily recognised.\nE41 Appellation should not be confused with the act of naming something. Cf. E15 Identifier Assignment\n".freeze, label: "Appellation".freeze, - subClassOf: "crm:E90_Symbolic_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E42_Identifier, comment: "This class comprises strings or codes assigned to instances of E1 CRM Entity in order to identify them uniquely and permanently within the context of one or more organisations. Such codes are often known as inventory numbers, registration codes, etc. and are typically composed of alphanumeric sequences. The class E42 Identifier is not normally used for machine-generated identifiers used for automated processing unless these are also used by human agents.".freeze, label: "Identifier".freeze, - subClassOf: "crm:E41_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E44_Place_Appellation, comment: "This class comprises any sort of identifier characteristically used to refer to an E53 Place. \nInstances of E44 Place Appellation may vary in their degree of precision and their meaning may vary over time - the same instance of E44 Place Appellation may be used to refer to several places, either because of cultural shifts, or because objects used as reference points have moved around. Instances of E44 Place Appellation can be extremely varied in form: postal addresses, instances of E47 Spatial Coordinate, and parts of buildings can all be considered as instances of E44 Place Appellation.\n".freeze, label: "Place Appellation".freeze, - subClassOf: "crm:E41_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E45_Address, comment: "This class comprises identifiers expressed in coding systems for places, such as postal addresses used for mailing.\nAn E45 Address can be considered both as the name of an E53 Place and as an E51 Contact Point for an E39 Actor. This dual aspect is reflected in the multiple inheritance. However, some forms of mailing addresses, such as a postal box, are only instances of E51 Contact Point, since they do not identify any particular Place. These should not be documented as instances of E45 Address.\n".freeze, label: "Address".freeze, - subClassOf: ["crm:E44_Place_Appellation".freeze, "crm:E51_Contact_Point".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E44_Place_Appellation".freeze, "http://www.cidoc-crm.org/cidoc-crm/E51_Contact_Point".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E46_Section_Definition, comment: "This class comprises areas of objects referred to in terms specific to the general geometry or structure of its kind. \nThe 'prow' of the boat, the 'frame' of the picture, the 'front' of the building are all instances of E46 Section Definition. The class highlights the fact that parts of objects can be treated as locations. This holds in particular for features without natural boundaries, such as the “head” of a marble statue made out of one block (cf. E53 Place). In answer to the question 'where is the signature?' one might reply 'on the lower left corner'. (Section Definition is closely related to the term “segment” in Gerstl, P.& Pribbenow, S, 1996 “ A conceptual theory of part – whole relations and its applications”, Data & Knowledge \tEngineering 20 305-322, North Holland- Elsevier ).\n".freeze, label: "Section Definition".freeze, - subClassOf: "crm:E44_Place_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E44_Place_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E47_Spatial_Coordinates, comment: "This class comprises the textual or numeric information required to locate specific instances of E53 Place within schemes of spatial identification. \n\nCoordinates are a specific form of E44 Place Appellation, that is, a means of referring to a particular E53 Place. Coordinates are not restricted to longitude, latitude and altitude. Any regular system of reference that maps onto an E19 Physical Object can be used to generate coordinates.\n".freeze, label: "Spatial Coordinates".freeze, - subClassOf: "crm:E44_Place_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E44_Place_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E48_Place_Name, comment: "This class comprises particular and common forms of E44 Place Appellation. \nPlace Names may change their application over time: the name of an E53 Place may change, and a name may be reused for a different E53 Place. Instances of E48 Place Name are typically subject to place name gazetteers.".freeze, label: "Place Name".freeze, - subClassOf: "crm:E44_Place_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E44_Place_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E49_Time_Appellation, comment: "This class comprises all forms of names or codes, such as historical periods, and dates, which are characteristically used to refer to a specific E52 Time-Span. \nThe instances of E49 Time Appellation may vary in their degree of precision, and they may be relative to other time frames, “Before Christ” for example. Instances of E52 Time-Span are often defined by reference to a cultural period or an event e.g. ‘the duration of the Ming Dynasty’.".freeze, label: "Time Appellation".freeze, - subClassOf: "crm:E41_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E4_Period, comment: "This class comprises sets of coherent phenomena or cultural manifestations bounded in time and space.\n\nIt is the social or physical coherence of these phenomena that identify an E4 Period and not the associated spatiotemporal bounds. These bounds are a mere approximation of the actual process of growth, spread and retreat. Consequently, different periods can overlap and coexist in time and space, such as when a nomadic culture exists in the same area as a sedentary culture. As the actual extent of an E4 Period in spacetime we regard the trajectories of the participating physical things during their participation in an instance of E4 Period, the open spaces via which they have interacted and the spaces by which they had the potential to interact during that period or event in the way defined by the type of the respective period or event, such as the air in a meeting room transferring the voices. Since these phenomena are fuzzy, we assume the spatiotemporal extent to be contiguous, except for cases of phenomena spreading out over islands or other separated areas. In these cases, the trajectories necessary for participants to travel between these areas are not regarded as part of the spatiotemporal extent. Consequently, instances of E4 Period may occupy each a limited number of disjoint spacetime volumes, however there must not be a discontinuity in the total timespan covered by these spacetime volumes.\n\nTypically this class is used to describe prehistoric or historic periods such as the “Neolithic Period”, the “Ming Dynasty” or the “McCarthy Era”, but also geopolitical units and activities of settlements are regarded as special cases of E4 Period. Geopolitical units may be distributed over disconnected areas, such as islands or colonies. In such cases, the spatiotemporal extent is composed of more than one spacetime volume. One may argue that the activities to govern disconnected areas imply travelling through spaces connecting them and that these areas hence are spatially connected in a way, but it appears counterintuitive to consider for instance travel routes in international waters as extensions of geopolitical units. Nevertheless, an instance of E4 Period must be contiguous in time. I.e., if it has ended in all areas, it has ended as a whole, but it may involve one area after another, such as the Polynesian migration, as long as it is ongoing at least in one area.\n\nThere are no assumptions about the scale of the associated phenomena. In particular all events are seen as synthetic processes consisting of coherent phenomena. Therefore E4 Period is a superclass of E5 Event. For example, a modern clinical E67 Birth can be seen as both an atomic E5 Event and as an E4 Period that consists of multiple activities performed by multiple instances of E39 Actor.\n\nThere are two different conceptualisations of ‘artistic style’, defined either by physical features or by historical context. For example, “Impressionism” can be viewed as a period lasting from approximately 1870 to 1905 during which paintings with particular characteristics were produced by a group of artists that included (among others) Monet, Renoir, Pissarro, Sisley and Degas. Alternatively, it can be regarded as a style applicable to all paintings sharing the characteristics of the works produced by the Impressionist painters, regardless of historical context. The first interpretation is an E4 Period, and the second defines morphological object types that fall under E55 Type.\nAnother specific case of an E4 Period is the set of activities and phenomena associated with a settlement, such as the populated period of Nineveh.\n".freeze, label: "Period".freeze, - subClassOf: "crm:E2_Temporal_Entity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E50_Date, comment: "This class comprises specific forms of E49 Time Appellation.".freeze, label: "Date".freeze, - subClassOf: "crm:E49_Time_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E49_Time_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E51_Contact_Point, comment: "This class comprises identifiers employed, or understood, by communication services to direct communications to an instance of E39 Actor. These include E-mail addresses, telephone numbers, post office boxes, Fax numbers, URLs etc. Most postal addresses can be considered both as instances of E44 Place Appellation and E51 Contact Point. In such cases the subclass E45 Address should be used. \nURLs are addresses used by machines to access another machine through an http request. Since the accessed machine acts on behalf of the E39 Actor providing the machine, URLs are considered as instances of E51 Contact Point to that E39 Actor.\n".freeze, label: "Contact Point".freeze, - subClassOf: "crm:E41_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :"E52_Time-Span", comment: "This class comprises abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration. \nTime Span has no other semantic connotations. Time-Spans are used to define the temporal extent of instances of E4 Period, E5 Event and any other phenomena valid for a certain time. An E52 Time-Span may be identified by one or more instances of E49 Time Appellation. \nSince our knowledge of history is imperfect, instances of E52 Time-Span can best be considered as approximations of the actual Time-Spans of temporal entities. The properties of E52 Time-Span are intended to allow these approximations to be expressed precisely. An extreme case of approximation, might, for example, define an E52 Time-Span having unknown beginning, end and duration. Used as a common E52 Time-Span for two events, it would nevertheless define them as being simultaneous, even if nothing else was known. \n\tAutomatic processing and querying of instances of E52 Time-Span is facilitated if data can be parsed into an E61 Time Primitive.\n".freeze, label: "Time-Span".freeze, - subClassOf: "crm:E1_CRM_Entity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E53_Place, comment: "This class comprises extents in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter. \nThe instances of E53 Place are usually determined by reference to the position of “immobile” objects such as buildings, cities, mountains, rivers, or dedicated geodetic marks. A Place can be determined by combining a frame of reference and a location with respect to this frame. It may be identified by one or more instances of E44 Place Appellation.\n It is sometimes argued that instances of E53 Place are best identified by global coordinates or absolute reference systems. However, relative references are often more relevant in the context of cultural documentation and tend to be more precise. In particular, we are often interested in position in relation to large, mobile objects, such as ships. For example, the Place at which Nelson died is known with reference to a large mobile object – H.M.S Victory. A resolution of this Place in terms of absolute coordinates would require knowledge of the movements of the vessel and the precise time of death, either of which may be revised, and the result would lack historical and cultural relevance.\nAny object can serve as a frame of reference for E53 Place determination. The model foresees the notion of a \"section\" of an E19 Physical Object as a valid E53 Place determination.".freeze, label: "Place".freeze, - subClassOf: "crm:E1_CRM_Entity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E54_Dimension, comment: "This class comprises quantifiable properties that can be measured by some calibrated means and can be approximated by values, i.e. points or regions in a mathematical or conceptual space, such as natural or real numbers, RGB values etc.\nAn instance of E54 Dimension represents the true quantity, independent from its numerical approximation, e.g. in inches or in cm. The properties of the class E54 Dimension allow for expressing the numerical approximation of the values of an instance of E54 Dimension. If the true values belong to a non-discrete space, such as spatial distances, it is recommended to record them as approximations by intervals or regions of indeterminacy enclosing the assumed true values. For instance, a length of 5 cm may be recorded as 4.5-5.5 cm, according to the precision of the respective observation. Note, that interoperability of values described in different units depends critically on the representation as value regions.\nNumerical approximations in archaic instances of E58 Measurement Unit used in historical records should be preserved. Equivalents corresponding to current knowledge should be recorded as additional instances of E54 Dimension as appropriate.\n".freeze, label: "Dimension".freeze, - subClassOf: "crm:E1_CRM_Entity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E55_Type, comment: "This class comprises concepts denoted by terms from thesauri and controlled vocabularies used to characterize and classify instances of CRM classes. Instances of E55 Type represent concepts in contrast to instances of E41 Appellation which are used to name instances of CRM classes. \nE55 Type is the CRM’s interface to domain specific ontologies and thesauri. These can be represented in the CRM as subclasses of E55 Type, forming hierarchies of terms, i.e. instances of E55 Type linked via P127 has broader term (has narrower term). Such hierarchies may be extended with additional properties. \n".freeze, label: "Type".freeze, - subClassOf: "crm:E28_Conceptual_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E28_Conceptual_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E56_Language, comment: "This class is a specialization of E55 Type and comprises the natural languages in the sense of concepts. \nThis type is used categorically in the model without reference to instances of it, i.e. the Model does not foresee the description of instances of instances of E56 Language, e.g.: “instances of Mandarin Chinese”.\nIt is recommended that internationally or nationally agreed codes and terminology are used to denote instances of E56 Language, such as those defined in ISO 639:1988. \n".freeze, label: "Language".freeze, - subClassOf: "crm:E55_Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E57_Material, comment: "This class is a specialization of E55 Type and comprises the concepts of materials. \nInstances of E57 Material may denote properties of matter before its use, during its use, and as incorporated in an object, such as ultramarine powder, tempera paste, reinforced concrete. Discrete pieces of raw-materials kept in museums, such as bricks, sheets of fabric, pieces of metal, should be modelled individually in the same way as other objects. Discrete used or processed pieces, such as the stones from Nefer Titi's temple, should be modelled as parts (cf. P46 is composed of).\nThis type is used categorically in the model without reference to instances of it, i.e. the Model does not foresee the description of instances of instances of E57 Material, e.g.: “instances of gold”.\nIt is recommended that internationally or nationally agreed codes and terminology are used.".freeze, label: "Material".freeze, - subClassOf: "crm:E55_Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E58_Measurement_Unit, comment: "This class is a specialization of E55 Type and comprises the types of measurement units: feet, inches, centimetres, litres, lumens, etc. \nThis type is used categorically in the model without reference to instances of it, i.e. the Model does not foresee the description of instances of instances of E58 Measurement Unit, e.g.: “instances of cm”.\nSyst?me International (SI) units or internationally recognized non-SI terms should be used whenever possible. (ISO 1000:1992). Archaic Measurement Units used in historical records should be preserved.\n".freeze, label: "Measurement Unit".freeze, - subClassOf: "crm:E55_Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E5_Event, comment: "This class comprises changes of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena. Such changes of state will affect instances of E77 Persistent Item or its subclasses.\nThe distinction between an E5 Event and an E4 Period is partly a question of the scale of observation. Viewed at a coarse level of detail, an E5 Event is an ‘instantaneous’ change of state. At a fine level, the E5 Event can be analysed into its component phenomena within a space and time frame, and as such can be seen as an E4 Period. The reverse is not necessarily the case: not all instances of E4 Period give rise to a noteworthy change of state.\n".freeze, label: "Event".freeze, - subClassOf: "crm:E4_Period".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E63_Beginning_of_Existence, comment: "This class comprises events that bring into existence any E77 Persistent Item. \nIt may be used for temporal reasoning about things (intellectual products, physical items, groups of people, living beings) beginning to exist; it serves as a hook for determination of a terminus post quem and ante quem. ".freeze, label: "Beginning of Existence".freeze, - subClassOf: "crm:E5_Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E5_Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E64_End_of_Existence, comment: "This class comprises events that end the existence of any E77 Persistent Item. \nIt may be used for temporal reasoning about things (physical items, groups of people, living beings) ceasing to exist; it serves as a hook for determination of a terminus postquem and antequem. In cases where substance from a Persistent Item continues to exist in a new form, the process would be documented by E81 Transformation.\n".freeze, label: "End of Existence".freeze, - subClassOf: "crm:E5_Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E5_Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E65_Creation, comment: "This class comprises events that result in the creation of conceptual items or immaterial products, such as legends, poems, texts, music, images, movies, laws, types etc.\n".freeze, label: "Creation".freeze, - subClassOf: ["crm:E63_Beginning_of_Existence".freeze, "crm:E7_Activity".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E63_Beginning_of_Existence".freeze, "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E66_Formation, comment: "This class comprises events that result in the formation of a formal or informal E74 Group of people, such as a club, society, association, corporation or nation. \nE66 Formation does not include the arbitrary aggregation of people who do not act as a collective.\nThe formation of an instance of E74 Group does not mean that the group is populated with members at the time of formation. In order to express the joining of members at the time of formation, the respective activity should be simultaneously an instance of both E66 Formation and E85 Joining. \n".freeze, label: "Formation".freeze, - subClassOf: ["crm:E63_Beginning_of_Existence".freeze, "crm:E7_Activity".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E63_Beginning_of_Existence".freeze, "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E67_Birth, comment: "This class comprises the births of human beings. E67 Birth is a biological event focussing on the context of people coming into life. (E63 Beginning of Existence comprises the coming into life of any living beings). \nTwins, triplets etc. are brought into life by the same E67 Birth event. The introduction of the E67 Birth event as a documentation element allows the description of a range of family relationships in a simple model. Suitable extensions may describe more details and the complexity of motherhood with the intervention of modern medicine. In this model, the biological father is not seen as a necessary participant in the E67 Birth event.\n".freeze, label: "Birth".freeze, - subClassOf: "crm:E63_Beginning_of_Existence".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E63_Beginning_of_Existence".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E68_Dissolution, comment: "This class comprises the events that result in the formal or informal termination of an E74 Group of people. \nIf the dissolution was deliberate, the Dissolution event should also be instantiated as an E7 Activity.\n".freeze, label: "Dissolution".freeze, - subClassOf: "crm:E64_End_of_Existence".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E64_End_of_Existence".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E69_Death, comment: "This class comprises the deaths of human beings. \nIf a person is killed, their death should be instantiated as E69 Death and as E7 Activity. The death or perishing of other living beings should be documented using E64 End of Existence.\n".freeze, label: "Death".freeze, - subClassOf: "crm:E64_End_of_Existence".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E64_End_of_Existence".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E6_Destruction, comment: "This class comprises events that destroy one or more instances of E18 Physical Thing such that they lose their identity as the subjects of documentation. \nSome destruction events are intentional, while others are independent of human activity. Intentional destruction may be documented by classifying the event as both an E6 Destruction and E7 Activity. \nThe decision to document an object as destroyed, transformed or modified is context sensitive: \n1. If the matter remaining from the destruction is not documented, the event is modelled solely as E6 Destruction. \n2. An event should also be documented using E81 Transformation if it results in the destruction of one or more objects and the simultaneous production of others using parts or material from the original. In this case, the new items have separate identities. Matter is preserved, but identity is not.\n3. When the initial identity of the changed instance of E18 Physical Thing is preserved, the event should be documented as E11 Modification. \n".freeze, label: "Destruction".freeze, - subClassOf: "crm:E64_End_of_Existence".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E64_End_of_Existence".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E70_Thing, comment: "This general class comprises discrete, identifiable, instances of E77 Persistent Item that are documented as single units, that either consist of matter or depend on being carried by matter and are characterized by relative stability.\nThey may be intellectual products or physical things. They may for instance have a solid physical form, an electronic encoding, or they may be a logical concept or structure.\n".freeze, label: ["".freeze, "Thing".freeze], - subClassOf: "crm:E77_Persistent_Item".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :"E71_Man-Made_Thing", comment: "This class comprises discrete, identifiable man-made items that are documented as single units. \nThese items are either intellectual products or man-made physical things, and are characterized by relative stability. They may for instance have a solid physical form, an electronic encoding, or they may be logical concepts or structures.\n".freeze, label: "Man-Made Thing".freeze, - subClassOf: "crm:E70_Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E72_Legal_Object, comment: "This class comprises those material or immaterial items to which instances of E30 Right, such as the right of ownership or use, can be applied. \nThis is true for all E18 Physical Thing. In the case of instances of E28 Conceptual Object, however, the identity of the E28 Conceptual Object or the method of its use may be too ambiguous to reliably establish instances of E30 Right, as in the case of taxa and inspirations. Ownership of corporations is currently regarded as out of scope of the CRM. \n".freeze, label: "Legal Object".freeze, - subClassOf: "crm:E70_Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E73_Information_Object, comment: "This class comprises identifiable immaterial items, such as a poems, jokes, data sets, images, texts, multimedia objects, procedural prescriptions, computer program code, algorithm or mathematical formulae, that have an objectively recognizable structure and are documented as single units. \nAn E73 Information Object does not depend on a specific physical carrier, which can include human memory, and it can exist on one or more carriers simultaneously.\nInstances of E73 Information Object of a linguistic nature should be declared as instances of the E33 Linguistic Object subclass. Instances of E73 Information Object of a documentary nature should be declared as instances of the E31 Document subclass. Conceptual items such as types and classes are not instances of E73 Information Object, nor are ideas without a reproducible expression. \n".freeze, label: "Information Object".freeze, - subClassOf: ["crm:E89_Propositional_Object".freeze, "crm:E90_Symbolic_Object".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E74_Group, comment: "This class comprises any gatherings or organizations of E39 Actors that act collectively or in a similar way due to any form of unifying relationship. In the wider sense this class also comprises official positions which used to be regarded in certain contexts as one actor, independent of the current holder of the office, such as the president of a country. In such cases, it may happen that the Group never had more than one member. A joint pseudonym (i.e., a name that seems indicative of an individual but that is actually used as a persona by two or more people) is a particular case of E74 Group.\nA gathering of people becomes an E74 Group when it exhibits organizational characteristics usually typified by a set of ideas or beliefs held in common, or actions performed together. These might be communication, creating some common artifact, a common purpose such as study, worship, business, sports, etc. Nationality can be modeled as membership in an E74 Group (cf. HumanML markup). Married couples and other concepts of family are regarded as particular examples of E74 Group.\n".freeze, label: "Group".freeze, - subClassOf: "crm:E39_Actor".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E75_Conceptual_Object_Appellation, comment: "This class comprises appellations that are by their form or syntax specific to identifying instances of E28 Conceptual Object, such as intellectual products, standardized patterns etc.".freeze, label: "Conceptual Object Appellation".freeze, - subClassOf: "crm:E41_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E77_Persistent_Item, comment: "This class comprises items that have a persistent identity, sometimes known as “endurants” in philosophy. \nThey can be repeatedly recognized within the duration of their existence by identity criteria rather than by continuity or observation. Persistent Items can be either physical entities, such as people, animals or things, or conceptual entities such as ideas, concepts, products of the imagination or common names.\nThe criteria that determine the identity of an item are often difficult to establish -; the decision depends largely on the judgement of the observer. For example, a building is regarded as no longer existing if it is dismantled and the materials reused in a different configuration. On the other hand, human beings go through radical and profound changes during their life-span, affecting both material composition and form, yet preserve their identity by other criteria. Similarly, inanimate objects may be subject to exchange of parts and matter. The class E77 Persistent Item does not take any position about the nature of the applicable identity criteria and if actual knowledge about identity of an instance of this class exists. There may be cases, where the identity of an E77 Persistent Item is not decidable by a certain state of knowledge.\nThe main classes of objects that fall outside the scope the E77 Persistent Item class are temporal objects such as periods, events and acts, and descriptive properties. ".freeze, label: "Persistent Item".freeze, - subClassOf: "crm:E1_CRM_Entity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E78_Collection, comment: "This class comprises aggregations of instances of E18 Physical Thing that are assembled and maintained (“curated” and “preserved,” in museological terminology) by one or more instances of E39 Actor over time for a specific purpose and audience, and according to a particular collection development plan. \nItems may be added or removed from an E78 Collection in pursuit of this plan. This class should not be confused with the E39 Actor maintaining the E78 Collection often referred to with the name of the E78 Collection (e.g. “The Wallace Collection decided…”).\nCollective objects in the general sense, like a tomb full of gifts, a folder with stamps or a set of chessmen, should be documented as instances of E19 Physical Object, and not as instances of E78 Collection. This is because they form wholes either because they are physically bound together or because they are kept together for their functionality.\n".freeze, label: "Collection".freeze, - subClassOf: "crm:E24_Physical_Man-Made_Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E79_Part_Addition, comment: "This class comprises activities that result in an instance of E24 Physical Man-Made Thing being increased, enlarged or augmented by the addition of a part. \nTypical scenarios include the attachment of an accessory, the integration of a component, the addition of an element to an aggregate object, or the accessioning of an object into a curated E78 Collection. Objects to which parts are added are, by definition, man-made, since the addition of a part implies a human activity. Following the addition of parts, the resulting man-made assemblages are treated objectively as single identifiable wholes, made up of constituent or component parts bound together either physically (for example the engine becoming a part of the car), or by sharing a common purpose (such as the 32 chess pieces that make up a chess set). This class of activities forms a basis for reasoning about the history and continuity of identity of objects that are integrated into other objects over time, such as precious gemstones being repeatedly incorporated into different items of jewellery, or cultural artifacts being added to different museum instances of E78 Collection over their lifespan.\n".freeze, label: "Part Addition".freeze, - subClassOf: "crm:E11_Modification".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E11_Modification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E7_Activity, comment: "This class comprises actions intentionally carried out by instances of E39 Actor that result in changes of state in the cultural, social, or physical systems documented. \nThis notion includes complex, composite and long-lasting actions such as the building of a settlement or a war, as well as simple, short-lived actions such as the opening of a door.\n".freeze, label: "Activity".freeze, - subClassOf: "crm:E5_Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E5_Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E80_Part_Removal, comment: "This class comprises the activities that result in an instance of E18 Physical Thing being decreased by the removal of a part.\nTypical scenarios include the detachment of an accessory, the removal of a component or part of a composite object, or the deaccessioning of an object from a curated E78 Collection. If the E80 Part Removal results in the total decomposition of the original object into pieces, such that the whole ceases to exist, the activity should instead be modelled as an E81 Transformation, i.e. a simultaneous destruction and production. In cases where the part removed has no discernible identity prior to its removal but does have an identity subsequent to its removal, the activity should be regarded as both E80 Part Removal and E12 Production. This class of activities forms a basis for reasoning about the history, and continuity of identity over time, of objects that are removed from other objects, such as precious gemstones being extracted from different items of jewelry, or cultural artifacts being deaccessioned from different museum collections over their lifespan.\n".freeze, label: "Part Removal".freeze, - subClassOf: "crm:E11_Modification".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E11_Modification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E81_Transformation, comment: "This class comprises the events that result in the simultaneous destruction of one or more than one E77 Persistent Item and the creation of one or more than one E77 Persistent Item that preserves recognizable substance from the first one(s) but has fundamentally different nature and identity. \nAlthough the old and the new instances of E77 Persistent Item are treated as discrete entities having separate, unique identities, they are causally connected through the E81 Transformation; the destruction of the old E77 Persistent Item(s) directly causes the creation of the new one(s) using or preserving some relevant substance. Instances of E81 Transformation are therefore distinct from re-classifications (documented using E17 Type Assignment) or modifications (documented using E11 Modification) of objects that do not fundamentally change their nature or identity. Characteristic cases are reconstructions and repurposing of historical buildings or ruins, fires leaving buildings in ruins, taxidermy of specimen in natural history and the reorganization of a corporate body into a new one.\n".freeze, label: "Transformation".freeze, - subClassOf: ["crm:E63_Beginning_of_Existence".freeze, "crm:E64_End_of_Existence".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E63_Beginning_of_Existence".freeze, "http://www.cidoc-crm.org/cidoc-crm/E64_End_of_Existence".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E82_Actor_Appellation, comment: "This class comprises any sort of name, number, code or symbol characteristically used to identify an E39 Actor. \nAn E39 Actor will typically have more than one E82 Actor Appellation, and instances of E82 Actor Appellation in turn may have alternative representations. The distinction between corporate and personal names, which is particularly important in library applications, should be made by explicitly linking the E82 Actor Appellation to an instance of either E21 Person or E74 Group/E40 Legal Body. If this is not possible, the distinction can be made through the use of the P2 has type mechanism. \n".freeze, label: "Actor Appellation".freeze, - subClassOf: "crm:E41_Appellation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E83_Type_Creation, comment: "This class comprises activities formally defining new types of items. \nIt is typically a rigorous scholarly or scientific process that ensures a type is exhaustively described and appropriately named. In some cases, particularly in archaeology and the life sciences, E83 Type Creation requires the identification of an exemplary specimen and the publication of the type definition in an appropriate scholarly forum. The activity of E83 Type Creation is central to research in the life sciences, where a type would be referred to as a “taxon,” the type description as a “protologue,” and the exemplary specimens as “orgininal element” or “holotype”.\n".freeze, label: "Type Creation".freeze, - subClassOf: "crm:E65_Creation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E65_Creation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E84_Information_Carrier, comment: "This class comprises all instances of E22 Man-Made Object that are explicitly designed to act as persistent physical carriers for instances of E73 Information Object.\nAn E84 Information Carrier may or may not contain information, e.g., a diskette. Note that any E18 Physical Thing may carry information, such as an E34 Inscription. However, unless it was specifically designed for this purpose, it is not an Information Carrier. Therefore the property P128 carries (is carried by) applies to E18 Physical Thing in general.\n\t".freeze, label: "Information Carrier".freeze, - subClassOf: "crm:E22_Man-Made_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E22_Man-Made_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E85_Joining, comment: "This class comprises the activities that result in an instance of E39 Actor becoming a member of an instance of E74 Group. This class does not imply initiative by either party.\nTypical scenarios include becoming a member of a social organisation, becoming employee of a company, marriage, the adoption of a child by a family and the inauguration of somebody into an official position. \n".freeze, label: "Joining".freeze, - subClassOf: "crm:E7_Activity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E86_Leaving, comment: "This class comprises the activities that result in an instance of E39 Actor to be disassociated from an instance of E74 Group. This class does not imply initiative by either party. \nTypical scenarios include the termination of membership in a social organisation, ending the employment at a company, divorce, and the end of tenure of somebody in an official position.".freeze, label: "Leaving".freeze, - subClassOf: "crm:E7_Activity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E87_Curation_Activity, comment: "This class comprises the activities that result in the continuity of management and the preservation and evolution of instances of E78 Collection, following an implicit or explicit curation plan. \nIt specializes the notion of activity into the curation of a collection and allows the history of curation to be recorded.\nItems are accumulated and organized following criteria like subject, chronological period, material type, style of art etc. and can be added or removed from an E78 Collection for a specific purpose and/or audience. The initial aggregation of items of a collection is regarded as an instance of E12 Production Event while the activity of evolving, preserving and promoting a collection is regarded as an instance of E87 Curation Activity.\n".freeze, label: "Curation Activity".freeze, - subClassOf: "crm:E7_Activity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E89_Propositional_Object, comment: "This class comprises immaterial items, including but not limited to stories, plots, procedural prescriptions, algorithms, laws of physics or images that are, or represent in some sense, sets of propositions about real or imaginary things and that are documented as single units or serve as topics of discourse. \n\t\nThis class also comprises items that are “about” something in the sense of a subject. In the wider sense, this class includes expressions of psychological value such as non-figural art and musical themes. However, conceptual items such as types and classes are not instances of E89 Propositional Object. This should not be confused with the definition of a type, which is indeed an instance of E89 Propositional Object.\n".freeze, label: "Propositional Object".freeze, - subClassOf: "crm:E28_Conceptual_Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E28_Conceptual_Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E8_Acquisition, comment: "This class comprises transfers of legal ownership from one or more instances of E39 Actor to one or more other instances of E39 Actor. \nThe class also applies to the establishment or loss of ownership of instances of E18 Physical Thing. It does not, however, imply changes of any other kinds of right. The recording of the donor and/or recipient is optional. It is possible that in an instance of E8 Acquisition there is either no donor or no recipient. Depending on the circumstances, it may describe:\n1.\tthe beginning of ownership\n2.\tthe end of ownership\n3.\tthe transfer of ownership\n4.\tthe acquisition from an unknown source \n5.\tthe loss of title due to destruction of the item\nIt may also describe events where a collector appropriates legal title, for example by annexation or field collection. The interpretation of the museum notion of \"accession\" differs between institutions. The CRM therefore models legal ownership (E8 Acquisition) and physical custody (E10 Transfer of Custody) separately. Institutions will then model their specific notions of accession and deaccession as combinations of these.\n".freeze, label: "Acquisition".freeze, - subClassOf: "crm:E7_Activity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E90_Symbolic_Object, comment: "This class comprises identifiable symbols and any aggregation of symbols, such as characters, identifiers, traffic signs, emblems, texts, data sets, images, musical scores, multimedia objects, computer program code or mathematical formulae that have an objectively recognizable structure and that are documented as single units.\n\tIt includes sets of signs of any nature, which may serve to designate something, or to communicate some propositional content.\n\tAn instance of E90 Symbolic Object does not depend on a specific physical carrier, which can include human memory, and it can exist on one or more carriers simultaneously. An instance of E90 Symbolic Object may or may not have a specific meaning, for example an arbitrary character string.\n\tIn some cases, the content of an instance of E90 Symbolic Object may completely be represented by a serialized content model, such.. as the property P3 has note allows for describing this content model…P3.1 has type: E55 Type to specify the encoding..\n".freeze, label: "Symbolic Object".freeze, - subClassOf: ["crm:E28_Conceptual_Object".freeze, "crm:E72_Legal_Object".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.cidoc-crm.org/cidoc-crm/E28_Conceptual_Object".freeze, "http://www.cidoc-crm.org/cidoc-crm/E72_Legal_Object".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :"E91_Co-Reference_Assignment", comment: "This class comprises actions of making the assertion whether two or more particular instances of E89 Propositional Object refer to the same instance of E1 CRM Entity. The assertion is based on the assumption that this was an implicit fact being made explicit by this assignment. Use of this class allows for the full description of the context of this assignment. The Actor making the assertion may have different kinds of confidence in the truth of the asserted fact of co-reference, because it may imply an interpretation of the (past) knowledge behind the propositional objects assumed to be co-referring. This kind of confidence can be described by using the property P2 has type (is type of). In case different propositional attitudes should be expressed per asserted propositional object, the assertion has accordingly to be divided into one instance of E91 Co-Reference Assignment for each kind of confidence.\nThis class aims at the problem of interpreting within a particular passage of an historical text, to which real-world entity a particular name, pronoun or equivalent expression was intended to refer by the texts author. In other words, it expresses the uncertainty of the creator of the assertion about the meaning of the information provided by another person.\nEach such interpretation can only be documented with respect to another reference – either found in another text by the same or a different author, and/or by referring to the world known to the creator of the co-reference assertion. To do the latter, the property P155 has co-reference target (is co-reference target of) allows for referring to an instance of CRM Entity of the creator’s world. In a sense, the respective instance of E91 Co-Reference Assignment using the property P155 has co-reference target (is co-reference target of) in a knowledge base forms propositional object referring to the creator’s target entity, since a knowledge base as a whole can be seen as a propositional object. Consequently, if in a Semantic Web implementation the target entity is instantiated by a URI, the meaning of this identifier must be unambiguous to the creator of the co-reference assignment. Similarly, a URI of another authority, such as an author catalogue of a library, can be interpreted as a referring proposition of this catalogue, and be referred to by the property P153 assigned co-reference to (was regarded to co-refer by) or P154 assigned non co-reference to (was regarded not to co-refer by): E89 Propositional Object in order to express that it does not immediately represent the creator’s known world. In this case, the authority that knows the meaning of this URI must be unambiguous by the form of the URI itself.\nIn contrast, the meaning of the property ‘owl:same_as’ of the OWL knowledge representation language cannot specify who’s knowledge it represents and cannot express kind of confidence. Therefore it is not adequate to model the progress of scholarly co-reference research.\n".freeze, label: "Co-Reference Assignment".freeze, - subClassOf: "crm:E13_Attribute_Assignment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E92_Spacetime_Volume, comment: "This class comprises 4 dimensional point sets (volumes) in physical spacetime regardless its true geometric form. They may derive their identity from being the extent of a material phenomenon or from being the interpretation of an expression defining an extent in spacetime. \n\tIntersections of instances of E92 Spacetime Volume, Place and Timespan are also regarded as instances of E92 Spacetime Volume. An instance of E92 Spacetime Volume is either contiguous or composed of a finite number of contiguous subsets. \n\tIts boundaries may be fuzzy due to the properties of the phenomena it derives from or due to the limited precision up to which defining expression can be identified with a real extent in spacetime. The duration of existence of an instance of a spacetime volume is trivially its projection on time.\n".freeze, label: "Spacetime Volume".freeze, - subClassOf: "crm:E1_CRM_Entity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E93_Spacetime_Snapshot, comment: "This class comprises instances of E92 Spacetime Volume that result from intersection of instances of E92 Spacetime Volume with an instance of E52 Time-Span. The identity of an instance of this class is determined by the identities of the constituing spacetime volume and the time-span.\nThis class can be used to define temporal snapshots at a particular time-span, such as the extent of the Roman Empire at 33 B.C., or the extent occupied by a museum object at rest in an exhibit. In particular, it can be used to define the spatial projection of a spacetime volume during a particular time-span, such as the maximal spatial extent of a flood at some particular hour, or all areas covered by the Poland within the 20th century AD\n".freeze, label: "Spacetime Snapshot".freeze, - subClassOf: "crm:E92_Spacetime_Volume".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E92_Spacetime_Volume".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :E9_Move, comment: "This class comprises changes of the physical location of the instances of E19 Physical Object. \nNote, that the class E9 Move inherits the property P7 took place at (witnessed): E53 Place. This property should be used to describe the trajectory or a larger area within which a move takes place, whereas the properties P26 moved to (was destination of), P27 moved from (was origin of) describe the start and end points only. Moves may also be documented to consist of other moves (via P9 consists of (forms part of)), in order to describe intermediate stages on a trajectory. In that case, start and end points of the partial moves should match appropriately between each other and with the overall event.\n".freeze, label: "Move".freeze, - subClassOf: "crm:E7_Activity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :P100_was_death_of, comment: "This property property links an E69 Death event to the E21 Person that died.".freeze, - domain: "crm:E69_Death".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E69_Death".freeze, label: "was death of".freeze, - range: "crm:E21_Person".freeze, - subPropertyOf: "crm:P93_took_out_of_existence".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P93_took_out_of_existence".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P100i_died_in, - domain: "crm:E21_Person".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, label: "died in".freeze, - range: "crm:E69_Death".freeze, - subPropertyOf: "crm:P93i_was_taken_out_of_existence_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E69_Death".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P93i_was_taken_out_of_existence_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P101_had_as_general_use, comment: "This property links an instance of E70 Thing to an E55 Type of usage.\nIt allows the relationship between particular things, both physical and immaterial, and general methods and techniques of use to be documented. Thus it can be asserted that a baseball bat had a general use for sport and a specific use for threatening people during the Great Train Robbery.\n".freeze, - domain: "crm:E70_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, label: "had as general use".freeze, - range: "crm:E55_Type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P101i_was_use_of, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "was use of".freeze, - range: "crm:E70_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P102_has_title, comment: "This property describes the E35 Title applied to an instance of E71 Man-Made Thing. The E55 Type of Title is assigned in a sub property.\nThe P102.1 has type property of the P102 has title (is title of) property enables the relationship between the Title and the thing to be further clarified, for example, if the Title was a given Title, a supplied Title etc.\nIt allows any man-made material or immaterial thing to be given a Title. It is possible to imagine a Title being created without a specific object in mind.\n".freeze, - domain: "crm:E71_Man-Made_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing".freeze, label: "has title".freeze, - range: "crm:E35_Title".freeze, - subPropertyOf: "crm:P1_is_identified_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E35_Title".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P102i_is_title_of, - domain: "crm:E35_Title".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E35_Title".freeze, label: "is title of".freeze, - range: "crm:E71_Man-Made_Thing".freeze, - subPropertyOf: "crm:P1i_identifies".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1i_identifies".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P103_was_intended_for, comment: "This property links an instance of E71 Man-Made Thing to an E55 Type of usage. \nIt creates a property between specific man-made things, both physical and immaterial, to Types of intended methods and techniques of use. Note: A link between specific man-made things and a specific use activity should be expressed using P19 was intended use of (was made for).".freeze, - domain: "crm:E71_Man-Made_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing".freeze, label: "was intended for".freeze, - range: "crm:E55_Type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P103i_was_intention_of, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "was intention of".freeze, - range: "crm:E71_Man-Made_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P104_is_subject_to, comment: "This property links a particular E72 Legal Object to the instances of E30 Right to which it is subject.\nThe Right is held by an E39 Actor as described by P75 possesses (is possessed by).\n".freeze, - domain: "crm:E72_Legal_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E72_Legal_Object".freeze, label: "is subject to".freeze, - range: "crm:E30_Right".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E30_Right".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P104i_applies_to, - domain: "crm:E30_Right".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E30_Right".freeze, label: "applies to".freeze, - range: "crm:E72_Legal_Object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E72_Legal_Object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P105_right_held_by, comment: "This property identifies the E39 Actor who holds the instances of E30 Right to an E72 Legal Object.\n\tIt is a superproperty of P52 has current owner (is current owner of) because ownership is a right that is held on the owned object.\nP105 right held by (has right on) is a shortcut of the fully developed path from E72 Legal Object through P104 is subject to (applies to), E30 Right, P75 possesses (is possessed by) to E39 Actor.\n".freeze, - domain: "crm:E72_Legal_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E72_Legal_Object".freeze, label: "right held by".freeze, - range: "crm:E39_Actor".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P105i_has_right_on, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "has right on".freeze, - range: "crm:E72_Legal_Object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E72_Legal_Object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P106_is_composed_of, comment: "This property associates an instance of E90 Symbolic Object with a part of it that is by itself an instance of E90 Symbolic Object, such as fragments of texts or clippings from an image.\n".freeze, - domain: "crm:E90_Symbolic_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, label: "is composed of".freeze, - range: "crm:E90_Symbolic_Object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P106i_forms_part_of, - domain: "crm:E90_Symbolic_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, label: "forms part of".freeze, - range: "crm:E90_Symbolic_Object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P107_has_current_or_former_member, comment: "This property relates an E39 Actor to the E74 Group of which that E39 Actor is a member.\nGroups, Legal Bodies and Persons, may all be members of Groups. A Group necessarily consists of more than one member.\nThis property is a shortcut of the more fully developed path from E74 Group through P144 joined with (gained member by), E85 Joining, P143 joined (was joined by) to E39 Actor\nThe property P107.1 kind of member can be used to specify the type of membership or the role the member has in the group. \n".freeze, - domain: "crm:E74_Group".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, label: "has current or former member".freeze, - range: "crm:E39_Actor".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P107i_is_current_or_former_member_of, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "is current or former member of".freeze, - range: "crm:E74_Group".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P108_has_produced, comment: "This property identifies the E24 Physical Man-Made Thing that came into existence as a result of an E12 Production.\nThe identity of an instance of E24 Physical Man-Made Thing is not defined by its matter, but by its existence as a subject of documentation. An E12 Production can result in the creation of multiple instances of E24 Physical Man-Made Thing.\n".freeze, - domain: "crm:E12_Production".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E12_Production".freeze, label: "has produced".freeze, - range: "crm:E24_Physical_Man-Made_Thing".freeze, - subPropertyOf: ["crm:P31_has_modified".freeze, "crm:P92_brought_into_existence".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P31_has_modified".freeze, "http://www.cidoc-crm.org/cidoc-crm/P92_brought_into_existence".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P108i_was_produced_by, - domain: "crm:E24_Physical_Man-Made_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, label: "was produced by".freeze, - range: "crm:E12_Production".freeze, - subPropertyOf: ["crm:P31i_was_modified_by".freeze, "crm:P92i_was_brought_into_existence_by".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E12_Production".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P31i_was_modified_by".freeze, "http://www.cidoc-crm.org/cidoc-crm/P92i_was_brought_into_existence_by".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P109_has_current_or_former_curator, comment: "This property identifies the E39 Actor or Actors who assume or have assumed overall curatorial responsibility for an E78 Collection.\nThis property is effectively a short-cut. It does not allow a history of curation to be recorded. This would require use of an Event assigning responsibility for a Collection to a curator.\n".freeze, - domain: "crm:E78_Collection".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E78_Collection".freeze, label: "has current or former curator".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P49_has_former_or_current_keeper".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P49_has_former_or_current_keeper".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P109i_is_current_or_former_curator_of, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "is current or former curator of".freeze, - range: "crm:E78_Collection".freeze, - subPropertyOf: "crm:P49i_is_former_or_current_keeper_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E78_Collection".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P49i_is_former_or_current_keeper_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P10_falls_within, comment: "This property describes an instance of E4 Period, which falls within the E53 Place and E52 Time-Span of another. \nThe difference with P9 consists of (forms part of) is subtle. Unlike P9 consists of (forms part of), P10 falls within (contains) does not imply any logical connection between the two periods and it may refer to a period of a completely different type.\n".freeze, - domain: "crm:E4_Period".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, label: "falls within".freeze, - range: "crm:E4_Period".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P10i_contains, - domain: "crm:E4_Period".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, label: "contains".freeze, - range: "crm:E4_Period".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P110_augmented, comment: "This property identifies the E24 Physical Man-Made Thing that is added to (augmented) in an E79 Part Addition.\nAlthough a Part Addition event normally concerns only one item of Physical Man-Made Thing, it is possible to imagine circumstances under which more than one item might be added to (augmented). For example, the artist Jackson Pollock trailing paint onto multiple canvasses.\n".freeze, - domain: "crm:E79_Part_Addition".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E79_Part_Addition".freeze, label: "augmented".freeze, - range: "crm:E24_Physical_Man-Made_Thing".freeze, - subPropertyOf: "crm:P31_has_modified".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P31_has_modified".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P110i_was_augmented_by, - domain: "crm:E24_Physical_Man-Made_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, label: "was augmented by".freeze, - range: "crm:E79_Part_Addition".freeze, - subPropertyOf: "crm:P31i_was_modified_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E79_Part_Addition".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P31i_was_modified_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P111_added, comment: "This property identifies the E18 Physical Thing that is added during an E79 Part Addition activity\n".freeze, - domain: "crm:E79_Part_Addition".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E79_Part_Addition".freeze, label: "added".freeze, - range: "crm:E18_Physical_Thing".freeze, - subPropertyOf: ["crm:P12_occurred_in_the_presence_of".freeze, "crm:P16_used_specific_object".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of".freeze, "http://www.cidoc-crm.org/cidoc-crm/P16_used_specific_object".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P111i_was_added_by, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "was added by".freeze, - range: "crm:E79_Part_Addition".freeze, - subPropertyOf: ["crm:P12i_was_present_at".freeze, "crm:P16i_was_used_for".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E79_Part_Addition".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P12i_was_present_at".freeze, "http://www.cidoc-crm.org/cidoc-crm/P16i_was_used_for".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P112_diminished, comment: "This property identifies the E24 Physical Man-Made Thing that was diminished by E80 Part Removal.\nAlthough a Part removal activity normally concerns only one item of Physical Man-Made Thing, it is possible to imagine circumstances under which more than one item might be diminished by a single Part Removal activity. \n".freeze, - domain: "crm:E80_Part_Removal".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E80_Part_Removal".freeze, label: "diminished".freeze, - range: "crm:E24_Physical_Man-Made_Thing".freeze, - subPropertyOf: "crm:P31_has_modified".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P31_has_modified".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P112i_was_diminished_by, - domain: "crm:E24_Physical_Man-Made_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, label: "was diminished by".freeze, - range: "crm:E80_Part_Removal".freeze, - subPropertyOf: "crm:P31i_was_modified_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E80_Part_Removal".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P31i_was_modified_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P113_removed, comment: "This property identifies the E18 Physical Thing that is removed during an E80 Part Removal activity.".freeze, - domain: "crm:E80_Part_Removal".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E80_Part_Removal".freeze, label: "removed".freeze, - range: "crm:E18_Physical_Thing".freeze, - subPropertyOf: "crm:P12_occurred_in_the_presence_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P113i_was_removed_by, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "was removed by".freeze, - range: "crm:E80_Part_Removal".freeze, - subPropertyOf: "crm:P12i_was_present_at".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E80_Part_Removal".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12i_was_present_at".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P114_is_equal_in_time_to, comment: "This symmetric property allows the instances of E2 Temporal Entity with the same E52 Time-Span to be equated. \nThis property is only necessary if the time span is unknown (otherwise the equivalence can be calculated).\nThis property is the same as the \"equal\" relationship of Allen’s temporal logic (Allen, 1983, pp. 832-843).\n".freeze, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "is equal in time to".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P115_finishes, comment: "This property allows the ending point for a E2 Temporal Entity to be situated by reference to the ending point of another temporal entity of longer duration. \nThis property is only necessary if the time span is unknown (otherwise the relationship can be calculated). This property is the same as the \"finishes / finished-by\" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).\n".freeze, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "finishes".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P115i_is_finished_by, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "is finished by".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P116_starts, comment: "This property allows the starting point for a E2 Temporal Entity to be situated by reference to the starting point of another temporal entity of longer duration. \nThis property is only necessary if the time span is unknown (otherwise the relationship can be calculated). This property is the same as the \"starts / started-by\" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).\n".freeze, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "starts".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P116i_is_started_by, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "is started by".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P117_occurs_during, comment: "This property allows the entire E52 Time-Span of an E2 Temporal Entity to be situated within the Time-Span of another temporal entity that starts before and ends after the included temporal entity. \nThis property is only necessary if the time span is unknown (otherwise the relationship can be calculated). This property is the same as the \"during / includes\" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).\n".freeze, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "occurs during".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P117i_includes, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "includes".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P118_overlaps_in_time_with, comment: "This property identifies an overlap between the instances of E52 Time-Span of two instances of E2 Temporal Entity. \nIt implies a temporal order between the two entities: if A overlaps in time B, then A must start before B, and B must end after A. This property is only necessary if the relevant time spans are unknown (otherwise the relationship can be calculated).\nThis property is the same as the \"overlaps / overlapped-by\" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).\n".freeze, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "overlaps in time with".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P118i_is_overlapped_in_time_by, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "is overlapped in time by".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P119_meets_in_time_with, comment: "This property indicates that one E2 Temporal Entity immediately follows another. \nIt implies a particular order between the two entities: if A meets in time with B, then A must precede B. This property is only necessary if the relevant time spans are unknown (otherwise the relationship can be calculated). \nThis property is the same as the \"meets / met-by\" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).\n".freeze, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "meets in time with".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P119i_is_met_in_time_by, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "is met in time by".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P11_had_participant, comment: "This property describes the active or passive participation of instances of E39 Actors in an E5 Event. \nIt connects the life-line of the related E39 Actor with the E53 Place and E50 Date of the event. The property implies that the Actor was involved in the event but does not imply any causal relationship. The subject of a portrait can be said to have participated in the creation of the portrait.\n".freeze, - domain: "crm:E5_Event".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E5_Event".freeze, label: "had participant".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P12_occurred_in_the_presence_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P11i_participated_in, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "participated in".freeze, - range: "crm:E5_Event".freeze, - subPropertyOf: "crm:P12i_was_present_at".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E5_Event".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12i_was_present_at".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P120_occurs_before, comment: "This property identifies the relative chronological sequence of two temporal entities. \nIt implies that a temporal gap exists between the end of A and the start of B. This property is only necessary if the relevant time spans are unknown (otherwise the relationship can be calculated).\nThis property is the same as the \"before / after\" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).\n".freeze, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "occurs before".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P120i_occurs_after, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "occurs after".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P121_overlaps_with, comment: "This symmetric property allows the instances of E53 Place with overlapping geometric extents to be associated with each other. \nIt does not specify anything about the shared area. This property is purely spatial, in contrast to Allen operators, which are purely temporal.\n".freeze, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "overlaps with".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P122_borders_with, comment: "This symmetric property allows the instances of E53 Place which share common borders to be related as such. \nThis property is purely spatial, in contrast to Allen operators, which are purely temporal.\n".freeze, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "borders with".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P123_resulted_in, comment: "This property identifies the E77 Persistent Item or items that are the result of an E81 Transformation. \nNew items replace the transformed item or items, which cease to exist as units of documentation. The physical continuity between the old and the new is expressed by the link to the common Transformation.\n".freeze, - domain: "crm:E81_Transformation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E81_Transformation".freeze, label: "resulted in".freeze, - range: "crm:E77_Persistent_Item".freeze, - subPropertyOf: "crm:P92_brought_into_existence".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P92_brought_into_existence".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P123i_resulted_from, - domain: "crm:E77_Persistent_Item".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, label: "resulted from".freeze, - range: "crm:E81_Transformation".freeze, - subPropertyOf: "crm:P92i_was_brought_into_existence_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E81_Transformation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P92i_was_brought_into_existence_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P124_transformed, comment: "This property identifies the E77 Persistent Item or items that cease to exist due to a E81 Transformation. \nIt is replaced by the result of the Transformation, which becomes a new unit of documentation. The continuity between both items, the new and the old, is expressed by the link to the common Transformation.\n".freeze, - domain: "crm:E81_Transformation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E81_Transformation".freeze, label: "transformed".freeze, - range: "crm:E77_Persistent_Item".freeze, - subPropertyOf: "crm:P93_took_out_of_existence".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P93_took_out_of_existence".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P124i_was_transformed_by, - domain: "crm:E77_Persistent_Item".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, label: "was transformed by".freeze, - range: "crm:E81_Transformation".freeze, - subPropertyOf: "crm:P93i_was_taken_out_of_existence_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E81_Transformation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P93i_was_taken_out_of_existence_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P125_used_object_of_type, comment: "This property defines the kind of objects used in an E7 Activity, when the specific instance is either unknown or not of interest, such as use of \"a hammer\".\n".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "used object of type".freeze, - range: "crm:E55_Type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P125i_was_type_of_object_used_in, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "was type of object used in".freeze, - range: "crm:E7_Activity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P126_employed, comment: "This property identifies E57 Material employed in an E11 Modification.\nThe E57 Material used during the E11 Modification does not necessarily become incorporated into the E24 Physical Man-Made Thing that forms the subject of the E11 Modification.\n".freeze, - domain: "crm:E11_Modification".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E11_Modification".freeze, label: "employed".freeze, - range: "crm:E57_Material".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E57_Material".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P126i_was_employed_in, - domain: "crm:E57_Material".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E57_Material".freeze, label: "was employed in".freeze, - range: "crm:E11_Modification".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E11_Modification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P127_has_broader_term, comment: "This property identifies a super-Type to which an E55 Type is related. \n\t\tIt allows Types to be organised into hierarchies. This is the sense of \"broader term generic \t\t(BTG)\" as defined in ISO 2788\n".freeze, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "has broader term".freeze, - range: "crm:E55_Type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P127i_has_narrower_term, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "has narrower term".freeze, - range: "crm:E55_Type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P128_carries, comment: "This property identifies an E90 Symbolic Object carried by an instance of E18 Physical Thing.\n".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "carries".freeze, - range: "crm:E90_Symbolic_Object".freeze, - subPropertyOf: "crm:P130_shows_features_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P130_shows_features_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P128i_is_carried_by, - domain: "crm:E90_Symbolic_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, label: "is carried by".freeze, - range: "crm:E18_Physical_Thing".freeze, - subPropertyOf: "crm:P130i_features_are_also_found_on".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P130i_features_are_also_found_on".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P129_is_about, comment: "This property documents that an E89 Propositional Object has as subject an instance of E1 CRM Entity. \n".freeze, - domain: "crm:E89_Propositional_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, label: "is about".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P67_refers_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67_refers_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P129i_is_subject_of, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "is subject of".freeze, - range: "crm:E89_Propositional_Object".freeze, - subPropertyOf: "crm:P67i_is_referred_to_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P12_occurred_in_the_presence_of, comment: "This property describes the active or passive presence of an E77 Persistent Item in an E5 Event without implying any specific role. \nIt connects the history of a thing with the E53 Place and E50 Date of an event. For example, an object may be the desk, now in a museum on which a treaty was signed. The presence of an immaterial thing implies the presence of at least one of its carriers.\n".freeze, - domain: "crm:E5_Event".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E5_Event".freeze, label: "occurred in the presence of".freeze, - range: "crm:E77_Persistent_Item".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P12i_was_present_at, - domain: "crm:E77_Persistent_Item".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, label: "was present at".freeze, - range: "crm:E5_Event".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E5_Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P130_shows_features_of, comment: "This property generalises the notions of \"copy of\" and \"similar to\" into a dynamic, asymmetric relationship, where the domain expresses the derivative, if such a direction can be established.\nOtherwise, the relationship is symmetric. It is a short-cut of P15 was influenced by (influenced) in a creation or production, if such a reason for the similarity can be verified. Moreover it expresses similarity in cases that can be stated between two objects only, without historical knowledge about its reasons.\n".freeze, - domain: "crm:E70_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, label: "shows features of".freeze, - range: "crm:E70_Thing".freeze, - subPropertyOf: "crm:P73i_is_translation_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P73i_is_translation_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P130i_features_are_also_found_on, - domain: "crm:E70_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, label: "features are also found on".freeze, - range: "crm:E70_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P131_is_identified_by, comment: "This property identifies a name used specifically to identify an E39 Actor. \nThis property is a specialisation of P1 is identified by (identifies) is identified by.\n".freeze, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "is identified by".freeze, - range: "crm:E82_Actor_Appellation".freeze, - subPropertyOf: "crm:P1_is_identified_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E82_Actor_Appellation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P131i_identifies, - domain: "crm:E82_Actor_Appellation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E82_Actor_Appellation".freeze, label: "identifies".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P1i_identifies".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1i_identifies".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P132_overlaps_with, comment: "This symmetric property allows instances of E4 Period that overlap both temporally and spatially to be related, i,e. they share some spatio-temporal extent.\nThis property does not imply any ordering or sequence between the two periods, either spatial or temporal.\n".freeze, - domain: "crm:E4_Period".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, label: "overlaps with".freeze, - range: "crm:E4_Period".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P133_is_separated_from, comment: "This symmetric property allows instances of E4 Period that do not overlap both temporally and spatially, to be related i,e. they do not share any spatio-temporal extent.\nThis property does not imply any ordering or sequence between the two periods either spatial or temporal.\n".freeze, - domain: "crm:E4_Period".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, label: "is separated from".freeze, - range: "crm:E4_Period".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P134_continued, comment: "This property associates two instances of E7 Activity, where the domain is considered as an intentional continuation of the range. A continuation of an activity may happen when the continued activity is still ongoing or after the continued activity has completely ended. The continuing activity may have started already before it decided to continue the other one. Continuation implies a coherence of intentions and outcomes of the involved activities.\n".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "continued".freeze, - range: "crm:E7_Activity".freeze, - subPropertyOf: "crm:P15_was_influenced_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P15_was_influenced_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P134i_was_continued_by, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "was continued by".freeze, - range: "crm:E7_Activity".freeze, - subPropertyOf: "crm:P15i_influenced".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P15i_influenced".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P135_created_type, comment: "This property identifies the E55 Type, which is created in an E83Type Creation activity.".freeze, - domain: "crm:E83_Type_Creation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E83_Type_Creation".freeze, label: "created type".freeze, - range: "crm:E55_Type".freeze, - subPropertyOf: "crm:P94_has_created".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P94_has_created".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P135i_was_created_by, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "was created by".freeze, - range: "crm:E83_Type_Creation".freeze, - subPropertyOf: "crm:P94i_was_created_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E83_Type_Creation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P94i_was_created_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P136_was_based_on, comment: "This property identifies one or more items that were used as evidence to declare a new E55 Type.\nThe examination of these items is often the only objective way to understand the precise characteristics of a new Type. Such items should be deposited in a museum or similar institution for that reason. The taxonomic role renders the specific relationship of each item to the Type, such as \"holotype\" or \"original element\".\n".freeze, - domain: "crm:E83_Type_Creation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E83_Type_Creation".freeze, label: "was based on".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P15_was_influenced_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P15_was_influenced_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P136i_supported_type_creation, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "supported type creation".freeze, - range: "crm:E83_Type_Creation".freeze, - subPropertyOf: "crm:P15i_influenced".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E83_Type_Creation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P15i_influenced".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P137_exemplifies, comment: "This property allows an item to be declared as a particular example of an E55 Type or taxon\n\tThe P137.1 in the taxonomic role property of P137 exemplifies (is exemplified by) allows differentiation of taxonomic roles. The taxonomic role renders the specific relationship of this example to the Type, such as \"prototypical\", \"archetypical\", \"lectotype\", etc. The taxonomic role \"lectotype\" is not associated with the Type Creation (E83) itself, but selected in a later phase.\n".freeze, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "exemplifies".freeze, - range: "crm:E55_Type".freeze, - subPropertyOf: "crm:P2_has_type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P2_has_type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P137i_is_exemplified_by, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "is exemplified by".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P2i_is_type_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P2i_is_type_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P138_represents, comment: "This property establishes the relationship between an E36 Visual Item and the entity that it visually represents.\nAny entity may be represented visually. This property is part of the fully developed path from E24 Physical Man-Made Thing through P65 shows visual item (is shown by), E36 Visual Item, P138 represents (has representation) to E1 CRM Entity, which is shortcut by P62depicts (is depicted by). P138.1 mode of representation allows the nature of the representation to be refined.\nThis property is also used for the relationship between an original and a digitisation of the original by the use of techniques such as digital photography, flatbed or infrared scanning. Digitisation is here seen as a process with a mechanical, causal component rendering the spatial distribution of structural and optical properties of the original and does not necessarily include any visual similarity identifiable by human observation.\n".freeze, - domain: "crm:E36_Visual_Item".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E36_Visual_Item".freeze, label: "represents".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P67_refers_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67_refers_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P138i_has_representation, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "has representation".freeze, - range: "crm:E36_Visual_Item".freeze, - subPropertyOf: "crm:P67i_is_referred_to_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E36_Visual_Item".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P139_has_alternative_form, comment: "This property establishes a relationship of equivalence between two instances of E41 Appellation independent from any item identified by them. It is a dynamic asymmetric relationship, where the range expresses the derivative, if such a direction can be established. Otherwise, the relationship is symmetric. The relationship is not transitive.\nThe equivalence applies to all cases of use of an instance of E41 Appellation. Multiple names assigned to an object, which are not equivalent for all things identified with a specific instance of E41 Appellation, should be modelled as repeated values of P1 is identified by (identifies). \nP139.1 has type allows the type of derivation, such as “transliteration from Latin 1 to ASCII” be refined..\n".freeze, - domain: "crm:E41_Appellation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, label: "has alternative form".freeze, - range: "crm:E41_Appellation".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P13_destroyed, comment: "This property allows specific instances of E18 Physical Thing that have been destroyed to be related to a destruction event. \nDestruction implies the end of an item’s life as a subject of cultural documentation – the physical matter of which the item was composed may in fact continue to exist. A destruction event may be contiguous with a Production that brings into existence a derived object composed partly of matter from the destroyed object.\n".freeze, - domain: "crm:E6_Destruction".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E6_Destruction".freeze, label: "destroyed".freeze, - range: "crm:E18_Physical_Thing".freeze, - subPropertyOf: "crm:P93_took_out_of_existence".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P93_took_out_of_existence".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P13i_was_destroyed_by, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "was destroyed by".freeze, - range: "crm:E6_Destruction".freeze, - subPropertyOf: "crm:P93i_was_taken_out_of_existence_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E6_Destruction".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P93i_was_taken_out_of_existence_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P140_assigned_attribute_to, comment: "This property indicates the item to which an attribute or relation is assigned. ".freeze, - domain: "crm:E13_Attribute_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment".freeze, label: "assigned attribute to".freeze, - range: "crm:E1_CRM_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P140i_was_attributed_by, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "was attributed by".freeze, - range: "crm:E13_Attribute_Assignment".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P141_assigned, comment: "This property indicates the attribute that was assigned or the item that was related to the item denoted by a property P140 assigned attribute to in an Attribute assignment action.\n".freeze, - domain: "crm:E13_Attribute_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment".freeze, label: "assigned".freeze, - range: "crm:E1_CRM_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P141i_was_assigned_by, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "was assigned by".freeze, - range: "crm:E13_Attribute_Assignment".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E13_Attribute_Assignment".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P142_used_constituent, comment: "This property associates the event of assigning an instance of E42 Identifier to an entity, with the instances of E41 Appellation that were used as elements of the identifier.\n".freeze, - domain: "crm:E15_Identifier_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E15_Identifier_Assignment".freeze, label: "used constituent".freeze, - range: "crm:E90_Symbolic_Object".freeze, - subPropertyOf: "crm:P16_used_specific_object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P16_used_specific_object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P142i_was_used_in, - domain: "crm:E90_Symbolic_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, label: "was used in".freeze, - range: "crm:E15_Identifier_Assignment".freeze, - subPropertyOf: "crm:P16i_was_used_for".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E15_Identifier_Assignment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P16i_was_used_for".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P143_joined, comment: "This property identifies the instance of E39 Actor that becomes member of a E74 Group in an E85 Joining.\n \tJoining events allow for describing people becoming members of a group with a more detailed path from E74 Group through P144 joined with (gained member by), E85 Joining, P143 joined (was joined by) to E39 Actor, compared to the shortcut offered by P107 has current or former member (is current or former member of).\n".freeze, - domain: "crm:E85_Joining".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E85_Joining".freeze, label: "joined".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P11_had_participant".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11_had_participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P143i_was_joined_by, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "was joined by".freeze, - range: "crm:E85_Joining".freeze, - subPropertyOf: "crm:P11i_participated_in".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E85_Joining".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11i_participated_in".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P144_joined_with, comment: "This property identifies the instance of E74 Group of which an instance of E39 Actor becomes a member through an instance of E85 Joining.\nAlthough a Joining activity normally concerns only one instance of E74 Group, it is possible to imagine circumstances under which becoming member of one Group implies becoming member of another Group as well. \nJoining events allow for describing people becoming members of a group with a more detailed path from E74 Group through P144 joined with (gained member by), E85 Joining, P143 joined (was joined by) to E39 Actor, compared to the shortcut offered by P107 has current or former member (is current or former member of).\nThe property P144.1 kind of member can be used to specify the type of membership or the role the member has in the group. \n".freeze, - domain: "crm:E85_Joining".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E85_Joining".freeze, label: "joined with".freeze, - range: "crm:E74_Group".freeze, - subPropertyOf: "crm:P11_had_participant".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11_had_participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P144i_gained_member_by, - domain: "crm:E74_Group".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, label: "gained member by".freeze, - range: "crm:E85_Joining".freeze, - subPropertyOf: "crm:P11i_participated_in".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E85_Joining".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11i_participated_in".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P145_separated, comment: "This property identifies the instance of E39 Actor that leaves an instance of E74 Group through an instance of E86 Leaving.".freeze, - domain: "crm:E86_Leaving".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E86_Leaving".freeze, label: "separated".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P11_had_participant".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11_had_participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P145i_left_by, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "left by".freeze, - range: "crm:E86_Leaving".freeze, - subPropertyOf: "crm:P11i_participated_in".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E86_Leaving".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11i_participated_in".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P146_separated_from, comment: "This property identifies the instance of E74 Group an instance of E39 Actor leaves through an instance of E86 Leaving.\nAlthough a Leaving activity normally concerns only one instance of E74 Group, it is possible to imagine circumstances under which leaving one E74 Group implies leaving another E74 Group as well.\n".freeze, - domain: "crm:E86_Leaving".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E86_Leaving".freeze, label: "separated from".freeze, - range: "crm:E74_Group".freeze, - subPropertyOf: "crm:P11_had_participant".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11_had_participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P146i_lost_member_by, - domain: "crm:E74_Group".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, label: "lost member by".freeze, - range: "crm:E86_Leaving".freeze, - subPropertyOf: "crm:P11i_participated_in".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E86_Leaving".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11i_participated_in".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P147_curated, comment: "This property associates an instance of E87 Curation Activity with the instance of E78 Collection that is subject of that curation activity.\n".freeze, - domain: "crm:E87_Curation_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E87_Curation_Activity".freeze, label: "curated".freeze, - range: "crm:E78_Collection".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E78_Collection".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P147i_was_curated_by, - domain: "crm:E78_Collection".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E78_Collection".freeze, label: "was curated by".freeze, - range: "crm:E87_Curation_Activity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E87_Curation_Activity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P148_has_component, comment: "This property associates an instance of E89 Propositional Object with a structural part of it that is by itself an instance of E89 Propositional Object.".freeze, - domain: "crm:E89_Propositional_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, label: "has component".freeze, - range: "crm:E89_Propositional_Object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P148i_is_component_of, - domain: "crm:E89_Propositional_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, label: "is component of".freeze, - range: "crm:E89_Propositional_Object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P149_is_identified_by, comment: "This property identifies an instance of E28 Conceptual Object using an instance of E75 Conceptual Object Appellation.".freeze, - domain: "crm:E28_Conceptual_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E28_Conceptual_Object".freeze, label: "is identified by".freeze, - range: "crm:E75_Conceptual_Object_Appellation".freeze, - subPropertyOf: "crm:P1_is_identified_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E75_Conceptual_Object_Appellation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P149i_identifies, - domain: "crm:E75_Conceptual_Object_Appellation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E75_Conceptual_Object_Appellation".freeze, label: "identifies".freeze, - range: "crm:E28_Conceptual_Object".freeze, - subPropertyOf: "crm:P1i_identifies".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E28_Conceptual_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1i_identifies".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P14_carried_out_by, comment: "This property describes the active participation of an E39 Actor in an E7 Activity. \nIt implies causal or legal responsibility. The P14.1 in the role of property of the property allows the nature of an Actor’s participation to be specified.\n".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "carried out by".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P11_had_participant".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11_had_participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P14i_performed, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "performed".freeze, - range: "crm:E7_Activity".freeze, - subPropertyOf: "crm:P11i_participated_in".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11i_participated_in".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P150_defines_typical_parts_of, comment: "The property \"broaderPartitive\" associates an instance of E55 Type “A” with an instance of E55 Type “B”, when items of type “A” typically form part of items of type “B”, such as “car motors” and “cars”.\nIt allows Types to be organised into hierarchies. This is the sense of \"broader term partitive (BTP)\" as defined in ISO 2788 and “broaderPartitive” in SKOS.\n".freeze, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "defines typical parts of".freeze, - range: "crm:E55_Type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P150i_defines_typical_wholes_for, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "defines typical wholes for".freeze, - range: "crm:E55_Type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P151_was_formed_from, comment: "This property associates an instance of E66 Formation with an instance of E74 Group from which the new group was formed preserving a sense of continuity such as in mission, membership or tradition.\n\t".freeze, - domain: "crm:E66_Formation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E66_Formation".freeze, label: "was formed from".freeze, - range: "crm:E74_Group".freeze, - subPropertyOf: "crm:P11_had_participant".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11_had_participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P151i_participated_in, - domain: "crm:E74_Group".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, label: "participated in".freeze, - range: "crm:E66_Formation".freeze, - subPropertyOf: "crm:P11i_participated_in".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E66_Formation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11i_participated_in".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P152_has_parent, comment: "This property associates an instance of E21 Person with another instance of E21 Person who plays the role of the first instance’s parent, regardless of whether the relationship is biological parenthood, assumed or pretended biological parenthood or an equivalent legal status of rights and obligations obtained by a social or legal act. \n\tThis property is, among others, a shortcut of the fully developed paths from ‘E21Person’ through ‘P98i was born’, ‘E67 Birth’, ‘P96 by mother’ to ‘E21 Person’, and from ‘E21Person’ through ‘P98i was born’, ‘E67 Birth’, ‘P97 from father’ to ‘E21 Person’.\n\t".freeze, - domain: "crm:E21_Person".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, label: "has parent".freeze, - range: "crm:E21_Person".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P152i_is_parent_of, - domain: "crm:E21_Person".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, label: "is parent of".freeze, - range: "crm:E21_Person".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"P153_assigned_co-reference_to", comment: "This property connects an E91 Co-Reference Assignment to one of the propositional objects co-referring to the co-reference target\n\t".freeze, - domain: "crm:E91_Co-Reference_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E91_Co-Reference_Assignment".freeze, label: "assigned co-reference to".freeze, - range: "crm:E89_Propositional_Object".freeze, - subPropertyOf: "crm:P140_assigned_attribute_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140_assigned_attribute_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"P153i_was_regarded_to_co-refer_by", - domain: "crm:E89_Propositional_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, label: "was regarded to co-refer by".freeze, - range: "crm:E91_Co-Reference_Assignment".freeze, - subPropertyOf: "crm:P140i_was_attributed_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E91_Co-Reference_Assignment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140i_was_attributed_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"P154_assigned_non_co-reference_to", comment: "This property connects an E91 Co-Reference Assignment to one of the propositional objects not co-referring to the co-reference target\n\t".freeze, - domain: "crm:E91_Co-Reference_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E91_Co-Reference_Assignment".freeze, label: "assigned non co-reference to".freeze, - range: "crm:E89_Propositional_Object".freeze, - subPropertyOf: "crm:P140_assigned_attribute_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140_assigned_attribute_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"P154i_was_regarded_not_to_co-refer_by", - domain: "crm:E89_Propositional_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, label: "was regarded not to co-refer by".freeze, - range: "crm:E91_Co-Reference_Assignment".freeze, - subPropertyOf: "crm:P140i_was_attributed_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E91_Co-Reference_Assignment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140i_was_attributed_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"P155_has_co-reference_target", comment: "This property connects an E91 Co-Reference Assignment to the target of the references that are regarded as co-referring.\n\t".freeze, - domain: "crm:E91_Co-Reference_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E91_Co-Reference_Assignment".freeze, label: "has co-reference target".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P141_assigned".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141_assigned".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"P155i_is_co-reference_target_of", - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "is co-reference target of".freeze, - range: "crm:E91_Co-Reference_Assignment".freeze, - subPropertyOf: "crm:P141i_was_assigned_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E91_Co-Reference_Assignment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141i_was_assigned_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P156_occupies, comment: "This property describes the maximal real volume in space that an instance of E18 Physical Thing has occupied during its lifetime with respect to a reference space relative to which the thing is at rest. In other words, it is the volume that contains all the points which the thing has covered at some time during its existence. In the case of an E26 Physical Feature the default reference space is the one in which the object that bears the feature or at least the surrounding matter of the feature is at rest. In this case there is a 1:1 relation of E26 Feature and E53 Place. For simplicity of implementation multiple inheritance (E26 Feature IsA E53 Place) may be a practical approach.\nFor instances of E19 Physical Objects the default reference space is the one which is at rest to the object itself, i.e. which moves together with the object. We include in the occupied space the space filled by the matter of the physical thing and all its inner spaces. \nThis property is a shortcut of the fully developed path from ‘E18 Physical Thing’ through ‘P157 occupied’, ‘E92 Spacetime Volume’, ‘P159 has spatial projection’ to ‘E53 Place’. For some instances of E18 Physical Object the relative stability of form may not be sufficient to define a useful local reference space, for instance for an amoeba. In such cases the fully developed path to an external reference space and using a temporal validity component may be adequate to determine the place they have occupied.\nIn contrast to P156 occupies, the property P53 has former or current location identifies an instance of E53 Place at which a thing is or has been for some unspecified time span. Further it does not constrain this reference space of the referred instance of P53 Place.\n\t".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "occupies".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P157_is_at_rest_relative_to, comment: "This property associates an instance of P53 Place with the instance of E18 Physical Thing that determines a reference space for this instance of P53 Place by being at rest with respect to this reference space. The relative stability of form of an E18 Physical Thing defines its default reference space. The reference space is not spatially limited to the referred thing. For example, a ship determines a reference space in terms of which other ships in its neighbourhood may be described. Larger constellations of matter, such as continental plates, may comprise many physical features that are at rest with them and define the same reference space.\n\t".freeze, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "is at rest relative to".freeze, - range: "crm:E18_Physical_Thing".freeze, - subPropertyOf: "crm:P59i_is_located_on_or_within".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P59i_is_located_on_or_within".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P157i_provides_reference_space_for, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "provides reference space for".freeze, - range: "crm:E53_Place".freeze, - subPropertyOf: "crm:P59_has_section".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P59_has_section".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P158_occupied, comment: "This property associates an instance of E4 Period with the real that is phenomenal, 4 dimensional point set or volume in spacetime that it has occupied. The associated instance of E92 Spacetime Volume includes the trajectories of the participating physical things during their participation in the instance of E4 Period. This consists of the open spaces via which they have interacted and the spaces by which they had the potential to interact during that period or event.\nSuch interactions took place in the way defined by the type of the respective period or event, such as the air in a meeting room transferring the voices. Another example are the areas controlled by some military power. In case of phenomena spreading out over islands or other separated areas, the trajectories necessary for participants to travel between these areas are not regarded as part of the occupied spacetime volumes. Such instances of E4 Period occupy each a limited number of contiguous spacetime volumes, however there must not be a discontinuity in the total timespan covered by these spacetime volumes. The real spacetime volumes occupied by an instance of E4 Period must not be confused with declarations of spacetime approximating the real extent. In general, instances of E4 Period have fuzzy boundaries in spacetime.\nTherefore it cannot be verified, if two different instances of E4 Period occupy exactly the same spacetime volume. We therefore determine that a spacetime volume may only be occupied by one instance of E4 Period.\n\t".freeze, - domain: "crm:E4_Period".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, label: "occupied".freeze, - range: "crm:E92_Spacetime_Volume".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E92_Spacetime_Volume".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P159_occupied, comment: "This property describes the real that is (phenomenal), 4 dimensional point sets or volumes in spacetime that the trajectory of an instance of E18 Physical Thing occupies in the course of its existence. We include in the occupied space the space filled by the matter of the physical thing and all its inner spaces. Physical things consisting of aggregations of physically unconnected objects, such as a set of chessmen, occupy a number of individually contiguous spacetime volumes equal to the number of unconnected objects that constitute them.\n\t".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "occupied".freeze, - range: "crm:E92_Spacetime_Volume".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E92_Spacetime_Volume".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P15_was_influenced_by, comment: "This is a high level property, which captures the relationship between an E7 Activity and anything that may have had some bearing upon it.\nThe property has more specific sub properties.\n".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "was influenced by".freeze, - range: "crm:E1_CRM_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P15i_influenced, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "influenced".freeze, - range: "crm:E7_Activity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P160_has_temporal_projection, comment: "This property describes the temporal projection of an instance of an E92 Spacetime Volume. The property P4 has time-span is a shortcut of the more fully developed path from E4 Period through P158 occupied, E92 Spacetime Volume P160 has temporal projection to E52 Time Span.\n\t".freeze, - domain: "crm:E92_Spacetime_Volume".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E92_Spacetime_Volume".freeze, label: "has temporal projection".freeze, - range: "crm:E52_Time-Span".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P161_has_spatial_projection, comment: "This property associates an instance of a E92 Spacetime Volume with an instance of E53 Place that is the result of the spatial projection of the instance of a E92 Spacetime Volume on a reference space. In general there can be more than one useful reference space to describe the spatial projection of a spacetime volume, such as that of a battle ship versus that of the seafloor. Therefore the projection is not unique.\nThe property P7 took place at is a shortcut of the more fully developed path from E4 Period through P158 occupied, E92 Spacetime Volume P161 has spatial projection to E53 Place.\n\t".freeze, - domain: "crm:E92_Spacetime_Volume".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E92_Spacetime_Volume".freeze, label: "has spatial projection".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P164_is_restricted_by, comment: "This property relates an E93 Spacetime Snapshot with an arbitrary E52 Time-Span that restricts the extent of the former to a volume within these time limits.\n\t".freeze, - domain: "crm:E93_Spacetime_Snapshot".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E93_Spacetime_Snapshot".freeze, label: "is restricted by".freeze, - range: "crm:E52_Time-Span".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P165_incorporates, comment: "This property associates an instance of E73 Information Object with an instance of E90 Symbolic Object (or any of its subclasses) that was included in it. This property makes it possible to recognise the autonomous status of the incorporated signs, which were created in a distinct context, and can be incorporated in many distinct self-contained expressions, and to highlight the difference between structural and accidental whole-part relationships between conceptual entities. It accounts for many cultural facts that are quite frequent and significant: the inclusion of a poem in an anthology, the re-use of an operatic aria in a new opera, the use of a reproduction of a painting for a book cover or a CD booklet, the integration of textual quotations, the presence of lyrics in a song that sets those lyrics to music, the presence of the text of a play in a movie based on that play, etc.\n\t".freeze, - domain: "crm:E73_Information_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object".freeze, label: "incorporates".freeze, - range: "crm:E90_Symbolic_Object".freeze, - subPropertyOf: "crm:P106_is_composed_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P106_is_composed_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P165i_is_incorporated_in, - domain: "crm:E90_Symbolic_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E90_Symbolic_Object".freeze, label: "is incorporated in".freeze, - range: "crm:E73_Information_Object".freeze, - subPropertyOf: "crm:P106i_forms_part_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P106i_forms_part_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P16_used_specific_object, comment: "This property describes the use of material or immaterial things in a way essential to the performance or the outcome of an E7 Activity. \nThis property typically applies to tools, instruments, moulds, raw materials and items embedded in a product. It implies that the presence of the object in question was a necessary condition for the action. For example, the activity of writing this text required the use of a computer. An immaterial thing can be used if at least one of its carriers is present. For example, the software tools on a computer.\nAnother example is the use of a particular name by a particular group of people over some span to identify a thing, such as a settlement. In this case, the physical carriers of this name are at least the people understanding its use.\n".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "used specific object".freeze, - range: "crm:E70_Thing".freeze, - subPropertyOf: ["crm:P12_occurred_in_the_presence_of".freeze, "crm:P15_was_influenced_by".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of".freeze, "http://www.cidoc-crm.org/cidoc-crm/P15_was_influenced_by".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P16i_was_used_for, - domain: "crm:E70_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, label: "was used for".freeze, - range: "crm:E7_Activity".freeze, - subPropertyOf: ["crm:P12i_was_present_at".freeze, "crm:P15i_influenced".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P12i_was_present_at".freeze, "http://www.cidoc-crm.org/cidoc-crm/P15i_influenced".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P17_was_motivated_by, comment: "This property describes an item or items that are regarded as a reason for carrying out the E7 Activity. \nFor example, the discovery of a large hoard of treasure may call for a celebration, an order from head quarters can start a military manoeuvre. \n".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "was motivated by".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P15_was_influenced_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P15_was_influenced_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P17i_motivated, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "motivated".freeze, - range: "crm:E7_Activity".freeze, - subPropertyOf: "crm:P15i_influenced".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P15i_influenced".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P19_was_intended_use_of, comment: "This property relates an E7 Activity with objects created specifically for use in the activity. \nThis is distinct from the intended use of an item in some general type of activity such as the book of common prayer which was intended for use in Church of England services (see P101 had as general use (was use of)).".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "was intended use of".freeze, - range: "crm:E71_Man-Made_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P19i_was_made_for, - domain: "crm:E71_Man-Made_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E71_Man-Made_Thing".freeze, label: "was made for".freeze, - range: "crm:E7_Activity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P1_is_identified_by, comment: "This property describes the naming or identification of any real world item by a name or any other identifier. \nThis property is intended for identifiers in general use, which form part of the world the model intends to describe, and not merely for internal database identifiers which are specific to a technical system, unless these latter also have a more general use outside the technical context. This property includes in particular identification by mathematical expressions such as coordinate systems used for the identification of instances of E53 Place. The property does not reveal anything about when, where and by whom this identifier was used. A more detailed representation can be made using the fully developed (i.e. indirect) path through E15 Identifier Assignment.\n".freeze, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "is identified by".freeze, - range: "crm:E41_Appellation".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P1i_identifies, - domain: "crm:E41_Appellation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E41_Appellation".freeze, label: "identifies".freeze, - range: "crm:E1_CRM_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P20_had_specific_purpose, comment: "This property identifies the relationship between a preparatory activity and the event it is intended to be preparation for.\nThis includes activities, orders and other organisational actions, taken in preparation for other activities or events. \nP20 had specific purpose (was purpose of) implies that an activity succeeded in achieving its aim. If it does not succeed, such as the setting of a trap that did not catch anything, one may document the unrealized intention using P21 had general purpose (was purpose of):E55 Type and/or P33 used specific technique (was used by): E29 Design or Procedure.".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "had specific purpose".freeze, - range: "crm:E5_Event".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E5_Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P20i_was_purpose_of, - domain: "crm:E5_Event".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E5_Event".freeze, label: "was purpose of".freeze, - range: "crm:E7_Activity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P21_had_general_purpose, comment: "This property describes an intentional relationship between an E7 Activity and some general goal or purpose. \nThis may involve activities intended as preparation for some type of activity or event. P21had general purpose (was purpose of) differs from P20 had specific purpose (was purpose of) in that no occurrence of an event is implied as the purpose. \n".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "had general purpose".freeze, - range: "crm:E55_Type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P21i_was_purpose_of, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "was purpose of".freeze, - range: "crm:E7_Activity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P22_transferred_title_to, comment: "This property identifies the E39 Actor that acquires the legal ownership of an object as a result of an E8 Acquisition. \nThe property will typically describe an Actor purchasing or otherwise acquiring an object from another Actor. However, title may also be acquired, without any corresponding loss of title by another Actor, through legal fieldwork such as hunting, shooting or fishing.\nIn reality the title is either transferred to or from someone, or both.\n".freeze, - domain: "crm:E8_Acquisition".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E8_Acquisition".freeze, label: "transferred title to".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P14_carried_out_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P14_carried_out_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P22i_acquired_title_through, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "acquired title through".freeze, - range: "crm:E8_Acquisition".freeze, - subPropertyOf: "crm:P14i_performed".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E8_Acquisition".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P14i_performed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P23_transferred_title_from, comment: "This property identifies the E39 Actor or Actors who relinquish legal ownership as the result of an E8 Acquisition.\nThe property will typically be used to describe a person donating or selling an object to a museum. In reality title is either transferred to or from someone, or both.\n".freeze, - domain: "crm:E8_Acquisition".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E8_Acquisition".freeze, label: "transferred title from".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P14_carried_out_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P14_carried_out_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P23i_surrendered_title_through, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "surrendered title through".freeze, - range: "crm:E8_Acquisition".freeze, - subPropertyOf: "crm:P14i_performed".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E8_Acquisition".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P14i_performed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P24_transferred_title_of, comment: "This property identifies the E18 Physical Thing or things involved in an E8 Acquisition. \nIn reality, an acquisition must refer to at least one transferred item.\n".freeze, - domain: "crm:E8_Acquisition".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E8_Acquisition".freeze, label: "transferred title of".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P24i_changed_ownership_through, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "changed ownership through".freeze, - range: "crm:E8_Acquisition".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E8_Acquisition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P25_moved, comment: "This property identifies the E19 Physical Object that is moved during a move event. \nThe property implies the object’s passive participation. For example, Monet’s painting “Impression sunrise” was moved for the first Impressionist exhibition in 1874. \nIn reality, a move must concern at least one object.\n".freeze, - domain: "crm:E9_Move".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E9_Move".freeze, label: "moved".freeze, - range: "crm:E19_Physical_Object".freeze, - subPropertyOf: "crm:P12_occurred_in_the_presence_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P25i_moved_by, - domain: "crm:E19_Physical_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, label: "moved by".freeze, - range: "crm:E9_Move".freeze, - subPropertyOf: "crm:P12i_was_present_at".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E9_Move".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12i_was_present_at".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P26_moved_to, comment: "This property identifies the destination of a E9 Move. \nA move will be linked to a destination, such as the move of an artefact from storage to display. A move may be linked to many terminal instances of E53 Places. In this case the move describes a distribution of a set of objects. The area of the move includes the origin, route and destination.\n".freeze, - domain: "crm:E9_Move".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E9_Move".freeze, label: "moved to".freeze, - range: "crm:E53_Place".freeze, - subPropertyOf: "crm:P7_took_place_at".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P7_took_place_at".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P26i_was_destination_of, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "was destination of".freeze, - range: "crm:E9_Move".freeze, - subPropertyOf: "crm:P7i_witnessed".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E9_Move".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P7i_witnessed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P27_moved_from, comment: "This property identifies the starting E53 Place of an E9 Move.\nA move will be linked to an origin, such as the move of an artefact from storage to display. A move may be linked to many origins. In this case the move describes the picking up of a set of objects. The area of the move includes the origin, route and destination.\n".freeze, - domain: "crm:E9_Move".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E9_Move".freeze, label: "moved from".freeze, - range: "crm:E53_Place".freeze, - subPropertyOf: "crm:P7_took_place_at".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P7_took_place_at".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P27i_was_origin_of, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "was origin of".freeze, - range: "crm:E9_Move".freeze, - subPropertyOf: "crm:P7i_witnessed".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E9_Move".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P7i_witnessed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P28_custody_surrendered_by, comment: "This property identifies the E39 Actor or Actors who surrender custody of an instance of E18 Physical Thing in an E10 Transfer of Custody activity. \nThe property will typically describe an Actor surrendering custody of an object when it is handed over to someone else’s care. On occasion, physical custody may be surrendered involuntarily – through accident, loss or theft.\nIn reality, custody is either transferred to someone or from someone, or both.\n".freeze, - domain: "crm:E10_Transfer_of_Custody".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E10_Transfer_of_Custody".freeze, label: "custody surrendered by".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P14_carried_out_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P14_carried_out_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P28i_surrendered_custody_through, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "surrendered custody through".freeze, - range: "crm:E10_Transfer_of_Custody".freeze, - subPropertyOf: "crm:P14i_performed".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E10_Transfer_of_Custody".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P14i_performed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P29_custody_received_by, comment: "This property identifies the E39 Actor or Actors who receive custody of an instance of E18 Physical Thing in an E10 Transfer of Custody activity. \nThe property will typically describe Actors receiving custody of an object when it is handed over from another Actor’s care. On occasion, physical custody may be received involuntarily or illegally – through accident, unsolicited donation, or theft.\nIn reality, custody is either transferred to someone or from someone, or both.\n".freeze, - domain: "crm:E10_Transfer_of_Custody".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E10_Transfer_of_Custody".freeze, label: "custody received by".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P14_carried_out_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P14_carried_out_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P29i_received_custody_through, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "received custody through".freeze, - range: "crm:E10_Transfer_of_Custody".freeze, - subPropertyOf: "crm:P14i_performed".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E10_Transfer_of_Custody".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P14i_performed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P2_has_type, comment: "This property allows sub typing of CRM entities - a form of specialisation – through the use of a terminological hierarchy, or thesaurus. \nThe CRM is intended to focus on the high-level entities and relationships needed to describe data structures. Consequently, it does not specialise entities any further than is required for this immediate purpose. However, entities in the isA hierarchy of the CRM may by specialised into any number of sub entities, which can be defined in the E55 Type hierarchy. E51 Contact Point, for example, may be specialised into “e-mail address”, “telephone number”, “post office box”, “URL” etc. none of which figures explicitly in the CRM hierarchy. Sub typing obviously requires consistency between the meaning of the terms assigned and the more general intent of the CRM entity in question.\n".freeze, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "has type".freeze, - range: "crm:E55_Type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P2i_is_type_of, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "is type of".freeze, - range: "crm:E1_CRM_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P30_transferred_custody_of, comment: "This property identifies an item or items of E18 Physical Thing concerned in an E10 Transfer of Custody activity. \nThe property will typically describe the object that is handed over by an E39 Actor to another Actor’s custody. On occasion, physical custody may be transferred involuntarily or illegally – through accident, unsolicited donation, or theft.\n".freeze, - domain: "crm:E10_Transfer_of_Custody".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E10_Transfer_of_Custody".freeze, label: "transferred custody of".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P30i_custody_transferred_through, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "custody transferred through".freeze, - range: "crm:E10_Transfer_of_Custody".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E10_Transfer_of_Custody".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P31_has_modified, comment: "This property identifies the E24 Physical Man-Made Thing modified in an E11 Modification.\nIf a modification is applied to a non-man-made object, it is regarded as an E22 Man-Made Object from that time onwards. \n".freeze, - domain: "crm:E11_Modification".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E11_Modification".freeze, label: "has modified".freeze, - range: "crm:E24_Physical_Man-Made_Thing".freeze, - subPropertyOf: "crm:P12_occurred_in_the_presence_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P31i_was_modified_by, - domain: "crm:E24_Physical_Man-Made_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, label: "was modified by".freeze, - range: "crm:E11_Modification".freeze, - subPropertyOf: "crm:P12i_was_present_at".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E11_Modification".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12i_was_present_at".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P32_used_general_technique, comment: "This property identifies the technique or method that was employed in an activity.\nThese techniques should be drawn from an external E55 Type hierarchy of consistent terminology of general techniques or methods such as embroidery, oil-painting, carbon dating, etc. Specific documented techniques should be described as instances of E29 Design or Procedure. This property identifies the technique that was employed in an act of modification.\n".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "used general technique".freeze, - range: "crm:E55_Type".freeze, - subPropertyOf: "crm:P125_used_object_of_type".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P125_used_object_of_type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P32i_was_technique_of, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "was technique of".freeze, - range: "crm:E7_Activity".freeze, - subPropertyOf: "crm:P125i_was_type_of_object_used_in".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P125i_was_type_of_object_used_in".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P33_used_specific_technique, comment: "This property identifies a specific instance of E29 Design or Procedure in order to carry out an instance of E7 Activity or parts of it. \nThe property differs from P32 used general technique (was technique of) in that P33 refers to an instance of E29 Design or Procedure, which is a concrete information object in its own right rather than simply being a term or a method known by tradition. \nTypical examples would include intervention plans for conservation or the construction plans of a building.\n".freeze, - domain: "crm:E7_Activity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, label: "used specific technique".freeze, - range: "crm:E29_Design_or_Procedure".freeze, - subPropertyOf: "crm:P16_used_specific_object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P16_used_specific_object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P33i_was_used_by, - domain: "crm:E29_Design_or_Procedure".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure".freeze, label: "was used by".freeze, - range: "crm:E7_Activity".freeze, - subPropertyOf: "crm:P16i_was_used_for".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E7_Activity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P16i_was_used_for".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P34_concerned, comment: "This property identifies the E18 Physical Thing that was assessed during an E14 Condition Assessment activity. \nConditions may be assessed either by direct observation or using recorded evidence. In the latter case the E18 Physical Thing does not need to be present or extant.\n".freeze, - domain: "crm:E14_Condition_Assessment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E14_Condition_Assessment".freeze, label: "concerned".freeze, - range: "crm:E18_Physical_Thing".freeze, - subPropertyOf: "crm:P140_assigned_attribute_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140_assigned_attribute_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P34i_was_assessed_by, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "was assessed by".freeze, - range: "crm:E14_Condition_Assessment".freeze, - subPropertyOf: "crm:P140i_was_attributed_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E14_Condition_Assessment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140i_was_attributed_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P35_has_identified, comment: "This property identifies the E3 Condition State that was observed in an E14 Condition Assessment activity.".freeze, - domain: "crm:E14_Condition_Assessment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E14_Condition_Assessment".freeze, label: "has identified".freeze, - range: "crm:E3_Condition_State".freeze, - subPropertyOf: "crm:P141_assigned".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141_assigned".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P35i_was_identified_by, - domain: "crm:E3_Condition_State".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State".freeze, label: "was identified by".freeze, - range: "crm:E14_Condition_Assessment".freeze, - subPropertyOf: "crm:P141i_was_assigned_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E14_Condition_Assessment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141i_was_assigned_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P37_assigned, comment: "This property records the identifier that was assigned to an item in an Identifier Assignment activity.\nThe same identifier may be assigned on more than one occasion.\nAn Identifier might be created prior to an assignment.\n".freeze, - domain: "crm:E15_Identifier_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E15_Identifier_Assignment".freeze, label: "assigned".freeze, - range: "crm:E42_Identifier".freeze, - subPropertyOf: "crm:P141_assigned".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E42_Identifier".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141_assigned".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P37i_was_assigned_by, - domain: "crm:E42_Identifier".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E42_Identifier".freeze, label: "was assigned by".freeze, - range: "crm:E15_Identifier_Assignment".freeze, - subPropertyOf: "crm:P141i_was_assigned_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E15_Identifier_Assignment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141i_was_assigned_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P38_deassigned, comment: "This property records the identifier that was deassigned from an instance of E1 CRM Entity.\nDeassignment of an identifier may be necessary when an item is taken out of an inventory, a new numbering system is introduced or items are merged or split up. \nThe same identifier may be deassigned on more than one occasion.\n".freeze, - domain: "crm:E15_Identifier_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E15_Identifier_Assignment".freeze, label: "deassigned".freeze, - range: "crm:E42_Identifier".freeze, - subPropertyOf: "crm:P141_assigned".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E42_Identifier".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141_assigned".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P38i_was_deassigned_by, - domain: "crm:E42_Identifier".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E42_Identifier".freeze, label: "was deassigned by".freeze, - range: "crm:E15_Identifier_Assignment".freeze, - subPropertyOf: "crm:P141i_was_assigned_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E15_Identifier_Assignment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141i_was_assigned_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P39_measured, comment: "This property associates an instance of E16 Measurement with the instance of E1 CRM Entity to which it applied. An instance of E1 CRM Entity may be measured more than once. Material and immaterial things and processes may be measured, e.g. the number of words in a text, or the duration of an event.\n".freeze, - domain: "crm:E16_Measurement".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E16_Measurement".freeze, label: "measured".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P140_assigned_attribute_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140_assigned_attribute_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P39i_was_measured_by, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "was measured by".freeze, - range: "crm:E16_Measurement".freeze, - subPropertyOf: "crm:P140i_was_attributed_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E16_Measurement".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140i_was_attributed_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P3_has_note, comment: "This property is a container for all informal descriptions about an object that have not been expressed in terms of CRM constructs. \nIn particular it captures the characterisation of the item itself, its internal structures, appearance etc.\nLike property P2 has type (is type of), this property is a consequence of the restricted focus of the CRM. The aim is not to capture, in a structured form, everything that can be said about an item; indeed, the CRM formalism is not regarded as sufficient to express everything that can be said. Good practice requires use of distinct note fields for different aspects of a characterisation. The P3.1 has type property of P3 has note allows differentiation of specific notes, e.g. “construction”, “decoration” etc. \nAn item may have many notes, but a note is attached to a specific item.\n".freeze, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "has note".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P40_observed_dimension, comment: "This property records the dimension that was observed in an E16 Measurement Event.\nE54 Dimension can be any quantifiable aspect of E70 Thing. Weight, image colour depth and monetary value are dimensions in this sense. One measurement activity may determine more than one dimension of one object.\nDimensions may be determined either by direct observation or using recorded evidence. In the latter case the measured Thing does not need to be present or extant.\nEven though knowledge of the value of a dimension requires measurement, the dimension may be an object of discourse prior to, or even without, any measurement being made.\n".freeze, - domain: "crm:E16_Measurement".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E16_Measurement".freeze, label: "observed dimension".freeze, - range: "crm:E54_Dimension".freeze, - subPropertyOf: "crm:P141_assigned".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141_assigned".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P40i_was_observed_in, - domain: "crm:E54_Dimension".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, label: "was observed in".freeze, - range: "crm:E16_Measurement".freeze, - subPropertyOf: "crm:P141i_was_assigned_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E16_Measurement".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141i_was_assigned_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P41_classified, comment: "This property records the item to which a type was assigned in an E17 Type Assignment activity.\nAny instance of a CRM entity may be assigned a type through type assignment. Type assignment events allow a more detailed path from E1 CRM Entity through P41 classified (was classified), E17 Type Assignment, P42 assigned (was assigned by) to E55 Type for assigning types to objects compared to the shortcut offered by P2 has type (is type of).\n".freeze, - domain: "crm:E17_Type_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E17_Type_Assignment".freeze, label: "classified".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P140_assigned_attribute_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140_assigned_attribute_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P41i_was_classified_by, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "was classified by".freeze, - range: "crm:E17_Type_Assignment".freeze, - subPropertyOf: "crm:P140i_was_attributed_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E17_Type_Assignment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P140i_was_attributed_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P42_assigned, comment: "This property records the type that was assigned to an entity by an E17 Type Assignment activity. \nType assignment events allow a more detailed path from E1 CRM Entity through P41 classified (was classified by), E17 Type Assignment, P42 assigned (was assigned by) to E55 Type for assigning types to objects compared to the shortcut offered by P2 has type (is type of).\nFor example, a fragment of an antique vessel could be assigned the type “attic red figured belly handled amphora” by expert A. The same fragment could be assigned the type “shoulder handled amphora” by expert B.\nA Type may be intellectually constructed independent from assigning an instance of it.\n".freeze, - domain: "crm:E17_Type_Assignment".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E17_Type_Assignment".freeze, label: "assigned".freeze, - range: "crm:E55_Type".freeze, - subPropertyOf: "crm:P141_assigned".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141_assigned".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P42i_was_assigned_by, - domain: "crm:E55_Type".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E55_Type".freeze, label: "was assigned by".freeze, - range: "crm:E17_Type_Assignment".freeze, - subPropertyOf: "crm:P141i_was_assigned_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E17_Type_Assignment".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P141i_was_assigned_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P43_has_dimension, comment: "This property records a E54 Dimension of some E70 Thing.\nIt is a shortcut of the more fully developed path from E70 Thing through P39 measured (was measured by), E16 Measurement P40 observed dimension (was observed in) to E54 Dimension. It offers no information about how and when an E54 Dimension was established, nor by whom.\nAn instance of E54 Dimension is specific to an instance of E70 Thing.\n".freeze, - domain: "crm:E70_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, label: "has dimension".freeze, - range: "crm:E54_Dimension".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P43i_is_dimension_of, - domain: "crm:E54_Dimension".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, label: "is dimension of".freeze, - range: "crm:E70_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E70_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P44_has_condition, comment: "This property records an E3 Condition State for some E18 Physical Thing.\nIt is a shortcut of the more fully developed path from E18 Physical Thing through P34 concerned (was assessed by), E14 Condition Assessment P35 has identified (was identified by) to E3 Condition State. It offers no information about how and when the E3 Condition State was established, nor by whom. \nAn instance of Condition State is specific to an instance of Physical Thing.\n".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "has condition".freeze, - range: "crm:E3_Condition_State".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P44i_is_condition_of, - domain: "crm:E3_Condition_State".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State".freeze, label: "is condition of".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P45_consists_of, comment: "This property identifies the instances of E57 Materials of which an instance of E18 Physical Thing is composed.\nAll physical things consist of physical materials. P45 consists of (is incorporated in) allows the different Materials to be recorded. P45 consists of (is incorporated in) refers here to observed Material as opposed to the consumed raw material.\nA Material, such as a theoretical alloy, may not have any physical instances".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "consists of".freeze, - range: "crm:E57_Material".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E57_Material".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P45i_is_incorporated_in, - domain: "crm:E57_Material".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E57_Material".freeze, label: "is incorporated in".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P46_is_composed_of, comment: "This property allows instances of E18 Physical Thing to be analysed into component elements.\nComponent elements, since they are themselves instances of E18 Physical Thing, may be further analysed into sub-components, thereby creating a hierarchy of part decomposition. An instance of E18 Physical Thing may be shared between multiple wholes, for example two buildings may share a common wall.\nThis property is intended to describe specific components that are individually documented, rather than general aspects. Overall descriptions of the structure of an instance of E18 Physical Thing are captured by the P3 has note property.\nThe instances of E57 Materials of which an item of E18 Physical Thing is composed should be documented using P45 consists of (is incorporated in).\n".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "is composed of".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P46i_forms_part_of, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "forms part of".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P48_has_preferred_identifier, comment: "This property records the preferred E42 Identifier that was used to identify an instance of E1 CRM Entity at the time this property was recorded.\nMore than one preferred identifier may have been assigned to an item over time.\nUse of this property requires an external mechanism for assigning temporal validity to the respective CRM instance.\nP48 has preferred identifier (is preferred identifier of), is a shortcut for the path from E1 CRM Entity through P140 assigned attribute to (was attributed by), E15 Identifier Assignment, P37 assigned (was assigned by) to E42 Identifier. The fact that an identifier is a preferred one for an organisation can be better expressed in a context independent form by assigning a suitable E55 Type to the respective instance of E15 Identifier Assignment using the P2 has type property.\n".freeze, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "has preferred identifier".freeze, - range: "crm:E42_Identifier".freeze, - subPropertyOf: "crm:P1_is_identified_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E42_Identifier".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P48i_is_preferred_identifier_of, - domain: "crm:E42_Identifier".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E42_Identifier".freeze, label: "is preferred identifier of".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P1i_identifies".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1i_identifies".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P49_has_former_or_current_keeper, comment: "This property identifies the E39 Actor or Actors who have or have had custody of an instance of E18 Physical Thing at some time. \nThe distinction with P50 has current keeper (is current keeper of) is that P49 has former or current keeper (is former or current keeper of) leaves open the question as to whether the specified keepers are current. \nP49 has former or current keeper (is former or current keeper of) is a shortcut for the more detailed path from E18 Physical Thing through P30 transferred custody of (custody transferred through), E10 Transfer of Custody, P28 custody surrendered by (surrendered custody through) or P29 custody received by (received custody through) to E39 Actor.\n".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "has former or current keeper".freeze, - range: "crm:E39_Actor".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P49i_is_former_or_current_keeper_of, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "is former or current keeper of".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"P4_has_time-span", comment: "This property describes the temporal confinement of an instance of an E2 Temporal Entity.\nThe related E52 Time-Span is understood as the real Time-Span during which the phenomena were active, which make up the temporal entity instance. It does not convey any other meaning than a positioning on the “time-line” of chronology. The Time-Span in turn is approximated by a set of dates (E61 Time Primitive). A temporal entity can have in reality only one Time-Span, but there may exist alternative opinions about it, which we would express by assigning multiple Time-Spans. Related temporal entities may share a Time-Span. Time-Spans may have completely unknown dates but other descriptions by which we can infer knowledge.\n".freeze, - domain: "crm:E2_Temporal_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, label: "has time-span".freeze, - range: "crm:E52_Time-Span".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"P4i_is_time-span_of", - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "is time-span of".freeze, - range: "crm:E2_Temporal_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E2_Temporal_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P50_has_current_keeper, comment: "This property identifies the E39 Actor or Actors who had custody of an instance of E18 Physical Thing at the time of validity of the record or database containing the statement that uses this property.\n\tP50 has current keeper (is current keeper of) is a shortcut for the more detailed path from E18 Physical Thing through P30 transferred custody of (custody transferred through), E10 Transfer of Custody, P29 custody received by (received custody through) to E39 Actor.\n".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "has current keeper".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: "crm:P49_has_former_or_current_keeper".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P49_has_former_or_current_keeper".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P50i_is_current_keeper_of, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "is current keeper of".freeze, - range: "crm:E18_Physical_Thing".freeze, - subPropertyOf: "crm:P49i_is_former_or_current_keeper_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P49i_is_former_or_current_keeper_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P51_has_former_or_current_owner, comment: "This property identifies the E39 Actor that is or has been the legal owner (i.e. title holder) of an instance of E18 Physical Thing at some time.\nThe distinction with P52 has current owner (is current owner of) is that P51 has former or current owner (is former or current owner of) does not indicate whether the specified owners are current. P51 has former or current owner (is former or current owner of) is a shortcut for the more detailed path from E18 Physical Thing through P24 transferred title of (changed ownership through), E8 Acquisition, P23 transferred title from (surrendered title through), or P22 transferred title to (acquired title through) to E39 Actor.\n".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "has former or current owner".freeze, - range: "crm:E39_Actor".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P51i_is_former_or_current_owner_of, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "is former or current owner of".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P52_has_current_owner, comment: "This property identifies the E21 Person, E74 Group or E40 Legal Body that was the owner of an instance of E18 Physical Thing at the time of validity of the record or database containing the statement that uses this property.\nP52 has current owner (is current owner of) is a shortcut for the more detailed path from E18 Physical Thing through P24 transferred title of (changed ownership through), E8 Acquisition, P22 transferred title to (acquired title through) to E39 Actor, if and only if this acquisition event is the most recent.\n".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "has current owner".freeze, - range: "crm:E39_Actor".freeze, - subPropertyOf: ["crm:P105_right_held_by".freeze, "crm:P51_has_former_or_current_owner".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P105_right_held_by".freeze, "http://www.cidoc-crm.org/cidoc-crm/P51_has_former_or_current_owner".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P52i_is_current_owner_of, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "is current owner of".freeze, - range: "crm:E18_Physical_Thing".freeze, - subPropertyOf: ["crm:P105i_has_right_on".freeze, "crm:P51i_is_former_or_current_owner_of".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P105i_has_right_on".freeze, "http://www.cidoc-crm.org/cidoc-crm/P51i_is_former_or_current_owner_of".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P53_has_former_or_current_location, comment: "This property allows an instance of E53 Place to be associated as the former or current location of an instance of E18 Physical Thing.\nIn the case of E19 Physical Objects, the property does not allow any indication of the Time-Span during which the Physical Object was located at this Place, nor if this is the current location.\nIn the case of immobile objects, the Place would normally correspond to the Place of creation.\nP53 has former or current location (is former or current location of) is a shortcut. A more detailed representation can make use of the fully developed (i.e. indirect) path from E19 Physical Object through P25 moved (moved by), E9 Move, P26 moved to (was destination of) or P27 moved from (was origin of) to E53 Place.\n".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "has former or current location".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P53i_is_former_or_current_location_of, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "is former or current location of".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P54_has_current_permanent_location, comment: "This property records the foreseen permanent location of an instance of E19 Physical Object at the time of validity of the record or database containing the statement that uses this property.\nP54 has current permanent location (is current permanent location of) is similar to P55 has current location (currently holds). However, it indicates the E53 Place currently reserved for an object, such as the permanent storage location or a permanent exhibit location. The object may be temporarily removed from the permanent location, for example when used in temporary exhibitions or loaned to another institution. The object may never actually be located at its permanent location.\n".freeze, - domain: "crm:E19_Physical_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, label: "has current permanent location".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P54i_is_current_permanent_location_of, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "is current permanent location of".freeze, - range: "crm:E19_Physical_Object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P55_has_current_location, comment: "This property records the location of an E19 Physical Object at the time of validity of the record or database containing the statement that uses this property. \n\tThis property is a specialisation of P53 has former or current location (is former or current location of). It indicates that the E53 Place associated with the E19 Physical Object is the current location of the object. The property does not allow any indication of how long the Object has been at the current location. \nP55 has current location (currently holds) is a shortcut. A more detailed representation can make use of the fully developed (i.e. indirect) path from E19 Physical Object through P25 moved (moved by), E9 Move P26 moved to (was destination of) to E53 Place if and only if this Move is the most recent.\n".freeze, - domain: "crm:E19_Physical_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, label: "has current location".freeze, - range: "crm:E53_Place".freeze, - subPropertyOf: "crm:P53_has_former_or_current_location".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P53_has_former_or_current_location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P55i_currently_holds, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "currently holds".freeze, - range: "crm:E19_Physical_Object".freeze, - subPropertyOf: "crm:P53i_is_former_or_current_location_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P53i_is_former_or_current_location_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P56_bears_feature, comment: "This property links an instance of E19 Physical Object to an instance of E26 Physical Feature that it bears.\nAn E26 Physical Feature can only exist on one object. One object may bear more than one E26 Physical Feature. An E27 Site should be considered as an E26 Physical Feature on the surface of the Earth.\nAn instance B of E26 Physical Feature being a detail of the structure of another instance A of E26 Physical Feature can be linked to B by use of the property P46 is composed of (forms part of). This implies that the subfeature B is P56i found on the same E19 Physical Object as A.\nP56 bears feature (is found on) is a shortcut. A more detailed representation can make use of the fully developed (i.e. indirect) path from E19 Physical Object through P59 has section (is located on or\nDefinition of the CIDOC Conceptual Reference Model 149 within), E53 Place, P53 has former or current location (is former or current location of) to E26 Physical Feature.\n".freeze, - domain: "crm:E19_Physical_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, label: "bears feature".freeze, - range: "crm:E26_Physical_Feature".freeze, - subPropertyOf: "crm:P46_is_composed_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E26_Physical_Feature".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P46_is_composed_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P56i_is_found_on, - domain: "crm:E26_Physical_Feature".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E26_Physical_Feature".freeze, label: "is found on".freeze, - range: "crm:E19_Physical_Object".freeze, - subPropertyOf: "crm:P46i_forms_part_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P46i_forms_part_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P57_has_number_of_parts, comment: "This property documents the E60 Number of parts of which an instance of E19 Physical Object is composed.\nThis may be used as a method of checking inventory counts with regard to aggregate or collective objects. What constitutes a part or component depends on the context and requirements of the documentation. Normally, the parts documented in this way would not be considered as worthy of individual attention.\nFor a more complete description, objects may be decomposed into their components and constituents using P46 is composed of (forms parts of) and P45 consists of (is incorporated in). This allows each element to be described individually.\n".freeze, - domain: "crm:E19_Physical_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E19_Physical_Object".freeze, label: "has number of parts".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P58_has_section_definition, comment: "This property links an area (section) named by a E46 Section Definition to the instance of E18 Physical Thing upon which it is found.\nThe CRM handles sections as locations (instances of E53 Place) within or on E18 Physical Thing that are identified by E46 Section Definitions. Sections need not be discrete and separable components or parts of an object.\nThis is part of a more developed path from E18 Physical Thing through P58, E46 Section Definition, P87 is identified by (identifies) that allows a more precise definition of a location found on an object than the shortcut P59 has section (is located on or within).\nA particular instance of a Section Definition only applies to one instance of Physical Thing.".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "has section definition".freeze, - range: "crm:E46_Section_Definition".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E46_Section_Definition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P58i_defines_section, - domain: "crm:E46_Section_Definition".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E46_Section_Definition".freeze, label: "defines section".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P59_has_section, comment: "This property links an area to the instance of E18 Physical Thing upon which it is found.\nIt is typically used when a named E46 Section Definition is not appropriate.\nE18 Physical Thing may be subdivided into arbitrary regions. \nP59 has section (is located on or within) is a shortcut. If the E53 Place is identified by a Section Definition, a more detailed representation can make use of the fully developed (i.e. indirect) path from E18 Physical Thing through P58 has section definition (defines section), E46 Section Definition, P87 is identified by (identifies) to E53 Place. A Place can only be located on or within one Physical Object.\n".freeze, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "has section".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P59i_is_located_on_or_within, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "is located on or within".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P5_consists_of, comment: "This property describes the decomposition of an E3 Condition State into discrete, subsidiary states. \nIt is assumed that the sub-states into which the condition state is analysed form a logical whole - although the entire story may not be completely known – and that the sub-states are in fact constitutive of the general condition state. For example, a general condition state of “in ruins” may be decomposed into the individual stages of decay".freeze, - domain: "crm:E3_Condition_State".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State".freeze, label: "consists of".freeze, - range: "crm:E3_Condition_State".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P5i_forms_part_of, - domain: "crm:E3_Condition_State".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State".freeze, label: "forms part of".freeze, - range: "crm:E3_Condition_State".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E3_Condition_State".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P62_depicts, comment: "This property identifies something that is depicted by an instance of E24 Physical Man-Made Thing.\nThis property is a shortcut of the more fully developed path from E24 Physical Man-Made Thing through P65 shows visual item (is shown by), E36 Visual Item, P138 represents (has representation) to E1CRM Entity. P62.1 mode of depiction allows the nature of the depiction to be refined.\n".freeze, - domain: "crm:E24_Physical_Man-Made_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, label: "depicts".freeze, - range: "crm:E1_CRM_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P62i_is_depicted_by, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "is depicted by".freeze, - range: "crm:E24_Physical_Man-Made_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P65_shows_visual_item, comment: "This property documents an E36 Visual Item shown by an instance of E24 Physical Man-Made Thing.\nThis property is similar to P62 depicts (is depicted by) in that it associates an item of E24 Physical Man-Made Thing with a visual representation. However, P65 shows visual item (is shown by) differs from the P62 depicts (is depicted by) property in that it makes no claims about what the E36 Visual Item is deemed to represent. E36 Visual Item identifies a recognisable image or visual symbol, regardless of what this image may or may not represent.\nFor example, all recent British coins bear a portrait of Queen Elizabeth II, a fact that is correctly documented using P62 depicts (is depicted by). Different portraits have been used at different periods, however. P65 shows visual item (is shown by) can be used to refer to a particular portrait.\nP65 shows visual item (is shown by) may also be used for Visual Items such as signs, marks and symbols, for example the 'Maltese Cross' or the 'copyright symbol’ that have no particular representational content. \nThis property is part of the fully developed path from E24 Physical Man-Made Thing through P65 shows visual item (is shown by), E36 Visual Item, P138 represents (has representation) to E1 CRM Entity which is shortcut by, P62 depicts (is depicted by).\n".freeze, - domain: "crm:E24_Physical_Man-Made_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, label: "shows visual item".freeze, - range: "crm:E36_Visual_Item".freeze, - subPropertyOf: "crm:P128_carries".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E36_Visual_Item".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P128_carries".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P65i_is_shown_by, - domain: "crm:E36_Visual_Item".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E36_Visual_Item".freeze, label: "is shown by".freeze, - range: "crm:E24_Physical_Man-Made_Thing".freeze, - subPropertyOf: "crm:P128i_is_carried_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E24_Physical_Man-Made_Thing".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P128i_is_carried_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P67_refers_to, comment: "This property documents that an E89 Propositional Object makes a statement about an instance of E1 CRM Entity. P67 refers to (is referred to by) has the P67.1 has type link to an instance of E55 Type. This is intended to allow a more detailed description of the type of reference. This differs from P129 is about (is subject of), which describes the primary subject or subjects of the E89 Propositional Object.\n".freeze, - domain: "crm:E89_Propositional_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, label: "refers to".freeze, - range: "crm:E1_CRM_Entity".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P67i_is_referred_to_by, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "is referred to by".freeze, - range: "crm:E89_Propositional_Object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E89_Propositional_Object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P68_foresees_use_of, comment: "This property identifies an E57 Material foreseeen to be used by an E29 Design or Procedure. \nE29 Designs and procedures commonly foresee the use of particular E57 Materials. The fabrication of adobe bricks, for example, requires straw, clay and water. This property enables this to be documented.\nThis property is not intended for the documentation of E57 Materials that were used on a particular occasion when an instance of E29 Design or Procedure was executed.\n".freeze, - domain: "crm:E29_Design_or_Procedure".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure".freeze, label: "foresees use of".freeze, - range: "crm:E57_Material".freeze, - subPropertyOf: "crm:P67_refers_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E57_Material".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67_refers_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P68i_use_foreseen_by, - domain: "crm:E57_Material".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E57_Material".freeze, label: "use foreseen by".freeze, - range: "crm:E29_Design_or_Procedure".freeze, - subPropertyOf: "crm:P67i_is_referred_to_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P69_is_associated_with, comment: "This property generalises relationships like whole-part, sequence, prerequisite or inspired by between instances of E29 Design or Procedure. Any instance of E29 Design or Procedure may be associated with other designs or procedures. The property is considered to be symmetrical unless otherwise indicated by P69.1 has type.\nThe P69.1 has type property of P69 has association with allows the nature of the association to be specified reading from domain to range; examples of types of association between instances of E29 Design or Procedure include: has part, follows, requires, etc.\nThe property can typically be used to model the decomposition of the description of a complete workflow into a series of separate procedures.\n".freeze, - domain: "crm:E29_Design_or_Procedure".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure".freeze, label: "is associated with".freeze, - range: "crm:E29_Design_or_Procedure".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E29_Design_or_Procedure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P70_documents, comment: "This property describes the CRM Entities documented by instances of E31 Document.\nDocuments may describe any conceivable entity, hence the link to the highest-level entity in the CRM hierarchy. This property is intended for cases where a reference is regarded as being of a documentary character, in the scholarly or scientific sense.\n".freeze, - domain: "crm:E31_Document".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E31_Document".freeze, label: "documents".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P67_refers_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67_refers_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P70i_is_documented_in, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "is documented in".freeze, - range: "crm:E31_Document".freeze, - subPropertyOf: "crm:P67i_is_referred_to_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E31_Document".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P71_lists, comment: "This property documents a source E32 Authority Document for an instance of an E1 CRM Entity.\n".freeze, - domain: "crm:E32_Authority_Document".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E32_Authority_Document".freeze, label: "lists".freeze, - range: "crm:E1_CRM_Entity".freeze, - subPropertyOf: "crm:P67_refers_to".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67_refers_to".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P71i_is_listed_in, - domain: "crm:E1_CRM_Entity".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E1_CRM_Entity".freeze, label: "is listed in".freeze, - range: "crm:E32_Authority_Document".freeze, - subPropertyOf: "crm:P67i_is_referred_to_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E32_Authority_Document".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P72_has_language, comment: "This property describes the E56 Language of an E33 Linguistic Object. \nLinguistic Objects are composed in one or more human Languages. This property allows these languages to be documented.\n".freeze, - domain: "crm:E33_Linguistic_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E33_Linguistic_Object".freeze, label: "has language".freeze, - range: "crm:E56_Language".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E56_Language".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P72i_is_language_of, - domain: "crm:E56_Language".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E56_Language".freeze, label: "is language of".freeze, - range: "crm:E33_Linguistic_Object".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E33_Linguistic_Object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P73_has_translation, comment: "This property describes the source and target of instances of E33Linguistic Object involved in a translation.\nWhen a Linguistic Object is translated into a new language it becomes a new Linguistic Object, despite being conceptually similar to the source object.\n".freeze, - domain: "crm:E33_Linguistic_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E33_Linguistic_Object".freeze, label: "has translation".freeze, - range: "crm:E33_Linguistic_Object".freeze, - subPropertyOf: "crm:P130_shows_features_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E33_Linguistic_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P130_shows_features_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P73i_is_translation_of, - domain: "crm:E33_Linguistic_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E33_Linguistic_Object".freeze, label: "is translation of".freeze, - range: "crm:E33_Linguistic_Object".freeze, - subPropertyOf: "crm:P130i_features_are_also_found_on".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E33_Linguistic_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P130i_features_are_also_found_on".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P74_has_current_or_former_residence, comment: "This property describes the current or former E53 Place of residence of an E39 Actor. \nThe residence may be either the Place where the Actor resides, or a legally registered address of any kind.\n".freeze, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "has current or former residence".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P74i_is_current_or_former_residence_of, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "is current or former residence of".freeze, - range: "crm:E39_Actor".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P75_possesses, comment: "This property identifies former or current instances of E30 Rights held by an E39 Actor.".freeze, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "possesses".freeze, - range: "crm:E30_Right".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E30_Right".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P75i_is_possessed_by, - domain: "crm:E30_Right".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E30_Right".freeze, label: "is possessed by".freeze, - range: "crm:E39_Actor".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P76_has_contact_point, comment: "This property identifies an E51 Contact Point of any type that provides access to an E39 Actor by any communication method, such as e-mail or fax.\n".freeze, - domain: "crm:E39_Actor".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, label: "has contact point".freeze, - range: "crm:E51_Contact_Point".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E51_Contact_Point".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P76i_provides_access_to, - domain: "crm:E51_Contact_Point".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E51_Contact_Point".freeze, label: "provides access to".freeze, - range: "crm:E39_Actor".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E39_Actor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P78_is_identified_by, comment: "This property identifies an E52 Time-Span using an E49Time Appellation.".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "is identified by".freeze, - range: "crm:E49_Time_Appellation".freeze, - subPropertyOf: "crm:P1_is_identified_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E49_Time_Appellation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P78i_identifies, - domain: "crm:E49_Time_Appellation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E49_Time_Appellation".freeze, label: "identifies".freeze, - range: "crm:E52_Time-Span".freeze, - subPropertyOf: "crm:P1i_identifies".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1i_identifies".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P79_beginning_is_qualified_by, comment: "This property qualifies the beginning of an E52 Time-Span in some way. \nThe nature of the qualification may be certainty, precision, source etc.\n".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "beginning is qualified by".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "crm:P3_has_note".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P3_has_note".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P7_took_place_at, comment: "This property describes the spatial location of an instance of E4 Period. \nThe related E53 Place should be seen as an approximation of the geographical area within which the phenomena that characterise the period in question occurred. P7took place at (witnessed) does not convey any meaning other than spatial positioning (generally on the surface of the earth). For example, the period “R?volution fran?aise” can be said to have taken place in “France”, the “Victorian” period, may be said to have taken place in “Britain” and its colonies, as well as other parts of Europe and north America.\nA period can take place at multiple locations.\n".freeze, - domain: "crm:E4_Period".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, label: "took place at".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P7i_witnessed, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "witnessed".freeze, - range: "crm:E4_Period".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P80_end_is_qualified_by, comment: "This property qualifies the end of an E52 Time-Span in some way. \nThe nature of the qualification may be certainty, precision, source etc.\n".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "end is qualified by".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "crm:P3_has_note".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P3_has_note".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P81_ongoing_throughout, comment: "This property describes the minimum period of time covered by an E52 Time-Span.\nSince Time-Spans may not have precisely known temporal extents, the CRM supports statements about the minimum and maximum temporal extents of Time-Spans. This property allows a Time-Span’s minimum temporal extent (i.e. its inner boundary) to be assigned an E61 Time Primitive value. Time Primitives are treated by the CRM as application or system specific date intervals, and are not further analysed.\n".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "ongoing throughout".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P81a_end_of_the_begin, comment: "This is defined as the first boundary of the property P81".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "end of the begin".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "crm:P81_ongoing_throughout".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P81b_begin_of_the_end, comment: "This is defined as the second boundary of the property P81".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "begin of the end".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "crm:P81_ongoing_throughout".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P82_at_some_time_within, comment: "This property describes the maximum period of time within which an E52 Time-Span falls.\nSince Time-Spans may not have precisely known temporal extents, the CRM supports statements about the minimum and maximum temporal extents of Time-Spans. This property allows a Time-Span’s maximum temporal extent (i.e. its outer boundary) to be assigned an E61 Time Primitive value. Time Primitives are treated by the CRM as application or system specific date intervals, and are not further analysed.\n".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "at some time within".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P82a_begin_of_the_begin, comment: "This is defined as the first boundary of the property P82".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "begin of the begin".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "crm:P82_at_some_time_within".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P82b_end_of_the_end, comment: "This is defined as the second boundary of the property P82".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "end of the end".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "crm:P82_at_some_time_within".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P83_had_at_least_duration, comment: "This property describes the minimum length of time covered by an E52 Time-Span. \nIt allows an E52 Time-Span to be associated with an E54 Dimension representing it’s minimum duration (i.e. it’s inner boundary) independent from the actual beginning and end.\n".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "had at least duration".freeze, - range: "crm:E54_Dimension".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P83i_was_minimum_duration_of, - domain: "crm:E54_Dimension".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, label: "was minimum duration of".freeze, - range: "crm:E52_Time-Span".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P84_had_at_most_duration, comment: "This property describes the maximum length of time covered by an E52 Time-Span. \nIt allows an E52 Time-Span to be associated with an E54 Dimension representing it’s maximum duration (i.e. it’s outer boundary) independent from the actual beginning and end.\n".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "had at most duration".freeze, - range: "crm:E54_Dimension".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P84i_was_maximum_duration_of, - domain: "crm:E54_Dimension".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, label: ["".freeze, "was maximum duration of".freeze], - range: "crm:E52_Time-Span".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P86_falls_within, comment: "This property describes the inclusion relationship between two instances of E52 Time-Span.\nThis property supports the notion that a Time-Span’s temporal extent falls within the temporal extent of another Time-Span. It addresses temporal containment only, and no contextual link between the two instances of Time-Span is implied.\n".freeze, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "falls within".freeze, - range: "crm:E52_Time-Span".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P86i_contains, - domain: "crm:E52_Time-Span".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, label: "contains".freeze, - range: "crm:E52_Time-Span".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E52_Time-Span".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P87_is_identified_by, comment: "This property identifies an E53 Place using an E44 Place Appellation. \nExamples of Place Appellations used to identify Places include instances of E48 Place Name, addresses, E47 Spatial Coordinates etc.\n".freeze, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "is identified by".freeze, - range: "crm:E44_Place_Appellation".freeze, - subPropertyOf: "crm:P1_is_identified_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E44_Place_Appellation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1_is_identified_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P87i_identifies, - domain: "crm:E44_Place_Appellation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E44_Place_Appellation".freeze, label: "identifies".freeze, - range: "crm:E53_Place".freeze, - subPropertyOf: "crm:P1i_identifies".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P1i_identifies".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P89_falls_within, comment: "This property identifies an instance of E53 Place that falls wholly within the extent of another E53 Place.\nIt addresses spatial containment only, and does not imply any relationship between things or phenomena occupying these places.\n".freeze, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "falls within".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P89i_contains, - domain: "crm:E53_Place".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, label: "contains".freeze, - range: "crm:E53_Place".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E53_Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P8_took_place_on_or_within, comment: "This property describes the location of an instance of E4 Period with respect to an E18 Physical Thing.\nP8 took place on or within (witnessed) is a short-cut of a path defining a E53 Place with respect to the geometry of an object. cf. E46 Section Definition.\nThis property is in effect a special case of P7 took place at. It describes a period that can be located with respect to the space defined by an E18 Physical Thing such as a ship or a building. The precise geographical location of the object during the period in question may be unknown or unimportant. \nFor example, the French and German armistice of 22 June 1940 was signed in the same railway carriage as the armistice of 11 November 1918.\n".freeze, - domain: "crm:E4_Period".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, label: "took place on or within".freeze, - range: "crm:E18_Physical_Thing".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P8i_witnessed, - domain: "crm:E18_Physical_Thing".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E18_Physical_Thing".freeze, label: "witnessed".freeze, - range: "crm:E4_Period".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P90_has_value, comment: "This property allows an E54 Dimension to be approximated by an E60 Number primitive.".freeze, - domain: "crm:E54_Dimension".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, label: "has value".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P91_has_unit, comment: "This property shows the type of unit an E54 Dimension was expressed in.".freeze, - domain: "crm:E54_Dimension".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, label: "has unit".freeze, - range: "crm:E58_Measurement_Unit".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E58_Measurement_Unit".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P91i_is_unit_of, - domain: "crm:E58_Measurement_Unit".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E58_Measurement_Unit".freeze, label: "is unit of".freeze, - range: "crm:E54_Dimension".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E54_Dimension".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P92_brought_into_existence, comment: "This property allows an E63 Beginning of Existence event to be linked to the E77 Persistent Item brought into existence by it.\nIt allows a “start” to be attached to any Persistent Item being documented i.e. E70 Thing, E72 Legal Object, E39 Actor, E41 Appellation, E51 Contact Point and E55 Type".freeze, - domain: "crm:E63_Beginning_of_Existence".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E63_Beginning_of_Existence".freeze, label: "brought into existence".freeze, - range: "crm:E77_Persistent_Item".freeze, - subPropertyOf: "crm:P12_occurred_in_the_presence_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P92i_was_brought_into_existence_by, - domain: "crm:E77_Persistent_Item".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, label: "was brought into existence by".freeze, - range: "crm:E63_Beginning_of_Existence".freeze, - subPropertyOf: "crm:P12i_was_present_at".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E63_Beginning_of_Existence".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12i_was_present_at".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P93_took_out_of_existence, comment: "This property allows an E64 End of Existence event to be linked to the E77 Persistent Item taken out of existence by it.\nIn the case of immaterial things, the E64 End of Existence is considered to take place with the destruction of the last physical carrier.\nThis allows an “end” to be attached to any Persistent Item being documented i.e. E70 Thing, E72 Legal Object, E39 Actor, E41 Appellation, E51 Contact Point and E55 Type. For many Persistent Items we know the maximum life-span and can infer, that they must have ended to exist. We assume in that case an End of Existence, which may be as unnoticeable as forgetting the secret knowledge by the last representative of some indigenous nation.\n".freeze, - domain: "crm:E64_End_of_Existence".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E64_End_of_Existence".freeze, label: "took out of existence".freeze, - range: "crm:E77_Persistent_Item".freeze, - subPropertyOf: "crm:P12_occurred_in_the_presence_of".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12_occurred_in_the_presence_of".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P93i_was_taken_out_of_existence_by, - domain: "crm:E77_Persistent_Item".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E77_Persistent_Item".freeze, label: "was taken out of existence by".freeze, - range: "crm:E64_End_of_Existence".freeze, - subPropertyOf: "crm:P12i_was_present_at".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E64_End_of_Existence".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P12i_was_present_at".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P94_has_created, comment: "This property allows a conceptual E65 Creation to be linked to the E28 Conceptual Object created by it. \nIt represents the act of conceiving the intellectual content of the E28 Conceptual Object. It does not represent the act of creating the first physical carrier of the E28 Conceptual Object. As an example, this is the composition of a poem, not its commitment to paper.\n".freeze, - domain: "crm:E65_Creation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E65_Creation".freeze, label: "has created".freeze, - range: "crm:E28_Conceptual_Object".freeze, - subPropertyOf: "crm:P92_brought_into_existence".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E28_Conceptual_Object".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P92_brought_into_existence".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P94i_was_created_by, - domain: "crm:E28_Conceptual_Object".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E28_Conceptual_Object".freeze, label: "was created by".freeze, - range: "crm:E65_Creation".freeze, - subPropertyOf: "crm:P92i_was_brought_into_existence_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E65_Creation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P92i_was_brought_into_existence_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P95_has_formed, comment: "This property links the founding or E66 Formation for an E74 Group with the Group itself.".freeze, - domain: "crm:E66_Formation".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E66_Formation".freeze, label: "has formed".freeze, - range: "crm:E74_Group".freeze, - subPropertyOf: "crm:P92_brought_into_existence".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P92_brought_into_existence".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P95i_was_formed_by, - domain: "crm:E74_Group".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, label: "was formed by".freeze, - range: "crm:E66_Formation".freeze, - subPropertyOf: "crm:P92i_was_brought_into_existence_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E66_Formation".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P92i_was_brought_into_existence_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P96_by_mother, comment: "This property links an E67 Birth event to an E21 Person as a participant in the role of birth-giving mother.\n\nNote that biological fathers are not necessarily participants in the Birth (see P97 from father (was father for)). The Person being born is linked to the Birth with the property P98 brought into life (was born). This is not intended for use with general natural history material, only people. There is no explicit method for modelling conception and gestation except by using extensions. This is a sub-property of P11 had participant (participated in).\n".freeze, - domain: "crm:E67_Birth".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E67_Birth".freeze, label: "by mother".freeze, - range: "crm:E21_Person".freeze, - subPropertyOf: "crm:P11_had_participant".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11_had_participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P96i_gave_birth, - domain: "crm:E21_Person".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, label: "gave birth".freeze, - range: "crm:E67_Birth".freeze, - subPropertyOf: "crm:P11i_participated_in".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E67_Birth".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P11i_participated_in".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P97_from_father, comment: "This property links an E67 Birth event to an E21 Person in the role of biological father.\nNote that biological fathers are not seen as necessary participants in the Birth, whereas birth-giving mothers are (see P96 by mother (gave birth)). The Person being born is linked to the Birth with the property P98 brought into life (was born).\nThis is not intended for use with general natural history material, only people. There is no explicit method for modelling conception and gestation except by using extensions. \nA Birth event is normally (but not always) associated with one biological father.\n".freeze, - domain: "crm:E67_Birth".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E67_Birth".freeze, label: "from father".freeze, - range: "crm:E21_Person".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P97i_was_father_for, - domain: "crm:E21_Person".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, label: "was father for".freeze, - range: "crm:E67_Birth".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E67_Birth".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P98_brought_into_life, comment: "This property links an E67Birth event to an E21 Person in the role of offspring.\nTwins, triplets etc. are brought into life by the same Birth event. This is not intended for use with general Natural History material, only people. There is no explicit method for modelling conception and gestation except by using extensions.\n".freeze, - domain: "crm:E67_Birth".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E67_Birth".freeze, label: "brought into life".freeze, - range: "crm:E21_Person".freeze, - subPropertyOf: "crm:P92_brought_into_existence".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P92_brought_into_existence".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P98i_was_born, - domain: "crm:E21_Person".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E21_Person".freeze, label: "was born".freeze, - range: "crm:E67_Birth".freeze, - subPropertyOf: "crm:P92i_was_brought_into_existence_by".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E67_Birth".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P92i_was_brought_into_existence_by".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P99_dissolved, comment: "This property links the disbanding or E68 Dissolution of an E74 Group to the Group itself.".freeze, - domain: "crm:E68_Dissolution".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E68_Dissolution".freeze, label: "dissolved".freeze, - range: "crm:E74_Group".freeze, - subPropertyOf: ["crm:P11_had_participant".freeze, "crm:P93_took_out_of_existence".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P11_had_participant".freeze, "http://www.cidoc-crm.org/cidoc-crm/P93_took_out_of_existence".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P99i_was_dissolved_by, - domain: "crm:E74_Group".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E74_Group".freeze, label: "was dissolved by".freeze, - range: "crm:E68_Dissolution".freeze, - subPropertyOf: ["crm:P11i_participated_in".freeze, "crm:P93i_was_taken_out_of_existence_by".freeze], - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E68_Dissolution".freeze, + subPropertyOf: ["http://www.cidoc-crm.org/cidoc-crm/P11i_participated_in".freeze, "http://www.cidoc-crm.org/cidoc-crm/P93i_was_taken_out_of_existence_by".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P9_consists_of, comment: "This property associates an instance of E4 Period with another instance of E4 Period that falls within the spacetime volumes occupied by the former and which is defined by phenomena that form part of or are refinements of the phenomena that define the former.\n".freeze, - domain: "crm:E4_Period".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, label: "consists of".freeze, - range: "crm:E4_Period".freeze, - subPropertyOf: "crm:P10i_contains".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P10i_contains".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :P9i_forms_part_of, - domain: "crm:E4_Period".freeze, + domain: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, label: "forms part of".freeze, - range: "crm:E4_Period".freeze, - subPropertyOf: "crm:P10_falls_within".freeze, - type: "rdf:Property".freeze + range: "http://www.cidoc-crm.org/cidoc-crm/E4_Period".freeze, + subPropertyOf: "http://www.cidoc-crm.org/cidoc-crm/P10_falls_within".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/datacite.rb b/lib/rdf/vocab/datacite.rb index 77256a6..7917d97 100644 --- a/lib/rdf/vocab/datacite.rb +++ b/lib/rdf/vocab/datacite.rb @@ -12,45 +12,45 @@ module RDF::Vocab # Ontology definition ontology :"http://purl.org/spar/datacite/", comment: %(This ontology is available at http://purl.org/spar/datacite/, and uses the namespace prefix datacite.).freeze, - "dc11:contributor": ["Amy J. Barton".freeze, "Egbert Gramsbergen".freeze, "Jan Ashton".freeze, "Marie-Christine Jacquemot".freeze], - "dc11:creator": ["David Shotton".freeze, "Silvio Peroni".freeze], - "dc11:date": "2016-01-21".freeze, - "dc11:description": ["The DataCite Ontology is an ontology written in OWL 2 DL to enable the metadata properties of the [DataCite Metadata Kernel Specification version 3.1](https://www.datacite.org/sites/default/files/document/DataCite-MetadataSchema_V31_Final_8-24-2015_0.pdf) to be described in RDF. \n\nThis version of the DataCite Ontology has been completely revised and significantly expanded to permit accurate mapping of this new version of the DataCite Metadata Kernel Specification to RDF.".freeze, "https://svn.code.sf.net/p/sempublishing/code/DataCite/datacite.png".freeze], - "dc11:rights": "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0/).".freeze, - "dc11:title": "The DataCite Ontology".freeze, - "owl:imports": ["http://purl.org/co".freeze, "http://www.essepuntato.it/2010/06/literalreification".freeze], - "owl:priorVersion": "http://svn.code.sf.net/p/sempublishing/code/DataCite/2014-05-21-datacite-0_6_4_1.owl".freeze, - "owl:versionInfo": "1.0".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/elements/1.1/contributor": ["Amy J. Barton".freeze, "Egbert Gramsbergen".freeze, "Jan Ashton".freeze, "Marie-Christine Jacquemot".freeze], + "http://purl.org/dc/elements/1.1/creator": ["David Shotton".freeze, "Silvio Peroni".freeze], + "http://purl.org/dc/elements/1.1/date": "2016-01-21".freeze, + "http://purl.org/dc/elements/1.1/description": ["The DataCite Ontology is an ontology written in OWL 2 DL to enable the metadata properties of the [DataCite Metadata Kernel Specification version 3.1](https://www.datacite.org/sites/default/files/document/DataCite-MetadataSchema_V31_Final_8-24-2015_0.pdf) to be described in RDF. \n\nThis version of the DataCite Ontology has been completely revised and significantly expanded to permit accurate mapping of this new version of the DataCite Metadata Kernel Specification to RDF.".freeze, "https://svn.code.sf.net/p/sempublishing/code/DataCite/datacite.png".freeze], + "http://purl.org/dc/elements/1.1/rights": "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0/).".freeze, + "http://purl.org/dc/elements/1.1/title": "The DataCite Ontology".freeze, + "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/co".freeze, "http://www.essepuntato.it/2010/06/literalreification".freeze], + "http://www.w3.org/2002/07/owl#priorVersion": "http://svn.code.sf.net/p/sempublishing/code/DataCite/2014-05-21-datacite-0_6_4_1.owl".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AgentIdentifier, comment: %(An identifier that uniquely identities an individual agent, belonging to a particular identifier scheme specified by an individual within the class datacite:AgentIdentifierScheme \(or any of its subclasses\).).freeze, label: "agent identifier".freeze, - "owl:disjointWith": "datacite:ResourceIdentifier".freeze, - subClassOf: ["datacite:Identifier".freeze, term( - allValuesFrom: "datacite:AgentIdentifier".freeze, - onProperty: "datacite:usesIdentifierScheme".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/datacite/ResourceIdentifier".freeze, + subClassOf: ["http://purl.org/spar/datacite/Identifier".freeze, term( + allValuesFrom: "http://purl.org/spar/datacite/AgentIdentifier".freeze, + onProperty: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AgentIndetifierScheme, comment: %(The identifier scheme used to identify an agent. Individual schemes are defines as members of its sub-classes.).freeze, label: "agent identifier scheme".freeze, - subClassOf: ["datacite:IdentifierScheme".freeze, term( + subClassOf: ["http://purl.org/spar/datacite/IdentifierScheme".freeze, term( onProperty: term( - inverseOf: "datacite:usesIdentifierScheme".freeze + inverseOf: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze ), - someValuesFrom: "datacite:AgentIdentifier".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/datacite/AgentIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AlternateResourceIdentifier, comment: %(An identifier other than a DOI that is used as an alternative identifier to uniquely identifies the primary resource that is the subject of the DataCite metadata record, belonging to a particular scheme such as ISBN specified by an individual that is a member of the class datacite:ResourceIdentifierScheme. ).freeze, label: "alternate resource identifier".freeze, - "owl:disjointWith": "datacite:PrimaryResourceIdentifier".freeze, - subClassOf: "datacite:ResourceIdentifier".freeze, - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/datacite/PrimaryResourceIdentifier".freeze, + subClassOf: "http://purl.org/spar/datacite/ResourceIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DescriptionType, comment: %(This class permits classification of the type of description given to a resource described by the DataCite Metadata schema. Individual members of the class conform to the five values allowed in the DataCite controlled list, namely: @@ -60,48 +60,48 @@ module RDF::Vocab * table-of-content; * other.).freeze, label: "description type".freeze, - subClassOf: "skos:Concept".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FunderIdentifier, comment: %(An identifier that uniquely identities a funding agency, belonging to a particular scheme such as FundRef specified by an individual within the class datacite:FunderIdentifierScheme.).freeze, label: "funder identifier".freeze, - subClassOf: ["datacite:AgentIdentifier".freeze, term( - allValuesFrom: "datacite:FunderIdentifierScheme".freeze, - onProperty: "datacite:usesIdentifierScheme".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/datacite/AgentIdentifier".freeze, term( + allValuesFrom: "http://purl.org/spar/datacite/FunderIdentifierScheme".freeze, + onProperty: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FunderIdentifierScheme, comment: %(The identifier scheme used to identify a funding agency. Individual schemes are defines as members of this class. At present, the only individual of this class is datacite:fundref.).freeze, label: "funder identifier scheme".freeze, - subClassOf: ["datacite:AgentIndetifierScheme".freeze, term( + subClassOf: ["http://purl.org/spar/datacite/AgentIndetifierScheme".freeze, term( onProperty: term( - inverseOf: "datacite:usesIdentifierScheme".freeze + inverseOf: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze ), - someValuesFrom: "datacite:FunderIdentifier".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/datacite/FunderIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Identifier, comment: %(An identifier that uniquely identities an entity – such as a funding agency, a person and a resource – belonging to a particular scheme such as those specified by individuals of the class datacite:IdentifierScheme.).freeze, label: "identifier".freeze, subClassOf: ["http://www.essepuntato.it/2010/06/literalreification/Literal".freeze, term( cardinality: "1".freeze, onProperty: term( - inverseOf: "datacite:hasIdentifier".freeze + inverseOf: "http://purl.org/spar/datacite/hasIdentifier".freeze ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "datacite:usesIdentifierScheme".freeze, - "owl:onClass": "datacite:IdentifierScheme".freeze, - "owl:qualifiedCardinality": "1".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze, + "http://www.w3.org/2002/07/owl#onClass": "http://purl.org/spar/datacite/IdentifierScheme".freeze, + "http://www.w3.org/2002/07/owl#qualifiedCardinality": "1".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IdentifierScheme, comment: %(The identifier scheme used to identify an entity such as a funding agency, a person or a resource. Individual schemes are defines as members of this class.).freeze, label: "identifier scheme".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MetadataScheme, comment: %(The class that describe metadata schemes used for creating a metadata document referring to a certain resource. @@ -114,120 +114,120 @@ module RDF::Vocab In addition, if needed, it is possible to use the dataproperty fabio:hasURL \(not included in this ontology as well\) for defining the actual URL of a certain metadata scheme.).freeze, label: "metadata scheme".freeze, - "rdfs:seeAlso": ["http://purl.org/spar/cito/citesAsMetadataDocument".freeze, "http://purl.org/spar/fabio/MetadataDocument".freeze], - type: "owl:Class".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/spar/cito/citesAsMetadataDocument".freeze, "http://purl.org/spar/fabio/MetadataDocument".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OrganizationIdentifier, comment: %(An identifier that uniquely identities an individual organization, belonging to a particular identifier scheme such as ISNI specified by an individual within the class datacite:OrganizationIdentifierScheme.).freeze, label: "organization identifier".freeze, - subClassOf: ["datacite:AgentIdentifier".freeze, term( - allValuesFrom: "datacite:OrganizationIdentifier".freeze, - onProperty: "datacite:usesIdentifierScheme".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/datacite/AgentIdentifier".freeze, term( + allValuesFrom: "http://purl.org/spar/datacite/OrganizationIdentifier".freeze, + onProperty: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OrganizationIdentifierScheme, comment: %(The identifier scheme used to identify an organization. Individual schemes are defines as members of this class.).freeze, label: "organization identifier scheme".freeze, - subClassOf: ["datacite:AgentIndetifierScheme".freeze, term( + subClassOf: ["http://purl.org/spar/datacite/AgentIndetifierScheme".freeze, term( onProperty: term( - inverseOf: "datacite:usesIdentifierScheme".freeze + inverseOf: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze ), - someValuesFrom: "datacite:OrganizationIdentifier".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/datacite/OrganizationIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PersonalIdentifier, comment: %(An identifier that uniquely identities an individual person, belonging to a particular identifier scheme such as ORCID specified by an individual within the class datacite:PersonalIdentifierScheme.).freeze, label: "personal identifier".freeze, - subClassOf: ["datacite:AgentIdentifier".freeze, term( - allValuesFrom: "datacite:PersonalIdentifierScheme".freeze, - onProperty: "datacite:usesIdentifierScheme".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/datacite/AgentIdentifier".freeze, term( + allValuesFrom: "http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, + onProperty: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PersonalIdentifierScheme, comment: %(The identifier scheme used to identify a person. Individual schemes are defines as members of this class.).freeze, label: "personal identifier scheme".freeze, - subClassOf: ["datacite:AgentIndetifierScheme".freeze, term( + subClassOf: ["http://purl.org/spar/datacite/AgentIndetifierScheme".freeze, term( onProperty: term( - inverseOf: "datacite:usesIdentifierScheme".freeze + inverseOf: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze ), - someValuesFrom: "datacite:PersonalIdentifier".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/datacite/PersonalIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PrimaryResourceIdentifier, comment: %(An identifier that is used as the primary identifier to uniquely identifies the primary resource that is the subject of the DataCite metadata record. Within the DataCite metadata record, a Digital Object Identifier is the only permitted primary resource identifier scheme, specified by the individual datacite:doi, that is a member of the class datacite:ResourceIdentifierScheme.).freeze, label: "primary resource identifier".freeze, - subClassOf: ["datacite:ResourceIdentifier".freeze, term( - onProperty: "datacite:usesIdentifierScheme".freeze, - "owl:hasValue": "datacite:doi".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/datacite/ResourceIdentifier".freeze, term( + onProperty: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze, + "http://www.w3.org/2002/07/owl#hasValue": "http://purl.org/spar/datacite/doi".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ResourceIdentifier, comment: %(An identifier that is used to uniquely identifies a resource.).freeze, label: "resource identifier".freeze, - subClassOf: ["datacite:Identifier".freeze, term( - allValuesFrom: "datacite:ResourceIdentifierScheme".freeze, - onProperty: "datacite:usesIdentifierScheme".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/datacite/Identifier".freeze, term( + allValuesFrom: "http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, + onProperty: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ResourceIdentifierScheme, comment: %(The identifier scheme used to identify a resource. Individual schemes are defines as members of this class. For DataCite, the only permitted identifier scheme for the primary resource identifier is the Digital Object Identifier.).freeze, label: "resource identifier scheme".freeze, - subClassOf: ["datacite:IdentifierScheme".freeze, term( + subClassOf: ["http://purl.org/spar/datacite/IdentifierScheme".freeze, term( onProperty: term( - inverseOf: "datacite:usesIdentifierScheme".freeze + inverseOf: "http://purl.org/spar/datacite/usesIdentifierScheme".freeze ), - someValuesFrom: "datacite:ResourceIdentifier".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/datacite/ResourceIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :hasCreatorList, comment: %(This property allows one to specify the list of the creators of a certain resource.).freeze, domain: term( - onProperty: "datacite:hasIdentifier".freeze, - someValuesFrom: "datacite:ResourceIdentifier".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/datacite/hasIdentifier".freeze, + someValuesFrom: "http://purl.org/spar/datacite/ResourceIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), label: "has creator list".freeze, range: "http://purl.org/co/List".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDescription, comment: %(An object property permitting specification of an entity used to describe a resource.).freeze, domain: term( - onProperty: "datacite:hasIdentifier".freeze, - someValuesFrom: "datacite:ResourceIdentifier".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/datacite/hasIdentifier".freeze, + someValuesFrom: "http://purl.org/spar/datacite/ResourceIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), label: "has description".freeze, range: term( cardinality: "1".freeze, - onProperty: "datacite:hasDescriptionType".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/datacite/hasDescriptionType".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDescriptionType, comment: %(An object property permitting specification of the type of description used to describe a resource, defined as an individual of the class datacite:DescriptionType from the DataCite controlled list of Abstract, SeriesInformation, TableOfContent and Other.).freeze, domain: term( allValuesFrom: term( - onProperty: "datacite:hasIdentifier".freeze, - someValuesFrom: "datacite:ResourceIdentifier".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/datacite/hasIdentifier".freeze, + someValuesFrom: "http://purl.org/spar/datacite/ResourceIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), onProperty: term( - inverseOf: "datacite:hasDescription".freeze + inverseOf: "http://purl.org/spar/datacite/hasDescription".freeze ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), label: "has description type".freeze, - range: "datacite:DescriptionType".freeze, - subPropertyOf: "dc:type".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/datacite/DescriptionType".freeze, + subPropertyOf: "http://purl.org/dc/terms/type".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasGeneralResourceType, comment: %(An object property permitting specification of the general type of a resource, defined from the DataCite controlled list, namely: @@ -248,239 +248,239 @@ module RDF::Vocab All the prefixes used here refer to external ontologies, i.e., DC Metadata Terms \(dcmitype: http://purl.org/dc/dcmitype/\), FaBiO \(fabio: http://purl.org/spar/fabio/\), and FRBR \(frbr: http://purl.org/vocab/frbr/core#\).).freeze, domain: term( - onProperty: "datacite:hasIdentifier".freeze, - someValuesFrom: "datacite:ResourceIdentifier".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/datacite/hasIdentifier".freeze, + someValuesFrom: "http://purl.org/spar/datacite/ResourceIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), label: "has general resource type".freeze, - range: "skos:Concept".freeze, - subPropertyOf: "dc:type".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + subPropertyOf: "http://purl.org/dc/terms/type".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasIdentifier, comment: %(An object property specifying a datacite:Identifier that provides a unique identifer for the entity \(either a funder, a person or a resource\).).freeze, label: "has identifier".freeze, - range: "datacite:Identifier".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://purl.org/spar/datacite/Identifier".freeze, + type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :usesIdentifierScheme, comment: %(An object property permitting specification of the identifier scheme used to provide the identifier for an entity – either a funder, a person or a resource – defined as an individual of the class datacite:IdentifierScheme.).freeze, - domain: "datacite:Identifier".freeze, + domain: "http://purl.org/spar/datacite/Identifier".freeze, label: "uses identifier scheme".freeze, - range: "datacite:IdentifierScheme".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/datacite/IdentifierScheme".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usesMetadataScheme, comment: %(The link between a metadata document and the scheme followed for creating metadata.).freeze, label: "uses metadata scheme".freeze, - range: "datacite:MetadataScheme".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/datacite/MetadataScheme".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze # Extra definitions term :abstract, comment: %(A brief summary of a textual work, appearing at the beginning of the work and designed to act as the point-of-entry that will help the reader quickly to obtain an overview of the work's contents.).freeze, label: "abstract".freeze, - "rdfs:seeAlso": "http://purl.org/spar/fabio/Abstract".freeze, - type: ["datacite:DescriptionType".freeze, "owl:NamedIndividual".freeze] + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/spar/fabio/Abstract".freeze, + type: ["http://purl.org/spar/datacite/DescriptionType".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :ark, comment: %(Archival Resource Key.).freeze, "http://purl.org/spar/fabio/hasURL": "https://confluence.ucop.edu/display/Curation/ARK".freeze, label: "ark".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :arxiv, comment: %(Identifier for ArXiv \(http://arxiv.org/\), a open access repository of preprints, having the format arXiv:1207.2147.).freeze, "http://purl.org/spar/fabio/hasURL": "http://arxiv.org/".freeze, label: "arxiv".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :bibcode, comment: %(It is the Astrophysics Data System bibliographic codes, a standardized 19 character identifier according to the syntax "yyyyjjjjjvvvvmppppa".).freeze, label: "bibcode".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :dia, comment: %(The Digital Author Identification system assigns a unique number to all authors in the Netherlands research system.).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.surf.nl/en/themas/openonderzoek/infrastructuur/Pages/digitalauthoridentifierdai.aspx".freeze, label: "dia".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :doi, comment: %(Digital Object Identier.).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.doi.org/".freeze, label: "doi".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :ean13, comment: %(International Article Number).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.gs1.org/".freeze, label: "ean13".freeze, - "rdfs:seeAlso": "http://en.wikipedia.org/wiki/EAN13".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://en.wikipedia.org/wiki/EAN13".freeze, + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :eissn, comment: %(Electronic International Standard Serial Number).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.issn.org/".freeze, label: "eissn".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :fundref, comment: %(FundRef is a collaborative pilot project of scholarly publishers and funding agencies, facilitated by CrossRef, to provide a standard way of identifying and reporting funding sources for published scholarly research. ).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.crossref.org/fundref/index.html".freeze, label: "fundref".freeze, - type: ["datacite:FunderIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/FunderIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :handle, comment: %(The Handle system).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.handle.net/".freeze, label: "handle".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :infouri, comment: %(Info URI scheme).freeze, "http://purl.org/spar/fabio/hasURL": "http://info-uri.info/registry/docs/misc/faq.html".freeze, label: "infouri".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :isbn, comment: %(International Standard Book Number).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.isbn-international.org/".freeze, label: "isbn".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :isni, comment: %(International Standard Name Identifier scheme.).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.isni.org/".freeze, label: "isni".freeze, - type: ["datacite:OrganizationIdentifierScheme".freeze, "datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/OrganizationIdentifierScheme".freeze, "http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :issn, comment: %(International Standard Serial Number).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.issn.org/".freeze, label: "issn".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :istc, comment: %(International Standard Text Code).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.istc-international.org/html/".freeze, label: "istc".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :jst, comment: %(Japanese Science and Technology Agency identifier scheme).freeze, label: "jst".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :lissn, comment: %(Linking International Standard Serial Number).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.issn.org/".freeze, label: "lissn".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"local-funder-identifier-scheme", comment: %(A funder identifier scheme that provides local funder identifiers that are unique in their local environment and understood by the person submitting the metadata.).freeze, label: "local funder identifier scheme".freeze, - type: ["datacite:FunderIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/FunderIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"local-organization-identifier-scheme", comment: %(An organization identifier scheme that provides local organization identifiers that are unique in their local environment and understood by the person submitting the metadata.).freeze, label: "local organization identifier scheme".freeze, - type: ["datacite:OrganizationIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/OrganizationIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"local-personal-identifier-scheme", comment: %(A personal identifier scheme that provides local personal identifiers that are unique in their local environment and understood by the person submitting the metadata.).freeze, label: "local personal identifier scheme".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"local-resource-identifier-scheme", comment: %(A resource identifier scheme that provides local resource identifiers that are unique in their local environment and understood by the person submitting the metadata.).freeze, label: "local resource identifier scheme".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :lsid, comment: %(Life Science Identifier).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.ibm.com/developerworks/opensource/library/os-lsidbp/".freeze, label: "lsid".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :methods, comment: %(A description in a research paper documenting the specialized methods used in the work described.).freeze, label: ["http://purl.org/spar/deo/Methods".freeze, "methods".freeze], - type: ["datacite:DescriptionType".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/DescriptionType".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"national-insurance-number", comment: %(United Kingdom National Insurance Number scheme.).freeze, label: "national insurance number".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :nihmsid, comment: %(NIH Manuscript Submission Identifier).freeze, "http://purl.org/spar/fabio/hasURL": "http://nexus.od.nih.gov/all/2009/09/01/nih-public-access-update-clarifying-use-of-the-nih-manuscript-submission-id-nihmsid/".freeze, label: "nihmsid".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :nii, comment: %(National Individual Identifier scheme.).freeze, label: "nii".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :openid, comment: %(OpenID is an open standard that describes how users can be authenticated in a decentralized manner, eliminating the need for centralized registration services. ).freeze, "http://purl.org/spar/fabio/hasURL": "http://openid.net/foundation/".freeze, label: "openid".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :orcid, comment: %(Open Researcher and Contributor Identifier.).freeze, "http://purl.org/spar/fabio/hasURL": "http://orcid.org/".freeze, label: "orcid".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :other, comment: %(A catch-all description type required by the DataCite Metadata Schema to characterize description types that are not abstracts, series information or tables of content.).freeze, label: "other".freeze, - type: ["datacite:DescriptionType".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/DescriptionType".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :pii, comment: %(Pulisher Item Identifier scheme.).freeze, label: "pii".freeze, - "rdfs:seeAlso": "http://en.wikipedia.org/wiki/Publisher_Item_Identifier".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://en.wikipedia.org/wiki/Publisher_Item_Identifier".freeze, + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :pmcid, comment: %(PubMed Central Identifier).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.ncbi.nlm.nih.gov/pmc/".freeze, label: "pmcid".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :pmid, comment: %(PubMed Identifier).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.ncbi.nlm.nih.gov/pubmed/".freeze, label: "pmid".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :purl, comment: %(Persistent Uniform Resource Locator).freeze, "http://purl.org/spar/fabio/hasURL": "http://purl.org/".freeze, label: "purl".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :researcherid, comment: %(ResearcherID is an identifying system for scientific authors created and owned by Thomson Reuters.).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.researcherid.com/".freeze, label: "researcherid".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"series-information", comment: %(Used to charactierize a description of a resource that is part of a series.).freeze, label: "series information".freeze, - "rdfs:seeAlso": ["http://purl.org/spar/fabio/BookSeries".freeze, "http://purl.org/spar/fabio/Periodical".freeze], - type: ["datacite:DescriptionType".freeze, "owl:NamedIndividual".freeze] + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/spar/fabio/BookSeries".freeze, "http://purl.org/spar/fabio/Periodical".freeze], + type: ["http://purl.org/spar/datacite/DescriptionType".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :sici, comment: %(Serial Item and Contribution Identifier).freeze, "http://purl.org/spar/fabio/hasURL": "http://en.wikipedia.org/wiki/Serial_Item_and_Contribution_Identifier".freeze, label: "sici".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"social-security-number", comment: %(United States of America social security number scheme).freeze, label: "social security number".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :spar, comment: %(The Semantic Publishing and Referencing Ontologies, a.k.a. SPAR Ontologies, form a suite of orthogonal and complementary OWL 2 DL ontology modules for the creation of comprehensive machine-readable RDF metadata for every aspect of semantic publishing and referencing: document description, bibliographic resource identifiers, types of citations and related contexts, bibliographic references, document parts and status, agents' roles and contributions, bibliometric data and workflow processes.).freeze, "http://purl.org/spar/fabio/hasURL": "http://www.sparontologies.net".freeze, label: "SPAR Ontologies".freeze, - type: ["datacite:MetadataScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/MetadataScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"table-of-content", comment: %(A table of content giving information about the content of a resource, appearing before the body text. Where the resource is a journal or magazine issue, the table of content lists the constituent items contained in that issue, typically by title, authors and first page number.).freeze, label: "table of content".freeze, - "rdfs:seeAlso": "http://purl.org/spar/doco/TableOfContents".freeze, - type: ["datacite:DescriptionType".freeze, "owl:NamedIndividual".freeze] + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/spar/doco/TableOfContents".freeze, + type: ["http://purl.org/spar/datacite/DescriptionType".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :upc, comment: %(Universal Product Code).freeze, label: "upc".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :uri, comment: %(Uniform Resource Identifier).freeze, "http://purl.org/spar/fabio/hasURL": "http://tools.ietf.org/html/rfc3986".freeze, label: "uri".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :url, comment: %(Uniform Resource Locator.).freeze, label: "url".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :urn, comment: %(Uniform Resource Name.).freeze, "http://purl.org/spar/fabio/hasURL": "http://datatracker.ietf.org/wg/urn/charter/".freeze, label: "urn".freeze, - type: ["datacite:ResourceIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/ResourceIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :viaf, comment: %(The Virtual International Authority File is an international authority file created by amalagamating the national authority files of several national libraries and operated by the Online Computer Library Center \(OCLC\). It contains information about many topics including personal names.).freeze, "http://purl.org/spar/fabio/hasURL": "http://viaf.org/".freeze, label: "viaf".freeze, - type: ["datacite:PersonalIdentifierScheme".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/datacite/PersonalIdentifierScheme".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] end end diff --git a/lib/rdf/vocab/dbo.rb b/lib/rdf/vocab/dbo.rb index e98859c..d814ea2 100644 --- a/lib/rdf/vocab/dbo.rb +++ b/lib/rdf/vocab/dbo.rb @@ -3,17747 +3,7507 @@ # This file generated automatically using rdf vocabulary format from http://dbpedia.org/ontology/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The DBpedia Ontology - # # - # # This ontology is generated from the manually created specifications in the DBpedia Mappings Wiki. Each release of this ontology corresponds to a new release of the DBpedia data set which contains instance data extracted from the different language versions of Wikipedia. For information regarding changes in this ontology, please refer to the DBpedia Mappings Wiki. - # # - # # The DBpedia ontology provides the classes and properties used in the DBpedia data set. - # # @version 4.2-SNAPSHOT - # class DBO < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :Abbey - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AcademicConference - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AcademicJournal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AcademicSubject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Activity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Actor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdministrativeRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdultActor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agglomeration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Aircraft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Airline - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Airport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Album - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Altitude - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmateurBoxer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ambassador - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmericanFootballCoach - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmericanFootballLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmericanFootballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmericanFootballTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Amphibian - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmusementParkAttraction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnatomicalStructure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Animal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnimangaCharacter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Anime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Annotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Arachnid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Archaea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Archeologist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArcherPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Archipelago - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Architect - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArchitecturalStructure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Archive - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Area - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Arena - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Aristocrat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Arrondissement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Artery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Article - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArtificialSatellite - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Artist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArtistDiscography - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArtisticGenre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Artwork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Asteroid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Astronaut - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Athlete - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Athletics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AthleticsPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Atoll - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Attack - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AustralianFootballLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AustralianFootballTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AustralianRulesFootballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoRacingLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Automobile - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutomobileEngine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Award - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BackScene - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bacteria - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BadmintonPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Band - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Baronet - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BaseballLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BaseballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BaseballSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BaseballTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BasketballLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BasketballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BasketballTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Beach - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BeachVolleyballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BeautyQueen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Beer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Beverage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Biathlete - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BiologicalDatabase - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Biologist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Biomolecule - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bird - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Birth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Blazon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BloodVessel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoardGame - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BobsleighAthlete - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BodyOfWater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bodybuilder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bone - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Book - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BowlingLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Boxer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Boxing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoxingCategory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoxingLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoxingStyle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brewery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bridge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BritishRoyalty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastNetwork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Broadcaster - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BrownDwarf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Building - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BullFighter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusCompany - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessPerson - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Camera - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CanadianFootballLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CanadianFootballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CanadianFootballTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Canal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Canoeist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Canton - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cape - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Capital - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CapitalOfRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CardGame - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cardinal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CardinalDirection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CareerStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cartoon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Case - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Casino - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Castle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Caterer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cave - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Celebrity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CelestialBody - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cemetery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Chancellor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChartsPlacements - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cheese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Chef - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChemicalCompound - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChemicalElement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChemicalSubstance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChessPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChristianBishop - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChristianDoctrine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChristianPatriarch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Church - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :City - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CityDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassicalMusicArtist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassicalMusicComposition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cleric - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClericalAdministrativeRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClericalOrder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClubMoss - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Coach - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CoalPit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollectionOfValuables - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :College - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollegeCoach - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Colour - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Comedian - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComedyGroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Comic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicStrip - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicsCharacter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicsCreator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Community - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Company - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Competition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConcentrationCamp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Congressman - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Conifer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Constellation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Contest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Continent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ControlledDesignationOfOriginWine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Convention - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConveyorSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Country - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CountrySeat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Crater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Creek - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CricketGround - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CricketLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CricketTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cricketer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Criminal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CrossCountrySkier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Crustacean - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CultivatedVariety - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Curler - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CurlingLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Currency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cycad - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CyclingCompetition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CyclingLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CyclingRace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CyclingTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cyclist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DTMRacer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dancer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DartsPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Database - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Deanery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Death - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Decoration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Deity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Demographics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Department - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Depth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Deputy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Desert - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Device - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalCamera - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dike - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Diocese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Diploma - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Disease - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DisneyCharacter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :District - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DistrictWaterBoard - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Divorce - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Document - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DocumentType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dog - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Drama - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Drug - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Earthquake - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Economist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationalInstitution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Egyptologist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Election - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ElectionDiagram - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ElectricalSubstation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Embryology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Employer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmployersOrganisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Engine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Engineer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Entomologist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Enzyme - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Escalator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EthnicGroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Eukaryote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EurovisionSongContestEntry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Factory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Family - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Farmer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fashion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FashionDesigner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fencer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fern - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FictionalCharacter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fiefdom - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FieldHockeyLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FigureSkater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :File - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FillingStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Film - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FilmFestival - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fish - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Flag - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FloweringPlant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Food - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FootballLeagueSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FootballMatch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Forest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FormerMunicipality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FormulaOneRacer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FormulaOneRacing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FormulaOneTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fort - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fungus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GaelicGamesPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Galaxy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Game - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Garden - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GatedCommunity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gene - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeneLocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Genre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeologicalPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeopoliticalOrganisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ginkgo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GivenName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Glacier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Globularswarm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gnetophytes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GolfCourse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GolfLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GolfPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GolfTournament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentAgency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentCabinet - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentalAdministrativeRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Governor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GrandPrix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Grape - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GraveMonument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GreenAlga - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GridironFootballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GrossDomesticProduct - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GrossDomesticProductPerCapita - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Group - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Guitar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Guitarist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gymnast - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HandballLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HandballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HandballTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HighDiver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Historian - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HistoricBuilding - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HistoricPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HistoricalAreaOfAuthority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HistoricalCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HistoricalDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HistoricalPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HistoricalProvince - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HistoricalRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HistoricalSettlement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HockeyClub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HockeyTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Holiday - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HollywoodCartoon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hormone - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Horse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HorseRace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HorseRider - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HorseRiding - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HorseTrainer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hospital - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Host - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HotSpring - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hotel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HumanDevelopmentIndex - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HumanGene - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :HumanGeneLocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Humorist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :IceHockeyLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :IceHockeyPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ideology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Image - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :InformationAppliance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Infrastructure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :InlineHockeyLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Insect - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Instrument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Instrumentalist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Intercommunality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :InternationalFootballLeagueEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :InternationalOrganisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Island - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Jockey - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Journalist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Judge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LacrosseLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LacrossePlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lake - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Language - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LaunchPad - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Law - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LawFirm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lawyer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalCase - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Legislature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Letter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Library - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lieutenant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LifeCycleEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ligament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LightNovel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lighthouse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LineOfFashion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Linguist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lipid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :List - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LiteraryGenre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Locality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lock - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Locomotive - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LunarCrater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lymph - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Magazine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mammal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manga - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manhua - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manhwa - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Marriage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MartialArtist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MathematicalConcept - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mayor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MeanOfTransportation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Media - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Medician - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Medicine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Meeting - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MemberOfParliament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MemberResistanceMovement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Memorial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MetroStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MicroRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MilitaryAircraft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MilitaryConflict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MilitaryPerson - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MilitaryStructure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MilitaryUnit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MilitaryVehicle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mill - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mineral - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MixedMartialArtsEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MixedMartialArtsLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MobilePhone - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Model - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mollusca - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Monarch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Monastery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Monument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mosque - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Moss - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotocycleRacer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorRace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Motorcycle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorcycleRacingLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorcycleRider - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorsportRacer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorsportSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mountain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MountainPass - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MountainRange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MouseGene - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MouseGeneLocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieDirector - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieGenre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovingImage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovingWalkway - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MultiVolumePublication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Municipality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Murderer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Muscle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Museum - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicComposer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicDirector - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicFestival - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicGenre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Musical - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicalArtist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicalWork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MythologicalFigure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NCAATeamSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Name - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NarutoCharacter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NascarDriver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NationalAnthem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NationalCollegiateAthleticAssociationAthlete - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NationalFootballLeagueEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NationalFootballLeagueSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NationalSoccerClub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NaturalEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NaturalPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NaturalRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Nerve - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NetballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Newspaper - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NobelPrize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Noble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NobleFamily - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NordicCombined - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Novel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NuclearPowerStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ocean - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfficeHolder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :OldTerritory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :OlympicEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :OlympicResult - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Olympics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Openswarm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Opera - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organ - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganisationMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Orphan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :OverseasDepartment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaintballLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Painter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Painting - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Parish - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Park - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Parliament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PenaltyShootOut - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PeriodOfArtisticStyle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PeriodicalLiterature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PersonFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PersonalEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Philosopher - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhilosophicalConcept - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Photographer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Place - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Planet - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Plant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Play - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlayWright - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlayboyPlaymate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Poem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Poet - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PokerPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PoliticalConcept - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PoliticalFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PoliticalParty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Politician - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PoliticianSpouse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PoloLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Polyhedron - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Polysaccharide - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pope - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PopulatedPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Population - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Port - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PowerStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Prefecture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrehistoricalPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Presenter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :President - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Priest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrimeMinister - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Prison - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Producer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Profession - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Professor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProgrammingLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Project - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProtectedArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Protein - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProtohistoricalPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Province - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Psychologist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicService - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicTransitSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Publisher - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pyramid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Quote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Race - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RaceHorse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RaceTrack - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Racecourse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RacingDriver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioControlledRacingLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioHost - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioProgram - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RailwayLine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RailwayStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RailwayTunnel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RallyDriver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ratio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rebellion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecordLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecordOffice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Referee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Reference - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Regency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Region - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Relationship - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Religious - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReligiousBuilding - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReligiousOrganisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Reptile - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResearchProject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RestArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Restaurant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resume - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :River - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Road - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RoadJunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RoadTunnel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rocket - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RocketEngine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RollerCoaster - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RomanEmperor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RouteOfTransportation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RouteStop - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rower - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Royalty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RugbyClub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RugbyLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RugbyPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Saint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sales - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SambaSchool - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Satellite - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :School - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScientificConcept - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Scientist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScreenWriter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sculptor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sculpture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Senator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SerialKiller - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Settlement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ship - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShoppingMall - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Shrine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Singer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Single - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SiteOfSpecialScientificInterest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Skater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SkiArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SkiResort - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ski_jumper - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Skier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Skyscraper - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SnookerChamp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SnookerPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SnookerWorldRanking - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoapCharacter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Soccer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoccerClub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoccerClubSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoccerLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoccerLeagueSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoccerManager - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoccerPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoccerTournament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SocietalEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoftballLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Software - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SolarEclipse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Song - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SongWriter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sound - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpaceMission - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpaceShuttle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpaceStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Spacecraft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Species - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpeedSkater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpeedwayLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpeedwayRider - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpeedwayTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportCompetitionResult - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportFacility - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsClub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsManager - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsTeamMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsTeamSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Square - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SquashPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Stadium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Standard - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Star - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :State - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :StatedResolution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Station - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Statistic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :StillImage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :StormSurge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Stream - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Street - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SubMunicipality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SumoWrestler - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SupremeCourtOfTheUnitedStatesCase - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Surfer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Surname - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Swarm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Swimmer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Synagogue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SystemOfLaw - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TableTennisPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tax - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Taxon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TeamMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TeamSport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionDirector - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionEpisode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionHost - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionPersonality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionShow - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Temple - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TennisLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TennisPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TennisTournament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TermOfOffice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Territory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Theatre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TheatreDirector - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TheologicalConcept - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimePeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TopicalConcept - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tournament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tower - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Town - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrackList - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TradeUnion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Train - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrainCarriage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tram - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TramStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Treadmill - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Treaty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tunnel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Type - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :UndergroundJournal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :UnitOfWork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :University - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Unknown - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Valley - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vein - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Venue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vicar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VicePresident - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VicePrimeMinister - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoGame - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideogamesLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Village - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vodka - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VoiceActor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Volcano - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VolleyballCoach - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VolleyballLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :VolleyballPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WaterPoloPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WaterRide - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WaterTower - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Watermill - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WaterwayTunnel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Weapon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Website - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WindMotor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Windmill - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Wine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WineRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Winery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WinterSportPlayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WomensTennisAssociationTournament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Work - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WorldHeritageSite - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Wrestler - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WrestlingEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Writer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WrittenWork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Year - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :YearInSpaceflight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Zoo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aSide - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :abbeychurchBlessing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :abbeychurchBlessingCharge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :abbreviation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ableToGrind - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :absoluteMagnitude - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :abstentions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :abstract - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :academicAdvisor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :academicDiscipline - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :academyAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceleration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :access - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :achievement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquirementDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :actScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :actingHeadteacher - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeYears - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeYearsEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeYearsEndDateMgr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeYearsEndYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeYearsEndYearMgr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeYearsStartDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeYearsStartDateMgr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeYearsStartYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeYearsStartYearMgr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :added - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :address - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressInRoad - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :adjacentSettlement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :administrativeCenter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :administrativeCollectivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :administrativeDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :administrativeHeadCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :administrativeStatus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :administrator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :afdbId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :affair - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :afiAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :age - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ageRange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agencyStationCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agglomeration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agglomerationArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agglomerationDemographics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agglomerationPopulation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agglomerationPopulationTotal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agglomerationPopulationYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aggregation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :airDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftAttack - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftBomber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftElectronic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftFighter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftHelicopter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftHelicopterAttack - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftHelicopterCargo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftHelicopterMultirole - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftHelicopterObservation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftHelicopterTransport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftHelicopterUtility - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftInterceptor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftPatrol - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftRecon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftTrainer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftTransport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraftUser - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :airportUsing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aitaCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :albedo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :album - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :albumRuntime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alias - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :allcinemaId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :allegiance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alliance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :almaMater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alongside - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alpsGroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alpsMainPart - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alpsMajorSector - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alpsSection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alpsSoiusaCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alpsSubgroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alpsSubsection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alpsSupergroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternativeName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternativeTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :altitude - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alumni - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amateurDefeat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amateurFight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amateurKo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amateurNoContest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amateurTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amateurTie - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amateurTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amateurVictory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amateurYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :americanComedyAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amgid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amsterdamCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :analogChannel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :animal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :animator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :anniversary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :announcedFrom - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :annualTemperature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :anthem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :apcPresident - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :apoapsis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :apofocus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :apparentMagnitude - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :appearancesInLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :appearancesInNationalTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :appointer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :approach - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :approvedByLowerParliament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :approvedByUpperParliament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :approximateCalories - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :apskritis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :archipelago - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :architect - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :architectualBureau - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :architecturalMovement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :architecturalStyle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :area - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaLand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaMetro - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaOfCatchment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaOfCatchmentQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaOfSearch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaRural - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaTotal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaTotalRanking - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaUrban - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaWater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :argueDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :arielAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :arm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :army - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrestDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrondissement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :artPatron - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :artery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :artificialSnowArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :artist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :artisticFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :asWikiText - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ascent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :asiaChampionship - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aspectRatio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :assembly - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :assetUnderManagement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :assets - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :assistantPrincipal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :associate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :associateEditor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :associateStar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedAct - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedBand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedMusicalArtist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedRocket - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :associationOfLocalGovernment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :astrologicalSign - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :atPage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :atRowNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :atcPrefix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :atcSuffix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :atcSupplemental - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :athletics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :athleticsDiscipline - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :atomicNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :attorneyGeneral - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :australiaOpenDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :australiaOpenMixed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :australiaOpenSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :author - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :authority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :authorityMandate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :authorityTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :automobileModel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :automobilePlatform - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :autonomy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableSmartCard - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :average - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :averageAnnualGeneration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :averageClassSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :averageDepth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :averageDepthQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :averageSpeed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :avifaunaPopulation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :award - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :awayColourHexCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bSide - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :background - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :backhand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :badGuy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :baftaAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :band - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bandMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :barPassRate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :barangays - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :basedOn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :battingSide - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :battle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :battleHonours - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :beatifiedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :beatifiedDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :beatifiedPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bedCount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :believers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :beltwayCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bestFinish - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bestLap - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bestRankDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bestRankSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bestWsopRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bestYearWsop - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bgafdId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bibsysId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bicycleInformation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bigPoolRecord - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :biggestCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :billed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :binomial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :binomialAuthority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bioavailability - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bioclimate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :biome - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bird - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthSign - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bishopric - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blackLongDistancePisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blackSkiPisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blazon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blazonCaption - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blazonLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blazonRatio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :block - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blockAlloy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bloodGroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bloodType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blueLongDistancePisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blueSkiPisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bnfId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :board - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bodyDiscovered - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bodyStyle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :boiler - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :boilerPressure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :boilingPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :book - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :booster - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :border - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :borough - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bourgmestre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bowlRecord - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :boxerCategory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :boxerStyle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bpnId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :brainInfoNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :brainInfoType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :branchFrom - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :branchTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :brand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :breeder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bridgeCarries - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :britishComedyAwards - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :britishOpen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :britishWins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastNetwork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastRepeater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastStationClass - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastTranslator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bronzeMedalDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bronzeMedalMixed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bronzeMedalSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bronzeMedalist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :budget - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :budgetYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :builder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :building - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :buildingEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :buildingEndYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :buildingStartDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :buildingStartYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :buildingType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bustSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bustWaistHipSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cableCar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :calculationNeeds - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :callSign - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :callsignMeaning - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :campus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :campusSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :campusType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :canBaggageChecked - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cannonNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :canonizedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :canonizedDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :canonizedPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :canton - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capacity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capacityFactor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capital - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capitalCoordinates - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capitalCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capitalDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capitalElevation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capitalMountain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capitalPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capitalPosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :capitalRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :captureDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :carNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :carbohydrate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :carcinogen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :careerPoints - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :careerPrizeMoney - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :careerStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cargoFuel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cargoGas - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cargoWater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :casNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :casSupplemental - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :case - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :casualties - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :catch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :category - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :caterer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :catholicPercentage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :causalties - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :causeOfDeath - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :causedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ccaState - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ceeb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ceiling - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cemetery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :censusYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :center - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :centuryBreaks - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ceo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ceremonialCounty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :certification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :certificationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cesarAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chEBI - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chairLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chairman - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chairmanTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chairperson - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :champion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :championInDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :championInDoubleFemale - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :championInDoubleMale - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :championInMixedDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :championInSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :championInSingleFemale - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :championInSingleMale - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :championships - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chancellor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :channel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chaplain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterInPlay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chef - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chiefEditor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chiefPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :child - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :childOrganisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :choreographer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chorusCharacterInPlay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :christeningDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chromosome - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cinematography - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :circle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :circuitLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :circuitName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :circulation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :circumcised - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cites - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :citizenship - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :city - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cityLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cityRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :citySince - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cityType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :class - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :classes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :classification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :classis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :climate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :climbUpNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :closeTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :closed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :closingDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :closingFilm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :closingYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clothSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clothingSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :club - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clubsRecordGoalscorer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cluster - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cmpEvaDuration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cmykCoordinateBlack - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cmykCoordinateCyanic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cmykCoordinateMagenta - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cmykCoordinateYellow - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :co2Emission - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coExecutiveProducer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coProducer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coach - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coachClub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coachSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coachedTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coachingRecord - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coalition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coastLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coastLine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coatOfArms - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :code - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeBook - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeIndex - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeLandRegistry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeListOfHonour - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeMemorial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeMunicipalMonument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeNationalMonument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeProvincialMonument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeSettlement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeStockExchange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coden - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coemperor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :collaboration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :colleague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :collection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :collectionSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :collectivityMinority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :college - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :collegeHof - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :colonialName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :colorChart - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :colour - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :colourHexCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :colourName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :combatant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :comic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :comitat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :command - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :commandModule - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :commandStructure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :commandant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :commander - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :comment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :commissioner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :commissionerDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :commissioningDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :committee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :committeeInLegislature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :commonName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :commune - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :communityIsoCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :company - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :comparable - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :competition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :competitionTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :compiler - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :completionDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :complexion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :complexity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :component - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :composer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :compressionRatio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :computingInput - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :computingMedia - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :computingPlatform - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :configuration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :conflict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :congressionalDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :connectsReferencedTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :connotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :consecration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :conservationStatus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :conservationStatusSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :constellation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :construction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :constructionMaterial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :contest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :continent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :continentRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :continentalTournament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :continentalTournamentBronze - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :continentalTournamentGold - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :continentalTournamentSilver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :contractAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :contractor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :convictionDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coolingSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :copilote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coronationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cosparId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cost - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :costumeDesigner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :council - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :councilArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :country - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryOrigin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryWithFirstAstronaut - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryWithFirstSatellite - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryWithFirstSatelliteLaunched - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryWithFirstSpaceflight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :county - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :countySeat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :course - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cousurper - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coverArtist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cpu - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :created - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :creationChristianBishop - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :creationYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :creativeDirector - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :creator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :creatorOfDish - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :credit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crew - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crewMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crewSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crews - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :criteria - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crosses - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crownDependency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cuisine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cultivatedVariety - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :curator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currencyCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentPartner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentProduction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentRecord - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentStatus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentTeamManager - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentTeamMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentWorldChampion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentlyUsedFor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :custodian - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cyclistGenre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cylinderBore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cylinderCount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :daira - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :damage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :damsire - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :danseCompetition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :danseScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :date - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateAct - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateAgreement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateBudget - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateClosed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCompleted - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateConstruction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateExtended - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateLastUpdated - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateOfAbandonment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateOfBurial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateUnveiled - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateUse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :davisCup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :day - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :daylightSavingTimeZone - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dbnlCodeDutch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dcc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deFactoLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deadInFightDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deadInFightPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dean - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deanery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathAge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathCause - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :debut - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :debutTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :debutWork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dec - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :decay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :decideDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :declination - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :decommissioningDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :decoration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :defeat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :defeatAsMgr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :definition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :delegateMayor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :delegation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deliveryDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deme - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :demographics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :demographicsAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :demolitionDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :demolitionYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :demonym - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :denomination - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :density - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :department - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :departmentCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :departmentPosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :depictionDescription - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :depth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :depthQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :depths - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :deputy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivative - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivedWord - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :designCompany - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :designer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :destination - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :destructionDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :detectionMethod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :detractor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :developer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dfE - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :diameter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :different - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :digitalChannel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :digitalSubChannel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :diocese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :diploma - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :director - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :disappearanceDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :disbanded - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :discharge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dischargeAverage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :disciple - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :discipline - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :discontinued - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :discovered - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :discoverer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :discovery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :diseasesDb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :displacement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dissolutionDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dissolutionYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dissolved - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dist_ly - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dist_pc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceLaps - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceToBelfast - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceToCapital - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceToCardiff - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceToCharingCross - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceToDouglas - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceToDublin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceToEdinburgh - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceToLondon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceToNearestCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distanceTraveled - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distributingCompany - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distributingLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :distributor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :district - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :division - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dockedTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :doctoralAdvisor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :doctoralStudent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :documentDesignation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :documentNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :domain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dorlandsPrefix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dorlandsSuffix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :draft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :draftLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :draftPick - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :draftPosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :draftRound - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :draftTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :draftYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :drainsFrom - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :drainsTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :drama - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dressCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :drugbank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dryCargo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dubber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutchArtworkCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutchCOROPCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutchMIPCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutchNAIdentifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutchPPNCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutchRKDCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutchWinkelID - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dynasty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eMedicineSubject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eMedicineTopic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eTeatrId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eastPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ecNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :editing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :editor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :education - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :effectiveRadiatedPower - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :egafdId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :einecsNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ekatteCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :electionDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :electionDateLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :electionMajority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elementAbove - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elementBlock - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elementGroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elementPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elevation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elevationQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elevatorCount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eloRecord - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :emblem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :emmyAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :employer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :employersCelebration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endCareer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endDateTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endOccupation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endReign - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endYearOfInsertion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endYearOfSales - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endangeredSince - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endingTheme - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endowment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :enemy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :engine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :enginePower - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :engineType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :engineer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ensembl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :enshrinedDeity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :entourage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :entrezgene - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eparchy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :episode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :episodeNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :epoch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eptFinalTable - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eptItm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eptTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :equipment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :equity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :era - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eruption - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eruptionYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :escalafon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :escapeVelocity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :espnId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :established - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :establishment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ethnicGroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ethnicGroupsInYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ethnicity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eurobabeIndexId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :europeanAffiliation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :europeanChampionship - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :europeanParliamentGroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :europeanUnionEntranceDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :event - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventDescription - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :executiveHeadteacher - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :executiveProducer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :exhibition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :existence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :expedition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :explorer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :externalOrnament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :extinctionDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :extinctionYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eyeColor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eyeColour - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eyes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :faaLocationIdentifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :facilityId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :facultySize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :failedLaunches - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :family - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :familyMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fansgroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fareZone - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fastestDriver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fastestDriverCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fastestDriverTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fastestLap - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :father - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fauna - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fcRuns - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fdaUniiCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :feastDay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :feat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :feature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :features - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fedCup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :federalState - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :federation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fees - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fibahof - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :field - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fighter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileExtension - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileURL - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :filename - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fillingStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :film - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :filmAudioType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :filmColourType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :filmFareAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :filmNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :filmPolskiId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :filmRuntime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :filmVersion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :finalFlight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :finalLost - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :finalLostDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :finalLostSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :finalLostTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :finalPublicationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :finalPublicationYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fipsCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstAirDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstAppearance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstAscent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstAscentPerson - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstAscentYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstBroadcast - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstDriver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstDriverCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstDriverTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstFlight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstFlightEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstFlightStartDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstGame - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstLaunch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstLaunchDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstLaunchRocket - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstMention - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstOlympicEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstOwner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstPopularVote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstProMatch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstPublicationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstPublicationYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstPublisher - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstRace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstWin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstWinner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flag - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flagBearer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flagBorder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flagCaption - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flagLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flagSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flashPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :floodingDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :floorArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :floorCount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flora - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flower - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flyingHours - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :foalDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :followedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :followingEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :follows - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :foot - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :footedness - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :forces - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :foresterDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :format - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formationYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerBandMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerBroadcastNetwork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerCallsign - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerChannel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerChoreographer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerCoach - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerHighschool - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerPartner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formerTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :formula - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fossil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :foundation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :foundationPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :foundedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :founder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :foundingDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :foundingYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fourthCommander - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frazioni - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :free - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :freeDanseScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :freeFlightTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :freeLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :freeProgCompetition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :freeProgScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :freeScoreCompetition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frequency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frequencyOfPublication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frequentlyUpdated - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :friend - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frontierLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frozen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelCapacity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelConsumption - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelTypeName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fullCompetition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fullScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :functionEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :functionEndYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :functionStartDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :functionStartYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fundedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :galicianSpeakersDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :galicianSpeakersPercentage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :galleryItem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameArtist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameEngine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameModus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :games - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :garrison - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gasChambers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gaudiAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geminiAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gender - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geneLocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geneLocationEnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geneLocationStart - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geneReviewsId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geneReviewsName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generalCouncil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generalManager - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generationUnits - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :genomeDB - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :genre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :genus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geolocDepartment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geolocDual - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geologicPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :giniCoefficient - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :giniCoefficientAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :giniCoefficientCategory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :giniCoefficientRanking - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :glycemicIndex - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gnisCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gnl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goalsInLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goalsInNationalTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goldMedalDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goldMedalMixed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goldMedalSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goldMedalist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goldenCalfAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goldenGlobeAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goldenRaspberryAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governingBody - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :government - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governmentCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governmentElevation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governmentMountain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governmentPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governmentPosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governmentRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governmentType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governorGeneral - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :governorate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :goyaAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grades - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grammyAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grandsire - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grave - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grayPage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :graySubject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :greekName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :greenLongDistancePisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :greenSkiPisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gridReference - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grindingCapability - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gross - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grossDomesticProduct - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grossDomesticProductAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grossDomesticProductNominalPerCapita - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grossDomesticProductPerPeople - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grossDomesticProductPurchasingPowerParityPerCapita - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :grossDomesticProductRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ground - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :groundsForLiquidation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :groupCommemorated - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :growingGrape - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :guest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gun - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gymApparatus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hairColor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hairColour - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hairs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hallOfFame - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :handedness - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :handisport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAbsorbedMunicipality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnnotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasChannel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInput - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInsidePlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasJunctionWith - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasKMLData - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNaturalBust - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOutsidePlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSurfaceForm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVariant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :head - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :headAlloy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :headChef - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :headLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :headOfFamily - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :headquarter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :headteacher - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :height - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :heightAboveAverageTerrain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :heightAgainst - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :heightAttack - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :heir - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :heisman - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :heritageRegister - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hgncid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestBreak - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestBuildingInYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestMountain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestPointIsland - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestPosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestState - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highschool - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highwaySystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hipSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :historicalMap - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :historicalName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :historicalRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hof - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :homage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :homeArena - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :homeColourHexCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :homeStadium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :homeport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hometown - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :honours - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hopmanCup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :horseRidingDiscipline - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :house - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hraState - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hsvCoordinateHue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hsvCoordinateSaturation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hsvCoordinateValue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hubAirport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :humanDevelopmentIndex - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :humanDevelopmentIndexAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :humanDevelopmentIndexRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :humanDevelopmentIndexRankingCategory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hybrid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iafdId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iataAirlineCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iataLocationIdentifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ibdbId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :icaoAirlineCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :icaoLocationIdentifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :icd1 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :icd10 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :icd9 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :icdo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iconographicAttributes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :id - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :idAllocine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :idNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :identificationSymbol - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ideology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iftaAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iihfHof - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :illiteracy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :illustrator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :imageSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :imdbId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :impactFactor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :impactFactorAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :imposedDanseCompetition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :imposedDanseScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inCemetery - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inchi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inclination - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :income - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :incumbent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :individualisedGnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :individualisedPnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :industry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :infantMortality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inflow - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :influenced - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :influencedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :information - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :informationName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredient - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredientName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :initiallyUsedFor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :innervates - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inscription - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inseeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :installedCapacity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :institution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrument - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :intercommunality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :interest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :internationalAffiliation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :internationalPhonePrefix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :internationalPhonePrefixLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :internationally - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :introduced - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :introductionDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iobdbId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isCityState - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isHandicappedAccessible - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPartOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPartOfAnatomicalStructure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPartOfMilitaryConflict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPartOfName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPartOfWineRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPeerReviewed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRouteStop - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isbn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :island - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isniId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iso31661Code - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iso6391Code - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iso6392Code - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iso6393Code - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isoCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isoCodeRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :issDockings - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :issn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :istat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ithfDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iucnCategory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iupacName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :jockey - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :jointCommunity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :jstor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :judge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :juniorSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :juniorTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :juniorYearsEndYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :juniorYearsStartYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :jureLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :jurisdiction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :jutsu - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :keyPerson - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :khlDraft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :khlDraftTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :khlDraftYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :killedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :kinOfLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :kindOfCoordinate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :kindOfCriminal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :kindOfCriminalAction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :kindOfRock - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :kingdom - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :knownFor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ko - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lahHof - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lake - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :land - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landPercentage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landRegistryCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landeshauptmann - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landingDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landingSite - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landingVehicle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landskap - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landtag - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landtagMandate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :languageCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :languageFamily - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :languageRegulator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :largestCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :largestMetro - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :largestSettlement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :largestWin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastAirDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastAppearance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastElectionDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastFamilyMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastFlight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastFlightEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastFlightStartDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastLaunch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastLaunchDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastLaunchRocket - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastPosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastProMatch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastPublicationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastRace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastWin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :laterality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestElection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestPreviewDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestPreviewVersion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestReleaseDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestReleaseVersion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :latinName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :launch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :launchDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :launchPad - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :launchSite - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :launchVehicle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :launches - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :laurenceOlivierAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lawCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :layingDown - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :layout - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lcc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lccn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lccnId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lchfDraft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lchfDraftTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lchfDraftYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leadTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leadYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leaderFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leaderName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leaderParty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leaderTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leadership - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :league - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leagueManager - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leftChild - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :leftTributary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalArrondissement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalArticle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalForm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislativePeriodName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :length - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lengthQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lengthReference - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lethalOnChickens - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lethalOnMice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lethalOnRabbits - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lethalOnRats - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :liberationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :libretto - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :licenceLetter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :licenceNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :licenceNumberLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :license - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :licensee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lieutenancy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lieutenancyArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lieutenant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lifeExpectancy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :limit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lineLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :linguisticsTradition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :linkedSpace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :linkedTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :listItemOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :literaryGenre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :littlePoolRecord - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :livingPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :loadLimit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :localAuthority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :localPhonePrefix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :localization - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :localizationThumbnail - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :localizationThumbnailCaption - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locatedInArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :location - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationIdentifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locomotive - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locusSupplementaryData - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :logo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :longDistancePisteKilometre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :longDistancePisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :longName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :longtype - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lounge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowerAge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowerEarthOrbitPayload - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowestMountain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowestPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowestPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowestPosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowestRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowestState - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lunarEvaTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lunarLandingSite - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lunarModule - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lunarOrbitTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lunarRover - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lunarSampleMass - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lunarSurfaceTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lymph - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lyrics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :magazine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maidenFlight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maidenFlightRocket - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maidenVoyage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainBuilding - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainCharacter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainDomain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainFamilyBranch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainInterest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainIsland - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainIslands - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainOrgan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainspan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maintainedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :majorIsland - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :majorShrine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :majorityFloorLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :majorityLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :makeupArtist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :management - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managementCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managementElevation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managementMountain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managementPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managementPosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managementRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :manager - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managerClub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managerSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managerTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managerYears - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managerYearsEndYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managerYearsStartYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :managingEditor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mandate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :manufacturer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :map - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mapCaption - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mapDescription - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :march - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :marketCapitalisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mascot - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mass - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :massif - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mastersWins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :matchPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :material - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :max - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxAbsoluteMagnitude - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxApparentMagnitude - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumAreaQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumBoatBeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumBoatLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumDepth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumDepthQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumDischarge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumElevation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumInclination - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumTemperature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mayor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mayorArticle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mayorCouncillor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mayorFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mayorMandate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mayorTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mbaId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meanRadius - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meanTemperature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meaning - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurements - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :medalist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :media - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaItem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :medlinePlus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meetingBuilding - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meetingCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meetingRoad - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meltingPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :memberOfParliament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :membership - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :membershipAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mentor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mergedIntoParty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mergedSettlement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mergerDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meshId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meshName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :meshNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :messierName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :metropolitanBorough - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mgiid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :militaryBranch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :militaryCommand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :militaryFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :militaryGovernment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :militaryRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :militaryUnit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :militaryUnitSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :millSpan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :millType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :millsCodeBE - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :millsCodeDutch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :millsCodeNL - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :millsCodeNLVerdwenen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :millsCodeNLWindmotoren - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :min - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumAreaQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumDischarge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumElevation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumInclination - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumTemperature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minorityFloorLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :minorityLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mirDockings - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mission - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :missionDuration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :missions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :model - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :modelEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :modelEndYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :modelLineVehicle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :modelStartDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :modelStartYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :molecularWeight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :monarch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :month - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mood - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mostDownPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mostWins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mother - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :motto - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mountainRange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mouthCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mouthDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mouthElevation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mouthMountain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mouthPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mouthPosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mouthRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mouthState - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :movement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :movie - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mukhtar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :municipality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :municipalityAbsorbedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :municipalityCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :municipalityRenamedTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :municipalityType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :museum - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :museumType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicBand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicComposer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicFusionGenre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicSubgenre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicalArtist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicalBand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicalKey - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicians - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :muteCharacterInPlay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mvp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mythology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :naacpImageAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameDay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInCantoneseChinese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInHangulKorean - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInHanjaKorean - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInJapanese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInMindongyuChinese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInMinnanyuChinese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInPinyinChinese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInSimplifiedChinese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInTraditionalChinese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameInWadeGilesChinese - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :namedAfter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :namedByLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :names - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :narrator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalAffiliation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalChampionship - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalFilmAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalOlympicCommittee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalRanking - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalSelection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalTeamMatchPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalTeamYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalTopographicSystemMapNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalTournament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalTournamentBronze - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalTournamentGold - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalTournamentSilver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationalYears - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ncaaSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ncaaTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ncbhof - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ndlId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nearestCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :neighboringMunicipality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :neighbourConstellations - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :neighbourRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :neighbourhood - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nerve - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :netIncome - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :network - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :networth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :newspaper - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nextEntity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nextEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nextMission - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nflCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nflSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nflTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ngcName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nisCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nlaId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nndbId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :noContest - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nobelLaureates - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nominee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nonFictionSubject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nonProfessionalCareer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :northEastPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :northPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :northWestPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notSolubleIn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notableCommander - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notableFeatures - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notableIdea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notableStudent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notableWine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notableWork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :note - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :noteOnPlaceOfBurial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :noteOnRestingPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notifyDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :novel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nrhpReferenceNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nrhpType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nssdcId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :number - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberBuilt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAcademicStaff - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAlbums - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfArrondissement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfBombs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfBronzeMedalsWon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCanton - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCantons - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCapitalDeputies - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfClassrooms - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfClubs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCollectionItems - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCompetitors - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCounties - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCountries - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCrew - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfDeaths - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfDependency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfDistricts - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfDoctoralStudents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfEmployees - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfEntrances - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfEpisodes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfFederalDeputies - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfFilms - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfGoals - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfGoldMedalsWon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfGraduateStudents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfGraves - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfHoles - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfHouses - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfIntercommunality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfIsland - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfIslands - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLanes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLaps - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLaunches - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLawyers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLines - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLiveAlbums - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLocations - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfMatches - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfMembers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfMembersAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfMinistries - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfMunicipalities - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfNeighbourhood - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfNewlyIntroducedSports - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfOffices - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfOfficials - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfOrbits - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPads - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPages - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfParkingSpaces - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfParticipatingAthletes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfParticipatingFemaleAthletes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfParticipatingMaleAthletes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfParticipatingNations - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPeopleAttending - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPeopleLicensed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPiersInWater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPixels - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPlatformLevels - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPlayers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPostgraduateStudents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfProfessionals - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfReactors - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfRestaurants - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfRockets - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfRooms - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfRun - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSeasons - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSeats - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSeatsInParliament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSettlement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSilverMedalsWon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSpans - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSpeakers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSports - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSportsEvents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfStaff - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfStars - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfStateDeputies - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfStations - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfStudents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfStudioAlbums - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSuites - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfTeams - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfTracks - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfTurns - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfUndergraduateStudents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfVehicles - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfVillages - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfVineyards - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfVisitors - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfVisitorsAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfVolumes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfVolunteers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfWineries - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberSold - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutsCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :observatory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oclc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :offeredClasses - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :office - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :officerInCharge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :officialLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :officialName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :officialOpenedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :officialSchoolColour - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ofsCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oilSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :okatoCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oldDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oldName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oldProvince - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oldTeamCoached - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oldcode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :olivierAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :olympicGames - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :olympicGamesBronze - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :olympicGamesGold - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :olympicGamesSilver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :olympicGamesWins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :olympicOathSwornBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :olympicOathSwornByAthlete - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :olympicOathSwornByJudge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :omim - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :onChromosome - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ons - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :openAccessContent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :openingDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :openingFilm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :openingTheme - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :openingYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :operatingIncome - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :operatingSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :operator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :opponent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :opponents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orbitalEccentricity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orbitalFlights - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orbitalInclination - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orbitalPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orbits - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orcidId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :order - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderInOffice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ordination - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :organ - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :organSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :organisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :organisationMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orientation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :origin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalDanseCompetition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalDanseScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalEndPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalMaximumBoatBeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalMaximumBoatLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalStartPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :originallyUsedFor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :origo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orogeny - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orthologousGene - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :other - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherActivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherAppearances - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherChannel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherFamilyBranch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherFuelType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherInformation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherMedia - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherOccupation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherParty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherServingLines - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherSportsExperience - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherWins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :outflow - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :output - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :outskirts - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :overallRecord - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oversight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :owner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :owningCompany - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :owningOrganisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :owns - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :painter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentCompany - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentMountainPeak - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentOrganisation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parish - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parkingInformation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parkingLotsCars - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parkingLotsTrucks - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parliament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parliamentType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parliamentaryGroup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :part - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :partialFailedLaunches - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :participant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :participatingIn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :particularSign - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :partner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :party - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :partyNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :passengersPerDay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :passengersPerYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :passengersUsedSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pastMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pastor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :patent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :patron - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :patronSaint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pccSecretary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pdb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :peabodyAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :penaltiesTeamA - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :penaltiesTeamB - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :penaltyScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :penisLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :peopleName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :perCapitaIncome - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :perCapitaIncomeAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :perCapitaIncomeRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentageAlcohol - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentageFat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentageLiteracyMen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentageLiteracyWomen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentageLiterate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentageOfAreaWater - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :performer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :periapsis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :perifocus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :perimeter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :period - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :person - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :personFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :personName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pgaWins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :philosophicalSchool - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :phonePrefix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :phonePrefixLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :photographer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :phylum - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :picture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pictureDescription - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pictureFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :picturesCommonsCategory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :piercing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pisciculturalPopulation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pistonStroke - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :place - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :placeOfBurial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :placeOfWorship - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :plant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :playRole - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :playerInTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :playerSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :playerStatus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :playingTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :plays - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pluviometry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :podium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :podiums - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pole - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :poleDriver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :poleDriverCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :poleDriverTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :polePosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :poles - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :policeName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :polishFilmAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :politicGovernmentDepartment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :politicalFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :politicalLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :politicalMajority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :politicalPartyInLegislature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :politicalPartyOfLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :politicalSeats - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :popularVote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :population - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationDensity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationMetro - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationMetroDensity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationPctChildren - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationPctMen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationPctWomen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationRural - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationRuralDensity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationTotal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationTotalRanking - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationTotalReference - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationUrban - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationUrbanDensity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :portfolio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :portrayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :position - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :postalCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :power - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :powerOutput - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :powerType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :precursor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :predecessor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefaceBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefect - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefectMandate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefecture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :premiereDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :premierePlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :premiereYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :presentMunicipality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :presentName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :presenter - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :president - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :presidentGeneralCouncil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :presidentGeneralCouncilMandate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :presidentRegionalCouncil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :presidentRegionalCouncilMandate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousDemographics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousEditor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousEntity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousInfrastructure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousMission - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousPopulation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousPopulationTotal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousWork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :price - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :primaryFuelType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :primate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :primeMinister - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :primogenitor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :principal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :principalArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :principalEngineer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :proPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :proSince - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :proTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :proYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :probowlPick - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :procedure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :producedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :producer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :produces - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :product - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productShape - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :production - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionCompany - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionEndYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionStartDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionStartYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionYears - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :profession - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :programCost - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :programmeFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :programmingLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :project - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectBudgetFunding - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectBudgetTotal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectCoordinator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectKeyword - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectObjective - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectParticipant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectReferenceID - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectStartDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :projectType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prominence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :promotion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pronunciation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prospectLeague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prospectTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :protectionStatus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :protein - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :protestantPercentage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provides - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :province - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provinceIsoCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provinceLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provost - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pseudonym - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pubchem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :publication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :publiclyAccessible - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :publisher - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :purchasingPowerParity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :purchasingPowerParityRank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :purchasingPowerParityYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :purpose - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qatarClassic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :quebecerTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :quotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :quote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ra - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :race - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :raceHorse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :raceLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :raceResult - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :raceTrack - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :raceWins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :races - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :racketCatching - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :radio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :radioStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :radius_ly - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :railGauge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :railwayLineUsingTunnel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :railwayPlatforms - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :railwayRollingStock - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :range - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rank - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rankAgreement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rankArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rankInFinalMedalCount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rankPopulation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ranking - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rankingWins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rankingsDoubles - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rankingsSingles - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rating - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratio - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rebuildDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rebuilder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rebuildingDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rebuildingYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :recentWinner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :recommissioningDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordedIn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rector - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :redListIdNL - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :redLongDistancePisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :redSkiPisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :redline - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :refcul - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reference - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reffBourgmestre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :refgen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :refgeo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :refpol - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :refseq - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :refseqmrna - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :refseqprotein - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :regency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :regentOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :regime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :region - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionServed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionalCouncil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionalLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionalPrefecture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :registration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :registryNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reign - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reignName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reigningPope - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :related - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedFunctions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedMeanOfTransportation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedPlaces - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relative - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relativeAtomicMass - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseLocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relief - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :religion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :religiousHead - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :religiousHeadLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :religiousOrder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reopened - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reopeningDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reopeningYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reportingMark - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :representative - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :requirement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reservations - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :residence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :resolution - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :restingDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :restingPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :restingPlacePosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :restoreDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :result - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :retentionTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :retired - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :retiredRocket - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :retirementDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :revenue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :review - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rgbCoordinateBlue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rgbCoordinateGreen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rgbCoordinateRed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ridId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightAscension - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightChild - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightTributary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rival - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :river - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :riverBranch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :riverBranchOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :riverMouth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rkdArtistsId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :road - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rocket - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rocketFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rocketStages - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rolandGarrosDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rolandGarrosMixed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rolandGarrosSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :roleInEvent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :roofHeight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rotationPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :route - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeActivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeDirection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeEnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeEndDirection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeEndLocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeJunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeLine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeNext - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routePrevious - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeStart - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeStartDirection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeStartLocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :routeTypeAbbreviation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :royalAnthem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ruling - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :runningMate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :runtime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :runwayDesignation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :runwayLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :runwaySurface - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :runwayWidth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ruralMunicipality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :saint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :salary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sales - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sameName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :satScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :satellite - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :satellitesDeployed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scale - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scene - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :school - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :schoolBoard - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :schoolCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :schoolNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :schoolPatron - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scientificName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :score - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :screenActorsGuildAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :season - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasonManager - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasonNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatingCapacity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :second - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :secondCommander - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :secondDriver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :secondDriverCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :secondLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :secondPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :secondPopularVote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :secondTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :secretaryGeneral - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :security - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seiyu - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :selection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :selectionPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :selectionYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :selibrId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :senator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :senior - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seniority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seniunija - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sentence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :series - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :service - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceEndYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceModule - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceStartDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceStartYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingRailwayLine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingTemperature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sessionNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :setDesigner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :settingOfPlay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :settlement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :settlementAttached - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :setupTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sex - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sexualOrientation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shape - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shareDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shareOfAudience - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shareSource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sharingOutPopulation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sharingOutPopulationYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sheading - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shipBeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shipCrew - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shipDisplacement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shipDraft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shipLaunch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shoeNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shoeSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shoot - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shoots - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shoreLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shortProgCompetition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shortProgScore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :show - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :showJudge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shuttle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sibling - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :signName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :signature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :significantBuilding - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :significantDesign - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :significantProject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :silCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :silverMedalDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :silverMedalMixed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :silverMedalSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :silverMedalist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :simcCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :similar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sire - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :siren - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sisterCollege - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sisterNewspaper - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sisterStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sixthFormStudents - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeBlazon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeLogo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeMap - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeThumbnail - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :size_v - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :skiLift - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :skiPisteKilometre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :skiPisteNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :skiTow - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :skills - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :skinColor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :slogan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :smiles - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :snowParkNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerLeaguePromoted - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerLeagueRelegated - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerLeagueSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerLeagueWinner - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerTournamentClosingSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerTournamentLastChampion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerTournamentMostSteady - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerTournamentMostSuccesfull - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerTournamentOpeningSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerTournamentThisSeason - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soccerTournamentTopScorer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :solicitorGeneral - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :solubility - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :solventWithBadSolubility - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :solventWithGoodSolubility - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :solventWithMediocreSolubility - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soundRecording - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :source - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConfluence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConfluenceCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConfluenceElevation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConfluenceMountain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConfluencePlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConfluencePosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConfluenceRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConfluenceState - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceDistrict - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceElevation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceMountain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourcePlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourcePosition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceState - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceText - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :southEastPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :southPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :southWestPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sovereignCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :space - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spacecraft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spacestation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spacewalkBegin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spacewalkEnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :speaker - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :specialEffects - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :specialTrial - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :specialist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :speciality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :species - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :speedLimit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spike - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :splitFromParty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spokenIn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spokesperson - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportDiscipline - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportGoverningBody - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportSpecialty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportsFunction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spouse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spouseName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spurOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spurType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :squadNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stadium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :staff - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :starRating - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :starring - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :start - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startCareer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startDateTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startOccupation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startReign - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startWct - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startWqs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startYearOfInsertion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startYearOfSales - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :statName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :statValue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :state - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stateDelegate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stateOfOrigin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stateOfOriginPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stateOfOriginTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stateOfOriginYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stationEvaDuration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stationStructure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stationVisitDuration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :statistic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :statisticLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :statisticValue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :statisticYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :status - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :statusManager - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :statusYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stellarClassification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stockExchange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :storyEditor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :strength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :structuralSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :student - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :style - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stylisticOrigin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subClassis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subFamily - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subGenus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subMunicipalityType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subOrder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subPrefecture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subTribus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subdivision - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subdivisionLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subdivisionName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subdivisions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectOfPlay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectTerm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sublimationPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :suborbitalFlights - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subprefecture - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subregion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subsequentInfrastructure - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subsequentWork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subsidiary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subsystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subsystemLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subtitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :successfulLaunches - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :successor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sudocId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :summerAppearances - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :summerTemperature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :superFamily - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :superOrder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :superTribus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :superbowlWin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :superintendent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplementalDraftRound - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplementalDraftYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplies - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :supply - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :suppreddedDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :surfaceArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :surfaceFormOccurrenceOffset - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :surfaceGravity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :surfaceType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :swimmingStyle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :symbol - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :synonym - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :systemOfLaw - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :systemRequirements - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tag - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :taoiseach - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetAirport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetSpaceStation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :taste - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tattoo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :taxon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :teachingStaff - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :team - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :teamCoached - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :teamManager - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :teamName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :teamPoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :teamSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :teamTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :technique - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :televisionSeries - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tempPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :temperature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :temple - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :templeYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tenant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tennisSurfaceType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :termOfOffice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :termPeriod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :territory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :terytCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tessitura - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :testaverage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :theology - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :third - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :thirdCommander - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :thirdDriver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :thirdDriverCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :thirdPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :thirdTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :throwingSide - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :thumbnail - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :thumbnailCaption - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tie - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :time - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeInSpace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeZone - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeshiftChannel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :titleDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :titleDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :titleLanguage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :titleSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :toll - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tonyAward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :topFloorHeight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :topLevelDomain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :topSpeed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :topic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :torchBearer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :torqueOutput - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalCargo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalDiscs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalLaunches - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalMass - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalPopulation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalTracks - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalTravellers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :touristicSite - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tournamentOfChampions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tournamentRecord - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :towerHeight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackWidth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tradeMark - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trainer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trainerClub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trainerYears - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :training - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :translatedMotto - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :translator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :transmission - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tree - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tribus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trustee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tu - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tuition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tvComId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tvShow - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :twinCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :twinTown - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :type - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeCoordinate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeOfElectrification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeOfGrain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeOfStorage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeOfYeast - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :uRN - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :uciCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ulanId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :umbrellaTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :undraftedYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unesco - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unicode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :uniprot - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unitCost - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unitaryAuthority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unitedStatesNationalBridgeId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :university - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unknownOutcomes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unloCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :updated - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :upperAge - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :urbanArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usOpenDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usOpenMixed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usOpenSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usSales - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usedInWar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :uses - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usingCountry - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usk - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usopenWins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usurper - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :utcOffset - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :v_hb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :value - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :valvetrain - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :variantOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :varietals - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehiclesPerDay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vein - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :veneratedIn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :viafId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :viceChancellor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :viceLeader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :viceLeaderParty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vicePresident - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vicePrimeMinister - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vicePrincipal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vicePrincipalLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :victim - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :victims - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :victory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :victoryAsMgr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :victoryPercentageAsMgr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :virtualChannel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :visitorStatisticsAsOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :visitorsPerDay - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :visitorsPerYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :visitorsPercentageChange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :visitorsTotal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :voice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :voiceType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :volcanicActivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :volcanicType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :volcanoId - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :voltageOfElectrification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :volume - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :volumeQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :volumes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vonKlitzingConstant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :votesAgainst - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :votesFor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wagon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :waistSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :war - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ward - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :water - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :waterArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :waterPercentage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :watercourse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :watershed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :waterwayThroughTunnel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wavelength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :weapon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :webcast - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :websiteLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :weddingParentsDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :weight - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :westPlace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :whaDraft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :whaDraftTeam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :whaDraftYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wheelbase - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wholeArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :width - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :widthQuote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageCharacterSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageDisambiguates - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageEditLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageExternalLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageExtracted - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageHistoryLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageID - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageInDegree - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageInterLanguageLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageLength - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageModified - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageOutDegree - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageRedirects - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageRevisionID - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageRevisionLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageWikiLink - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikiPageWikiLinkText - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikidataSplitIri - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wilaya - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wimbledonDouble - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wimbledonMixed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wimbledonSingle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wineProduced - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wineRegion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wineYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wingArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wingspan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtAlpg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtAsia - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtAus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtChallenges - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtChampionships - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtJLPGA - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtJapan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtKLPGA - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtLAGT - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtLET - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtLPGA - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtMajors - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtNWIDE - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtOtherTournaments - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtPGA - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtProTournaments - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtSenEuro - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsAtSun - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winsInEurope - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winterAppearances - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :winterTemperature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :woRMS - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wordBefore - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :work - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :workArea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :world - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :worldChampionTitleYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :worldOpen - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :worldTeamCup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :worldTournament - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :worldTournamentBronze - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :worldTournamentGold - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :worldTournamentSilver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :worstDefeat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wptFinalTable - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wptItm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wptTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :writer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wsopItm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wsopWinYear - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wsopWristband - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :year - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :yearElevationIntoNobility - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :yearOfConstruction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :yearOfElectrification - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :years - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :youthClub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :youthWing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :youthYears - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :zdb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :zipCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :zodiacSign - # - # end DBO = Class.new(RDF::StrictVocabulary("http://dbpedia.org/ontology/")) do # Ontology definition ontology :"http://dbpedia.org/ontology/", - "cc:license": ["http://creativecommons.org/licenses/by-sa/3.0/".freeze, "http://www.gnu.org/copyleft/fdl.html".freeze], comment: "\n This ontology is generated from the manually created specifications in the DBpedia Mappings\n Wiki. Each release of this ontology corresponds to a new release of the DBpedia data set which\n contains instance data extracted from the different language versions of Wikipedia. For\n information regarding changes in this ontology, please refer to the DBpedia Mappings Wiki.\n ".freeze, - "dc:creator": "DBpedia Maintainers and Contributors".freeze, - "dc:description": "\n The DBpedia ontology provides the classes and properties used in the DBpedia data set.\n ".freeze, - "dc:issued": "2008-11-17T12:00Z".freeze, - "dc:modified": "2017-01-16T16:04Z".freeze, - "dc:publisher": "DBpedia Maintainers".freeze, - "dc:source": "http://mappings.dbpedia.org".freeze, - "dc:title": "The DBpedia Ontology".freeze, - "foaf:homepage": "http://wiki.dbpedia.org/Ontology".freeze, - "http://open.vocab.org/terms/defines": ["dbo:".freeze, "dbo:Abbey".freeze, "dbo:AcademicConference".freeze, "dbo:AcademicJournal".freeze, "dbo:AcademicSubject".freeze, "dbo:Activity".freeze, "dbo:Actor".freeze, "dbo:AdministrativeRegion".freeze, "dbo:AdultActor".freeze, "dbo:Agent".freeze, "dbo:Agglomeration".freeze, "dbo:Aircraft".freeze, "dbo:Airline".freeze, "dbo:Airport".freeze, "dbo:Album".freeze, "dbo:Altitude".freeze, "dbo:AmateurBoxer".freeze, "dbo:Ambassador".freeze, "dbo:AmericanFootballCoach".freeze, "dbo:AmericanFootballLeague".freeze, "dbo:AmericanFootballPlayer".freeze, "dbo:AmericanFootballTeam".freeze, "dbo:Amphibian".freeze, "dbo:AmusementParkAttraction".freeze, "dbo:AnatomicalStructure".freeze, "dbo:Animal".freeze, "dbo:AnimangaCharacter".freeze, "dbo:Anime".freeze, "dbo:Annotation".freeze, "dbo:Arachnid".freeze, "dbo:Archaea".freeze, "dbo:Archeologist".freeze, "dbo:ArcherPlayer".freeze, "dbo:Archipelago".freeze, "dbo:Architect".freeze, "dbo:ArchitecturalStructure".freeze, "dbo:Archive".freeze, "dbo:Area".freeze, "dbo:Arena".freeze, "dbo:Aristocrat".freeze, "dbo:Arrondissement".freeze, "dbo:Artery".freeze, "dbo:Article".freeze, "dbo:ArtificialSatellite".freeze, "dbo:Artist".freeze, "dbo:ArtistDiscography".freeze, "dbo:ArtisticGenre".freeze, "dbo:Artwork".freeze, "dbo:Asteroid".freeze, "dbo:Astronaut".freeze, "dbo:Athlete".freeze, "dbo:Athletics".freeze, "dbo:AthleticsPlayer".freeze, "dbo:Atoll".freeze, "dbo:Attack".freeze, "dbo:AustralianFootballLeague".freeze, "dbo:AustralianFootballTeam".freeze, "dbo:AustralianRulesFootballPlayer".freeze, "dbo:AutoRacingLeague".freeze, "dbo:Automobile".freeze, "dbo:AutomobileEngine".freeze, "dbo:Award".freeze, "dbo:BackScene".freeze, "dbo:Bacteria".freeze, "dbo:BadmintonPlayer".freeze, "dbo:Band".freeze, "dbo:Bank".freeze, "dbo:Baronet".freeze, "dbo:BaseballLeague".freeze, "dbo:BaseballPlayer".freeze, "dbo:BaseballSeason".freeze, "dbo:BaseballTeam".freeze, "dbo:BasketballLeague".freeze, "dbo:BasketballPlayer".freeze, "dbo:BasketballTeam".freeze, "dbo:Bay".freeze, "dbo:Beach".freeze, "dbo:BeachVolleyballPlayer".freeze, "dbo:BeautyQueen".freeze, "dbo:Beer".freeze, "dbo:Beverage".freeze, "dbo:Biathlete".freeze, "dbo:BiologicalDatabase".freeze, "dbo:Biologist".freeze, "dbo:Biomolecule".freeze, "dbo:Bird".freeze, "dbo:Birth".freeze, "dbo:Blazon".freeze, "dbo:BloodVessel".freeze, "dbo:BoardGame".freeze, "dbo:BobsleighAthlete".freeze, "dbo:BodyOfWater".freeze, "dbo:Bodybuilder".freeze, "dbo:Bone".freeze, "dbo:Book".freeze, "dbo:BowlingLeague".freeze, "dbo:Boxer".freeze, "dbo:Boxing".freeze, "dbo:BoxingCategory".freeze, "dbo:BoxingLeague".freeze, "dbo:BoxingStyle".freeze, "dbo:Brain".freeze, "dbo:Brewery".freeze, "dbo:Bridge".freeze, "dbo:BritishRoyalty".freeze, "dbo:BroadcastNetwork".freeze, "dbo:Broadcaster".freeze, "dbo:BrownDwarf".freeze, "dbo:Building".freeze, "dbo:BullFighter".freeze, "dbo:BusCompany".freeze, "dbo:BusinessPerson".freeze, "dbo:Camera".freeze, "dbo:CanadianFootballLeague".freeze, "dbo:CanadianFootballPlayer".freeze, "dbo:CanadianFootballTeam".freeze, "dbo:Canal".freeze, "dbo:Canoeist".freeze, "dbo:Canton".freeze, "dbo:Cape".freeze, "dbo:Capital".freeze, "dbo:CapitalOfRegion".freeze, "dbo:CardGame".freeze, "dbo:Cardinal".freeze, "dbo:CardinalDirection".freeze, "dbo:CareerStation".freeze, "dbo:Cartoon".freeze, "dbo:Case".freeze, "dbo:Casino".freeze, "dbo:Castle".freeze, "dbo:Cat".freeze, "dbo:Caterer".freeze, "dbo:Cave".freeze, "dbo:Celebrity".freeze, "dbo:CelestialBody".freeze, "dbo:Cemetery".freeze, "dbo:Chancellor".freeze, "dbo:ChartsPlacements".freeze, "dbo:Cheese".freeze, "dbo:Chef".freeze, "dbo:ChemicalCompound".freeze, "dbo:ChemicalElement".freeze, "dbo:ChemicalSubstance".freeze, "dbo:ChessPlayer".freeze, "dbo:ChristianBishop".freeze, "dbo:ChristianDoctrine".freeze, "dbo:ChristianPatriarch".freeze, "dbo:Church".freeze, "dbo:City".freeze, "dbo:CityDistrict".freeze, "dbo:ClassicalMusicArtist".freeze, "dbo:ClassicalMusicComposition".freeze, "dbo:Cleric".freeze, "dbo:ClericalAdministrativeRegion".freeze, "dbo:ClericalOrder".freeze, "dbo:ClubMoss".freeze, "dbo:Coach".freeze, "dbo:CoalPit".freeze, "dbo:CollectionOfValuables".freeze, "dbo:College".freeze, "dbo:CollegeCoach".freeze, "dbo:Colour".freeze, "dbo:Comedian".freeze, "dbo:ComedyGroup".freeze, "dbo:Comic".freeze, "dbo:ComicStrip".freeze, "dbo:ComicsCharacter".freeze, "dbo:ComicsCreator".freeze, "dbo:Community".freeze, "dbo:Company".freeze, "dbo:Competition".freeze, "dbo:ConcentrationCamp".freeze, "dbo:Congressman".freeze, "dbo:Conifer".freeze, "dbo:Constellation".freeze, "dbo:Contest".freeze, "dbo:Continent".freeze, "dbo:ControlledDesignationOfOriginWine".freeze, "dbo:Convention".freeze, "dbo:ConveyorSystem".freeze, "dbo:Country".freeze, "dbo:CountrySeat".freeze, "dbo:Crater".freeze, "dbo:Creek".freeze, "dbo:CricketGround".freeze, "dbo:CricketLeague".freeze, "dbo:CricketTeam".freeze, "dbo:Cricketer".freeze, "dbo:Criminal".freeze, "dbo:CrossCountrySkier".freeze, "dbo:Crustacean".freeze, "dbo:CultivatedVariety".freeze, "dbo:Curler".freeze, "dbo:CurlingLeague".freeze, "dbo:Currency".freeze, "dbo:Cycad".freeze, "dbo:CyclingCompetition".freeze, "dbo:CyclingLeague".freeze, "dbo:CyclingRace".freeze, "dbo:CyclingTeam".freeze, "dbo:Cyclist".freeze, "dbo:DTMRacer".freeze, "dbo:Dam".freeze, "dbo:Dancer".freeze, "dbo:DartsPlayer".freeze, "dbo:Database".freeze, "dbo:Deanery".freeze, "dbo:Death".freeze, "dbo:Decoration".freeze, "dbo:Deity".freeze, "dbo:Demographics".freeze, "dbo:Department".freeze, "dbo:Depth".freeze, "dbo:Deputy".freeze, "dbo:Desert".freeze, "dbo:Device".freeze, "dbo:DigitalCamera".freeze, "dbo:Dike".freeze, "dbo:Diocese".freeze, "dbo:Diploma".freeze, "dbo:Disease".freeze, "dbo:DisneyCharacter".freeze, "dbo:District".freeze, "dbo:DistrictWaterBoard".freeze, "dbo:Divorce".freeze, "dbo:Document".freeze, "dbo:DocumentType".freeze, "dbo:Dog".freeze, "dbo:Drama".freeze, "dbo:Drug".freeze, "dbo:Earthquake".freeze, "dbo:Economist".freeze, "dbo:EducationalInstitution".freeze, "dbo:Egyptologist".freeze, "dbo:Election".freeze, "dbo:ElectionDiagram".freeze, "dbo:ElectricalSubstation".freeze, "dbo:Embryology".freeze, "dbo:Employer".freeze, "dbo:EmployersOrganisation".freeze, "dbo:Engine".freeze, "dbo:Engineer".freeze, "dbo:Entomologist".freeze, "dbo:Enzyme".freeze, "dbo:Escalator".freeze, "dbo:EthnicGroup".freeze, "dbo:Eukaryote".freeze, "dbo:EurovisionSongContestEntry".freeze, "dbo:Event".freeze, "dbo:Factory".freeze, "dbo:Family".freeze, "dbo:Farmer".freeze, "dbo:Fashion".freeze, "dbo:FashionDesigner".freeze, "dbo:Fencer".freeze, "dbo:Fern".freeze, "dbo:FictionalCharacter".freeze, "dbo:Fiefdom".freeze, "dbo:FieldHockeyLeague".freeze, "dbo:FigureSkater".freeze, "dbo:File".freeze, "dbo:FillingStation".freeze, "dbo:Film".freeze, "dbo:FilmFestival".freeze, "dbo:Fish".freeze, "dbo:Flag".freeze, "dbo:FloweringPlant".freeze, "dbo:Food".freeze, "dbo:FootballLeagueSeason".freeze, "dbo:FootballMatch".freeze, "dbo:Forest".freeze, "dbo:FormerMunicipality".freeze, "dbo:FormulaOneRacer".freeze, "dbo:FormulaOneRacing".freeze, "dbo:FormulaOneTeam".freeze, "dbo:Fort".freeze, "dbo:Fungus".freeze, "dbo:GaelicGamesPlayer".freeze, "dbo:Galaxy".freeze, "dbo:Game".freeze, "dbo:Garden".freeze, "dbo:Gate".freeze, "dbo:GatedCommunity".freeze, "dbo:Gene".freeze, "dbo:GeneLocation".freeze, "dbo:Genre".freeze, "dbo:GeologicalPeriod".freeze, "dbo:GeopoliticalOrganisation".freeze, "dbo:Ginkgo".freeze, "dbo:GivenName".freeze, "dbo:Glacier".freeze, "dbo:Globularswarm".freeze, "dbo:Gnetophytes".freeze, "dbo:GolfCourse".freeze, "dbo:GolfLeague".freeze, "dbo:GolfPlayer".freeze, "dbo:GolfTournament".freeze, "dbo:GovernmentAgency".freeze, "dbo:GovernmentCabinet".freeze, "dbo:GovernmentType".freeze, "dbo:GovernmentalAdministrativeRegion".freeze, "dbo:Governor".freeze, "dbo:GrandPrix".freeze, "dbo:Grape".freeze, "dbo:GraveMonument".freeze, "dbo:GreenAlga".freeze, "dbo:GridironFootballPlayer".freeze, "dbo:GrossDomesticProduct".freeze, "dbo:GrossDomesticProductPerCapita".freeze, "dbo:Group".freeze, "dbo:Guitar".freeze, "dbo:Guitarist".freeze, "dbo:Gymnast".freeze, "dbo:HandballLeague".freeze, "dbo:HandballPlayer".freeze, "dbo:HandballTeam".freeze, "dbo:HighDiver".freeze, "dbo:Historian".freeze, "dbo:HistoricBuilding".freeze, "dbo:HistoricPlace".freeze, "dbo:HistoricalAreaOfAuthority".freeze, "dbo:HistoricalCountry".freeze, "dbo:HistoricalDistrict".freeze, "dbo:HistoricalPeriod".freeze, "dbo:HistoricalProvince".freeze, "dbo:HistoricalRegion".freeze, "dbo:HistoricalSettlement".freeze, "dbo:HockeyClub".freeze, "dbo:HockeyTeam".freeze, "dbo:Holiday".freeze, "dbo:HollywoodCartoon".freeze, "dbo:Hormone".freeze, "dbo:Horse".freeze, "dbo:HorseRace".freeze, "dbo:HorseRider".freeze, "dbo:HorseRiding".freeze, "dbo:HorseTrainer".freeze, "dbo:Hospital".freeze, "dbo:Host".freeze, "dbo:HotSpring".freeze, "dbo:Hotel".freeze, "dbo:HumanDevelopmentIndex".freeze, "dbo:HumanGene".freeze, "dbo:HumanGeneLocation".freeze, "dbo:Humorist".freeze, "dbo:IceHockeyLeague".freeze, "dbo:IceHockeyPlayer".freeze, "dbo:Ideology".freeze, "dbo:Image".freeze, "dbo:InformationAppliance".freeze, "dbo:Infrastructure".freeze, "dbo:InlineHockeyLeague".freeze, "dbo:Insect".freeze, "dbo:Instrument".freeze, "dbo:Instrumentalist".freeze, "dbo:Intercommunality".freeze, "dbo:InternationalFootballLeagueEvent".freeze, "dbo:InternationalOrganisation".freeze, "dbo:Island".freeze, "dbo:Jockey".freeze, "dbo:Journalist".freeze, "dbo:Judge".freeze, "dbo:LacrosseLeague".freeze, "dbo:LacrossePlayer".freeze, "dbo:Lake".freeze, "dbo:Language".freeze, "dbo:LaunchPad".freeze, "dbo:Law".freeze, "dbo:LawFirm".freeze, "dbo:Lawyer".freeze, "dbo:LegalCase".freeze, "dbo:Legislature".freeze, "dbo:Letter".freeze, "dbo:Library".freeze, "dbo:Lieutenant".freeze, "dbo:LifeCycleEvent".freeze, "dbo:Ligament".freeze, "dbo:LightNovel".freeze, "dbo:Lighthouse".freeze, "dbo:LineOfFashion".freeze, "dbo:Linguist".freeze, "dbo:Lipid".freeze, "dbo:List".freeze, "dbo:LiteraryGenre".freeze, "dbo:Locality".freeze, "dbo:Lock".freeze, "dbo:Locomotive".freeze, "dbo:LunarCrater".freeze, "dbo:Lymph".freeze, "dbo:Magazine".freeze, "dbo:Mammal".freeze, "dbo:Manga".freeze, "dbo:Manhua".freeze, "dbo:Manhwa".freeze, "dbo:Marriage".freeze, "dbo:MartialArtist".freeze, "dbo:MathematicalConcept".freeze, "dbo:Mayor".freeze, "dbo:MeanOfTransportation".freeze, "dbo:Media".freeze, "dbo:Medician".freeze, "dbo:Medicine".freeze, "dbo:Meeting".freeze, "dbo:MemberOfParliament".freeze, "dbo:MemberResistanceMovement".freeze, "dbo:Memorial".freeze, "dbo:MetroStation".freeze, "dbo:MicroRegion".freeze, "dbo:MilitaryAircraft".freeze, "dbo:MilitaryConflict".freeze, "dbo:MilitaryPerson".freeze, "dbo:MilitaryStructure".freeze, "dbo:MilitaryUnit".freeze, "dbo:MilitaryVehicle".freeze, "dbo:Mill".freeze, "dbo:Mine".freeze, "dbo:Mineral".freeze, "dbo:MixedMartialArtsEvent".freeze, "dbo:MixedMartialArtsLeague".freeze, "dbo:MobilePhone".freeze, "dbo:Model".freeze, "dbo:Mollusca".freeze, "dbo:Monarch".freeze, "dbo:Monastery".freeze, "dbo:Monument".freeze, "dbo:Mosque".freeze, "dbo:Moss".freeze, "dbo:MotocycleRacer".freeze, "dbo:MotorRace".freeze, "dbo:Motorcycle".freeze, "dbo:MotorcycleRacingLeague".freeze, "dbo:MotorcycleRider".freeze, "dbo:MotorsportRacer".freeze, "dbo:MotorsportSeason".freeze, "dbo:Mountain".freeze, "dbo:MountainPass".freeze, "dbo:MountainRange".freeze, "dbo:MouseGene".freeze, "dbo:MouseGeneLocation".freeze, "dbo:MovieDirector".freeze, "dbo:MovieGenre".freeze, "dbo:MovingImage".freeze, "dbo:MovingWalkway".freeze, "dbo:MultiVolumePublication".freeze, "dbo:Municipality".freeze, "dbo:Murderer".freeze, "dbo:Muscle".freeze, "dbo:Museum".freeze, "dbo:MusicComposer".freeze, "dbo:MusicDirector".freeze, "dbo:MusicFestival".freeze, "dbo:MusicGenre".freeze, "dbo:Musical".freeze, "dbo:MusicalArtist".freeze, "dbo:MusicalWork".freeze, "dbo:MythologicalFigure".freeze, "dbo:NCAATeamSeason".freeze, "dbo:Name".freeze, "dbo:NarutoCharacter".freeze, "dbo:NascarDriver".freeze, "dbo:NationalAnthem".freeze, "dbo:NationalCollegiateAthleticAssociationAthlete".freeze, "dbo:NationalFootballLeagueEvent".freeze, "dbo:NationalFootballLeagueSeason".freeze, "dbo:NationalSoccerClub".freeze, "dbo:NaturalEvent".freeze, "dbo:NaturalPlace".freeze, "dbo:NaturalRegion".freeze, "dbo:Nerve".freeze, "dbo:NetballPlayer".freeze, "dbo:Newspaper".freeze, "dbo:NobelPrize".freeze, "dbo:Noble".freeze, "dbo:NobleFamily".freeze, "dbo:Non-ProfitOrganisation".freeze, "dbo:NordicCombined".freeze, "dbo:Novel".freeze, "dbo:NuclearPowerStation".freeze, "dbo:Ocean".freeze, "dbo:OfficeHolder".freeze, "dbo:OldTerritory".freeze, "dbo:OlympicEvent".freeze, "dbo:OlympicResult".freeze, "dbo:Olympics".freeze, "dbo:On-SiteTransportation".freeze, "dbo:Openswarm".freeze, "dbo:Opera".freeze, "dbo:Organ".freeze, "dbo:Organisation".freeze, "dbo:OrganisationMember".freeze, "dbo:Orphan".freeze, "dbo:OverseasDepartment".freeze, "dbo:PaintballLeague".freeze, "dbo:Painter".freeze, "dbo:Painting".freeze, "dbo:Parish".freeze, "dbo:Park".freeze, "dbo:Parliament".freeze, "dbo:PenaltyShootOut".freeze, "dbo:PeriodOfArtisticStyle".freeze, "dbo:PeriodicalLiterature".freeze, "dbo:Person".freeze, "dbo:PersonFunction".freeze, "dbo:PersonalEvent".freeze, "dbo:Philosopher".freeze, "dbo:PhilosophicalConcept".freeze, "dbo:Photographer".freeze, "dbo:Place".freeze, "dbo:Planet".freeze, "dbo:Plant".freeze, "dbo:Play".freeze, "dbo:PlayWright".freeze, "dbo:PlayboyPlaymate".freeze, "dbo:Poem".freeze, "dbo:Poet".freeze, "dbo:PokerPlayer".freeze, "dbo:PoliticalConcept".freeze, "dbo:PoliticalFunction".freeze, "dbo:PoliticalParty".freeze, "dbo:Politician".freeze, "dbo:PoliticianSpouse".freeze, "dbo:PoloLeague".freeze, "dbo:Polyhedron".freeze, "dbo:Polysaccharide".freeze, "dbo:Pope".freeze, "dbo:PopulatedPlace".freeze, "dbo:Population".freeze, "dbo:Port".freeze, "dbo:PowerStation".freeze, "dbo:Prefecture".freeze, "dbo:PrehistoricalPeriod".freeze, "dbo:Presenter".freeze, "dbo:President".freeze, "dbo:Priest".freeze, "dbo:PrimeMinister".freeze, "dbo:Prison".freeze, "dbo:Producer".freeze, "dbo:Profession".freeze, "dbo:Professor".freeze, "dbo:ProgrammingLanguage".freeze, "dbo:Project".freeze, "dbo:ProtectedArea".freeze, "dbo:Protein".freeze, "dbo:ProtohistoricalPeriod".freeze, "dbo:Province".freeze, "dbo:Psychologist".freeze, "dbo:PublicService".freeze, "dbo:PublicTransitSystem".freeze, "dbo:Publisher".freeze, "dbo:Pyramid".freeze, "dbo:Quote".freeze, "dbo:Race".freeze, "dbo:RaceHorse".freeze, "dbo:RaceTrack".freeze, "dbo:Racecourse".freeze, "dbo:RacingDriver".freeze, "dbo:RadioControlledRacingLeague".freeze, "dbo:RadioHost".freeze, "dbo:RadioProgram".freeze, "dbo:RadioStation".freeze, "dbo:RailwayLine".freeze, "dbo:RailwayStation".freeze, "dbo:RailwayTunnel".freeze, "dbo:RallyDriver".freeze, "dbo:Ratio".freeze, "dbo:Rebellion".freeze, "dbo:RecordLabel".freeze, "dbo:RecordOffice".freeze, "dbo:Referee".freeze, "dbo:Reference".freeze, "dbo:Regency".freeze, "dbo:Region".freeze, "dbo:Relationship".freeze, "dbo:Religious".freeze, "dbo:ReligiousBuilding".freeze, "dbo:ReligiousOrganisation".freeze, "dbo:Reptile".freeze, "dbo:ResearchProject".freeze, "dbo:RestArea".freeze, "dbo:Restaurant".freeze, "dbo:Resume".freeze, "dbo:River".freeze, "dbo:Road".freeze, "dbo:RoadJunction".freeze, "dbo:RoadTunnel".freeze, "dbo:Rocket".freeze, "dbo:RocketEngine".freeze, "dbo:RollerCoaster".freeze, "dbo:RomanEmperor".freeze, "dbo:RouteOfTransportation".freeze, "dbo:RouteStop".freeze, "dbo:Rower".freeze, "dbo:Royalty".freeze, "dbo:RugbyClub".freeze, "dbo:RugbyLeague".freeze, "dbo:RugbyPlayer".freeze, "dbo:Saint".freeze, "dbo:Sales".freeze, "dbo:SambaSchool".freeze, "dbo:Satellite".freeze, "dbo:School".freeze, "dbo:ScientificConcept".freeze, "dbo:Scientist".freeze, "dbo:ScreenWriter".freeze, "dbo:Sculptor".freeze, "dbo:Sculpture".freeze, "dbo:Sea".freeze, "dbo:Senator".freeze, "dbo:SerialKiller".freeze, "dbo:Settlement".freeze, "dbo:Ship".freeze, "dbo:ShoppingMall".freeze, "dbo:Shrine".freeze, "dbo:Singer".freeze, "dbo:Single".freeze, "dbo:SiteOfSpecialScientificInterest".freeze, "dbo:Skater".freeze, "dbo:SkiArea".freeze, "dbo:SkiResort".freeze, "dbo:Ski_jumper".freeze, "dbo:Skier".freeze, "dbo:Skyscraper".freeze, "dbo:SnookerChamp".freeze, "dbo:SnookerPlayer".freeze, "dbo:SnookerWorldRanking".freeze, "dbo:SoapCharacter".freeze, "dbo:Soccer".freeze, "dbo:SoccerClub".freeze, "dbo:SoccerClubSeason".freeze, "dbo:SoccerLeague".freeze, "dbo:SoccerLeagueSeason".freeze, "dbo:SoccerManager".freeze, "dbo:SoccerPlayer".freeze, "dbo:SoccerTournament".freeze, "dbo:SocietalEvent".freeze, "dbo:SoftballLeague".freeze, "dbo:Software".freeze, "dbo:SolarEclipse".freeze, "dbo:Song".freeze, "dbo:SongWriter".freeze, "dbo:Sound".freeze, "dbo:SpaceMission".freeze, "dbo:SpaceShuttle".freeze, "dbo:SpaceStation".freeze, "dbo:Spacecraft".freeze, "dbo:Species".freeze, "dbo:SpeedSkater".freeze, "dbo:SpeedwayLeague".freeze, "dbo:SpeedwayRider".freeze, "dbo:SpeedwayTeam".freeze, "dbo:Sport".freeze, "dbo:SportCompetitionResult".freeze, "dbo:SportFacility".freeze, "dbo:SportsClub".freeze, "dbo:SportsEvent".freeze, "dbo:SportsLeague".freeze, "dbo:SportsManager".freeze, "dbo:SportsSeason".freeze, "dbo:SportsTeam".freeze, "dbo:SportsTeamMember".freeze, "dbo:SportsTeamSeason".freeze, "dbo:Square".freeze, "dbo:SquashPlayer".freeze, "dbo:Stadium".freeze, "dbo:Standard".freeze, "dbo:Star".freeze, "dbo:State".freeze, "dbo:StatedResolution".freeze, "dbo:Station".freeze, "dbo:Statistic".freeze, "dbo:StillImage".freeze, "dbo:StormSurge".freeze, "dbo:Stream".freeze, "dbo:Street".freeze, "dbo:SubMunicipality".freeze, "dbo:SumoWrestler".freeze, "dbo:SupremeCourtOfTheUnitedStatesCase".freeze, "dbo:Surfer".freeze, "dbo:Surname".freeze, "dbo:Swarm".freeze, "dbo:Swimmer".freeze, "dbo:Synagogue".freeze, "dbo:SystemOfLaw".freeze, "dbo:TableTennisPlayer".freeze, "dbo:Tax".freeze, "dbo:Taxon".freeze, "dbo:TeamMember".freeze, "dbo:TeamSport".freeze, "dbo:TelevisionDirector".freeze, "dbo:TelevisionEpisode".freeze, "dbo:TelevisionHost".freeze, "dbo:TelevisionPersonality".freeze, "dbo:TelevisionSeason".freeze, "dbo:TelevisionShow".freeze, "dbo:TelevisionStation".freeze, "dbo:Temple".freeze, "dbo:TennisLeague".freeze, "dbo:TennisPlayer".freeze, "dbo:TennisTournament".freeze, "dbo:TermOfOffice".freeze, "dbo:Territory".freeze, "dbo:Theatre".freeze, "dbo:TheatreDirector".freeze, "dbo:TheologicalConcept".freeze, "dbo:TimePeriod".freeze, "dbo:TopicalConcept".freeze, "dbo:Tournament".freeze, "dbo:Tower".freeze, "dbo:Town".freeze, "dbo:TrackList".freeze, "dbo:TradeUnion".freeze, "dbo:Train".freeze, "dbo:TrainCarriage".freeze, "dbo:Tram".freeze, "dbo:TramStation".freeze, "dbo:Treadmill".freeze, "dbo:Treaty".freeze, "dbo:Tunnel".freeze, "dbo:Type".freeze, "dbo:UndergroundJournal".freeze, "dbo:UnitOfWork".freeze, "dbo:University".freeze, "dbo:Unknown".freeze, "dbo:Valley".freeze, "dbo:Vein".freeze, "dbo:Venue".freeze, "dbo:Vicar".freeze, "dbo:VicePresident".freeze, "dbo:VicePrimeMinister".freeze, "dbo:VideoGame".freeze, "dbo:VideogamesLeague".freeze, "dbo:Village".freeze, "dbo:Vodka".freeze, "dbo:VoiceActor".freeze, "dbo:Volcano".freeze, "dbo:VolleyballCoach".freeze, "dbo:VolleyballLeague".freeze, "dbo:VolleyballPlayer".freeze, "dbo:WaterPoloPlayer".freeze, "dbo:WaterRide".freeze, "dbo:WaterTower".freeze, "dbo:Watermill".freeze, "dbo:WaterwayTunnel".freeze, "dbo:Weapon".freeze, "dbo:Website".freeze, "dbo:WindMotor".freeze, "dbo:Windmill".freeze, "dbo:Wine".freeze, "dbo:WineRegion".freeze, "dbo:Winery".freeze, "dbo:WinterSportPlayer".freeze, "dbo:WomensTennisAssociationTournament".freeze, "dbo:Work".freeze, "dbo:WorldHeritageSite".freeze, "dbo:Wrestler".freeze, "dbo:WrestlingEvent".freeze, "dbo:Writer".freeze, "dbo:WrittenWork".freeze, "dbo:Year".freeze, "dbo:YearInSpaceflight".freeze, "dbo:Zoo".freeze, "dbo:aSide".freeze, "dbo:abbeychurchBlessing".freeze, "dbo:abbeychurchBlessingCharge".freeze, "dbo:abbreviation".freeze, "dbo:ableToGrind".freeze, "dbo:absoluteMagnitude".freeze, "dbo:abstentions".freeze, "dbo:abstract".freeze, "dbo:academicAdvisor".freeze, "dbo:academicDiscipline".freeze, "dbo:academyAward".freeze, "dbo:acceleration".freeze, "dbo:access".freeze, "dbo:accessDate".freeze, "dbo:achievement".freeze, "dbo:acquirementDate".freeze, "dbo:actScore".freeze, "dbo:actingHeadteacher".freeze, "dbo:activeYears".freeze, "dbo:activeYearsEndDate".freeze, "dbo:activeYearsEndDateMgr".freeze, "dbo:activeYearsEndYear".freeze, "dbo:activeYearsEndYearMgr".freeze, "dbo:activeYearsStartDate".freeze, "dbo:activeYearsStartDateMgr".freeze, "dbo:activeYearsStartYear".freeze, "dbo:activeYearsStartYearMgr".freeze, "dbo:activity".freeze, "dbo:added".freeze, "dbo:address".freeze, "dbo:addressInRoad".freeze, "dbo:adjacentSettlement".freeze, "dbo:administrativeCenter".freeze, "dbo:administrativeCollectivity".freeze, "dbo:administrativeDistrict".freeze, "dbo:administrativeHeadCity".freeze, "dbo:administrativeStatus".freeze, "dbo:administrator".freeze, "dbo:afdbId".freeze, "dbo:affair".freeze, "dbo:affiliate".freeze, "dbo:affiliation".freeze, "dbo:afiAward".freeze, "dbo:age".freeze, "dbo:ageRange".freeze, "dbo:agency".freeze, "dbo:agencyStationCode".freeze, "dbo:agglomeration".freeze, "dbo:agglomerationArea".freeze, "dbo:agglomerationDemographics".freeze, "dbo:agglomerationPopulation".freeze, "dbo:agglomerationPopulationTotal".freeze, "dbo:agglomerationPopulationYear".freeze, "dbo:aggregation".freeze, "dbo:airDate".freeze, "dbo:aircraftAttack".freeze, "dbo:aircraftBomber".freeze, "dbo:aircraftElectronic".freeze, "dbo:aircraftFighter".freeze, "dbo:aircraftHelicopter".freeze, "dbo:aircraftHelicopterAttack".freeze, "dbo:aircraftHelicopterCargo".freeze, "dbo:aircraftHelicopterMultirole".freeze, "dbo:aircraftHelicopterObservation".freeze, "dbo:aircraftHelicopterTransport".freeze, "dbo:aircraftHelicopterUtility".freeze, "dbo:aircraftInterceptor".freeze, "dbo:aircraftPatrol".freeze, "dbo:aircraftRecon".freeze, "dbo:aircraftTrainer".freeze, "dbo:aircraftTransport".freeze, "dbo:aircraftType".freeze, "dbo:aircraftUser".freeze, "dbo:airportUsing".freeze, "dbo:aitaCode".freeze, "dbo:albedo".freeze, "dbo:album".freeze, "dbo:albumRuntime".freeze, "dbo:alias".freeze, "dbo:allcinemaId".freeze, "dbo:allegiance".freeze, "dbo:alliance".freeze, "dbo:almaMater".freeze, "dbo:alongside".freeze, "dbo:alpsGroup".freeze, "dbo:alpsMainPart".freeze, "dbo:alpsMajorSector".freeze, "dbo:alpsSection".freeze, "dbo:alpsSoiusaCode".freeze, "dbo:alpsSubgroup".freeze, "dbo:alpsSubsection".freeze, "dbo:alpsSupergroup".freeze, "dbo:alternativeName".freeze, "dbo:alternativeTitle".freeze, "dbo:altitude".freeze, "dbo:alumni".freeze, "dbo:amateurDefeat".freeze, "dbo:amateurFight".freeze, "dbo:amateurKo".freeze, "dbo:amateurNoContest".freeze, "dbo:amateurTeam".freeze, "dbo:amateurTie".freeze, "dbo:amateurTitle".freeze, "dbo:amateurVictory".freeze, "dbo:amateurYear".freeze, "dbo:americanComedyAward".freeze, "dbo:amgid".freeze, "dbo:amsterdamCode".freeze, "dbo:analogChannel".freeze, "dbo:animal".freeze, "dbo:animator".freeze, "dbo:anniversary".freeze, "dbo:announcedFrom".freeze, "dbo:annualTemperature".freeze, "dbo:anthem".freeze, "dbo:apcPresident".freeze, "dbo:apoapsis".freeze, "dbo:apofocus".freeze, "dbo:apparentMagnitude".freeze, "dbo:appearancesInLeague".freeze, "dbo:appearancesInNationalTeam".freeze, "dbo:appointer".freeze, "dbo:approach".freeze, "dbo:approvedByLowerParliament".freeze, "dbo:approvedByUpperParliament".freeze, "dbo:approximateCalories".freeze, "dbo:apskritis".freeze, "dbo:archipelago".freeze, "dbo:architect".freeze, "dbo:architectualBureau".freeze, "dbo:architecturalMovement".freeze, "dbo:architecturalStyle".freeze, "dbo:area".freeze, "dbo:areaCode".freeze, "dbo:areaDate".freeze, "dbo:areaLand".freeze, "dbo:areaMetro".freeze, "dbo:areaOfCatchment".freeze, "dbo:areaOfCatchmentQuote".freeze, "dbo:areaOfSearch".freeze, "dbo:areaQuote".freeze, "dbo:areaRank".freeze, "dbo:areaRural".freeze, "dbo:areaTotal".freeze, "dbo:areaTotalRanking".freeze, "dbo:areaUrban".freeze, "dbo:areaWater".freeze, "dbo:argueDate".freeze, "dbo:arielAward".freeze, "dbo:arm".freeze, "dbo:army".freeze, "dbo:arrestDate".freeze, "dbo:arrondissement".freeze, "dbo:artPatron".freeze, "dbo:artery".freeze, "dbo:artificialSnowArea".freeze, "dbo:artist".freeze, "dbo:artisticFunction".freeze, "dbo:asWikiText".freeze, "dbo:ascent".freeze, "dbo:asiaChampionship".freeze, "dbo:aspectRatio".freeze, "dbo:assembly".freeze, "dbo:assetUnderManagement".freeze, "dbo:assets".freeze, "dbo:assistantPrincipal".freeze, "dbo:associate".freeze, "dbo:associateEditor".freeze, "dbo:associateStar".freeze, "dbo:associatedAct".freeze, "dbo:associatedBand".freeze, "dbo:associatedMusicalArtist".freeze, "dbo:associatedRocket".freeze, "dbo:associationOfLocalGovernment".freeze, "dbo:astrologicalSign".freeze, "dbo:atPage".freeze, "dbo:atRowNumber".freeze, "dbo:atcPrefix".freeze, "dbo:atcSuffix".freeze, "dbo:atcSupplemental".freeze, "dbo:athletics".freeze, "dbo:athleticsDiscipline".freeze, "dbo:atomicNumber".freeze, "dbo:attorneyGeneral".freeze, "dbo:australiaOpenDouble".freeze, "dbo:australiaOpenMixed".freeze, "dbo:australiaOpenSingle".freeze, "dbo:author".freeze, "dbo:authority".freeze, "dbo:authorityMandate".freeze, "dbo:authorityTitle".freeze, "dbo:automobileModel".freeze, "dbo:automobilePlatform".freeze, "dbo:autonomy".freeze, "dbo:availableSmartCard".freeze, "dbo:average".freeze, "dbo:averageAnnualGeneration".freeze, "dbo:averageClassSize".freeze, "dbo:averageDepth".freeze, "dbo:averageDepthQuote".freeze, "dbo:averageSpeed".freeze, "dbo:avifaunaPopulation".freeze, "dbo:award".freeze, "dbo:awardName".freeze, "dbo:awayColourHexCode".freeze, "dbo:bSide".freeze, "dbo:background".freeze, "dbo:backhand".freeze, "dbo:badGuy".freeze, "dbo:baftaAward".freeze, "dbo:band".freeze, "dbo:bandMember".freeze, "dbo:barPassRate".freeze, "dbo:barangays".freeze, "dbo:basedOn".freeze, "dbo:battingSide".freeze, "dbo:battle".freeze, "dbo:battleHonours".freeze, "dbo:beatifiedBy".freeze, "dbo:beatifiedDate".freeze, "dbo:beatifiedPlace".freeze, "dbo:bedCount".freeze, "dbo:believers".freeze, "dbo:beltwayCity".freeze, "dbo:bestFinish".freeze, "dbo:bestLap".freeze, "dbo:bestRankDouble".freeze, "dbo:bestRankSingle".freeze, "dbo:bestWsopRank".freeze, "dbo:bestYearWsop".freeze, "dbo:bgafdId".freeze, "dbo:bibsysId".freeze, "dbo:bicycleInformation".freeze, "dbo:bigPoolRecord".freeze, "dbo:biggestCity".freeze, "dbo:billed".freeze, "dbo:binomial".freeze, "dbo:binomialAuthority".freeze, "dbo:bioavailability".freeze, "dbo:bioclimate".freeze, "dbo:biome".freeze, "dbo:bird".freeze, "dbo:birthDate".freeze, "dbo:birthName".freeze, "dbo:birthPlace".freeze, "dbo:birthSign".freeze, "dbo:birthYear".freeze, "dbo:bishopric".freeze, "dbo:blackLongDistancePisteNumber".freeze, "dbo:blackSkiPisteNumber".freeze, "dbo:blazon".freeze, "dbo:blazonCaption".freeze, "dbo:blazonLink".freeze, "dbo:blazonRatio".freeze, "dbo:block".freeze, "dbo:blockAlloy".freeze, "dbo:bloodGroup".freeze, "dbo:bloodType".freeze, "dbo:blueLongDistancePisteNumber".freeze, "dbo:blueSkiPisteNumber".freeze, "dbo:bnfId".freeze, "dbo:board".freeze, "dbo:bodyDiscovered".freeze, "dbo:bodyStyle".freeze, "dbo:boiler".freeze, "dbo:boilerPressure".freeze, "dbo:boilingPoint".freeze, "dbo:book".freeze, "dbo:booster".freeze, "dbo:border".freeze, "dbo:borough".freeze, "dbo:bourgmestre".freeze, "dbo:bowlRecord".freeze, "dbo:boxerCategory".freeze, "dbo:boxerStyle".freeze, "dbo:bpnId".freeze, "dbo:brainInfoNumber".freeze, "dbo:brainInfoType".freeze, "dbo:branchFrom".freeze, "dbo:branchTo".freeze, "dbo:brand".freeze, "dbo:breeder".freeze, "dbo:bridgeCarries".freeze, "dbo:britishComedyAwards".freeze, "dbo:britishOpen".freeze, "dbo:britishWins".freeze, "dbo:broadcastArea".freeze, "dbo:broadcastNetwork".freeze, "dbo:broadcastRepeater".freeze, "dbo:broadcastStationClass".freeze, "dbo:broadcastTranslator".freeze, "dbo:bronzeMedalDouble".freeze, "dbo:bronzeMedalMixed".freeze, "dbo:bronzeMedalSingle".freeze, "dbo:bronzeMedalist".freeze, "dbo:budget".freeze, "dbo:budgetYear".freeze, "dbo:builder".freeze, "dbo:building".freeze, "dbo:buildingEndDate".freeze, "dbo:buildingEndYear".freeze, "dbo:buildingStartDate".freeze, "dbo:buildingStartYear".freeze, "dbo:buildingType".freeze, "dbo:bustSize".freeze, "dbo:bustWaistHipSize".freeze, "dbo:cableCar".freeze, "dbo:calculationNeeds".freeze, "dbo:callSign".freeze, "dbo:callsignMeaning".freeze, "dbo:campus".freeze, "dbo:campusSize".freeze, "dbo:campusType".freeze, "dbo:canBaggageChecked".freeze, "dbo:cannonNumber".freeze, "dbo:canonizedBy".freeze, "dbo:canonizedDate".freeze, "dbo:canonizedPlace".freeze, "dbo:canton".freeze, "dbo:capacity".freeze, "dbo:capacityFactor".freeze, "dbo:capital".freeze, "dbo:capitalCoordinates".freeze, "dbo:capitalCountry".freeze, "dbo:capitalDistrict".freeze, "dbo:capitalElevation".freeze, "dbo:capitalMountain".freeze, "dbo:capitalPlace".freeze, "dbo:capitalPosition".freeze, "dbo:capitalRegion".freeze, "dbo:captureDate".freeze, "dbo:carNumber".freeze, "dbo:carbohydrate".freeze, "dbo:carcinogen".freeze, "dbo:careerPoints".freeze, "dbo:careerPrizeMoney".freeze, "dbo:careerStation".freeze, "dbo:cargoFuel".freeze, "dbo:cargoGas".freeze, "dbo:cargoWater".freeze, "dbo:casNumber".freeze, "dbo:casSupplemental".freeze, "dbo:case".freeze, "dbo:casualties".freeze, "dbo:catch".freeze, "dbo:category".freeze, "dbo:caterer".freeze, "dbo:catholicPercentage".freeze, "dbo:causalties".freeze, "dbo:causeOfDeath".freeze, "dbo:causedBy".freeze, "dbo:ccaState".freeze, "dbo:ceeb".freeze, "dbo:ceiling".freeze, "dbo:cemetery".freeze, "dbo:censusYear".freeze, "dbo:center".freeze, "dbo:centuryBreaks".freeze, "dbo:ceo".freeze, "dbo:ceremonialCounty".freeze, "dbo:certification".freeze, "dbo:certificationDate".freeze, "dbo:cesarAward".freeze, "dbo:chEBI".freeze, "dbo:chain".freeze, "dbo:chairLabel".freeze, "dbo:chairman".freeze, "dbo:chairmanTitle".freeze, "dbo:chairperson".freeze, "dbo:champion".freeze, "dbo:championInDouble".freeze, "dbo:championInDoubleFemale".freeze, "dbo:championInDoubleMale".freeze, "dbo:championInMixedDouble".freeze, "dbo:championInSingle".freeze, "dbo:championInSingleFemale".freeze, "dbo:championInSingleMale".freeze, "dbo:championships".freeze, "dbo:chancellor".freeze, "dbo:channel".freeze, "dbo:chaplain".freeze, "dbo:characterInPlay".freeze, "dbo:chef".freeze, "dbo:chiefEditor".freeze, "dbo:chiefPlace".freeze, "dbo:child".freeze, "dbo:childOrganisation".freeze, "dbo:choreographer".freeze, "dbo:chorusCharacterInPlay".freeze, "dbo:christeningDate".freeze, "dbo:chromosome".freeze, "dbo:cinematography".freeze, "dbo:circle".freeze, "dbo:circuitLength".freeze, "dbo:circuitName".freeze, "dbo:circulation".freeze, "dbo:circumcised".freeze, "dbo:cites".freeze, "dbo:citizenship".freeze, "dbo:city".freeze, "dbo:cityLink".freeze, "dbo:cityRank".freeze, "dbo:citySince".freeze, "dbo:cityType".freeze, "dbo:class".freeze, "dbo:classes".freeze, "dbo:classification".freeze, "dbo:classis".freeze, "dbo:climate".freeze, "dbo:climbUpNumber".freeze, "dbo:closeTo".freeze, "dbo:closed".freeze, "dbo:closingDate".freeze, "dbo:closingFilm".freeze, "dbo:closingYear".freeze, "dbo:clothSize".freeze, "dbo:clothingSize".freeze, "dbo:club".freeze, "dbo:clubsRecordGoalscorer".freeze, "dbo:cluster".freeze, "dbo:cmpEvaDuration".freeze, "dbo:cmykCoordinateBlack".freeze, "dbo:cmykCoordinateCyanic".freeze, "dbo:cmykCoordinateMagenta".freeze, "dbo:cmykCoordinateYellow".freeze, "dbo:co2Emission".freeze, "dbo:coExecutiveProducer".freeze, "dbo:coProducer".freeze, "dbo:coach".freeze, "dbo:coachClub".freeze, "dbo:coachSeason".freeze, "dbo:coachedTeam".freeze, "dbo:coachingRecord".freeze, "dbo:coalition".freeze, "dbo:coastLength".freeze, "dbo:coastLine".freeze, "dbo:coatOfArms".freeze, "dbo:code".freeze, "dbo:codeBook".freeze, "dbo:codeDistrict".freeze, "dbo:codeIndex".freeze, "dbo:codeLandRegistry".freeze, "dbo:codeListOfHonour".freeze, "dbo:codeMemorial".freeze, "dbo:codeMunicipalMonument".freeze, "dbo:codeNationalMonument".freeze, "dbo:codeProvincialMonument".freeze, "dbo:codeSettlement".freeze, "dbo:codeStockExchange".freeze, "dbo:coden".freeze, "dbo:coemperor".freeze, "dbo:collaboration".freeze, "dbo:colleague".freeze, "dbo:collection".freeze, "dbo:collectionSize".freeze, "dbo:collectivityMinority".freeze, "dbo:college".freeze, "dbo:collegeHof".freeze, "dbo:colonialName".freeze, "dbo:colorChart".freeze, "dbo:colour".freeze, "dbo:colourHexCode".freeze, "dbo:colourName".freeze, "dbo:combatant".freeze, "dbo:comic".freeze, "dbo:comitat".freeze, "dbo:command".freeze, "dbo:commandModule".freeze, "dbo:commandStructure".freeze, "dbo:commandant".freeze, "dbo:commander".freeze, "dbo:comment".freeze, "dbo:commissioner".freeze, "dbo:commissionerDate".freeze, "dbo:commissioningDate".freeze, "dbo:committee".freeze, "dbo:committeeInLegislature".freeze, "dbo:commonName".freeze, "dbo:commune".freeze, "dbo:communityIsoCode".freeze, "dbo:company".freeze, "dbo:comparable".freeze, "dbo:competition".freeze, "dbo:competitionTitle".freeze, "dbo:compiler".freeze, "dbo:completionDate".freeze, "dbo:complexion".freeze, "dbo:complexity".freeze, "dbo:component".freeze, "dbo:composer".freeze, "dbo:compressionRatio".freeze, "dbo:computingInput".freeze, "dbo:computingMedia".freeze, "dbo:computingPlatform".freeze, "dbo:configuration".freeze, "dbo:conflict".freeze, "dbo:congressionalDistrict".freeze, "dbo:connectsReferencedTo".freeze, "dbo:connotation".freeze, "dbo:consecration".freeze, "dbo:conservationStatus".freeze, "dbo:conservationStatusSystem".freeze, "dbo:constellation".freeze, "dbo:construction".freeze, "dbo:constructionMaterial".freeze, "dbo:contest".freeze, "dbo:continent".freeze, "dbo:continentRank".freeze, "dbo:continentalTournament".freeze, "dbo:continentalTournamentBronze".freeze, "dbo:continentalTournamentGold".freeze, "dbo:continentalTournamentSilver".freeze, "dbo:contractAward".freeze, "dbo:contractor".freeze, "dbo:convictionDate".freeze, "dbo:coolingSystem".freeze, "dbo:copilote".freeze, "dbo:coronationDate".freeze, "dbo:cosparId".freeze, "dbo:cost".freeze, "dbo:costumeDesigner".freeze, "dbo:council".freeze, "dbo:councilArea".freeze, "dbo:country".freeze, "dbo:countryOrigin".freeze, "dbo:countryRank".freeze, "dbo:countryWithFirstAstronaut".freeze, "dbo:countryWithFirstSatellite".freeze, "dbo:countryWithFirstSatelliteLaunched".freeze, "dbo:countryWithFirstSpaceflight".freeze, "dbo:county".freeze, "dbo:countySeat".freeze, "dbo:course".freeze, "dbo:cousurper".freeze, "dbo:coverArtist".freeze, "dbo:cpu".freeze, "dbo:created".freeze, "dbo:creationChristianBishop".freeze, "dbo:creationYear".freeze, "dbo:creativeDirector".freeze, "dbo:creator".freeze, "dbo:creatorOfDish".freeze, "dbo:credit".freeze, "dbo:crest".freeze, "dbo:crew".freeze, "dbo:crewMember".freeze, "dbo:crewSize".freeze, "dbo:crews".freeze, "dbo:criteria".freeze, "dbo:crosses".freeze, "dbo:crownDependency".freeze, "dbo:cuisine".freeze, "dbo:cultivatedVariety".freeze, "dbo:curator".freeze, "dbo:currency".freeze, "dbo:currencyCode".freeze, "dbo:currentCity".freeze, "dbo:currentLeague".freeze, "dbo:currentMember".freeze, "dbo:currentPartner".freeze, "dbo:currentProduction".freeze, "dbo:currentRank".freeze, "dbo:currentRecord".freeze, "dbo:currentSeason".freeze, "dbo:currentStatus".freeze, "dbo:currentTeam".freeze, "dbo:currentTeamManager".freeze, "dbo:currentTeamMember".freeze, "dbo:currentWorldChampion".freeze, "dbo:currentlyUsedFor".freeze, "dbo:custodian".freeze, "dbo:cyclistGenre".freeze, "dbo:cylinderBore".freeze, "dbo:cylinderCount".freeze, "dbo:daira".freeze, "dbo:dam".freeze, "dbo:damage".freeze, "dbo:damsire".freeze, "dbo:danseCompetition".freeze, "dbo:danseScore".freeze, "dbo:date".freeze, "dbo:dateAct".freeze, "dbo:dateAgreement".freeze, "dbo:dateBudget".freeze, "dbo:dateClosed".freeze, "dbo:dateCompleted".freeze, "dbo:dateConstruction".freeze, "dbo:dateExtended".freeze, "dbo:dateLastUpdated".freeze, "dbo:dateOfAbandonment".freeze, "dbo:dateOfBurial".freeze, "dbo:dateUnveiled".freeze, "dbo:dateUse".freeze, "dbo:davisCup".freeze, "dbo:day".freeze, "dbo:daylightSavingTimeZone".freeze, "dbo:dbnlCodeDutch".freeze, "dbo:dcc".freeze, "dbo:deFactoLanguage".freeze, "dbo:deadInFightDate".freeze, "dbo:deadInFightPlace".freeze, "dbo:dean".freeze, "dbo:deanery".freeze, "dbo:deathAge".freeze, "dbo:deathCause".freeze, "dbo:deathDate".freeze, "dbo:deathPlace".freeze, "dbo:deathYear".freeze, "dbo:debut".freeze, "dbo:debutTeam".freeze, "dbo:debutWork".freeze, "dbo:dec".freeze, "dbo:decay".freeze, "dbo:decideDate".freeze, "dbo:declination".freeze, "dbo:decommissioningDate".freeze, "dbo:decoration".freeze, "dbo:defeat".freeze, "dbo:defeatAsMgr".freeze, "dbo:definition".freeze, "dbo:delegateMayor".freeze, "dbo:delegation".freeze, "dbo:deliveryDate".freeze, "dbo:deme".freeze, "dbo:demographics".freeze, "dbo:demographicsAsOf".freeze, "dbo:demolitionDate".freeze, "dbo:demolitionYear".freeze, "dbo:demonym".freeze, "dbo:denomination".freeze, "dbo:density".freeze, "dbo:department".freeze, "dbo:departmentCode".freeze, "dbo:departmentPosition".freeze, "dbo:depictionDescription".freeze, "dbo:depth".freeze, "dbo:depthQuote".freeze, "dbo:depths".freeze, "dbo:deputy".freeze, "dbo:derivative".freeze, "dbo:derivedWord".freeze, "dbo:description".freeze, "dbo:designCompany".freeze, "dbo:designer".freeze, "dbo:destination".freeze, "dbo:destructionDate".freeze, "dbo:detectionMethod".freeze, "dbo:detractor".freeze, "dbo:developer".freeze, "dbo:dfE".freeze, "dbo:diameter".freeze, "dbo:different".freeze, "dbo:digitalChannel".freeze, "dbo:digitalSubChannel".freeze, "dbo:diocese".freeze, "dbo:diploma".freeze, "dbo:director".freeze, "dbo:disappearanceDate".freeze, "dbo:disbanded".freeze, "dbo:discharge".freeze, "dbo:dischargeAverage".freeze, "dbo:disciple".freeze, "dbo:discipline".freeze, "dbo:discontinued".freeze, "dbo:discovered".freeze, "dbo:discoverer".freeze, "dbo:discovery".freeze, "dbo:diseasesDb".freeze, "dbo:displacement".freeze, "dbo:dissolutionDate".freeze, "dbo:dissolutionYear".freeze, "dbo:dissolved".freeze, "dbo:dist_ly".freeze, "dbo:dist_pc".freeze, "dbo:distance".freeze, "dbo:distanceLaps".freeze, "dbo:distanceToBelfast".freeze, "dbo:distanceToCapital".freeze, "dbo:distanceToCardiff".freeze, "dbo:distanceToCharingCross".freeze, "dbo:distanceToDouglas".freeze, "dbo:distanceToDublin".freeze, "dbo:distanceToEdinburgh".freeze, "dbo:distanceToLondon".freeze, "dbo:distanceToNearestCity".freeze, "dbo:distanceTraveled".freeze, "dbo:distributingCompany".freeze, "dbo:distributingLabel".freeze, "dbo:distributor".freeze, "dbo:district".freeze, "dbo:division".freeze, "dbo:dockedTime".freeze, "dbo:doctoralAdvisor".freeze, "dbo:doctoralStudent".freeze, "dbo:documentDesignation".freeze, "dbo:documentNumber".freeze, "dbo:domain".freeze, "dbo:dorlandsPrefix".freeze, "dbo:dorlandsSuffix".freeze, "dbo:draft".freeze, "dbo:draftLeague".freeze, "dbo:draftPick".freeze, "dbo:draftPosition".freeze, "dbo:draftRound".freeze, "dbo:draftTeam".freeze, "dbo:draftYear".freeze, "dbo:drainsFrom".freeze, "dbo:drainsTo".freeze, "dbo:drama".freeze, "dbo:dressCode".freeze, "dbo:drugbank".freeze, "dbo:dryCargo".freeze, "dbo:dubber".freeze, "dbo:duration".freeze, "dbo:dutchArtworkCode".freeze, "dbo:dutchCOROPCode".freeze, "dbo:dutchMIPCode".freeze, "dbo:dutchNAIdentifier".freeze, "dbo:dutchPPNCode".freeze, "dbo:dutchRKDCode".freeze, "dbo:dutchWinkelID".freeze, "dbo:dynasty".freeze, "dbo:eMedicineSubject".freeze, "dbo:eMedicineTopic".freeze, "dbo:eTeatrId".freeze, "dbo:eastPlace".freeze, "dbo:ecNumber".freeze, "dbo:editing".freeze, "dbo:editor".freeze, "dbo:editorTitle".freeze, "dbo:education".freeze, "dbo:educationPlace".freeze, "dbo:educationSystem".freeze, "dbo:effectiveRadiatedPower".freeze, "dbo:egafdId".freeze, "dbo:einecsNumber".freeze, "dbo:ekatteCode".freeze, "dbo:electionDate".freeze, "dbo:electionDateLeader".freeze, "dbo:electionMajority".freeze, "dbo:elementAbove".freeze, "dbo:elementBlock".freeze, "dbo:elementGroup".freeze, "dbo:elementPeriod".freeze, "dbo:elevation".freeze, "dbo:elevationQuote".freeze, "dbo:elevatorCount".freeze, "dbo:elo".freeze, "dbo:eloRecord".freeze, "dbo:emblem".freeze, "dbo:emmyAward".freeze, "dbo:employer".freeze, "dbo:employersCelebration".freeze, "dbo:endCareer".freeze, "dbo:endDate".freeze, "dbo:endDateTime".freeze, "dbo:endOccupation".freeze, "dbo:endPoint".freeze, "dbo:endReign".freeze, "dbo:endYear".freeze, "dbo:endYearOfInsertion".freeze, "dbo:endYearOfSales".freeze, "dbo:endangeredSince".freeze, "dbo:endingTheme".freeze, "dbo:endowment".freeze, "dbo:enemy".freeze, "dbo:engine".freeze, "dbo:enginePower".freeze, "dbo:engineType".freeze, "dbo:engineer".freeze, "dbo:ensembl".freeze, "dbo:enshrinedDeity".freeze, "dbo:entourage".freeze, "dbo:entrezgene".freeze, "dbo:eparchy".freeze, "dbo:episode".freeze, "dbo:episodeNumber".freeze, "dbo:epoch".freeze, "dbo:eptFinalTable".freeze, "dbo:eptItm".freeze, "dbo:eptTitle".freeze, "dbo:equipment".freeze, "dbo:equity".freeze, "dbo:era".freeze, "dbo:eruption".freeze, "dbo:eruptionYear".freeze, "dbo:escalafon".freeze, "dbo:escapeVelocity".freeze, "dbo:espnId".freeze, "dbo:established".freeze, "dbo:establishment".freeze, "dbo:ethnicGroup".freeze, "dbo:ethnicGroupsInYear".freeze, "dbo:ethnicity".freeze, "dbo:eurobabeIndexId".freeze, "dbo:europeanAffiliation".freeze, "dbo:europeanChampionship".freeze, "dbo:europeanParliamentGroup".freeze, "dbo:europeanUnionEntranceDate".freeze, "dbo:event".freeze, "dbo:eventDate".freeze, "dbo:eventDescription".freeze, "dbo:executiveHeadteacher".freeze, "dbo:executiveProducer".freeze, "dbo:exhibition".freeze, "dbo:existence".freeze, "dbo:expedition".freeze, "dbo:explorer".freeze, "dbo:externalOrnament".freeze, "dbo:extinctionDate".freeze, "dbo:extinctionYear".freeze, "dbo:eyeColor".freeze, "dbo:eyeColour".freeze, "dbo:eyes".freeze, "dbo:faaLocationIdentifier".freeze, "dbo:facilityId".freeze, "dbo:facultySize".freeze, "dbo:failedLaunches".freeze, "dbo:family".freeze, "dbo:familyMember".freeze, "dbo:fansgroup".freeze, "dbo:fareZone".freeze, "dbo:fastestDriver".freeze, "dbo:fastestDriverCountry".freeze, "dbo:fastestDriverTeam".freeze, "dbo:fastestLap".freeze, "dbo:fat".freeze, "dbo:fate".freeze, "dbo:father".freeze, "dbo:fauna".freeze, "dbo:fc".freeze, "dbo:fcRuns".freeze, "dbo:fdaUniiCode".freeze, "dbo:feastDay".freeze, "dbo:feat".freeze, "dbo:feature".freeze, "dbo:features".freeze, "dbo:fedCup".freeze, "dbo:federalState".freeze, "dbo:federation".freeze, "dbo:fees".freeze, "dbo:fibahof".freeze, "dbo:field".freeze, "dbo:fight".freeze, "dbo:fighter".freeze, "dbo:fileExtension".freeze, "dbo:fileSize".freeze, "dbo:fileURL".freeze, "dbo:filename".freeze, "dbo:fillingStation".freeze, "dbo:film".freeze, "dbo:filmAudioType".freeze, "dbo:filmColourType".freeze, "dbo:filmFareAward".freeze, "dbo:filmNumber".freeze, "dbo:filmPolskiId".freeze, "dbo:filmRuntime".freeze, "dbo:filmVersion".freeze, "dbo:finalFlight".freeze, "dbo:finalLost".freeze, "dbo:finalLostDouble".freeze, "dbo:finalLostSingle".freeze, "dbo:finalLostTeam".freeze, "dbo:finalPublicationDate".freeze, "dbo:finalPublicationYear".freeze, "dbo:fipsCode".freeze, "dbo:firstAirDate".freeze, "dbo:firstAppearance".freeze, "dbo:firstAscent".freeze, "dbo:firstAscentPerson".freeze, "dbo:firstAscentYear".freeze, "dbo:firstBroadcast".freeze, "dbo:firstDriver".freeze, "dbo:firstDriverCountry".freeze, "dbo:firstDriverTeam".freeze, "dbo:firstFlight".freeze, "dbo:firstFlightEndDate".freeze, "dbo:firstFlightStartDate".freeze, "dbo:firstGame".freeze, "dbo:firstLaunch".freeze, "dbo:firstLaunchDate".freeze, "dbo:firstLaunchRocket".freeze, "dbo:firstLeader".freeze, "dbo:firstMention".freeze, "dbo:firstOlympicEvent".freeze, "dbo:firstOwner".freeze, "dbo:firstPlace".freeze, "dbo:firstPopularVote".freeze, "dbo:firstProMatch".freeze, "dbo:firstPublicationDate".freeze, "dbo:firstPublicationYear".freeze, "dbo:firstPublisher".freeze, "dbo:firstRace".freeze, "dbo:firstWin".freeze, "dbo:firstWinner".freeze, "dbo:flag".freeze, "dbo:flagBearer".freeze, "dbo:flagBorder".freeze, "dbo:flagCaption".freeze, "dbo:flagLink".freeze, "dbo:flagSize".freeze, "dbo:flashPoint".freeze, "dbo:floodingDate".freeze, "dbo:floorArea".freeze, "dbo:floorCount".freeze, "dbo:flora".freeze, "dbo:flower".freeze, "dbo:flyingHours".freeze, "dbo:foalDate".freeze, "dbo:followedBy".freeze, "dbo:followingEvent".freeze, "dbo:follows".freeze, "dbo:foot".freeze, "dbo:footedness".freeze, "dbo:forces".freeze, "dbo:foresterDistrict".freeze, "dbo:format".freeze, "dbo:formationDate".freeze, "dbo:formationYear".freeze, "dbo:formerBandMember".freeze, "dbo:formerBroadcastNetwork".freeze, "dbo:formerCallsign".freeze, "dbo:formerChannel".freeze, "dbo:formerChoreographer".freeze, "dbo:formerCoach".freeze, "dbo:formerHighschool".freeze, "dbo:formerName".freeze, "dbo:formerPartner".freeze, "dbo:formerTeam".freeze, "dbo:formula".freeze, "dbo:fossil".freeze, "dbo:foundation".freeze, "dbo:foundationPlace".freeze, "dbo:foundedBy".freeze, "dbo:founder".freeze, "dbo:foundingDate".freeze, "dbo:foundingYear".freeze, "dbo:fourthCommander".freeze, "dbo:frazioni".freeze, "dbo:free".freeze, "dbo:freeDanseScore".freeze, "dbo:freeFlightTime".freeze, "dbo:freeLabel".freeze, "dbo:freeProgCompetition".freeze, "dbo:freeProgScore".freeze, "dbo:freeScoreCompetition".freeze, "dbo:frequency".freeze, "dbo:frequencyOfPublication".freeze, "dbo:frequentlyUpdated".freeze, "dbo:friend".freeze, "dbo:frontierLength".freeze, "dbo:frozen".freeze, "dbo:fuel".freeze, "dbo:fuelCapacity".freeze, "dbo:fuelConsumption".freeze, "dbo:fuelSystem".freeze, "dbo:fuelType".freeze, "dbo:fuelTypeName".freeze, "dbo:fullCompetition".freeze, "dbo:fullScore".freeze, "dbo:functionEndDate".freeze, "dbo:functionEndYear".freeze, "dbo:functionStartDate".freeze, "dbo:functionStartYear".freeze, "dbo:fundedBy".freeze, "dbo:galicianSpeakersDate".freeze, "dbo:galicianSpeakersPercentage".freeze, "dbo:galleryItem".freeze, "dbo:gameArtist".freeze, "dbo:gameEngine".freeze, "dbo:gameModus".freeze, "dbo:games".freeze, "dbo:garrison".freeze, "dbo:gasChambers".freeze, "dbo:gaudiAward".freeze, "dbo:geminiAward".freeze, "dbo:gender".freeze, "dbo:geneLocation".freeze, "dbo:geneLocationEnd".freeze, "dbo:geneLocationStart".freeze, "dbo:geneReviewsId".freeze, "dbo:geneReviewsName".freeze, "dbo:generalCouncil".freeze, "dbo:generalManager".freeze, "dbo:generationUnits".freeze, "dbo:genomeDB".freeze, "dbo:genre".freeze, "dbo:genus".freeze, "dbo:geolocDepartment".freeze, "dbo:geolocDual".freeze, "dbo:geologicPeriod".freeze, "dbo:geology".freeze, "dbo:giniCoefficient".freeze, "dbo:giniCoefficientAsOf".freeze, "dbo:giniCoefficientCategory".freeze, "dbo:giniCoefficientRanking".freeze, "dbo:glycemicIndex".freeze, "dbo:gnisCode".freeze, "dbo:gnl".freeze, "dbo:goalsInLeague".freeze, "dbo:goalsInNationalTeam".freeze, "dbo:goldMedalDouble".freeze, "dbo:goldMedalMixed".freeze, "dbo:goldMedalSingle".freeze, "dbo:goldMedalist".freeze, "dbo:goldenCalfAward".freeze, "dbo:goldenGlobeAward".freeze, "dbo:goldenRaspberryAward".freeze, "dbo:governingBody".freeze, "dbo:government".freeze, "dbo:governmentCountry".freeze, "dbo:governmentElevation".freeze, "dbo:governmentMountain".freeze, "dbo:governmentPlace".freeze, "dbo:governmentPosition".freeze, "dbo:governmentRegion".freeze, "dbo:governmentType".freeze, "dbo:governor".freeze, "dbo:governorGeneral".freeze, "dbo:governorate".freeze, "dbo:goyaAward".freeze, "dbo:grades".freeze, "dbo:grammyAward".freeze, "dbo:grandsire".freeze, "dbo:grave".freeze, "dbo:grayPage".freeze, "dbo:graySubject".freeze, "dbo:greekName".freeze, "dbo:greenLongDistancePisteNumber".freeze, "dbo:greenSkiPisteNumber".freeze, "dbo:gridReference".freeze, "dbo:grindingCapability".freeze, "dbo:gross".freeze, "dbo:grossDomesticProduct".freeze, "dbo:grossDomesticProductAsOf".freeze, "dbo:grossDomesticProductNominalPerCapita".freeze, "dbo:grossDomesticProductPerPeople".freeze, "dbo:grossDomesticProductPurchasingPowerParityPerCapita".freeze, "dbo:grossDomesticProductRank".freeze, "dbo:ground".freeze, "dbo:groundsForLiquidation".freeze, "dbo:groupCommemorated".freeze, "dbo:growingGrape".freeze, "dbo:guest".freeze, "dbo:gun".freeze, "dbo:gymApparatus".freeze, "dbo:hairColor".freeze, "dbo:hairColour".freeze, "dbo:hairs".freeze, "dbo:hallOfFame".freeze, "dbo:hand".freeze, "dbo:handedness".freeze, "dbo:handisport".freeze, "dbo:hasAbsorbedMunicipality".freeze, "dbo:hasAnnotation".freeze, "dbo:hasChannel".freeze, "dbo:hasInput".freeze, "dbo:hasInsidePlace".freeze, "dbo:hasJunctionWith".freeze, "dbo:hasKMLData".freeze, "dbo:hasNaturalBust".freeze, "dbo:hasOutsidePlace".freeze, "dbo:hasSurfaceForm".freeze, "dbo:hasVariant".freeze, "dbo:head".freeze, "dbo:headAlloy".freeze, "dbo:headChef".freeze, "dbo:headLabel".freeze, "dbo:headOfFamily".freeze, "dbo:headquarter".freeze, "dbo:headteacher".freeze, "dbo:height".freeze, "dbo:heightAboveAverageTerrain".freeze, "dbo:heightAgainst".freeze, "dbo:heightAttack".freeze, "dbo:heir".freeze, "dbo:heisman".freeze, "dbo:heritageRegister".freeze, "dbo:hgncid".freeze, "dbo:highestBreak".freeze, "dbo:highestBuildingInYear".freeze, "dbo:highestMountain".freeze, "dbo:highestPlace".freeze, "dbo:highestPoint".freeze, "dbo:highestPointIsland".freeze, "dbo:highestPosition".freeze, "dbo:highestRank".freeze, "dbo:highestRegion".freeze, "dbo:highestState".freeze, "dbo:highschool".freeze, "dbo:highwaySystem".freeze, "dbo:hipSize".freeze, "dbo:historicalMap".freeze, "dbo:historicalName".freeze, "dbo:historicalRegion".freeze, "dbo:hof".freeze, "dbo:homage".freeze, "dbo:homeArena".freeze, "dbo:homeColourHexCode".freeze, "dbo:homeStadium".freeze, "dbo:homeport".freeze, "dbo:hometown".freeze, "dbo:honours".freeze, "dbo:hopmanCup".freeze, "dbo:horseRidingDiscipline".freeze, "dbo:house".freeze, "dbo:hraState".freeze, "dbo:hsvCoordinateHue".freeze, "dbo:hsvCoordinateSaturation".freeze, "dbo:hsvCoordinateValue".freeze, "dbo:hubAirport".freeze, "dbo:humanDevelopmentIndex".freeze, "dbo:humanDevelopmentIndexAsOf".freeze, "dbo:humanDevelopmentIndexRank".freeze, "dbo:humanDevelopmentIndexRankingCategory".freeze, "dbo:hybrid".freeze, "dbo:iafdId".freeze, "dbo:iataAirlineCode".freeze, "dbo:iataLocationIdentifier".freeze, "dbo:ibdbId".freeze, "dbo:icaoAirlineCode".freeze, "dbo:icaoLocationIdentifier".freeze, "dbo:icd1".freeze, "dbo:icd10".freeze, "dbo:icd9".freeze, "dbo:icdo".freeze, "dbo:iconographicAttributes".freeze, "dbo:id".freeze, "dbo:idAllocine".freeze, "dbo:idNumber".freeze, "dbo:identificationSymbol".freeze, "dbo:ideology".freeze, "dbo:iftaAward".freeze, "dbo:iihfHof".freeze, "dbo:illiteracy".freeze, "dbo:illustrator".freeze, "dbo:imageSize".freeze, "dbo:imdbId".freeze, "dbo:impactFactor".freeze, "dbo:impactFactorAsOf".freeze, "dbo:imposedDanseCompetition".freeze, "dbo:imposedDanseScore".freeze, "dbo:inCemetery".freeze, "dbo:inchi".freeze, "dbo:inclination".freeze, "dbo:income".freeze, "dbo:incumbent".freeze, "dbo:individualisedGnd".freeze, "dbo:individualisedPnd".freeze, "dbo:industry".freeze, "dbo:infantMortality".freeze, "dbo:inflow".freeze, "dbo:influenced".freeze, "dbo:influencedBy".freeze, "dbo:information".freeze, "dbo:informationName".freeze, "dbo:ingredient".freeze, "dbo:ingredientName".freeze, "dbo:initiallyUsedFor".freeze, "dbo:inn".freeze, "dbo:innervates".freeze, "dbo:inscription".freeze, "dbo:inseeCode".freeze, "dbo:installedCapacity".freeze, "dbo:institution".freeze, "dbo:instrument".freeze, "dbo:intercommunality".freeze, "dbo:interest".freeze, "dbo:internationalAffiliation".freeze, "dbo:internationalPhonePrefix".freeze, "dbo:internationalPhonePrefixLabel".freeze, "dbo:internationally".freeze, "dbo:introduced".freeze, "dbo:introductionDate".freeze, "dbo:iobdbId".freeze, "dbo:isCityState".freeze, "dbo:isHandicappedAccessible".freeze, "dbo:isPartOf".freeze, "dbo:isPartOfAnatomicalStructure".freeze, "dbo:isPartOfMilitaryConflict".freeze, "dbo:isPartOfName".freeze, "dbo:isPartOfWineRegion".freeze, "dbo:isPeerReviewed".freeze, "dbo:isRouteStop".freeze, "dbo:isbn".freeze, "dbo:isil".freeze, "dbo:island".freeze, "dbo:isniId".freeze, "dbo:iso31661Code".freeze, "dbo:iso6391Code".freeze, "dbo:iso6392Code".freeze, "dbo:iso6393Code".freeze, "dbo:isoCode".freeze, "dbo:isoCodeRegion".freeze, "dbo:issDockings".freeze, "dbo:issn".freeze, "dbo:ist".freeze, "dbo:istat".freeze, "dbo:ithfDate".freeze, "dbo:iucnCategory".freeze, "dbo:iupacName".freeze, "dbo:jockey".freeze, "dbo:jointCommunity".freeze, "dbo:jstor".freeze, "dbo:judge".freeze, "dbo:juniorSeason".freeze, "dbo:juniorTeam".freeze, "dbo:juniorYearsEndYear".freeze, "dbo:juniorYearsStartYear".freeze, "dbo:jureLanguage".freeze, "dbo:jurisdiction".freeze, "dbo:jutsu".freeze, "dbo:keyPerson".freeze, "dbo:khlDraft".freeze, "dbo:khlDraftTeam".freeze, "dbo:khlDraftYear".freeze, "dbo:killedBy".freeze, "dbo:kinOfLanguage".freeze, "dbo:kindOfCoordinate".freeze, "dbo:kindOfCriminal".freeze, "dbo:kindOfCriminalAction".freeze, "dbo:kindOfRock".freeze, "dbo:kingdom".freeze, "dbo:knownFor".freeze, "dbo:ko".freeze, "dbo:lahHof".freeze, "dbo:lake".freeze, "dbo:land".freeze, "dbo:landArea".freeze, "dbo:landPercentage".freeze, "dbo:landRegistryCode".freeze, "dbo:landeshauptmann".freeze, "dbo:landingDate".freeze, "dbo:landingSite".freeze, "dbo:landingVehicle".freeze, "dbo:landskap".freeze, "dbo:landtag".freeze, "dbo:landtagMandate".freeze, "dbo:language".freeze, "dbo:languageCode".freeze, "dbo:languageFamily".freeze, "dbo:languageRegulator".freeze, "dbo:largestCity".freeze, "dbo:largestMetro".freeze, "dbo:largestSettlement".freeze, "dbo:largestWin".freeze, "dbo:lastAirDate".freeze, "dbo:lastAppearance".freeze, "dbo:lastElectionDate".freeze, "dbo:lastFamilyMember".freeze, "dbo:lastFlight".freeze, "dbo:lastFlightEndDate".freeze, "dbo:lastFlightStartDate".freeze, "dbo:lastLaunch".freeze, "dbo:lastLaunchDate".freeze, "dbo:lastLaunchRocket".freeze, "dbo:lastPosition".freeze, "dbo:lastProMatch".freeze, "dbo:lastPublicationDate".freeze, "dbo:lastRace".freeze, "dbo:lastSeason".freeze, "dbo:lastWin".freeze, "dbo:laterality".freeze, "dbo:latestElection".freeze, "dbo:latestPreviewDate".freeze, "dbo:latestPreviewVersion".freeze, "dbo:latestReleaseDate".freeze, "dbo:latestReleaseVersion".freeze, "dbo:latinName".freeze, "dbo:launch".freeze, "dbo:launchDate".freeze, "dbo:launchPad".freeze, "dbo:launchSite".freeze, "dbo:launchVehicle".freeze, "dbo:launches".freeze, "dbo:laurenceOlivierAward".freeze, "dbo:lawCountry".freeze, "dbo:layingDown".freeze, "dbo:layout".freeze, "dbo:lcc".freeze, "dbo:lccn".freeze, "dbo:lccnId".freeze, "dbo:lchfDraft".freeze, "dbo:lchfDraftTeam".freeze, "dbo:lchfDraftYear".freeze, "dbo:leadTeam".freeze, "dbo:leadYear".freeze, "dbo:leader".freeze, "dbo:leaderFunction".freeze, "dbo:leaderName".freeze, "dbo:leaderParty".freeze, "dbo:leaderTitle".freeze, "dbo:leadership".freeze, "dbo:league".freeze, "dbo:leagueManager".freeze, "dbo:leftChild".freeze, "dbo:leftTributary".freeze, "dbo:legalArrondissement".freeze, "dbo:legalArticle".freeze, "dbo:legalForm".freeze, "dbo:legislativePeriodName".freeze, "dbo:length".freeze, "dbo:lengthQuote".freeze, "dbo:lengthReference".freeze, "dbo:lethalOnChickens".freeze, "dbo:lethalOnMice".freeze, "dbo:lethalOnRabbits".freeze, "dbo:lethalOnRats".freeze, "dbo:liberationDate".freeze, "dbo:libretto".freeze, "dbo:licenceLetter".freeze, "dbo:licenceNumber".freeze, "dbo:licenceNumberLabel".freeze, "dbo:license".freeze, "dbo:licensee".freeze, "dbo:lieutenancy".freeze, "dbo:lieutenancyArea".freeze, "dbo:lieutenant".freeze, "dbo:lifeExpectancy".freeze, "dbo:limit".freeze, "dbo:lineLength".freeze, "dbo:linguisticsTradition".freeze, "dbo:linkedSpace".freeze, "dbo:linkedTo".freeze, "dbo:listItemOf".freeze, "dbo:literaryGenre".freeze, "dbo:littlePoolRecord".freeze, "dbo:livingPlace".freeze, "dbo:loadLimit".freeze, "dbo:localAuthority".freeze, "dbo:localPhonePrefix".freeze, "dbo:locality".freeze, "dbo:localization".freeze, "dbo:localizationThumbnail".freeze, "dbo:localizationThumbnailCaption".freeze, "dbo:locatedInArea".freeze, "dbo:location".freeze, "dbo:locationCity".freeze, "dbo:locationCountry".freeze, "dbo:locationIdentifier".freeze, "dbo:locationName".freeze, "dbo:locomotive".freeze, "dbo:locusSupplementaryData".freeze, "dbo:logo".freeze, "dbo:longDistancePisteKilometre".freeze, "dbo:longDistancePisteNumber".freeze, "dbo:longName".freeze, "dbo:longtype".freeze, "dbo:lounge".freeze, "dbo:lowerAge".freeze, "dbo:lowerEarthOrbitPayload".freeze, "dbo:lowest".freeze, "dbo:lowestMountain".freeze, "dbo:lowestPlace".freeze, "dbo:lowestPoint".freeze, "dbo:lowestPosition".freeze, "dbo:lowestRegion".freeze, "dbo:lowestState".freeze, "dbo:lunarEvaTime".freeze, "dbo:lunarLandingSite".freeze, "dbo:lunarModule".freeze, "dbo:lunarOrbitTime".freeze, "dbo:lunarRover".freeze, "dbo:lunarSampleMass".freeze, "dbo:lunarSurfaceTime".freeze, "dbo:lymph".freeze, "dbo:lyrics".freeze, "dbo:magazine".freeze, "dbo:maidenFlight".freeze, "dbo:maidenFlightRocket".freeze, "dbo:maidenVoyage".freeze, "dbo:mainBuilding".freeze, "dbo:mainCharacter".freeze, "dbo:mainDomain".freeze, "dbo:mainFamilyBranch".freeze, "dbo:mainInterest".freeze, "dbo:mainIsland".freeze, "dbo:mainIslands".freeze, "dbo:mainOrgan".freeze, "dbo:mainspan".freeze, "dbo:maintainedBy".freeze, "dbo:majorIsland".freeze, "dbo:majorShrine".freeze, "dbo:majorityFloorLeader".freeze, "dbo:majorityLeader".freeze, "dbo:makeupArtist".freeze, "dbo:management".freeze, "dbo:managementCountry".freeze, "dbo:managementElevation".freeze, "dbo:managementMountain".freeze, "dbo:managementPlace".freeze, "dbo:managementPosition".freeze, "dbo:managementRegion".freeze, "dbo:manager".freeze, "dbo:managerClub".freeze, "dbo:managerSeason".freeze, "dbo:managerTitle".freeze, "dbo:managerYears".freeze, "dbo:managerYearsEndYear".freeze, "dbo:managerYearsStartYear".freeze, "dbo:managingEditor".freeze, "dbo:mandate".freeze, "dbo:manufacturer".freeze, "dbo:map".freeze, "dbo:mapCaption".freeze, "dbo:mapDescription".freeze, "dbo:march".freeze, "dbo:marketCapitalisation".freeze, "dbo:mascot".freeze, "dbo:mass".freeze, "dbo:massif".freeze, "dbo:mastersWins".freeze, "dbo:matchPoint".freeze, "dbo:material".freeze, "dbo:max".freeze, "dbo:maxAbsoluteMagnitude".freeze, "dbo:maxApparentMagnitude".freeze, "dbo:maxTime".freeze, "dbo:maximumArea".freeze, "dbo:maximumAreaQuote".freeze, "dbo:maximumBoatBeam".freeze, "dbo:maximumBoatLength".freeze, "dbo:maximumDepth".freeze, "dbo:maximumDepthQuote".freeze, "dbo:maximumDischarge".freeze, "dbo:maximumElevation".freeze, "dbo:maximumInclination".freeze, "dbo:maximumTemperature".freeze, "dbo:mayor".freeze, "dbo:mayorArticle".freeze, "dbo:mayorCouncillor".freeze, "dbo:mayorFunction".freeze, "dbo:mayorMandate".freeze, "dbo:mayorTitle".freeze, "dbo:mbaId".freeze, "dbo:meanRadius".freeze, "dbo:meanTemperature".freeze, "dbo:meaning".freeze, "dbo:measurements".freeze, "dbo:medalist".freeze, "dbo:media".freeze, "dbo:mediaItem".freeze, "dbo:mediaType".freeze, "dbo:medlinePlus".freeze, "dbo:meetingBuilding".freeze, "dbo:meetingCity".freeze, "dbo:meetingRoad".freeze, "dbo:meltingPoint".freeze, "dbo:member".freeze, "dbo:memberOfParliament".freeze, "dbo:membership".freeze, "dbo:membershipAsOf".freeze, "dbo:mentor".freeze, "dbo:mergedIntoParty".freeze, "dbo:mergedSettlement".freeze, "dbo:mergerDate".freeze, "dbo:meshId".freeze, "dbo:meshName".freeze, "dbo:meshNumber".freeze, "dbo:messierName".freeze, "dbo:metropolitanBorough".freeze, "dbo:mgiid".freeze, "dbo:militaryBranch".freeze, "dbo:militaryCommand".freeze, "dbo:militaryFunction".freeze, "dbo:militaryGovernment".freeze, "dbo:militaryRank".freeze, "dbo:militaryUnit".freeze, "dbo:militaryUnitSize".freeze, "dbo:millSpan".freeze, "dbo:millType".freeze, "dbo:millsCodeBE".freeze, "dbo:millsCodeDutch".freeze, "dbo:millsCodeNL".freeze, "dbo:millsCodeNLVerdwenen".freeze, "dbo:millsCodeNLWindmotoren".freeze, "dbo:min".freeze, "dbo:minTime".freeze, "dbo:minimumArea".freeze, "dbo:minimumAreaQuote".freeze, "dbo:minimumDischarge".freeze, "dbo:minimumElevation".freeze, "dbo:minimumInclination".freeze, "dbo:minimumTemperature".freeze, "dbo:minority".freeze, "dbo:minorityFloorLeader".freeze, "dbo:minorityLeader".freeze, "dbo:mirDockings".freeze, "dbo:mission".freeze, "dbo:missionDuration".freeze, "dbo:missions".freeze, "dbo:model".freeze, "dbo:modelEndDate".freeze, "dbo:modelEndYear".freeze, "dbo:modelLineVehicle".freeze, "dbo:modelStartDate".freeze, "dbo:modelStartYear".freeze, "dbo:molecularWeight".freeze, "dbo:monarch".freeze, "dbo:month".freeze, "dbo:mood".freeze, "dbo:mostDownPoint".freeze, "dbo:mostWins".freeze, "dbo:mother".freeze, "dbo:motto".freeze, "dbo:mount".freeze, "dbo:mountainRange".freeze, "dbo:mouthCountry".freeze, "dbo:mouthDistrict".freeze, "dbo:mouthElevation".freeze, "dbo:mouthMountain".freeze, "dbo:mouthPlace".freeze, "dbo:mouthPosition".freeze, "dbo:mouthRegion".freeze, "dbo:mouthState".freeze, "dbo:movement".freeze, "dbo:movie".freeze, "dbo:mukhtar".freeze, "dbo:municipality".freeze, "dbo:municipalityAbsorbedBy".freeze, "dbo:municipalityCode".freeze, "dbo:municipalityRenamedTo".freeze, "dbo:municipalityType".freeze, "dbo:museum".freeze, "dbo:museumType".freeze, "dbo:musicBand".freeze, "dbo:musicBy".freeze, "dbo:musicComposer".freeze, "dbo:musicFormat".freeze, "dbo:musicFusionGenre".freeze, "dbo:musicSubgenre".freeze, "dbo:musicType".freeze, "dbo:musicalArtist".freeze, "dbo:musicalBand".freeze, "dbo:musicalKey".freeze, "dbo:musicians".freeze, "dbo:muteCharacterInPlay".freeze, "dbo:mvp".freeze, "dbo:mythology".freeze, "dbo:naacpImageAward".freeze, "dbo:name".freeze, "dbo:nameAsOf".freeze, "dbo:nameDay".freeze, "dbo:nameInCantoneseChinese".freeze, "dbo:nameInHangulKorean".freeze, "dbo:nameInHanjaKorean".freeze, "dbo:nameInJapanese".freeze, "dbo:nameInMindongyuChinese".freeze, "dbo:nameInMinnanyuChinese".freeze, "dbo:nameInPinyinChinese".freeze, "dbo:nameInSimplifiedChinese".freeze, "dbo:nameInTraditionalChinese".freeze, "dbo:nameInWadeGilesChinese".freeze, "dbo:namedAfter".freeze, "dbo:namedByLanguage".freeze, "dbo:names".freeze, "dbo:narrator".freeze, "dbo:nation".freeze, "dbo:nationalAffiliation".freeze, "dbo:nationalChampionship".freeze, "dbo:nationalFilmAward".freeze, "dbo:nationalOlympicCommittee".freeze, "dbo:nationalRanking".freeze, "dbo:nationalSelection".freeze, "dbo:nationalTeam".freeze, "dbo:nationalTeamMatchPoint".freeze, "dbo:nationalTeamYear".freeze, "dbo:nationalTopographicSystemMapNumber".freeze, "dbo:nationalTournament".freeze, "dbo:nationalTournamentBronze".freeze, "dbo:nationalTournamentGold".freeze, "dbo:nationalTournamentSilver".freeze, "dbo:nationalYears".freeze, "dbo:nationality".freeze, "dbo:ncaaSeason".freeze, "dbo:ncaaTeam".freeze, "dbo:ncbhof".freeze, "dbo:ndlId".freeze, "dbo:nearestCity".freeze, "dbo:neighboringMunicipality".freeze, "dbo:neighbourConstellations".freeze, "dbo:neighbourRegion".freeze, "dbo:neighbourhood".freeze, "dbo:nerve".freeze, "dbo:netIncome".freeze, "dbo:network".freeze, "dbo:networth".freeze, "dbo:newspaper".freeze, "dbo:nextEntity".freeze, "dbo:nextEvent".freeze, "dbo:nextMission".freeze, "dbo:nflCode".freeze, "dbo:nflSeason".freeze, "dbo:nflTeam".freeze, "dbo:ngcName".freeze, "dbo:nisCode".freeze, "dbo:nlaId".freeze, "dbo:nndbId".freeze, "dbo:noContest".freeze, "dbo:nobelLaureates".freeze, "dbo:nominee".freeze, "dbo:nonFictionSubject".freeze, "dbo:nonProfessionalCareer".freeze, "dbo:northEastPlace".freeze, "dbo:northPlace".freeze, "dbo:northWestPlace".freeze, "dbo:notSolubleIn".freeze, "dbo:notableCommander".freeze, "dbo:notableFeatures".freeze, "dbo:notableIdea".freeze, "dbo:notableStudent".freeze, "dbo:notableWine".freeze, "dbo:notableWork".freeze, "dbo:note".freeze, "dbo:noteOnPlaceOfBurial".freeze, "dbo:noteOnRestingPlace".freeze, "dbo:notes".freeze, "dbo:notifyDate".freeze, "dbo:novel".freeze, "dbo:nrhpReferenceNumber".freeze, "dbo:nrhpType".freeze, "dbo:nssdcId".freeze, "dbo:number".freeze, "dbo:numberBuilt".freeze, "dbo:numberOfAcademicStaff".freeze, "dbo:numberOfAlbums".freeze, "dbo:numberOfArrondissement".freeze, "dbo:numberOfBombs".freeze, "dbo:numberOfBronzeMedalsWon".freeze, "dbo:numberOfCanton".freeze, "dbo:numberOfCantons".freeze, "dbo:numberOfCapitalDeputies".freeze, "dbo:numberOfCity".freeze, "dbo:numberOfClassrooms".freeze, "dbo:numberOfClubs".freeze, "dbo:numberOfCollectionItems".freeze, "dbo:numberOfCompetitors".freeze, "dbo:numberOfCounties".freeze, "dbo:numberOfCountries".freeze, "dbo:numberOfCrew".freeze, "dbo:numberOfDeaths".freeze, "dbo:numberOfDependency".freeze, "dbo:numberOfDistrict".freeze, "dbo:numberOfDistricts".freeze, "dbo:numberOfDoctoralStudents".freeze, "dbo:numberOfEmployees".freeze, "dbo:numberOfEntrances".freeze, "dbo:numberOfEpisodes".freeze, "dbo:numberOfFederalDeputies".freeze, "dbo:numberOfFilms".freeze, "dbo:numberOfGoals".freeze, "dbo:numberOfGoldMedalsWon".freeze, "dbo:numberOfGraduateStudents".freeze, "dbo:numberOfGraves".freeze, "dbo:numberOfHoles".freeze, "dbo:numberOfHouses".freeze, "dbo:numberOfIntercommunality".freeze, "dbo:numberOfIsland".freeze, "dbo:numberOfIslands".freeze, "dbo:numberOfLanes".freeze, "dbo:numberOfLaps".freeze, "dbo:numberOfLaunches".freeze, "dbo:numberOfLawyers".freeze, "dbo:numberOfLines".freeze, "dbo:numberOfLiveAlbums".freeze, "dbo:numberOfLocations".freeze, "dbo:numberOfMatches".freeze, "dbo:numberOfMembers".freeze, "dbo:numberOfMembersAsOf".freeze, "dbo:numberOfMinistries".freeze, "dbo:numberOfMunicipalities".freeze, "dbo:numberOfNeighbourhood".freeze, "dbo:numberOfNewlyIntroducedSports".freeze, "dbo:numberOfOffices".freeze, "dbo:numberOfOfficials".freeze, "dbo:numberOfOrbits".freeze, "dbo:numberOfPads".freeze, "dbo:numberOfPages".freeze, "dbo:numberOfParkingSpaces".freeze, "dbo:numberOfParticipatingAthletes".freeze, "dbo:numberOfParticipatingFemaleAthletes".freeze, "dbo:numberOfParticipatingMaleAthletes".freeze, "dbo:numberOfParticipatingNations".freeze, "dbo:numberOfPeopleAttending".freeze, "dbo:numberOfPeopleLicensed".freeze, "dbo:numberOfPiersInWater".freeze, "dbo:numberOfPixels".freeze, "dbo:numberOfPlatformLevels".freeze, "dbo:numberOfPlayers".freeze, "dbo:numberOfPostgraduateStudents".freeze, "dbo:numberOfProfessionals".freeze, "dbo:numberOfReactors".freeze, "dbo:numberOfRestaurants".freeze, "dbo:numberOfRockets".freeze, "dbo:numberOfRooms".freeze, "dbo:numberOfRun".freeze, "dbo:numberOfSeasons".freeze, "dbo:numberOfSeats".freeze, "dbo:numberOfSeatsInParliament".freeze, "dbo:numberOfSettlement".freeze, "dbo:numberOfSilverMedalsWon".freeze, "dbo:numberOfSpans".freeze, "dbo:numberOfSpeakers".freeze, "dbo:numberOfSports".freeze, "dbo:numberOfSportsEvents".freeze, "dbo:numberOfStaff".freeze, "dbo:numberOfStars".freeze, "dbo:numberOfStateDeputies".freeze, "dbo:numberOfStations".freeze, "dbo:numberOfStudents".freeze, "dbo:numberOfStudioAlbums".freeze, "dbo:numberOfSuites".freeze, "dbo:numberOfTeams".freeze, "dbo:numberOfTracks".freeze, "dbo:numberOfTurns".freeze, "dbo:numberOfUndergraduateStudents".freeze, "dbo:numberOfVehicles".freeze, "dbo:numberOfVillages".freeze, "dbo:numberOfVineyards".freeze, "dbo:numberOfVisitors".freeze, "dbo:numberOfVisitorsAsOf".freeze, "dbo:numberOfVolumes".freeze, "dbo:numberOfVolunteers".freeze, "dbo:numberOfWineries".freeze, "dbo:numberSold".freeze, "dbo:nutsCode".freeze, "dbo:observatory".freeze, "dbo:occupation".freeze, "dbo:oclc".freeze, "dbo:offeredClasses".freeze, "dbo:office".freeze, "dbo:officerInCharge".freeze, "dbo:officialLanguage".freeze, "dbo:officialName".freeze, "dbo:officialOpenedBy".freeze, "dbo:officialSchoolColour".freeze, "dbo:ofsCode".freeze, "dbo:oilSystem".freeze, "dbo:okatoCode".freeze, "dbo:oldDistrict".freeze, "dbo:oldName".freeze, "dbo:oldProvince".freeze, "dbo:oldTeamCoached".freeze, "dbo:oldcode".freeze, "dbo:olivierAward".freeze, "dbo:olympicGames".freeze, "dbo:olympicGamesBronze".freeze, "dbo:olympicGamesGold".freeze, "dbo:olympicGamesSilver".freeze, "dbo:olympicGamesWins".freeze, "dbo:olympicOathSwornBy".freeze, "dbo:olympicOathSwornByAthlete".freeze, "dbo:olympicOathSwornByJudge".freeze, "dbo:omim".freeze, "dbo:onChromosome".freeze, "dbo:ons".freeze, "dbo:openAccessContent".freeze, "dbo:openingDate".freeze, "dbo:openingFilm".freeze, "dbo:openingTheme".freeze, "dbo:openingYear".freeze, "dbo:operatingIncome".freeze, "dbo:operatingSystem".freeze, "dbo:operator".freeze, "dbo:opponent".freeze, "dbo:opponents".freeze, "dbo:orbitalEccentricity".freeze, "dbo:orbitalFlights".freeze, "dbo:orbitalInclination".freeze, "dbo:orbitalPeriod".freeze, "dbo:orbits".freeze, "dbo:orcidId".freeze, "dbo:order".freeze, "dbo:orderDate".freeze, "dbo:orderInOffice".freeze, "dbo:ordination".freeze, "dbo:organ".freeze, "dbo:organSystem".freeze, "dbo:organisation".freeze, "dbo:organisationMember".freeze, "dbo:orientation".freeze, "dbo:origin".freeze, "dbo:originalDanseCompetition".freeze, "dbo:originalDanseScore".freeze, "dbo:originalEndPoint".freeze, "dbo:originalLanguage".freeze, "dbo:originalMaximumBoatBeam".freeze, "dbo:originalMaximumBoatLength".freeze, "dbo:originalName".freeze, "dbo:originalStartPoint".freeze, "dbo:originalTitle".freeze, "dbo:originallyUsedFor".freeze, "dbo:origo".freeze, "dbo:orogeny".freeze, "dbo:orthologousGene".freeze, "dbo:other".freeze, "dbo:otherActivity".freeze, "dbo:otherAppearances".freeze, "dbo:otherChannel".freeze, "dbo:otherFamilyBranch".freeze, "dbo:otherFuelType".freeze, "dbo:otherFunction".freeze, "dbo:otherInformation".freeze, "dbo:otherLanguage".freeze, "dbo:otherMedia".freeze, "dbo:otherName".freeze, "dbo:otherOccupation".freeze, "dbo:otherParty".freeze, "dbo:otherServingLines".freeze, "dbo:otherSportsExperience".freeze, "dbo:otherWins".freeze, "dbo:outflow".freeze, "dbo:output".freeze, "dbo:outskirts".freeze, "dbo:overallRecord".freeze, "dbo:oversight".freeze, "dbo:owner".freeze, "dbo:owningCompany".freeze, "dbo:owningOrganisation".freeze, "dbo:owns".freeze, "dbo:painter".freeze, "dbo:parent".freeze, "dbo:parentCompany".freeze, "dbo:parentMountainPeak".freeze, "dbo:parentOrganisation".freeze, "dbo:parish".freeze, "dbo:parkingInformation".freeze, "dbo:parkingLotsCars".freeze, "dbo:parkingLotsTrucks".freeze, "dbo:parliament".freeze, "dbo:parliamentType".freeze, "dbo:parliamentaryGroup".freeze, "dbo:part".freeze, "dbo:partialFailedLaunches".freeze, "dbo:participant".freeze, "dbo:participatingIn".freeze, "dbo:particularSign".freeze, "dbo:partner".freeze, "dbo:party".freeze, "dbo:partyNumber".freeze, "dbo:passengersPerDay".freeze, "dbo:passengersPerYear".freeze, "dbo:passengersUsedSystem".freeze, "dbo:pastMember".freeze, "dbo:pastor".freeze, "dbo:patent".freeze, "dbo:patron".freeze, "dbo:patronSaint".freeze, "dbo:pccSecretary".freeze, "dbo:pdb".freeze, "dbo:peabodyAward".freeze, "dbo:penaltiesTeamA".freeze, "dbo:penaltiesTeamB".freeze, "dbo:penaltyScore".freeze, "dbo:penisLength".freeze, "dbo:peopleName".freeze, "dbo:perCapitaIncome".freeze, "dbo:perCapitaIncomeAsOf".freeze, "dbo:perCapitaIncomeRank".freeze, "dbo:percentage".freeze, "dbo:percentageAlcohol".freeze, "dbo:percentageFat".freeze, "dbo:percentageLiteracyMen".freeze, "dbo:percentageLiteracyWomen".freeze, "dbo:percentageLiterate".freeze, "dbo:percentageOfAreaWater".freeze, "dbo:performer".freeze, "dbo:periapsis".freeze, "dbo:perifocus".freeze, "dbo:perimeter".freeze, "dbo:period".freeze, "dbo:person".freeze, "dbo:personFunction".freeze, "dbo:personName".freeze, "dbo:pgaWins".freeze, "dbo:philosophicalSchool".freeze, "dbo:phonePrefix".freeze, "dbo:phonePrefixLabel".freeze, "dbo:photographer".freeze, "dbo:phylum".freeze, "dbo:picture".freeze, "dbo:pictureDescription".freeze, "dbo:pictureFormat".freeze, "dbo:picturesCommonsCategory".freeze, "dbo:piercing".freeze, "dbo:pisciculturalPopulation".freeze, "dbo:pistonStroke".freeze, "dbo:place".freeze, "dbo:placeOfBurial".freeze, "dbo:placeOfWorship".freeze, "dbo:plant".freeze, "dbo:playRole".freeze, "dbo:playerInTeam".freeze, "dbo:playerSeason".freeze, "dbo:playerStatus".freeze, "dbo:playingTime".freeze, "dbo:plays".freeze, "dbo:pluviometry".freeze, "dbo:podium".freeze, "dbo:podiums".freeze, "dbo:pole".freeze, "dbo:poleDriver".freeze, "dbo:poleDriverCountry".freeze, "dbo:poleDriverTeam".freeze, "dbo:polePosition".freeze, "dbo:poles".freeze, "dbo:policeName".freeze, "dbo:polishFilmAward".freeze, "dbo:politicGovernmentDepartment".freeze, "dbo:politicalFunction".freeze, "dbo:politicalLeader".freeze, "dbo:politicalMajority".freeze, "dbo:politicalPartyInLegislature".freeze, "dbo:politicalPartyOfLeader".freeze, "dbo:politicalSeats".freeze, "dbo:popularVote".freeze, "dbo:population".freeze, "dbo:populationAsOf".freeze, "dbo:populationDensity".freeze, "dbo:populationMetro".freeze, "dbo:populationMetroDensity".freeze, "dbo:populationPctChildren".freeze, "dbo:populationPctMen".freeze, "dbo:populationPctWomen".freeze, "dbo:populationPlace".freeze, "dbo:populationQuote".freeze, "dbo:populationRural".freeze, "dbo:populationRuralDensity".freeze, "dbo:populationTotal".freeze, "dbo:populationTotalRanking".freeze, "dbo:populationTotalReference".freeze, "dbo:populationUrban".freeze, "dbo:populationUrbanDensity".freeze, "dbo:populationYear".freeze, "dbo:portfolio".freeze, "dbo:portrayer".freeze, "dbo:position".freeze, "dbo:postalCode".freeze, "dbo:power".freeze, "dbo:powerOutput".freeze, "dbo:powerType".freeze, "dbo:precursor".freeze, "dbo:predecessor".freeze, "dbo:prefaceBy".freeze, "dbo:prefect".freeze, "dbo:prefectMandate".freeze, "dbo:prefecture".freeze, "dbo:prefix".freeze, "dbo:premiereDate".freeze, "dbo:premierePlace".freeze, "dbo:premiereYear".freeze, "dbo:presentMunicipality".freeze, "dbo:presentName".freeze, "dbo:presenter".freeze, "dbo:president".freeze, "dbo:presidentGeneralCouncil".freeze, "dbo:presidentGeneralCouncilMandate".freeze, "dbo:presidentRegionalCouncil".freeze, "dbo:presidentRegionalCouncilMandate".freeze, "dbo:previousDemographics".freeze, "dbo:previousEditor".freeze, "dbo:previousEntity".freeze, "dbo:previousEvent".freeze, "dbo:previousInfrastructure".freeze, "dbo:previousMission".freeze, "dbo:previousName".freeze, "dbo:previousPopulation".freeze, "dbo:previousPopulationTotal".freeze, "dbo:previousWork".freeze, "dbo:price".freeze, "dbo:primaryFuelType".freeze, "dbo:primate".freeze, "dbo:primeMinister".freeze, "dbo:primogenitor".freeze, "dbo:principal".freeze, "dbo:principalArea".freeze, "dbo:principalEngineer".freeze, "dbo:proPeriod".freeze, "dbo:proSince".freeze, "dbo:proTeam".freeze, "dbo:proYear".freeze, "dbo:probowlPick".freeze, "dbo:procedure".freeze, "dbo:producedBy".freeze, "dbo:producer".freeze, "dbo:produces".freeze, "dbo:product".freeze, "dbo:productShape".freeze, "dbo:production".freeze, "dbo:productionCompany".freeze, "dbo:productionEndDate".freeze, "dbo:productionEndYear".freeze, "dbo:productionStartDate".freeze, "dbo:productionStartYear".freeze, "dbo:productionYears".freeze, "dbo:profession".freeze, "dbo:programCost".freeze, "dbo:programmeFormat".freeze, "dbo:programmingLanguage".freeze, "dbo:project".freeze, "dbo:projectBudgetFunding".freeze, "dbo:projectBudgetTotal".freeze, "dbo:projectCoordinator".freeze, "dbo:projectEndDate".freeze, "dbo:projectKeyword".freeze, "dbo:projectObjective".freeze, "dbo:projectParticipant".freeze, "dbo:projectReferenceID".freeze, "dbo:projectStartDate".freeze, "dbo:projectType".freeze, "dbo:prominence".freeze, "dbo:promotion".freeze, "dbo:pronunciation".freeze, "dbo:prospectLeague".freeze, "dbo:prospectTeam".freeze, "dbo:protectionStatus".freeze, "dbo:protein".freeze, "dbo:protestantPercentage".freeze, "dbo:provCode".freeze, "dbo:provides".freeze, "dbo:province".freeze, "dbo:provinceIsoCode".freeze, "dbo:provinceLink".freeze, "dbo:provost".freeze, "dbo:pseudonym".freeze, "dbo:pubchem".freeze, "dbo:publication".freeze, "dbo:publicationDate".freeze, "dbo:publiclyAccessible".freeze, "dbo:publisher".freeze, "dbo:purchasingPowerParity".freeze, "dbo:purchasingPowerParityRank".freeze, "dbo:purchasingPowerParityYear".freeze, "dbo:purpose".freeze, "dbo:qatarClassic".freeze, "dbo:quebecerTitle".freeze, "dbo:quotation".freeze, "dbo:quote".freeze, "dbo:ra".freeze, "dbo:race".freeze, "dbo:raceHorse".freeze, "dbo:raceLength".freeze, "dbo:raceResult".freeze, "dbo:raceTrack".freeze, "dbo:raceWins".freeze, "dbo:races".freeze, "dbo:racketCatching".freeze, "dbo:radio".freeze, "dbo:radioStation".freeze, "dbo:radius_ly".freeze, "dbo:railGauge".freeze, "dbo:railwayLineUsingTunnel".freeze, "dbo:railwayPlatforms".freeze, "dbo:railwayRollingStock".freeze, "dbo:range".freeze, "dbo:rank".freeze, "dbo:rankAgreement".freeze, "dbo:rankArea".freeze, "dbo:rankInFinalMedalCount".freeze, "dbo:rankPopulation".freeze, "dbo:ranking".freeze, "dbo:rankingWins".freeze, "dbo:rankingsDoubles".freeze, "dbo:rankingsSingles".freeze, "dbo:rating".freeze, "dbo:ratio".freeze, "dbo:rebuildDate".freeze, "dbo:rebuilder".freeze, "dbo:rebuildingDate".freeze, "dbo:rebuildingYear".freeze, "dbo:recentWinner".freeze, "dbo:recommissioningDate".freeze, "dbo:recordDate".freeze, "dbo:recordLabel".freeze, "dbo:recordedIn".freeze, "dbo:rector".freeze, "dbo:redListIdNL".freeze, "dbo:redLongDistancePisteNumber".freeze, "dbo:redSkiPisteNumber".freeze, "dbo:redline".freeze, "dbo:refcul".freeze, "dbo:reference".freeze, "dbo:reffBourgmestre".freeze, "dbo:refgen".freeze, "dbo:refgeo".freeze, "dbo:refpol".freeze, "dbo:refseq".freeze, "dbo:refseqmrna".freeze, "dbo:refseqprotein".freeze, "dbo:regency".freeze, "dbo:regentOf".freeze, "dbo:regime".freeze, "dbo:region".freeze, "dbo:regionLink".freeze, "dbo:regionServed".freeze, "dbo:regionType".freeze, "dbo:regionalCouncil".freeze, "dbo:regionalLanguage".freeze, "dbo:regionalPrefecture".freeze, "dbo:registration".freeze, "dbo:registryNumber".freeze, "dbo:reign".freeze, "dbo:reignName".freeze, "dbo:reigningPope".freeze, "dbo:related".freeze, "dbo:relatedFunctions".freeze, "dbo:relatedMeanOfTransportation".freeze, "dbo:relatedPlaces".freeze, "dbo:relation".freeze, "dbo:relative".freeze, "dbo:relativeAtomicMass".freeze, "dbo:releaseDate".freeze, "dbo:releaseLocation".freeze, "dbo:relics".freeze, "dbo:relief".freeze, "dbo:religion".freeze, "dbo:religiousHead".freeze, "dbo:religiousHeadLabel".freeze, "dbo:religiousOrder".freeze, "dbo:reopened".freeze, "dbo:reopeningDate".freeze, "dbo:reopeningYear".freeze, "dbo:reportingMark".freeze, "dbo:representative".freeze, "dbo:requirement".freeze, "dbo:reservations".freeze, "dbo:residence".freeze, "dbo:resolution".freeze, "dbo:restingDate".freeze, "dbo:restingPlace".freeze, "dbo:restingPlacePosition".freeze, "dbo:restoreDate".freeze, "dbo:result".freeze, "dbo:retentionTime".freeze, "dbo:retired".freeze, "dbo:retiredRocket".freeze, "dbo:retirementDate".freeze, "dbo:revenue".freeze, "dbo:review".freeze, "dbo:rgbCoordinateBlue".freeze, "dbo:rgbCoordinateGreen".freeze, "dbo:rgbCoordinateRed".freeze, "dbo:ridId".freeze, "dbo:rightAscension".freeze, "dbo:rightChild".freeze, "dbo:rightTributary".freeze, "dbo:rival".freeze, "dbo:river".freeze, "dbo:riverBranch".freeze, "dbo:riverBranchOf".freeze, "dbo:riverMouth".freeze, "dbo:rkdArtistsId".freeze, "dbo:road".freeze, "dbo:rocket".freeze, "dbo:rocketFunction".freeze, "dbo:rocketStages".freeze, "dbo:rolandGarrosDouble".freeze, "dbo:rolandGarrosMixed".freeze, "dbo:rolandGarrosSingle".freeze, "dbo:role".freeze, "dbo:roleInEvent".freeze, "dbo:roofHeight".freeze, "dbo:rotationPeriod".freeze, "dbo:route".freeze, "dbo:routeActivity".freeze, "dbo:routeDirection".freeze, "dbo:routeEnd".freeze, "dbo:routeEndDirection".freeze, "dbo:routeEndLocation".freeze, "dbo:routeJunction".freeze, "dbo:routeLine".freeze, "dbo:routeNext".freeze, "dbo:routeNumber".freeze, "dbo:routePrevious".freeze, "dbo:routeStart".freeze, "dbo:routeStartDirection".freeze, "dbo:routeStartLocation".freeze, "dbo:routeTypeAbbreviation".freeze, "dbo:royalAnthem".freeze, "dbo:ruling".freeze, "dbo:runningMate".freeze, "dbo:runtime".freeze, "dbo:runwayDesignation".freeze, "dbo:runwayLength".freeze, "dbo:runwaySurface".freeze, "dbo:runwayWidth".freeze, "dbo:ruralMunicipality".freeze, "dbo:saint".freeze, "dbo:salary".freeze, "dbo:sales".freeze, "dbo:sameName".freeze, "dbo:satScore".freeze, "dbo:satellite".freeze, "dbo:satellitesDeployed".freeze, "dbo:scale".freeze, "dbo:scene".freeze, "dbo:school".freeze, "dbo:schoolBoard".freeze, "dbo:schoolCode".freeze, "dbo:schoolNumber".freeze, "dbo:schoolPatron".freeze, "dbo:scientificName".freeze, "dbo:score".freeze, "dbo:screenActorsGuildAward".freeze, "dbo:sea".freeze, "dbo:season".freeze, "dbo:seasonManager".freeze, "dbo:seasonNumber".freeze, "dbo:seatNumber".freeze, "dbo:seatingCapacity".freeze, "dbo:second".freeze, "dbo:secondCommander".freeze, "dbo:secondDriver".freeze, "dbo:secondDriverCountry".freeze, "dbo:secondLeader".freeze, "dbo:secondPlace".freeze, "dbo:secondPopularVote".freeze, "dbo:secondTeam".freeze, "dbo:secretaryGeneral".freeze, "dbo:security".freeze, "dbo:seiyu".freeze, "dbo:selection".freeze, "dbo:selectionPoint".freeze, "dbo:selectionYear".freeze, "dbo:selibrId".freeze, "dbo:senator".freeze, "dbo:senior".freeze, "dbo:seniority".freeze, "dbo:seniunija".freeze, "dbo:sentence".freeze, "dbo:series".freeze, "dbo:service".freeze, "dbo:serviceEndDate".freeze, "dbo:serviceEndYear".freeze, "dbo:serviceModule".freeze, "dbo:serviceNumber".freeze, "dbo:serviceStartDate".freeze, "dbo:serviceStartYear".freeze, "dbo:servingRailwayLine".freeze, "dbo:servingSize".freeze, "dbo:servingTemperature".freeze, "dbo:sessionNumber".freeze, "dbo:setDesigner".freeze, "dbo:settingOfPlay".freeze, "dbo:settlement".freeze, "dbo:settlementAttached".freeze, "dbo:setupTime".freeze, "dbo:sex".freeze, "dbo:sexualOrientation".freeze, "dbo:shape".freeze, "dbo:shareDate".freeze, "dbo:shareOfAudience".freeze, "dbo:shareSource".freeze, "dbo:sharingOutPopulation".freeze, "dbo:sharingOutPopulationYear".freeze, "dbo:sheading".freeze, "dbo:shipBeam".freeze, "dbo:shipCrew".freeze, "dbo:shipDisplacement".freeze, "dbo:shipDraft".freeze, "dbo:shipLaunch".freeze, "dbo:shoeNumber".freeze, "dbo:shoeSize".freeze, "dbo:shoot".freeze, "dbo:shoots".freeze, "dbo:shoreLength".freeze, "dbo:shortProgCompetition".freeze, "dbo:shortProgScore".freeze, "dbo:show".freeze, "dbo:showJudge".freeze, "dbo:shuttle".freeze, "dbo:sibling".freeze, "dbo:signName".freeze, "dbo:signature".freeze, "dbo:significantBuilding".freeze, "dbo:significantDesign".freeze, "dbo:significantProject".freeze, "dbo:silCode".freeze, "dbo:silverMedalDouble".freeze, "dbo:silverMedalMixed".freeze, "dbo:silverMedalSingle".freeze, "dbo:silverMedalist".freeze, "dbo:simcCode".freeze, "dbo:similar".freeze, "dbo:sire".freeze, "dbo:siren".freeze, "dbo:sisterCollege".freeze, "dbo:sisterNewspaper".freeze, "dbo:sisterStation".freeze, "dbo:sixthFormStudents".freeze, "dbo:sizeBlazon".freeze, "dbo:sizeLogo".freeze, "dbo:sizeMap".freeze, "dbo:sizeThumbnail".freeze, "dbo:size_v".freeze, "dbo:skiLift".freeze, "dbo:skiPisteKilometre".freeze, "dbo:skiPisteNumber".freeze, "dbo:skiTow".freeze, "dbo:skills".freeze, "dbo:skinColor".freeze, "dbo:slogan".freeze, "dbo:smiles".freeze, "dbo:snowParkNumber".freeze, "dbo:soccerLeaguePromoted".freeze, "dbo:soccerLeagueRelegated".freeze, "dbo:soccerLeagueSeason".freeze, "dbo:soccerLeagueWinner".freeze, "dbo:soccerTournamentClosingSeason".freeze, "dbo:soccerTournamentLastChampion".freeze, "dbo:soccerTournamentMostSteady".freeze, "dbo:soccerTournamentMostSuccesfull".freeze, "dbo:soccerTournamentOpeningSeason".freeze, "dbo:soccerTournamentThisSeason".freeze, "dbo:soccerTournamentTopScorer".freeze, "dbo:solicitorGeneral".freeze, "dbo:solubility".freeze, "dbo:solventWithBadSolubility".freeze, "dbo:solventWithGoodSolubility".freeze, "dbo:solventWithMediocreSolubility".freeze, "dbo:soundRecording".freeze, "dbo:source".freeze, "dbo:sourceConfluence".freeze, "dbo:sourceConfluenceCountry".freeze, "dbo:sourceConfluenceElevation".freeze, "dbo:sourceConfluenceMountain".freeze, "dbo:sourceConfluencePlace".freeze, "dbo:sourceConfluencePosition".freeze, "dbo:sourceConfluenceRegion".freeze, "dbo:sourceConfluenceState".freeze, "dbo:sourceCountry".freeze, "dbo:sourceDistrict".freeze, "dbo:sourceElevation".freeze, "dbo:sourceMountain".freeze, "dbo:sourcePlace".freeze, "dbo:sourcePosition".freeze, "dbo:sourceRegion".freeze, "dbo:sourceState".freeze, "dbo:sourceText".freeze, "dbo:southEastPlace".freeze, "dbo:southPlace".freeze, "dbo:southWestPlace".freeze, "dbo:sovereignCountry".freeze, "dbo:space".freeze, "dbo:spacecraft".freeze, "dbo:spacestation".freeze, "dbo:spacewalkBegin".freeze, "dbo:spacewalkEnd".freeze, "dbo:speaker".freeze, "dbo:specialEffects".freeze, "dbo:specialTrial".freeze, "dbo:specialist".freeze, "dbo:speciality".freeze, "dbo:species".freeze, "dbo:speedLimit".freeze, "dbo:spike".freeze, "dbo:splitFromParty".freeze, "dbo:spokenIn".freeze, "dbo:spokesperson".freeze, "dbo:sport".freeze, "dbo:sportCountry".freeze, "dbo:sportDiscipline".freeze, "dbo:sportGoverningBody".freeze, "dbo:sportSpecialty".freeze, "dbo:sportsFunction".freeze, "dbo:spouse".freeze, "dbo:spouseName".freeze, "dbo:spurOf".freeze, "dbo:spurType".freeze, "dbo:squadNumber".freeze, "dbo:stadium".freeze, "dbo:staff".freeze, "dbo:starRating".freeze, "dbo:starring".freeze, "dbo:start".freeze, "dbo:startCareer".freeze, "dbo:startDate".freeze, "dbo:startDateTime".freeze, "dbo:startOccupation".freeze, "dbo:startPoint".freeze, "dbo:startReign".freeze, "dbo:startWct".freeze, "dbo:startWqs".freeze, "dbo:startYear".freeze, "dbo:startYearOfInsertion".freeze, "dbo:startYearOfSales".freeze, "dbo:statName".freeze, "dbo:statValue".freeze, "dbo:state".freeze, "dbo:stateDelegate".freeze, "dbo:stateOfOrigin".freeze, "dbo:stateOfOriginPoint".freeze, "dbo:stateOfOriginTeam".freeze, "dbo:stateOfOriginYear".freeze, "dbo:stationEvaDuration".freeze, "dbo:stationStructure".freeze, "dbo:stationVisitDuration".freeze, "dbo:statistic".freeze, "dbo:statisticLabel".freeze, "dbo:statisticValue".freeze, "dbo:statisticYear".freeze, "dbo:status".freeze, "dbo:statusManager".freeze, "dbo:statusYear".freeze, "dbo:stellarClassification".freeze, "dbo:stockExchange".freeze, "dbo:storyEditor".freeze, "dbo:strength".freeze, "dbo:structuralSystem".freeze, "dbo:student".freeze, "dbo:style".freeze, "dbo:stylisticOrigin".freeze, "dbo:subClassis".freeze, "dbo:subFamily".freeze, "dbo:subGenus".freeze, "dbo:subMunicipalityType".freeze, "dbo:subOrder".freeze, "dbo:subPrefecture".freeze, "dbo:subTribus".freeze, "dbo:subdivision".freeze, "dbo:subdivisionLink".freeze, "dbo:subdivisionName".freeze, "dbo:subdivisions".freeze, "dbo:subjectOfPlay".freeze, "dbo:subjectTerm".freeze, "dbo:sublimationPoint".freeze, "dbo:suborbitalFlights".freeze, "dbo:subprefecture".freeze, "dbo:subregion".freeze, "dbo:subsequentInfrastructure".freeze, "dbo:subsequentWork".freeze, "dbo:subsidiary".freeze, "dbo:subsystem".freeze, "dbo:subsystemLink".freeze, "dbo:subtitle".freeze, "dbo:successfulLaunches".freeze, "dbo:successor".freeze, "dbo:sudocId".freeze, "dbo:summerAppearances".freeze, "dbo:summerTemperature".freeze, "dbo:superFamily".freeze, "dbo:superOrder".freeze, "dbo:superTribus".freeze, "dbo:superbowlWin".freeze, "dbo:superintendent".freeze, "dbo:supplementalDraftRound".freeze, "dbo:supplementalDraftYear".freeze, "dbo:supplies".freeze, "dbo:supply".freeze, "dbo:suppreddedDate".freeze, "dbo:surfaceArea".freeze, "dbo:surfaceFormOccurrenceOffset".freeze, "dbo:surfaceGravity".freeze, "dbo:surfaceType".freeze, "dbo:swimmingStyle".freeze, "dbo:symbol".freeze, "dbo:synonym".freeze, "dbo:systemOfLaw".freeze, "dbo:systemRequirements".freeze, "dbo:tag".freeze, "dbo:taoiseach".freeze, "dbo:targetAirport".freeze, "dbo:targetSpaceStation".freeze, "dbo:taste".freeze, "dbo:tattoo".freeze, "dbo:taxon".freeze, "dbo:teachingStaff".freeze, "dbo:team".freeze, "dbo:teamCoached".freeze, "dbo:teamManager".freeze, "dbo:teamName".freeze, "dbo:teamPoint".freeze, "dbo:teamSize".freeze, "dbo:teamTitle".freeze, "dbo:technique".freeze, "dbo:televisionSeries".freeze, "dbo:tempPlace".freeze, "dbo:temperature".freeze, "dbo:temple".freeze, "dbo:templeYear".freeze, "dbo:tenant".freeze, "dbo:tennisSurfaceType".freeze, "dbo:termOfOffice".freeze, "dbo:termPeriod".freeze, "dbo:territory".freeze, "dbo:terytCode".freeze, "dbo:tessitura".freeze, "dbo:testaverage".freeze, "dbo:theology".freeze, "dbo:third".freeze, "dbo:thirdCommander".freeze, "dbo:thirdDriver".freeze, "dbo:thirdDriverCountry".freeze, "dbo:thirdPlace".freeze, "dbo:thirdTeam".freeze, "dbo:throwingSide".freeze, "dbo:thumbnail".freeze, "dbo:thumbnailCaption".freeze, "dbo:tie".freeze, "dbo:time".freeze, "dbo:timeInSpace".freeze, "dbo:timeZone".freeze, "dbo:timeshiftChannel".freeze, "dbo:title".freeze, "dbo:titleDate".freeze, "dbo:titleDouble".freeze, "dbo:titleLanguage".freeze, "dbo:titleSingle".freeze, "dbo:toll".freeze, "dbo:tonyAward".freeze, "dbo:topFloorHeight".freeze, "dbo:topLevelDomain".freeze, "dbo:topSpeed".freeze, "dbo:topic".freeze, "dbo:torchBearer".freeze, "dbo:torqueOutput".freeze, "dbo:totalCargo".freeze, "dbo:totalDiscs".freeze, "dbo:totalLaunches".freeze, "dbo:totalMass".freeze, "dbo:totalPopulation".freeze, "dbo:totalTracks".freeze, "dbo:totalTravellers".freeze, "dbo:touristicSite".freeze, "dbo:tournamentOfChampions".freeze, "dbo:tournamentRecord".freeze, "dbo:towerHeight".freeze, "dbo:trackLength".freeze, "dbo:trackNumber".freeze, "dbo:trackWidth".freeze, "dbo:tradeMark".freeze, "dbo:trainer".freeze, "dbo:trainerClub".freeze, "dbo:trainerYears".freeze, "dbo:training".freeze, "dbo:translatedMotto".freeze, "dbo:translator".freeze, "dbo:transmission".freeze, "dbo:tree".freeze, "dbo:tribus".freeze, "dbo:trustee".freeze, "dbo:tu".freeze, "dbo:tuition".freeze, "dbo:tvComId".freeze, "dbo:tvShow".freeze, "dbo:twinCountry".freeze, "dbo:twinTown".freeze, "dbo:type".freeze, "dbo:typeCoordinate".freeze, "dbo:typeOfElectrification".freeze, "dbo:typeOfGrain".freeze, "dbo:typeOfStorage".freeze, "dbo:typeOfYeast".freeze, "dbo:uRN".freeze, "dbo:uciCode".freeze, "dbo:ulanId".freeze, "dbo:umbrellaTitle".freeze, "dbo:undraftedYear".freeze, "dbo:unesco".freeze, "dbo:unicode".freeze, "dbo:uniprot".freeze, "dbo:unitCost".freeze, "dbo:unitaryAuthority".freeze, "dbo:unitedStatesNationalBridgeId".freeze, "dbo:university".freeze, "dbo:unknownOutcomes".freeze, "dbo:unloCode".freeze, "dbo:updated".freeze, "dbo:upperAge".freeze, "dbo:urbanArea".freeze, "dbo:usOpenDouble".freeze, "dbo:usOpenMixed".freeze, "dbo:usOpenSingle".freeze, "dbo:usSales".freeze, "dbo:usedInWar".freeze, "dbo:uses".freeze, "dbo:usingCountry".freeze, "dbo:usk".freeze, "dbo:usopenWins".freeze, "dbo:usurper".freeze, "dbo:utcOffset".freeze, "dbo:v_hb".freeze, "dbo:value".freeze, "dbo:valvetrain".freeze, "dbo:variantOf".freeze, "dbo:varietals".freeze, "dbo:vehicle".freeze, "dbo:vehicleCode".freeze, "dbo:vehiclesPerDay".freeze, "dbo:vein".freeze, "dbo:veneratedIn".freeze, "dbo:version".freeze, "dbo:viafId".freeze, "dbo:viceChancellor".freeze, "dbo:viceLeader".freeze, "dbo:viceLeaderParty".freeze, "dbo:vicePresident".freeze, "dbo:vicePrimeMinister".freeze, "dbo:vicePrincipal".freeze, "dbo:vicePrincipalLabel".freeze, "dbo:victim".freeze, "dbo:victims".freeze, "dbo:victory".freeze, "dbo:victoryAsMgr".freeze, "dbo:victoryPercentageAsMgr".freeze, "dbo:virtualChannel".freeze, "dbo:visitorStatisticsAsOf".freeze, "dbo:visitorsPerDay".freeze, "dbo:visitorsPerYear".freeze, "dbo:visitorsPercentageChange".freeze, "dbo:visitorsTotal".freeze, "dbo:voice".freeze, "dbo:voiceType".freeze, "dbo:volcanicActivity".freeze, "dbo:volcanicType".freeze, "dbo:volcanoId".freeze, "dbo:voltageOfElectrification".freeze, "dbo:volume".freeze, "dbo:volumeQuote".freeze, "dbo:volumes".freeze, "dbo:vonKlitzingConstant".freeze, "dbo:votesAgainst".freeze, "dbo:votesFor".freeze, "dbo:wagon".freeze, "dbo:waistSize".freeze, "dbo:war".freeze, "dbo:ward".freeze, "dbo:water".freeze, "dbo:waterArea".freeze, "dbo:waterPercentage".freeze, "dbo:watercourse".freeze, "dbo:watershed".freeze, "dbo:waterwayThroughTunnel".freeze, "dbo:wavelength".freeze, "dbo:weapon".freeze, "dbo:webcast".freeze, "dbo:websiteLabel".freeze, "dbo:weddingParentsDate".freeze, "dbo:weight".freeze, "dbo:westPlace".freeze, "dbo:whaDraft".freeze, "dbo:whaDraftTeam".freeze, "dbo:whaDraftYear".freeze, "dbo:wheelbase".freeze, "dbo:wholeArea".freeze, "dbo:width".freeze, "dbo:widthQuote".freeze, "dbo:wikiPageCharacterSize".freeze, "dbo:wikiPageDisambiguates".freeze, "dbo:wikiPageEditLink".freeze, "dbo:wikiPageExternalLink".freeze, "dbo:wikiPageExtracted".freeze, "dbo:wikiPageHistoryLink".freeze, "dbo:wikiPageID".freeze, "dbo:wikiPageInDegree".freeze, "dbo:wikiPageInterLanguageLink".freeze, "dbo:wikiPageLength".freeze, "dbo:wikiPageModified".freeze, "dbo:wikiPageOutDegree".freeze, "dbo:wikiPageRedirects".freeze, "dbo:wikiPageRevisionID".freeze, "dbo:wikiPageRevisionLink".freeze, "dbo:wikiPageWikiLink".freeze, "dbo:wikiPageWikiLinkText".freeze, "dbo:wikidataSplitIri".freeze, "dbo:wilaya".freeze, "dbo:wimbledonDouble".freeze, "dbo:wimbledonMixed".freeze, "dbo:wimbledonSingle".freeze, "dbo:wineProduced".freeze, "dbo:wineRegion".freeze, "dbo:wineYear".freeze, "dbo:wingArea".freeze, "dbo:wingspan".freeze, "dbo:wins".freeze, "dbo:winsAtAlpg".freeze, "dbo:winsAtAsia".freeze, "dbo:winsAtAus".freeze, "dbo:winsAtChallenges".freeze, "dbo:winsAtChampionships".freeze, "dbo:winsAtJLPGA".freeze, "dbo:winsAtJapan".freeze, "dbo:winsAtKLPGA".freeze, "dbo:winsAtLAGT".freeze, "dbo:winsAtLET".freeze, "dbo:winsAtLPGA".freeze, "dbo:winsAtMajors".freeze, "dbo:winsAtNWIDE".freeze, "dbo:winsAtOtherTournaments".freeze, "dbo:winsAtPGA".freeze, "dbo:winsAtProTournaments".freeze, "dbo:winsAtSenEuro".freeze, "dbo:winsAtSun".freeze, "dbo:winsInEurope".freeze, "dbo:winterAppearances".freeze, "dbo:winterTemperature".freeze, "dbo:woRMS".freeze, "dbo:wordBefore".freeze, "dbo:work".freeze, "dbo:workArea".freeze, "dbo:world".freeze, "dbo:worldChampionTitleYear".freeze, "dbo:worldOpen".freeze, "dbo:worldTeamCup".freeze, "dbo:worldTournament".freeze, "dbo:worldTournamentBronze".freeze, "dbo:worldTournamentGold".freeze, "dbo:worldTournamentSilver".freeze, "dbo:worstDefeat".freeze, "dbo:wptFinalTable".freeze, "dbo:wptItm".freeze, "dbo:wptTitle".freeze, "dbo:writer".freeze, "dbo:wsopItm".freeze, "dbo:wsopWinYear".freeze, "dbo:wsopWristband".freeze, "dbo:year".freeze, "dbo:yearElevationIntoNobility".freeze, "dbo:yearOfConstruction".freeze, "dbo:yearOfElectrification".freeze, "dbo:years".freeze, "dbo:youthClub".freeze, "dbo:youthWing".freeze, "dbo:youthYears".freeze, "dbo:zdb".freeze, "dbo:zipCode".freeze, "dbo:zodiacSign".freeze, "http://dbpedia.org/datatype/Area".freeze, "http://dbpedia.org/datatype/Currency".freeze, "http://dbpedia.org/datatype/Density".freeze, "http://dbpedia.org/datatype/ElectricCurrent".freeze, "http://dbpedia.org/datatype/Energy".freeze, "http://dbpedia.org/datatype/FlowRate".freeze, "http://dbpedia.org/datatype/Force".freeze, "http://dbpedia.org/datatype/Frequency".freeze, "http://dbpedia.org/datatype/FuelEfficiency".freeze, "http://dbpedia.org/datatype/InformationUnit".freeze, "http://dbpedia.org/datatype/Length".freeze, "http://dbpedia.org/datatype/LinearMassDensity".freeze, "http://dbpedia.org/datatype/Mass".freeze, "http://dbpedia.org/datatype/PopulationDensity".freeze, "http://dbpedia.org/datatype/Power".freeze, "http://dbpedia.org/datatype/Pressure".freeze, "http://dbpedia.org/datatype/Ratio".freeze, "http://dbpedia.org/datatype/Speed".freeze, "http://dbpedia.org/datatype/Temperature".freeze, "http://dbpedia.org/datatype/Time".freeze, "http://dbpedia.org/datatype/Torque".freeze, "http://dbpedia.org/datatype/Voltage".freeze, "http://dbpedia.org/datatype/Volume".freeze, "http://dbpedia.org/datatype/acre".freeze, "http://dbpedia.org/datatype/afghanAfghani".freeze, "http://dbpedia.org/datatype/albanianLek".freeze, "http://dbpedia.org/datatype/algerianDinar".freeze, "http://dbpedia.org/datatype/ampere".freeze, "http://dbpedia.org/datatype/angolanKwanza".freeze, "http://dbpedia.org/datatype/argentinePeso".freeze, "http://dbpedia.org/datatype/armenianDram".freeze, "http://dbpedia.org/datatype/arubanGuilder".freeze, "http://dbpedia.org/datatype/astronomicalUnit".freeze, "http://dbpedia.org/datatype/australianDollar".freeze, "http://dbpedia.org/datatype/azerbaijaniManat".freeze, "http://dbpedia.org/datatype/bahamianDollar".freeze, "http://dbpedia.org/datatype/bahrainiDinar".freeze, "http://dbpedia.org/datatype/bangladeshiTaka".freeze, "http://dbpedia.org/datatype/bar".freeze, "http://dbpedia.org/datatype/barbadosDollar".freeze, "http://dbpedia.org/datatype/belarussianRuble".freeze, "http://dbpedia.org/datatype/belizeDollar".freeze, "http://dbpedia.org/datatype/bermudianDollar".freeze, "http://dbpedia.org/datatype/bhutaneseNgultrum".freeze, "http://dbpedia.org/datatype/bit".freeze, "http://dbpedia.org/datatype/bolivianBoliviano".freeze, "http://dbpedia.org/datatype/bosniaAndHerzegovinaConvertibleMarks".freeze, "http://dbpedia.org/datatype/botswanaPula".freeze, "http://dbpedia.org/datatype/brakeHorsepower".freeze, "http://dbpedia.org/datatype/brazilianReal".freeze, "http://dbpedia.org/datatype/bruneiDollar".freeze, "http://dbpedia.org/datatype/bulgarianLev".freeze, "http://dbpedia.org/datatype/burundianFranc".freeze, "http://dbpedia.org/datatype/byte".freeze, "http://dbpedia.org/datatype/calorie".freeze, "http://dbpedia.org/datatype/cambodianRiel".freeze, "http://dbpedia.org/datatype/canadianDollar".freeze, "http://dbpedia.org/datatype/capeVerdeEscudo".freeze, "http://dbpedia.org/datatype/carat".freeze, "http://dbpedia.org/datatype/caymanIslandsDollar".freeze, "http://dbpedia.org/datatype/centilitre".freeze, "http://dbpedia.org/datatype/centimetre".freeze, "http://dbpedia.org/datatype/centralAfricanCfaFranc".freeze, "http://dbpedia.org/datatype/cfpFranc".freeze, "http://dbpedia.org/datatype/chain".freeze, "http://dbpedia.org/datatype/chileanPeso".freeze, "http://dbpedia.org/datatype/colombianPeso".freeze, "http://dbpedia.org/datatype/comorianFranc".freeze, "http://dbpedia.org/datatype/congoleseFranc".freeze, "http://dbpedia.org/datatype/costaRicanColon".freeze, "http://dbpedia.org/datatype/croatianKuna".freeze, "http://dbpedia.org/datatype/cubanPeso".freeze, "http://dbpedia.org/datatype/cubicCentimetre".freeze, "http://dbpedia.org/datatype/cubicDecametre".freeze, "http://dbpedia.org/datatype/cubicDecimetre".freeze, "http://dbpedia.org/datatype/cubicFeetPerSecond".freeze, "http://dbpedia.org/datatype/cubicFeetPerYear".freeze, "http://dbpedia.org/datatype/cubicFoot".freeze, "http://dbpedia.org/datatype/cubicHectometre".freeze, "http://dbpedia.org/datatype/cubicInch".freeze, "http://dbpedia.org/datatype/cubicKilometre".freeze, "http://dbpedia.org/datatype/cubicMetre".freeze, "http://dbpedia.org/datatype/cubicMetrePerSecond".freeze, "http://dbpedia.org/datatype/cubicMetrePerYear".freeze, "http://dbpedia.org/datatype/cubicMile".freeze, "http://dbpedia.org/datatype/cubicMillimetre".freeze, "http://dbpedia.org/datatype/cubicYard".freeze, "http://dbpedia.org/datatype/czechKoruna".freeze, "http://dbpedia.org/datatype/danishKrone".freeze, "http://dbpedia.org/datatype/day".freeze, "http://dbpedia.org/datatype/decametre".freeze, "http://dbpedia.org/datatype/decibar".freeze, "http://dbpedia.org/datatype/decilitre".freeze, "http://dbpedia.org/datatype/decimetre".freeze, "http://dbpedia.org/datatype/degreeCelsius".freeze, "http://dbpedia.org/datatype/degreeFahrenheit".freeze, "http://dbpedia.org/datatype/degreeRankine".freeze, "http://dbpedia.org/datatype/djiboutianFranc".freeze, "http://dbpedia.org/datatype/dominicanPeso".freeze, "http://dbpedia.org/datatype/eastCaribbeanDollar".freeze, "http://dbpedia.org/datatype/egyptianPound".freeze, "http://dbpedia.org/datatype/engineConfiguration".freeze, "http://dbpedia.org/datatype/erg".freeze, "http://dbpedia.org/datatype/eritreanNakfa".freeze, "http://dbpedia.org/datatype/estonianKroon".freeze, "http://dbpedia.org/datatype/ethiopianBirr".freeze, "http://dbpedia.org/datatype/euro".freeze, "http://dbpedia.org/datatype/falklandIslandsPound".freeze, "http://dbpedia.org/datatype/fathom".freeze, "http://dbpedia.org/datatype/fijiDollar".freeze, "http://dbpedia.org/datatype/foot".freeze, "http://dbpedia.org/datatype/footPerMinute".freeze, "http://dbpedia.org/datatype/footPerSecond".freeze, "http://dbpedia.org/datatype/footPound".freeze, "http://dbpedia.org/datatype/fuelType".freeze, "http://dbpedia.org/datatype/furlong".freeze, "http://dbpedia.org/datatype/gambianDalasi".freeze, "http://dbpedia.org/datatype/georgianLari".freeze, "http://dbpedia.org/datatype/ghanaianCedi".freeze, "http://dbpedia.org/datatype/gibraltarPound".freeze, "http://dbpedia.org/datatype/gigabyte".freeze, "http://dbpedia.org/datatype/gigahertz".freeze, "http://dbpedia.org/datatype/gigalitre".freeze, "http://dbpedia.org/datatype/gigametre".freeze, "http://dbpedia.org/datatype/giganewton".freeze, "http://dbpedia.org/datatype/gigawatt".freeze, "http://dbpedia.org/datatype/gigawattHour".freeze, "http://dbpedia.org/datatype/grain".freeze, "http://dbpedia.org/datatype/gram".freeze, "http://dbpedia.org/datatype/gramForce".freeze, "http://dbpedia.org/datatype/gramPerCubicCentimetre".freeze, "http://dbpedia.org/datatype/gramPerKilometre".freeze, "http://dbpedia.org/datatype/gramPerMillilitre".freeze, "http://dbpedia.org/datatype/guatemalanQuetzal".freeze, "http://dbpedia.org/datatype/guineaFranc".freeze, "http://dbpedia.org/datatype/guyanaDollar".freeze, "http://dbpedia.org/datatype/haitiGourde".freeze, "http://dbpedia.org/datatype/hand".freeze, "http://dbpedia.org/datatype/hectare".freeze, "http://dbpedia.org/datatype/hectolitre".freeze, "http://dbpedia.org/datatype/hectometre".freeze, "http://dbpedia.org/datatype/hectopascal".freeze, "http://dbpedia.org/datatype/hertz".freeze, "http://dbpedia.org/datatype/honduranLempira".freeze, "http://dbpedia.org/datatype/hongKongDollar".freeze, "http://dbpedia.org/datatype/horsepower".freeze, "http://dbpedia.org/datatype/hour".freeze, "http://dbpedia.org/datatype/hungarianForint".freeze, "http://dbpedia.org/datatype/icelandKrona".freeze, "http://dbpedia.org/datatype/imperialBarrel".freeze, "http://dbpedia.org/datatype/imperialBarrelOil".freeze, "http://dbpedia.org/datatype/imperialGallon".freeze, "http://dbpedia.org/datatype/inch".freeze, "http://dbpedia.org/datatype/inchPound".freeze, "http://dbpedia.org/datatype/indianRupee".freeze, "http://dbpedia.org/datatype/indonesianRupiah".freeze, "http://dbpedia.org/datatype/inhabitantsPerSquareKilometre".freeze, "http://dbpedia.org/datatype/inhabitantsPerSquareMile".freeze, "http://dbpedia.org/datatype/iranianRial".freeze, "http://dbpedia.org/datatype/iraqiDinar".freeze, "http://dbpedia.org/datatype/israeliNewSheqel".freeze, "http://dbpedia.org/datatype/jamaicanDollar".freeze, "http://dbpedia.org/datatype/japaneseYen".freeze, "http://dbpedia.org/datatype/jordanianDinar".freeze, "http://dbpedia.org/datatype/joule".freeze, "http://dbpedia.org/datatype/kazakhstaniTenge".freeze, "http://dbpedia.org/datatype/kelvin".freeze, "http://dbpedia.org/datatype/kenyanShilling".freeze, "http://dbpedia.org/datatype/kiloampere".freeze, "http://dbpedia.org/datatype/kilobit".freeze, "http://dbpedia.org/datatype/kilobyte".freeze, "http://dbpedia.org/datatype/kilocalorie".freeze, "http://dbpedia.org/datatype/kilogram".freeze, "http://dbpedia.org/datatype/kilogramForce".freeze, "http://dbpedia.org/datatype/kilogramPerCubicMetre".freeze, "http://dbpedia.org/datatype/kilogramPerLitre".freeze, "http://dbpedia.org/datatype/kilohertz".freeze, "http://dbpedia.org/datatype/kilojoule".freeze, "http://dbpedia.org/datatype/kilolightYear".freeze, "http://dbpedia.org/datatype/kilolitre".freeze, "http://dbpedia.org/datatype/kilometre".freeze, "http://dbpedia.org/datatype/kilometrePerHour".freeze, "http://dbpedia.org/datatype/kilometrePerSecond".freeze, "http://dbpedia.org/datatype/kilometresPerLitre".freeze, "http://dbpedia.org/datatype/kilonewton".freeze, "http://dbpedia.org/datatype/kilopascal".freeze, "http://dbpedia.org/datatype/kilopond".freeze, "http://dbpedia.org/datatype/kilovolt".freeze, "http://dbpedia.org/datatype/kilowatt".freeze, "http://dbpedia.org/datatype/kilowattHour".freeze, "http://dbpedia.org/datatype/knot".freeze, "http://dbpedia.org/datatype/kuwaitiDinar".freeze, "http://dbpedia.org/datatype/kyrgyzstaniSom".freeze, "http://dbpedia.org/datatype/laoKip".freeze, "http://dbpedia.org/datatype/latvianLats".freeze, "http://dbpedia.org/datatype/lebanesePound".freeze, "http://dbpedia.org/datatype/lesothoLoti".freeze, "http://dbpedia.org/datatype/liberianDollar".freeze, "http://dbpedia.org/datatype/libyanDinar".freeze, "http://dbpedia.org/datatype/lightYear".freeze, "http://dbpedia.org/datatype/lithuanianLitas".freeze, "http://dbpedia.org/datatype/litre".freeze, "http://dbpedia.org/datatype/macanesePataca".freeze, "http://dbpedia.org/datatype/macedonianDenar".freeze, "http://dbpedia.org/datatype/malagasyAriary".freeze, "http://dbpedia.org/datatype/malawianKwacha".freeze, "http://dbpedia.org/datatype/malaysianRinggit".freeze, "http://dbpedia.org/datatype/maldivianRufiyaa".freeze, "http://dbpedia.org/datatype/mauritanianOuguiya".freeze, "http://dbpedia.org/datatype/mauritianRupee".freeze, "http://dbpedia.org/datatype/megabit".freeze, "http://dbpedia.org/datatype/megabyte".freeze, "http://dbpedia.org/datatype/megacalorie".freeze, "http://dbpedia.org/datatype/megahertz".freeze, "http://dbpedia.org/datatype/megalitre".freeze, "http://dbpedia.org/datatype/megametre".freeze, "http://dbpedia.org/datatype/meganewton".freeze, "http://dbpedia.org/datatype/megapascal".freeze, "http://dbpedia.org/datatype/megapond".freeze, "http://dbpedia.org/datatype/megavolt".freeze, "http://dbpedia.org/datatype/megawatt".freeze, "http://dbpedia.org/datatype/megawattHour".freeze, "http://dbpedia.org/datatype/metre".freeze, "http://dbpedia.org/datatype/metrePerSecond".freeze, "http://dbpedia.org/datatype/mexicanPeso".freeze, "http://dbpedia.org/datatype/microampere".freeze, "http://dbpedia.org/datatype/microlitre".freeze, "http://dbpedia.org/datatype/micrometre".freeze, "http://dbpedia.org/datatype/microsecond".freeze, "http://dbpedia.org/datatype/microvolt".freeze, "http://dbpedia.org/datatype/mile".freeze, "http://dbpedia.org/datatype/milePerHour".freeze, "http://dbpedia.org/datatype/milliampere".freeze, "http://dbpedia.org/datatype/millibar".freeze, "http://dbpedia.org/datatype/millicalorie".freeze, "http://dbpedia.org/datatype/milligram".freeze, "http://dbpedia.org/datatype/milligramForce".freeze, "http://dbpedia.org/datatype/millihertz".freeze, "http://dbpedia.org/datatype/millilitre".freeze, "http://dbpedia.org/datatype/millimetre".freeze, "http://dbpedia.org/datatype/millinewton".freeze, "http://dbpedia.org/datatype/millipascal".freeze, "http://dbpedia.org/datatype/millipond".freeze, "http://dbpedia.org/datatype/millisecond".freeze, "http://dbpedia.org/datatype/millivolt".freeze, "http://dbpedia.org/datatype/milliwatt".freeze, "http://dbpedia.org/datatype/milliwattHour".freeze, "http://dbpedia.org/datatype/minute".freeze, "http://dbpedia.org/datatype/moldovanLeu".freeze, "http://dbpedia.org/datatype/mongolianTögrög".freeze, "http://dbpedia.org/datatype/moroccanDirham".freeze, "http://dbpedia.org/datatype/mozambicanMetical".freeze, "http://dbpedia.org/datatype/myanmaKyat".freeze, "http://dbpedia.org/datatype/namibianDollar".freeze, "http://dbpedia.org/datatype/nanometre".freeze, "http://dbpedia.org/datatype/nanonewton".freeze, "http://dbpedia.org/datatype/nanosecond".freeze, "http://dbpedia.org/datatype/nautialMile".freeze, "http://dbpedia.org/datatype/nepaleseRupee".freeze, "http://dbpedia.org/datatype/netherlandsAntilleanGuilder".freeze, "http://dbpedia.org/datatype/newTaiwanDollar".freeze, "http://dbpedia.org/datatype/newZealandDollar".freeze, "http://dbpedia.org/datatype/newton".freeze, "http://dbpedia.org/datatype/newtonCentimetre".freeze, "http://dbpedia.org/datatype/newtonMetre".freeze, "http://dbpedia.org/datatype/newtonMillimetre".freeze, "http://dbpedia.org/datatype/nicaraguanCórdoba".freeze, "http://dbpedia.org/datatype/nigerianNaira".freeze, "http://dbpedia.org/datatype/northKoreanWon".freeze, "http://dbpedia.org/datatype/norwegianKrone".freeze, "http://dbpedia.org/datatype/omaniRial".freeze, "http://dbpedia.org/datatype/ounce".freeze, "http://dbpedia.org/datatype/pakistaniRupee".freeze, "http://dbpedia.org/datatype/panamanianBalboa".freeze, "http://dbpedia.org/datatype/papuaNewGuineanKina".freeze, "http://dbpedia.org/datatype/paraguayanGuarani".freeze, "http://dbpedia.org/datatype/pascal".freeze, "http://dbpedia.org/datatype/perCent".freeze, "http://dbpedia.org/datatype/perMil".freeze, "http://dbpedia.org/datatype/peruvianNuevoSol".freeze, "http://dbpedia.org/datatype/pferdestaerke".freeze, "http://dbpedia.org/datatype/philippinePeso".freeze, "http://dbpedia.org/datatype/polishZłoty".freeze, "http://dbpedia.org/datatype/pond".freeze, "http://dbpedia.org/datatype/pound".freeze, "http://dbpedia.org/datatype/poundFoot".freeze, "http://dbpedia.org/datatype/poundPerSquareInch".freeze, "http://dbpedia.org/datatype/poundSterling".freeze, "http://dbpedia.org/datatype/poundal".freeze, "http://dbpedia.org/datatype/qatariRial".freeze, "http://dbpedia.org/datatype/renminbi".freeze, "http://dbpedia.org/datatype/rod".freeze, "http://dbpedia.org/datatype/romanianNewLeu".freeze, "http://dbpedia.org/datatype/russianRouble".freeze, "http://dbpedia.org/datatype/rwandaFranc".freeze, "http://dbpedia.org/datatype/saintHelenaPound".freeze, "http://dbpedia.org/datatype/samoanTala".freeze, "http://dbpedia.org/datatype/saudiRiyal".freeze, "http://dbpedia.org/datatype/second".freeze, "http://dbpedia.org/datatype/serbianDinar".freeze, "http://dbpedia.org/datatype/seychellesRupee".freeze, "http://dbpedia.org/datatype/sierraLeoneanLeone".freeze, "http://dbpedia.org/datatype/singaporeDollar".freeze, "http://dbpedia.org/datatype/slovakKoruna".freeze, "http://dbpedia.org/datatype/solomonIslandsDollar".freeze, "http://dbpedia.org/datatype/somaliShilling".freeze, "http://dbpedia.org/datatype/southAfricanRand".freeze, "http://dbpedia.org/datatype/southKoreanWon".freeze, "http://dbpedia.org/datatype/squareCentimetre".freeze, "http://dbpedia.org/datatype/squareDecametre".freeze, "http://dbpedia.org/datatype/squareDecimetre".freeze, "http://dbpedia.org/datatype/squareFoot".freeze, "http://dbpedia.org/datatype/squareHectometre".freeze, "http://dbpedia.org/datatype/squareInch".freeze, "http://dbpedia.org/datatype/squareKilometre".freeze, "http://dbpedia.org/datatype/squareMetre".freeze, "http://dbpedia.org/datatype/squareMile".freeze, "http://dbpedia.org/datatype/squareMillimetre".freeze, "http://dbpedia.org/datatype/squareNauticalMile".freeze, "http://dbpedia.org/datatype/squareYard".freeze, "http://dbpedia.org/datatype/sriLankanRupee".freeze, "http://dbpedia.org/datatype/standardAtmosphere".freeze, "http://dbpedia.org/datatype/stone".freeze, "http://dbpedia.org/datatype/sudanesePound".freeze, "http://dbpedia.org/datatype/surinamDollar".freeze, "http://dbpedia.org/datatype/swaziLilangeni".freeze, "http://dbpedia.org/datatype/swedishKrona".freeze, "http://dbpedia.org/datatype/swissFranc".freeze, "http://dbpedia.org/datatype/syrianPound".freeze, "http://dbpedia.org/datatype/sãoToméAndPríncipeDobra".freeze, "http://dbpedia.org/datatype/tajikistaniSomoni".freeze, "http://dbpedia.org/datatype/tanzanianShilling".freeze, "http://dbpedia.org/datatype/terabyte".freeze, "http://dbpedia.org/datatype/terahertz".freeze, "http://dbpedia.org/datatype/terawattHour".freeze, "http://dbpedia.org/datatype/thaiBaht".freeze, "http://dbpedia.org/datatype/tonganPaanga".freeze, "http://dbpedia.org/datatype/tonne".freeze, "http://dbpedia.org/datatype/tonneForce".freeze, "http://dbpedia.org/datatype/trinidadAndTobagoDollar".freeze, "http://dbpedia.org/datatype/tunisianDinar".freeze, "http://dbpedia.org/datatype/turkishLira".freeze, "http://dbpedia.org/datatype/turkmenistaniManat".freeze, "http://dbpedia.org/datatype/ugandaShilling".freeze, "http://dbpedia.org/datatype/ukrainianHryvnia".freeze, "http://dbpedia.org/datatype/unitedArabEmiratesDirham".freeze, "http://dbpedia.org/datatype/uruguayanPeso".freeze, "http://dbpedia.org/datatype/usBarrel".freeze, "http://dbpedia.org/datatype/usBarrelOil".freeze, "http://dbpedia.org/datatype/usDollar".freeze, "http://dbpedia.org/datatype/usGallon".freeze, "http://dbpedia.org/datatype/uzbekistanSom".freeze, "http://dbpedia.org/datatype/valvetrain".freeze, "http://dbpedia.org/datatype/vanuatuVatu".freeze, "http://dbpedia.org/datatype/venezuelanBolívar".freeze, "http://dbpedia.org/datatype/volt".freeze, "http://dbpedia.org/datatype/watt".freeze, "http://dbpedia.org/datatype/wattHour".freeze, "http://dbpedia.org/datatype/westAfricanCfaFranc".freeze, "http://dbpedia.org/datatype/yard".freeze, "http://dbpedia.org/datatype/yemeniRial".freeze, "http://dbpedia.org/datatype/zambianKwacha".freeze, "http://dbpedia.org/datatype/zimbabweanDollar".freeze, "http://dbpedia.org/ontology/Astronaut/timeInSpace".freeze, "http://dbpedia.org/ontology/Automobile/fuelCapacity".freeze, "http://dbpedia.org/ontology/Automobile/wheelbase".freeze, "http://dbpedia.org/ontology/Building/floorArea".freeze, "http://dbpedia.org/ontology/Canal/maximumBoatBeam".freeze, "http://dbpedia.org/ontology/Canal/maximumBoatLength".freeze, "http://dbpedia.org/ontology/Canal/originalMaximumBoatBeam".freeze, "http://dbpedia.org/ontology/Canal/originalMaximumBoatLength".freeze, "http://dbpedia.org/ontology/ChemicalSubstance/boilingPoint".freeze, "http://dbpedia.org/ontology/ChemicalSubstance/density".freeze, "http://dbpedia.org/ontology/ChemicalSubstance/meltingPoint".freeze, "http://dbpedia.org/ontology/ConveyorSystem/diameter".freeze, "http://dbpedia.org/ontology/ConveyorSystem/height".freeze, "http://dbpedia.org/ontology/ConveyorSystem/length".freeze, "http://dbpedia.org/ontology/ConveyorSystem/mass".freeze, "http://dbpedia.org/ontology/ConveyorSystem/weight".freeze, "http://dbpedia.org/ontology/ConveyorSystem/width".freeze, "http://dbpedia.org/ontology/Drug/boilingPoint".freeze, "http://dbpedia.org/ontology/Drug/meltingPoint".freeze, "http://dbpedia.org/ontology/Engine/acceleration".freeze, "http://dbpedia.org/ontology/Engine/co2Emission".freeze, "http://dbpedia.org/ontology/Engine/cylinderBore".freeze, "http://dbpedia.org/ontology/Engine/diameter".freeze, "http://dbpedia.org/ontology/Engine/displacement".freeze, "http://dbpedia.org/ontology/Engine/height".freeze, "http://dbpedia.org/ontology/Engine/length".freeze, "http://dbpedia.org/ontology/Engine/pistonStroke".freeze, "http://dbpedia.org/ontology/Engine/powerOutput".freeze, "http://dbpedia.org/ontology/Engine/topSpeed".freeze, "http://dbpedia.org/ontology/Engine/torqueOutput".freeze, "http://dbpedia.org/ontology/Engine/weight".freeze, "http://dbpedia.org/ontology/Engine/width".freeze, "http://dbpedia.org/ontology/Escalator/diameter".freeze, "http://dbpedia.org/ontology/Escalator/height".freeze, "http://dbpedia.org/ontology/Escalator/length".freeze, "http://dbpedia.org/ontology/Escalator/mass".freeze, "http://dbpedia.org/ontology/Escalator/weight".freeze, "http://dbpedia.org/ontology/Escalator/width".freeze, "http://dbpedia.org/ontology/Galaxy/apoapsis".freeze, "http://dbpedia.org/ontology/Galaxy/averageSpeed".freeze, "http://dbpedia.org/ontology/Galaxy/density".freeze, "http://dbpedia.org/ontology/Galaxy/mass".freeze, "http://dbpedia.org/ontology/Galaxy/maximumTemperature".freeze, "http://dbpedia.org/ontology/Galaxy/meanRadius".freeze, "http://dbpedia.org/ontology/Galaxy/meanTemperature".freeze, "http://dbpedia.org/ontology/Galaxy/minimumTemperature".freeze, "http://dbpedia.org/ontology/Galaxy/orbitalPeriod".freeze, "http://dbpedia.org/ontology/Galaxy/periapsis".freeze, "http://dbpedia.org/ontology/Galaxy/surfaceArea".freeze, "http://dbpedia.org/ontology/Galaxy/temperature".freeze, "http://dbpedia.org/ontology/Galaxy/volume".freeze, "http://dbpedia.org/ontology/GeopoliticalOrganisation/areaMetro".freeze, "http://dbpedia.org/ontology/GeopoliticalOrganisation/populationDensity".freeze, "http://dbpedia.org/ontology/GrandPrix/course".freeze, "http://dbpedia.org/ontology/GrandPrix/distance".freeze, "http://dbpedia.org/ontology/Infrastructure/length".freeze, "http://dbpedia.org/ontology/Lake/areaOfCatchment".freeze, "http://dbpedia.org/ontology/Lake/shoreLength".freeze, "http://dbpedia.org/ontology/Lake/volume".freeze, "http://dbpedia.org/ontology/LunarCrater/diameter".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/diameter".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/height".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/length".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/mass".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/weight".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/width".freeze, "http://dbpedia.org/ontology/MovingWalkway/diameter".freeze, "http://dbpedia.org/ontology/MovingWalkway/height".freeze, "http://dbpedia.org/ontology/MovingWalkway/length".freeze, "http://dbpedia.org/ontology/MovingWalkway/mass".freeze, "http://dbpedia.org/ontology/MovingWalkway/weight".freeze, "http://dbpedia.org/ontology/MovingWalkway/width".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/diameter".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/height".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/length".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/mass".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/weight".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/width".freeze, "http://dbpedia.org/ontology/Person/height".freeze, "http://dbpedia.org/ontology/Person/weight".freeze, "http://dbpedia.org/ontology/Planet/apoapsis".freeze, "http://dbpedia.org/ontology/Planet/averageSpeed".freeze, "http://dbpedia.org/ontology/Planet/density".freeze, "http://dbpedia.org/ontology/Planet/mass".freeze, "http://dbpedia.org/ontology/Planet/maximumTemperature".freeze, "http://dbpedia.org/ontology/Planet/meanRadius".freeze, "http://dbpedia.org/ontology/Planet/meanTemperature".freeze, "http://dbpedia.org/ontology/Planet/minimumTemperature".freeze, "http://dbpedia.org/ontology/Planet/orbitalPeriod".freeze, "http://dbpedia.org/ontology/Planet/periapsis".freeze, "http://dbpedia.org/ontology/Planet/surfaceArea".freeze, "http://dbpedia.org/ontology/Planet/temperature".freeze, "http://dbpedia.org/ontology/Planet/volume".freeze, "http://dbpedia.org/ontology/PopulatedPlace/area".freeze, "http://dbpedia.org/ontology/PopulatedPlace/areaMetro".freeze, "http://dbpedia.org/ontology/PopulatedPlace/areaTotal".freeze, "http://dbpedia.org/ontology/PopulatedPlace/areaUrban".freeze, "http://dbpedia.org/ontology/PopulatedPlace/populationDensity".freeze, "http://dbpedia.org/ontology/PopulatedPlace/populationMetroDensity".freeze, "http://dbpedia.org/ontology/PopulatedPlace/populationUrbanDensity".freeze, "http://dbpedia.org/ontology/Rocket/lowerEarthOrbitPayload".freeze, "http://dbpedia.org/ontology/Rocket/mass".freeze, "http://dbpedia.org/ontology/School/campusSize".freeze, "http://dbpedia.org/ontology/Software/fileSize".freeze, "http://dbpedia.org/ontology/SpaceMission/cmpEvaDuration".freeze, "http://dbpedia.org/ontology/SpaceMission/distanceTraveled".freeze, "http://dbpedia.org/ontology/SpaceMission/lunarEvaTime".freeze, "http://dbpedia.org/ontology/SpaceMission/lunarOrbitTime".freeze, "http://dbpedia.org/ontology/SpaceMission/lunarSampleMass".freeze, "http://dbpedia.org/ontology/SpaceMission/lunarSurfaceTime".freeze, "http://dbpedia.org/ontology/SpaceMission/mass".freeze, "http://dbpedia.org/ontology/SpaceMission/missionDuration".freeze, "http://dbpedia.org/ontology/SpaceMission/stationEvaDuration".freeze, "http://dbpedia.org/ontology/SpaceMission/stationVisitDuration".freeze, "http://dbpedia.org/ontology/SpaceShuttle/distance".freeze, "http://dbpedia.org/ontology/SpaceShuttle/timeInSpace".freeze, "http://dbpedia.org/ontology/SpaceStation/volume".freeze, "http://dbpedia.org/ontology/Spacecraft/apoapsis".freeze, "http://dbpedia.org/ontology/Spacecraft/cargoFuel".freeze, "http://dbpedia.org/ontology/Spacecraft/cargoGas".freeze, "http://dbpedia.org/ontology/Spacecraft/cargoWater".freeze, "http://dbpedia.org/ontology/Spacecraft/dockedTime".freeze, "http://dbpedia.org/ontology/Spacecraft/dryCargo".freeze, "http://dbpedia.org/ontology/Spacecraft/freeFlightTime".freeze, "http://dbpedia.org/ontology/Spacecraft/periapsis".freeze, "http://dbpedia.org/ontology/Spacecraft/totalCargo".freeze, "http://dbpedia.org/ontology/Spacecraft/totalMass".freeze, "http://dbpedia.org/ontology/Stream/discharge".freeze, "http://dbpedia.org/ontology/Stream/dischargeAverage".freeze, "http://dbpedia.org/ontology/Stream/maximumDischarge".freeze, "http://dbpedia.org/ontology/Stream/minimumDischarge".freeze, "http://dbpedia.org/ontology/Stream/watershed".freeze, "http://dbpedia.org/ontology/Weapon/diameter".freeze, "http://dbpedia.org/ontology/Weapon/height".freeze, "http://dbpedia.org/ontology/Weapon/length".freeze, "http://dbpedia.org/ontology/Weapon/weight".freeze, "http://dbpedia.org/ontology/Weapon/width".freeze, "http://dbpedia.org/ontology/Work/runtime".freeze, "rdf:langString".freeze, "xsd:anyURI".freeze, "xsd:boolean".freeze, "xsd:date".freeze, "xsd:dateTime".freeze, "xsd:double".freeze, "xsd:float".freeze, "xsd:gDay".freeze, "xsd:gMonth".freeze, "xsd:gMonthDay".freeze, "xsd:gYear".freeze, "xsd:gYearMonth".freeze, "xsd:integer".freeze, "xsd:negativeInteger".freeze, "xsd:nonNegativeInteger".freeze, "xsd:nonPositiveInteger".freeze, "xsd:positiveInteger".freeze, "xsd:string".freeze, "xsd:time".freeze], + "http://creativecommons.org/ns#license": "http://creativecommons.org/licenses/by-sa/3.0/".freeze, + "http://open.vocab.org/terms/defines": ["http://dbpedia.org/datatype/Area".freeze, "http://dbpedia.org/datatype/Currency".freeze, "http://dbpedia.org/datatype/Density".freeze, "http://dbpedia.org/datatype/ElectricCurrent".freeze, "http://dbpedia.org/datatype/Energy".freeze, "http://dbpedia.org/datatype/FlowRate".freeze, "http://dbpedia.org/datatype/Force".freeze, "http://dbpedia.org/datatype/Frequency".freeze, "http://dbpedia.org/datatype/FuelEfficiency".freeze, "http://dbpedia.org/datatype/InformationUnit".freeze, "http://dbpedia.org/datatype/Length".freeze, "http://dbpedia.org/datatype/LinearMassDensity".freeze, "http://dbpedia.org/datatype/Mass".freeze, "http://dbpedia.org/datatype/PopulationDensity".freeze, "http://dbpedia.org/datatype/Power".freeze, "http://dbpedia.org/datatype/Pressure".freeze, "http://dbpedia.org/datatype/Ratio".freeze, "http://dbpedia.org/datatype/Speed".freeze, "http://dbpedia.org/datatype/Temperature".freeze, "http://dbpedia.org/datatype/Time".freeze, "http://dbpedia.org/datatype/Torque".freeze, "http://dbpedia.org/datatype/Voltage".freeze, "http://dbpedia.org/datatype/Volume".freeze, "http://dbpedia.org/datatype/acre".freeze, "http://dbpedia.org/datatype/afghanAfghani".freeze, "http://dbpedia.org/datatype/albanianLek".freeze, "http://dbpedia.org/datatype/algerianDinar".freeze, "http://dbpedia.org/datatype/ampere".freeze, "http://dbpedia.org/datatype/angolanKwanza".freeze, "http://dbpedia.org/datatype/argentinePeso".freeze, "http://dbpedia.org/datatype/armenianDram".freeze, "http://dbpedia.org/datatype/arubanGuilder".freeze, "http://dbpedia.org/datatype/astronomicalUnit".freeze, "http://dbpedia.org/datatype/australianDollar".freeze, "http://dbpedia.org/datatype/azerbaijaniManat".freeze, "http://dbpedia.org/datatype/bahamianDollar".freeze, "http://dbpedia.org/datatype/bahrainiDinar".freeze, "http://dbpedia.org/datatype/bangladeshiTaka".freeze, "http://dbpedia.org/datatype/bar".freeze, "http://dbpedia.org/datatype/barbadosDollar".freeze, "http://dbpedia.org/datatype/belarussianRuble".freeze, "http://dbpedia.org/datatype/belizeDollar".freeze, "http://dbpedia.org/datatype/bermudianDollar".freeze, "http://dbpedia.org/datatype/bhutaneseNgultrum".freeze, "http://dbpedia.org/datatype/bit".freeze, "http://dbpedia.org/datatype/bolivianBoliviano".freeze, "http://dbpedia.org/datatype/bosniaAndHerzegovinaConvertibleMarks".freeze, "http://dbpedia.org/datatype/botswanaPula".freeze, "http://dbpedia.org/datatype/brakeHorsepower".freeze, "http://dbpedia.org/datatype/brazilianReal".freeze, "http://dbpedia.org/datatype/bruneiDollar".freeze, "http://dbpedia.org/datatype/bulgarianLev".freeze, "http://dbpedia.org/datatype/burundianFranc".freeze, "http://dbpedia.org/datatype/byte".freeze, "http://dbpedia.org/datatype/calorie".freeze, "http://dbpedia.org/datatype/cambodianRiel".freeze, "http://dbpedia.org/datatype/canadianDollar".freeze, "http://dbpedia.org/datatype/capeVerdeEscudo".freeze, "http://dbpedia.org/datatype/carat".freeze, "http://dbpedia.org/datatype/caymanIslandsDollar".freeze, "http://dbpedia.org/datatype/centilitre".freeze, "http://dbpedia.org/datatype/centimetre".freeze, "http://dbpedia.org/datatype/centralAfricanCfaFranc".freeze, "http://dbpedia.org/datatype/cfpFranc".freeze, "http://dbpedia.org/datatype/chain".freeze, "http://dbpedia.org/datatype/chileanPeso".freeze, "http://dbpedia.org/datatype/colombianPeso".freeze, "http://dbpedia.org/datatype/comorianFranc".freeze, "http://dbpedia.org/datatype/congoleseFranc".freeze, "http://dbpedia.org/datatype/costaRicanColon".freeze, "http://dbpedia.org/datatype/croatianKuna".freeze, "http://dbpedia.org/datatype/cubanPeso".freeze, "http://dbpedia.org/datatype/cubicCentimetre".freeze, "http://dbpedia.org/datatype/cubicDecametre".freeze, "http://dbpedia.org/datatype/cubicDecimetre".freeze, "http://dbpedia.org/datatype/cubicFeetPerSecond".freeze, "http://dbpedia.org/datatype/cubicFeetPerYear".freeze, "http://dbpedia.org/datatype/cubicFoot".freeze, "http://dbpedia.org/datatype/cubicHectometre".freeze, "http://dbpedia.org/datatype/cubicInch".freeze, "http://dbpedia.org/datatype/cubicKilometre".freeze, "http://dbpedia.org/datatype/cubicMetre".freeze, "http://dbpedia.org/datatype/cubicMetrePerSecond".freeze, "http://dbpedia.org/datatype/cubicMetrePerYear".freeze, "http://dbpedia.org/datatype/cubicMile".freeze, "http://dbpedia.org/datatype/cubicMillimetre".freeze, "http://dbpedia.org/datatype/cubicYard".freeze, "http://dbpedia.org/datatype/czechKoruna".freeze, "http://dbpedia.org/datatype/danishKrone".freeze, "http://dbpedia.org/datatype/day".freeze, "http://dbpedia.org/datatype/decametre".freeze, "http://dbpedia.org/datatype/decibar".freeze, "http://dbpedia.org/datatype/decilitre".freeze, "http://dbpedia.org/datatype/decimetre".freeze, "http://dbpedia.org/datatype/degreeCelsius".freeze, "http://dbpedia.org/datatype/degreeFahrenheit".freeze, "http://dbpedia.org/datatype/degreeRankine".freeze, "http://dbpedia.org/datatype/djiboutianFranc".freeze, "http://dbpedia.org/datatype/dominicanPeso".freeze, "http://dbpedia.org/datatype/eastCaribbeanDollar".freeze, "http://dbpedia.org/datatype/egyptianPound".freeze, "http://dbpedia.org/datatype/engineConfiguration".freeze, "http://dbpedia.org/datatype/erg".freeze, "http://dbpedia.org/datatype/eritreanNakfa".freeze, "http://dbpedia.org/datatype/estonianKroon".freeze, "http://dbpedia.org/datatype/ethiopianBirr".freeze, "http://dbpedia.org/datatype/euro".freeze, "http://dbpedia.org/datatype/falklandIslandsPound".freeze, "http://dbpedia.org/datatype/fathom".freeze, "http://dbpedia.org/datatype/fijiDollar".freeze, "http://dbpedia.org/datatype/foot".freeze, "http://dbpedia.org/datatype/footPerMinute".freeze, "http://dbpedia.org/datatype/footPerSecond".freeze, "http://dbpedia.org/datatype/footPound".freeze, "http://dbpedia.org/datatype/fuelType".freeze, "http://dbpedia.org/datatype/furlong".freeze, "http://dbpedia.org/datatype/gambianDalasi".freeze, "http://dbpedia.org/datatype/georgianLari".freeze, "http://dbpedia.org/datatype/ghanaianCedi".freeze, "http://dbpedia.org/datatype/gibraltarPound".freeze, "http://dbpedia.org/datatype/gigabyte".freeze, "http://dbpedia.org/datatype/gigahertz".freeze, "http://dbpedia.org/datatype/gigalitre".freeze, "http://dbpedia.org/datatype/gigametre".freeze, "http://dbpedia.org/datatype/giganewton".freeze, "http://dbpedia.org/datatype/gigawatt".freeze, "http://dbpedia.org/datatype/gigawattHour".freeze, "http://dbpedia.org/datatype/grain".freeze, "http://dbpedia.org/datatype/gram".freeze, "http://dbpedia.org/datatype/gramForce".freeze, "http://dbpedia.org/datatype/gramPerCubicCentimetre".freeze, "http://dbpedia.org/datatype/gramPerKilometre".freeze, "http://dbpedia.org/datatype/gramPerMillilitre".freeze, "http://dbpedia.org/datatype/guatemalanQuetzal".freeze, "http://dbpedia.org/datatype/guineaFranc".freeze, "http://dbpedia.org/datatype/guyanaDollar".freeze, "http://dbpedia.org/datatype/haitiGourde".freeze, "http://dbpedia.org/datatype/hand".freeze, "http://dbpedia.org/datatype/hectare".freeze, "http://dbpedia.org/datatype/hectolitre".freeze, "http://dbpedia.org/datatype/hectometre".freeze, "http://dbpedia.org/datatype/hectopascal".freeze, "http://dbpedia.org/datatype/hertz".freeze, "http://dbpedia.org/datatype/honduranLempira".freeze, "http://dbpedia.org/datatype/hongKongDollar".freeze, "http://dbpedia.org/datatype/horsepower".freeze, "http://dbpedia.org/datatype/hour".freeze, "http://dbpedia.org/datatype/hungarianForint".freeze, "http://dbpedia.org/datatype/icelandKrona".freeze, "http://dbpedia.org/datatype/imperialBarrel".freeze, "http://dbpedia.org/datatype/imperialBarrelOil".freeze, "http://dbpedia.org/datatype/imperialGallon".freeze, "http://dbpedia.org/datatype/inch".freeze, "http://dbpedia.org/datatype/inchPound".freeze, "http://dbpedia.org/datatype/indianRupee".freeze, "http://dbpedia.org/datatype/indonesianRupiah".freeze, "http://dbpedia.org/datatype/inhabitantsPerSquareKilometre".freeze, "http://dbpedia.org/datatype/inhabitantsPerSquareMile".freeze, "http://dbpedia.org/datatype/iranianRial".freeze, "http://dbpedia.org/datatype/iraqiDinar".freeze, "http://dbpedia.org/datatype/israeliNewSheqel".freeze, "http://dbpedia.org/datatype/jamaicanDollar".freeze, "http://dbpedia.org/datatype/japaneseYen".freeze, "http://dbpedia.org/datatype/jordanianDinar".freeze, "http://dbpedia.org/datatype/joule".freeze, "http://dbpedia.org/datatype/kazakhstaniTenge".freeze, "http://dbpedia.org/datatype/kelvin".freeze, "http://dbpedia.org/datatype/kenyanShilling".freeze, "http://dbpedia.org/datatype/kiloampere".freeze, "http://dbpedia.org/datatype/kilobit".freeze, "http://dbpedia.org/datatype/kilobyte".freeze, "http://dbpedia.org/datatype/kilocalorie".freeze, "http://dbpedia.org/datatype/kilogram".freeze, "http://dbpedia.org/datatype/kilogramForce".freeze, "http://dbpedia.org/datatype/kilogramPerCubicMetre".freeze, "http://dbpedia.org/datatype/kilogramPerLitre".freeze, "http://dbpedia.org/datatype/kilohertz".freeze, "http://dbpedia.org/datatype/kilojoule".freeze, "http://dbpedia.org/datatype/kilolightYear".freeze, "http://dbpedia.org/datatype/kilolitre".freeze, "http://dbpedia.org/datatype/kilometre".freeze, "http://dbpedia.org/datatype/kilometrePerHour".freeze, "http://dbpedia.org/datatype/kilometrePerSecond".freeze, "http://dbpedia.org/datatype/kilometresPerLitre".freeze, "http://dbpedia.org/datatype/kilonewton".freeze, "http://dbpedia.org/datatype/kilopascal".freeze, "http://dbpedia.org/datatype/kilopond".freeze, "http://dbpedia.org/datatype/kilovolt".freeze, "http://dbpedia.org/datatype/kilowatt".freeze, "http://dbpedia.org/datatype/kilowattHour".freeze, "http://dbpedia.org/datatype/knot".freeze, "http://dbpedia.org/datatype/kuwaitiDinar".freeze, "http://dbpedia.org/datatype/kyrgyzstaniSom".freeze, "http://dbpedia.org/datatype/laoKip".freeze, "http://dbpedia.org/datatype/latvianLats".freeze, "http://dbpedia.org/datatype/lebanesePound".freeze, "http://dbpedia.org/datatype/lesothoLoti".freeze, "http://dbpedia.org/datatype/liberianDollar".freeze, "http://dbpedia.org/datatype/libyanDinar".freeze, "http://dbpedia.org/datatype/lightYear".freeze, "http://dbpedia.org/datatype/lithuanianLitas".freeze, "http://dbpedia.org/datatype/litre".freeze, "http://dbpedia.org/datatype/macanesePataca".freeze, "http://dbpedia.org/datatype/macedonianDenar".freeze, "http://dbpedia.org/datatype/malagasyAriary".freeze, "http://dbpedia.org/datatype/malawianKwacha".freeze, "http://dbpedia.org/datatype/malaysianRinggit".freeze, "http://dbpedia.org/datatype/maldivianRufiyaa".freeze, "http://dbpedia.org/datatype/mauritanianOuguiya".freeze, "http://dbpedia.org/datatype/mauritianRupee".freeze, "http://dbpedia.org/datatype/megabit".freeze, "http://dbpedia.org/datatype/megabyte".freeze, "http://dbpedia.org/datatype/megacalorie".freeze, "http://dbpedia.org/datatype/megahertz".freeze, "http://dbpedia.org/datatype/megalitre".freeze, "http://dbpedia.org/datatype/megametre".freeze, "http://dbpedia.org/datatype/meganewton".freeze, "http://dbpedia.org/datatype/megapascal".freeze, "http://dbpedia.org/datatype/megapond".freeze, "http://dbpedia.org/datatype/megavolt".freeze, "http://dbpedia.org/datatype/megawatt".freeze, "http://dbpedia.org/datatype/megawattHour".freeze, "http://dbpedia.org/datatype/metre".freeze, "http://dbpedia.org/datatype/metrePerSecond".freeze, "http://dbpedia.org/datatype/mexicanPeso".freeze, "http://dbpedia.org/datatype/microampere".freeze, "http://dbpedia.org/datatype/microlitre".freeze, "http://dbpedia.org/datatype/micrometre".freeze, "http://dbpedia.org/datatype/microsecond".freeze, "http://dbpedia.org/datatype/microvolt".freeze, "http://dbpedia.org/datatype/mile".freeze, "http://dbpedia.org/datatype/milePerHour".freeze, "http://dbpedia.org/datatype/milliampere".freeze, "http://dbpedia.org/datatype/millibar".freeze, "http://dbpedia.org/datatype/millicalorie".freeze, "http://dbpedia.org/datatype/milligram".freeze, "http://dbpedia.org/datatype/milligramForce".freeze, "http://dbpedia.org/datatype/millihertz".freeze, "http://dbpedia.org/datatype/millilitre".freeze, "http://dbpedia.org/datatype/millimetre".freeze, "http://dbpedia.org/datatype/millinewton".freeze, "http://dbpedia.org/datatype/millipascal".freeze, "http://dbpedia.org/datatype/millipond".freeze, "http://dbpedia.org/datatype/millisecond".freeze, "http://dbpedia.org/datatype/millivolt".freeze, "http://dbpedia.org/datatype/milliwatt".freeze, "http://dbpedia.org/datatype/milliwattHour".freeze, "http://dbpedia.org/datatype/minute".freeze, "http://dbpedia.org/datatype/moldovanLeu".freeze, "http://dbpedia.org/datatype/mongolianTögrög".freeze, "http://dbpedia.org/datatype/moroccanDirham".freeze, "http://dbpedia.org/datatype/mozambicanMetical".freeze, "http://dbpedia.org/datatype/myanmaKyat".freeze, "http://dbpedia.org/datatype/namibianDollar".freeze, "http://dbpedia.org/datatype/nanometre".freeze, "http://dbpedia.org/datatype/nanonewton".freeze, "http://dbpedia.org/datatype/nanosecond".freeze, "http://dbpedia.org/datatype/nautialMile".freeze, "http://dbpedia.org/datatype/nepaleseRupee".freeze, "http://dbpedia.org/datatype/netherlandsAntilleanGuilder".freeze, "http://dbpedia.org/datatype/newTaiwanDollar".freeze, "http://dbpedia.org/datatype/newZealandDollar".freeze, "http://dbpedia.org/datatype/newton".freeze, "http://dbpedia.org/datatype/newtonCentimetre".freeze, "http://dbpedia.org/datatype/newtonMetre".freeze, "http://dbpedia.org/datatype/newtonMillimetre".freeze, "http://dbpedia.org/datatype/nicaraguanCórdoba".freeze, "http://dbpedia.org/datatype/nigerianNaira".freeze, "http://dbpedia.org/datatype/northKoreanWon".freeze, "http://dbpedia.org/datatype/norwegianKrone".freeze, "http://dbpedia.org/datatype/omaniRial".freeze, "http://dbpedia.org/datatype/ounce".freeze, "http://dbpedia.org/datatype/pakistaniRupee".freeze, "http://dbpedia.org/datatype/panamanianBalboa".freeze, "http://dbpedia.org/datatype/papuaNewGuineanKina".freeze, "http://dbpedia.org/datatype/paraguayanGuarani".freeze, "http://dbpedia.org/datatype/pascal".freeze, "http://dbpedia.org/datatype/perCent".freeze, "http://dbpedia.org/datatype/perMil".freeze, "http://dbpedia.org/datatype/peruvianNuevoSol".freeze, "http://dbpedia.org/datatype/pferdestaerke".freeze, "http://dbpedia.org/datatype/philippinePeso".freeze, "http://dbpedia.org/datatype/polishZłoty".freeze, "http://dbpedia.org/datatype/pond".freeze, "http://dbpedia.org/datatype/pound".freeze, "http://dbpedia.org/datatype/poundFoot".freeze, "http://dbpedia.org/datatype/poundPerSquareInch".freeze, "http://dbpedia.org/datatype/poundSterling".freeze, "http://dbpedia.org/datatype/poundal".freeze, "http://dbpedia.org/datatype/qatariRial".freeze, "http://dbpedia.org/datatype/renminbi".freeze, "http://dbpedia.org/datatype/rod".freeze, "http://dbpedia.org/datatype/romanianNewLeu".freeze, "http://dbpedia.org/datatype/russianRouble".freeze, "http://dbpedia.org/datatype/rwandaFranc".freeze, "http://dbpedia.org/datatype/saintHelenaPound".freeze, "http://dbpedia.org/datatype/samoanTala".freeze, "http://dbpedia.org/datatype/saudiRiyal".freeze, "http://dbpedia.org/datatype/second".freeze, "http://dbpedia.org/datatype/serbianDinar".freeze, "http://dbpedia.org/datatype/seychellesRupee".freeze, "http://dbpedia.org/datatype/sierraLeoneanLeone".freeze, "http://dbpedia.org/datatype/singaporeDollar".freeze, "http://dbpedia.org/datatype/slovakKoruna".freeze, "http://dbpedia.org/datatype/solomonIslandsDollar".freeze, "http://dbpedia.org/datatype/somaliShilling".freeze, "http://dbpedia.org/datatype/southAfricanRand".freeze, "http://dbpedia.org/datatype/southKoreanWon".freeze, "http://dbpedia.org/datatype/squareCentimetre".freeze, "http://dbpedia.org/datatype/squareDecametre".freeze, "http://dbpedia.org/datatype/squareDecimetre".freeze, "http://dbpedia.org/datatype/squareFoot".freeze, "http://dbpedia.org/datatype/squareHectometre".freeze, "http://dbpedia.org/datatype/squareInch".freeze, "http://dbpedia.org/datatype/squareKilometre".freeze, "http://dbpedia.org/datatype/squareMetre".freeze, "http://dbpedia.org/datatype/squareMile".freeze, "http://dbpedia.org/datatype/squareMillimetre".freeze, "http://dbpedia.org/datatype/squareNauticalMile".freeze, "http://dbpedia.org/datatype/squareYard".freeze, "http://dbpedia.org/datatype/sriLankanRupee".freeze, "http://dbpedia.org/datatype/standardAtmosphere".freeze, "http://dbpedia.org/datatype/stone".freeze, "http://dbpedia.org/datatype/sudanesePound".freeze, "http://dbpedia.org/datatype/surinamDollar".freeze, "http://dbpedia.org/datatype/swaziLilangeni".freeze, "http://dbpedia.org/datatype/swedishKrona".freeze, "http://dbpedia.org/datatype/swissFranc".freeze, "http://dbpedia.org/datatype/syrianPound".freeze, "http://dbpedia.org/datatype/sãoToméAndPríncipeDobra".freeze, "http://dbpedia.org/datatype/tajikistaniSomoni".freeze, "http://dbpedia.org/datatype/tanzanianShilling".freeze, "http://dbpedia.org/datatype/terabyte".freeze, "http://dbpedia.org/datatype/terahertz".freeze, "http://dbpedia.org/datatype/terawattHour".freeze, "http://dbpedia.org/datatype/thaiBaht".freeze, "http://dbpedia.org/datatype/tonganPaanga".freeze, "http://dbpedia.org/datatype/tonne".freeze, "http://dbpedia.org/datatype/tonneForce".freeze, "http://dbpedia.org/datatype/trinidadAndTobagoDollar".freeze, "http://dbpedia.org/datatype/tunisianDinar".freeze, "http://dbpedia.org/datatype/turkishLira".freeze, "http://dbpedia.org/datatype/turkmenistaniManat".freeze, "http://dbpedia.org/datatype/ugandaShilling".freeze, "http://dbpedia.org/datatype/ukrainianHryvnia".freeze, "http://dbpedia.org/datatype/unitedArabEmiratesDirham".freeze, "http://dbpedia.org/datatype/uruguayanPeso".freeze, "http://dbpedia.org/datatype/usBarrel".freeze, "http://dbpedia.org/datatype/usBarrelOil".freeze, "http://dbpedia.org/datatype/usDollar".freeze, "http://dbpedia.org/datatype/usGallon".freeze, "http://dbpedia.org/datatype/uzbekistanSom".freeze, "http://dbpedia.org/datatype/valvetrain".freeze, "http://dbpedia.org/datatype/vanuatuVatu".freeze, "http://dbpedia.org/datatype/venezuelanBolívar".freeze, "http://dbpedia.org/datatype/volt".freeze, "http://dbpedia.org/datatype/watt".freeze, "http://dbpedia.org/datatype/wattHour".freeze, "http://dbpedia.org/datatype/westAfricanCfaFranc".freeze, "http://dbpedia.org/datatype/yard".freeze, "http://dbpedia.org/datatype/yemeniRial".freeze, "http://dbpedia.org/datatype/zambianKwacha".freeze, "http://dbpedia.org/datatype/zimbabweanDollar".freeze, "http://dbpedia.org/ontology/".freeze, "http://dbpedia.org/ontology/AcademicConference".freeze, "http://dbpedia.org/ontology/AcademicJournal".freeze, "http://dbpedia.org/ontology/AcademicSubject".freeze, "http://dbpedia.org/ontology/Activity".freeze, "http://dbpedia.org/ontology/Actor".freeze, "http://dbpedia.org/ontology/AdministrativeRegion".freeze, "http://dbpedia.org/ontology/AdultActor".freeze, "http://dbpedia.org/ontology/Agent".freeze, "http://dbpedia.org/ontology/Agglomeration".freeze, "http://dbpedia.org/ontology/Aircraft".freeze, "http://dbpedia.org/ontology/Airline".freeze, "http://dbpedia.org/ontology/Airport".freeze, "http://dbpedia.org/ontology/Album".freeze, "http://dbpedia.org/ontology/Algorithm".freeze, "http://dbpedia.org/ontology/Altitude".freeze, "http://dbpedia.org/ontology/AmateurBoxer".freeze, "http://dbpedia.org/ontology/Ambassador".freeze, "http://dbpedia.org/ontology/AmericanFootballCoach".freeze, "http://dbpedia.org/ontology/AmericanFootballLeague".freeze, "http://dbpedia.org/ontology/AmericanFootballPlayer".freeze, "http://dbpedia.org/ontology/AmericanFootballTeam".freeze, "http://dbpedia.org/ontology/Amphibian".freeze, "http://dbpedia.org/ontology/AmusementParkAttraction".freeze, "http://dbpedia.org/ontology/AnatomicalStructure".freeze, "http://dbpedia.org/ontology/Animal".freeze, "http://dbpedia.org/ontology/AnimangaCharacter".freeze, "http://dbpedia.org/ontology/Anime".freeze, "http://dbpedia.org/ontology/Annotation".freeze, "http://dbpedia.org/ontology/Arachnid".freeze, "http://dbpedia.org/ontology/Archaea".freeze, "http://dbpedia.org/ontology/Archbishop".freeze, "http://dbpedia.org/ontology/Archeologist".freeze, "http://dbpedia.org/ontology/ArcherPlayer".freeze, "http://dbpedia.org/ontology/Archipelago".freeze, "http://dbpedia.org/ontology/Architect".freeze, "http://dbpedia.org/ontology/ArchitecturalStructure".freeze, "http://dbpedia.org/ontology/Archive".freeze, "http://dbpedia.org/ontology/Area".freeze, "http://dbpedia.org/ontology/Arena".freeze, "http://dbpedia.org/ontology/Aristocrat".freeze, "http://dbpedia.org/ontology/Arrondissement".freeze, "http://dbpedia.org/ontology/Artery".freeze, "http://dbpedia.org/ontology/Article".freeze, "http://dbpedia.org/ontology/ArtificialSatellite".freeze, "http://dbpedia.org/ontology/Artist".freeze, "http://dbpedia.org/ontology/ArtistDiscography".freeze, "http://dbpedia.org/ontology/ArtisticGenre".freeze, "http://dbpedia.org/ontology/Artwork".freeze, "http://dbpedia.org/ontology/Asteroid".freeze, "http://dbpedia.org/ontology/Astronaut".freeze, "http://dbpedia.org/ontology/Astronaut/timeInSpace".freeze, "http://dbpedia.org/ontology/Athlete".freeze, "http://dbpedia.org/ontology/Athletics".freeze, "http://dbpedia.org/ontology/AthleticsPlayer".freeze, "http://dbpedia.org/ontology/Atoll".freeze, "http://dbpedia.org/ontology/Attack".freeze, "http://dbpedia.org/ontology/AustralianFootballLeague".freeze, "http://dbpedia.org/ontology/AustralianFootballTeam".freeze, "http://dbpedia.org/ontology/AustralianRulesFootballPlayer".freeze, "http://dbpedia.org/ontology/AutoRacingLeague".freeze, "http://dbpedia.org/ontology/Automobile".freeze, "http://dbpedia.org/ontology/Automobile/fuelCapacity".freeze, "http://dbpedia.org/ontology/Automobile/wheelbase".freeze, "http://dbpedia.org/ontology/AutomobileEngine".freeze, "http://dbpedia.org/ontology/Award".freeze, "http://dbpedia.org/ontology/BackScene".freeze, "http://dbpedia.org/ontology/Bacteria".freeze, "http://dbpedia.org/ontology/BadmintonPlayer".freeze, "http://dbpedia.org/ontology/Band".freeze, "http://dbpedia.org/ontology/Bank".freeze, "http://dbpedia.org/ontology/Baronet".freeze, "http://dbpedia.org/ontology/BaseballLeague".freeze, "http://dbpedia.org/ontology/BaseballPlayer".freeze, "http://dbpedia.org/ontology/BaseballSeason".freeze, "http://dbpedia.org/ontology/BaseballTeam".freeze, "http://dbpedia.org/ontology/BasketballLeague".freeze, "http://dbpedia.org/ontology/BasketballPlayer".freeze, "http://dbpedia.org/ontology/BasketballTeam".freeze, "http://dbpedia.org/ontology/Battery".freeze, "http://dbpedia.org/ontology/Bay".freeze, "http://dbpedia.org/ontology/Beach".freeze, "http://dbpedia.org/ontology/BeachVolleyballPlayer".freeze, "http://dbpedia.org/ontology/BeautyQueen".freeze, "http://dbpedia.org/ontology/Beer".freeze, "http://dbpedia.org/ontology/Beverage".freeze, "http://dbpedia.org/ontology/Biathlete".freeze, "http://dbpedia.org/ontology/BiologicalDatabase".freeze, "http://dbpedia.org/ontology/Biologist".freeze, "http://dbpedia.org/ontology/Biomolecule".freeze, "http://dbpedia.org/ontology/Bird".freeze, "http://dbpedia.org/ontology/Blazon".freeze, "http://dbpedia.org/ontology/BloodVessel".freeze, "http://dbpedia.org/ontology/BoardGame".freeze, "http://dbpedia.org/ontology/BobsleighAthlete".freeze, "http://dbpedia.org/ontology/BodyOfWater".freeze, "http://dbpedia.org/ontology/Bodybuilder".freeze, "http://dbpedia.org/ontology/Bone".freeze, "http://dbpedia.org/ontology/Book".freeze, "http://dbpedia.org/ontology/BowlingLeague".freeze, "http://dbpedia.org/ontology/Boxer".freeze, "http://dbpedia.org/ontology/BoxingLeague".freeze, "http://dbpedia.org/ontology/Brain".freeze, "http://dbpedia.org/ontology/Brewery".freeze, "http://dbpedia.org/ontology/Bridge".freeze, "http://dbpedia.org/ontology/BritishRoyalty".freeze, "http://dbpedia.org/ontology/BroadcastNetwork".freeze, "http://dbpedia.org/ontology/Broadcaster".freeze, "http://dbpedia.org/ontology/BrownDwarf".freeze, "http://dbpedia.org/ontology/Browser".freeze, "http://dbpedia.org/ontology/Building".freeze, "http://dbpedia.org/ontology/Building/floorArea".freeze, "http://dbpedia.org/ontology/BullFighter".freeze, "http://dbpedia.org/ontology/BusCompany".freeze, "http://dbpedia.org/ontology/BusinessPerson".freeze, "http://dbpedia.org/ontology/Camera".freeze, "http://dbpedia.org/ontology/CanadianFootballLeague".freeze, "http://dbpedia.org/ontology/CanadianFootballPlayer".freeze, "http://dbpedia.org/ontology/CanadianFootballTeam".freeze, "http://dbpedia.org/ontology/Canal".freeze, "http://dbpedia.org/ontology/Canal/maximumBoatBeam".freeze, "http://dbpedia.org/ontology/Canal/maximumBoatLength".freeze, "http://dbpedia.org/ontology/Canal/originalMaximumBoatBeam".freeze, "http://dbpedia.org/ontology/Canal/originalMaximumBoatLength".freeze, "http://dbpedia.org/ontology/Canoeist".freeze, "http://dbpedia.org/ontology/Canton".freeze, "http://dbpedia.org/ontology/Cape".freeze, "http://dbpedia.org/ontology/Capital".freeze, "http://dbpedia.org/ontology/CapitalOfRegion".freeze, "http://dbpedia.org/ontology/CardGame".freeze, "http://dbpedia.org/ontology/Cardinal".freeze, "http://dbpedia.org/ontology/CardinalDirection".freeze, "http://dbpedia.org/ontology/CareerStation".freeze, "http://dbpedia.org/ontology/Cartoon".freeze, "http://dbpedia.org/ontology/Case".freeze, "http://dbpedia.org/ontology/Casino".freeze, "http://dbpedia.org/ontology/Castle".freeze, "http://dbpedia.org/ontology/Cat".freeze, "http://dbpedia.org/ontology/Caterer".freeze, "http://dbpedia.org/ontology/Cave".freeze, "http://dbpedia.org/ontology/CelestialBody".freeze, "http://dbpedia.org/ontology/Cemetery".freeze, "http://dbpedia.org/ontology/Chancellor".freeze, "http://dbpedia.org/ontology/ChartsPlacements".freeze, "http://dbpedia.org/ontology/Cheese".freeze, "http://dbpedia.org/ontology/Chef".freeze, "http://dbpedia.org/ontology/ChemicalCompound".freeze, "http://dbpedia.org/ontology/ChemicalElement".freeze, "http://dbpedia.org/ontology/ChemicalSubstance".freeze, "http://dbpedia.org/ontology/ChemicalSubstance/boilingPoint".freeze, "http://dbpedia.org/ontology/ChemicalSubstance/density".freeze, "http://dbpedia.org/ontology/ChemicalSubstance/meltingPoint".freeze, "http://dbpedia.org/ontology/ChessPlayer".freeze, "http://dbpedia.org/ontology/ChristianBishop".freeze, "http://dbpedia.org/ontology/ChristianDoctrine".freeze, "http://dbpedia.org/ontology/ChristianPatriarch".freeze, "http://dbpedia.org/ontology/Church".freeze, "http://dbpedia.org/ontology/Cinema".freeze, "http://dbpedia.org/ontology/Cipher".freeze, "http://dbpedia.org/ontology/City".freeze, "http://dbpedia.org/ontology/CityDistrict".freeze, "http://dbpedia.org/ontology/ClassicalMusicArtist".freeze, "http://dbpedia.org/ontology/ClassicalMusicComposition".freeze, "http://dbpedia.org/ontology/Cleric".freeze, "http://dbpedia.org/ontology/ClericalAdministrativeRegion".freeze, "http://dbpedia.org/ontology/ClericalOrder".freeze, "http://dbpedia.org/ontology/ClubMoss".freeze, "http://dbpedia.org/ontology/Coach".freeze, "http://dbpedia.org/ontology/CoalPit".freeze, "http://dbpedia.org/ontology/CollectionOfValuables".freeze, "http://dbpedia.org/ontology/College".freeze, "http://dbpedia.org/ontology/CollegeCoach".freeze, "http://dbpedia.org/ontology/Colour".freeze, "http://dbpedia.org/ontology/CombinationDrug".freeze, "http://dbpedia.org/ontology/Comedian".freeze, "http://dbpedia.org/ontology/ComedyGroup".freeze, "http://dbpedia.org/ontology/Comic".freeze, "http://dbpedia.org/ontology/ComicStrip".freeze, "http://dbpedia.org/ontology/ComicsCharacter".freeze, "http://dbpedia.org/ontology/ComicsCreator".freeze, "http://dbpedia.org/ontology/Community".freeze, "http://dbpedia.org/ontology/Company".freeze, "http://dbpedia.org/ontology/Competition".freeze, "http://dbpedia.org/ontology/ConcentrationCamp".freeze, "http://dbpedia.org/ontology/Congressman".freeze, "http://dbpedia.org/ontology/Conifer".freeze, "http://dbpedia.org/ontology/Constellation".freeze, "http://dbpedia.org/ontology/Contest".freeze, "http://dbpedia.org/ontology/Continent".freeze, "http://dbpedia.org/ontology/ControlledDesignationOfOriginWine".freeze, "http://dbpedia.org/ontology/Convention".freeze, "http://dbpedia.org/ontology/ConveyorSystem".freeze, "http://dbpedia.org/ontology/ConveyorSystem/diameter".freeze, "http://dbpedia.org/ontology/ConveyorSystem/height".freeze, "http://dbpedia.org/ontology/ConveyorSystem/length".freeze, "http://dbpedia.org/ontology/ConveyorSystem/mass".freeze, "http://dbpedia.org/ontology/ConveyorSystem/weight".freeze, "http://dbpedia.org/ontology/ConveyorSystem/width".freeze, "http://dbpedia.org/ontology/Country".freeze, "http://dbpedia.org/ontology/CountrySeat".freeze, "http://dbpedia.org/ontology/Crater".freeze, "http://dbpedia.org/ontology/CricketGround".freeze, "http://dbpedia.org/ontology/CricketLeague".freeze, "http://dbpedia.org/ontology/CricketTeam".freeze, "http://dbpedia.org/ontology/Cricketer".freeze, "http://dbpedia.org/ontology/Criminal".freeze, "http://dbpedia.org/ontology/CrossCountrySkier".freeze, "http://dbpedia.org/ontology/Crustacean".freeze, "http://dbpedia.org/ontology/CultivatedVariety".freeze, "http://dbpedia.org/ontology/Curler".freeze, "http://dbpedia.org/ontology/CurlingLeague".freeze, "http://dbpedia.org/ontology/Currency".freeze, "http://dbpedia.org/ontology/Cycad".freeze, "http://dbpedia.org/ontology/CyclingCompetition".freeze, "http://dbpedia.org/ontology/CyclingLeague".freeze, "http://dbpedia.org/ontology/CyclingRace".freeze, "http://dbpedia.org/ontology/CyclingTeam".freeze, "http://dbpedia.org/ontology/Cyclist".freeze, "http://dbpedia.org/ontology/DBpedian".freeze, "http://dbpedia.org/ontology/DTMRacer".freeze, "http://dbpedia.org/ontology/Dam".freeze, "http://dbpedia.org/ontology/Dancer".freeze, "http://dbpedia.org/ontology/DartsPlayer".freeze, "http://dbpedia.org/ontology/Database".freeze, "http://dbpedia.org/ontology/Deanery".freeze, "http://dbpedia.org/ontology/Decoration".freeze, "http://dbpedia.org/ontology/Deity".freeze, "http://dbpedia.org/ontology/Demographics".freeze, "http://dbpedia.org/ontology/Department".freeze, "http://dbpedia.org/ontology/Depth".freeze, "http://dbpedia.org/ontology/Deputy".freeze, "http://dbpedia.org/ontology/Desert".freeze, "http://dbpedia.org/ontology/Device".freeze, "http://dbpedia.org/ontology/DigitalCamera".freeze, "http://dbpedia.org/ontology/Dike".freeze, "http://dbpedia.org/ontology/Diocese".freeze, "http://dbpedia.org/ontology/Diploma".freeze, "http://dbpedia.org/ontology/Disease".freeze, "http://dbpedia.org/ontology/DisneyCharacter".freeze, "http://dbpedia.org/ontology/District".freeze, "http://dbpedia.org/ontology/DistrictWaterBoard".freeze, "http://dbpedia.org/ontology/Document".freeze, "http://dbpedia.org/ontology/DocumentType".freeze, "http://dbpedia.org/ontology/Dog".freeze, "http://dbpedia.org/ontology/Drama".freeze, "http://dbpedia.org/ontology/Drug".freeze, "http://dbpedia.org/ontology/Drug/boilingPoint".freeze, "http://dbpedia.org/ontology/Drug/meltingPoint".freeze, "http://dbpedia.org/ontology/Earthquake".freeze, "http://dbpedia.org/ontology/Economist".freeze, "http://dbpedia.org/ontology/EducationalInstitution".freeze, "http://dbpedia.org/ontology/Egyptologist".freeze, "http://dbpedia.org/ontology/Election".freeze, "http://dbpedia.org/ontology/ElectionDiagram".freeze, "http://dbpedia.org/ontology/ElectricalSubstation".freeze, "http://dbpedia.org/ontology/Embryology".freeze, "http://dbpedia.org/ontology/Employer".freeze, "http://dbpedia.org/ontology/EmployersOrganisation".freeze, "http://dbpedia.org/ontology/Engine".freeze, "http://dbpedia.org/ontology/Engine/acceleration".freeze, "http://dbpedia.org/ontology/Engine/co2Emission".freeze, "http://dbpedia.org/ontology/Engine/cylinderBore".freeze, "http://dbpedia.org/ontology/Engine/diameter".freeze, "http://dbpedia.org/ontology/Engine/displacement".freeze, "http://dbpedia.org/ontology/Engine/height".freeze, "http://dbpedia.org/ontology/Engine/length".freeze, "http://dbpedia.org/ontology/Engine/pistonStroke".freeze, "http://dbpedia.org/ontology/Engine/powerOutput".freeze, "http://dbpedia.org/ontology/Engine/topSpeed".freeze, "http://dbpedia.org/ontology/Engine/torqueOutput".freeze, "http://dbpedia.org/ontology/Engine/weight".freeze, "http://dbpedia.org/ontology/Engine/width".freeze, "http://dbpedia.org/ontology/Engineer".freeze, "http://dbpedia.org/ontology/Entomologist".freeze, "http://dbpedia.org/ontology/Enzyme".freeze, "http://dbpedia.org/ontology/Escalator".freeze, "http://dbpedia.org/ontology/Escalator/diameter".freeze, "http://dbpedia.org/ontology/Escalator/height".freeze, "http://dbpedia.org/ontology/Escalator/length".freeze, "http://dbpedia.org/ontology/Escalator/mass".freeze, "http://dbpedia.org/ontology/Escalator/weight".freeze, "http://dbpedia.org/ontology/Escalator/width".freeze, "http://dbpedia.org/ontology/EthnicGroup".freeze, "http://dbpedia.org/ontology/Eukaryote".freeze, "http://dbpedia.org/ontology/EurovisionSongContestEntry".freeze, "http://dbpedia.org/ontology/Event".freeze, "http://dbpedia.org/ontology/Factory".freeze, "http://dbpedia.org/ontology/Family".freeze, "http://dbpedia.org/ontology/Farmer".freeze, "http://dbpedia.org/ontology/Fashion".freeze, "http://dbpedia.org/ontology/FashionDesigner".freeze, "http://dbpedia.org/ontology/Fencer".freeze, "http://dbpedia.org/ontology/Fern".freeze, "http://dbpedia.org/ontology/FictionalCharacter".freeze, "http://dbpedia.org/ontology/FieldHockeyLeague".freeze, "http://dbpedia.org/ontology/FigureSkater".freeze, "http://dbpedia.org/ontology/File".freeze, "http://dbpedia.org/ontology/FileSystem".freeze, "http://dbpedia.org/ontology/Film".freeze, "http://dbpedia.org/ontology/FilmFestival".freeze, "http://dbpedia.org/ontology/Fish".freeze, "http://dbpedia.org/ontology/Flag".freeze, "http://dbpedia.org/ontology/FloweringPlant".freeze, "http://dbpedia.org/ontology/Food".freeze, "http://dbpedia.org/ontology/FootballLeagueSeason".freeze, "http://dbpedia.org/ontology/FootballMatch".freeze, "http://dbpedia.org/ontology/Forest".freeze, "http://dbpedia.org/ontology/FormerMunicipality".freeze, "http://dbpedia.org/ontology/FormulaOneRacer".freeze, "http://dbpedia.org/ontology/FormulaOneRacing".freeze, "http://dbpedia.org/ontology/FormulaOneTeam".freeze, "http://dbpedia.org/ontology/Fort".freeze, "http://dbpedia.org/ontology/Fungus".freeze, "http://dbpedia.org/ontology/GaelicGamesPlayer".freeze, "http://dbpedia.org/ontology/Galaxy".freeze, "http://dbpedia.org/ontology/Galaxy/apoapsis".freeze, "http://dbpedia.org/ontology/Galaxy/averageSpeed".freeze, "http://dbpedia.org/ontology/Galaxy/density".freeze, "http://dbpedia.org/ontology/Galaxy/mass".freeze, "http://dbpedia.org/ontology/Galaxy/maximumTemperature".freeze, "http://dbpedia.org/ontology/Galaxy/meanRadius".freeze, "http://dbpedia.org/ontology/Galaxy/meanTemperature".freeze, "http://dbpedia.org/ontology/Galaxy/minimumTemperature".freeze, "http://dbpedia.org/ontology/Galaxy/orbitalPeriod".freeze, "http://dbpedia.org/ontology/Galaxy/periapsis".freeze, "http://dbpedia.org/ontology/Galaxy/surfaceArea".freeze, "http://dbpedia.org/ontology/Galaxy/temperature".freeze, "http://dbpedia.org/ontology/Galaxy/volume".freeze, "http://dbpedia.org/ontology/Game".freeze, "http://dbpedia.org/ontology/Garden".freeze, "http://dbpedia.org/ontology/GatedCommunity".freeze, "http://dbpedia.org/ontology/Gene".freeze, "http://dbpedia.org/ontology/GeneLocation".freeze, "http://dbpedia.org/ontology/Genre".freeze, "http://dbpedia.org/ontology/GeologicalPeriod".freeze, "http://dbpedia.org/ontology/GeopoliticalOrganisation".freeze, "http://dbpedia.org/ontology/GeopoliticalOrganisation/areaMetro".freeze, "http://dbpedia.org/ontology/GeopoliticalOrganisation/populationDensity".freeze, "http://dbpedia.org/ontology/Ginkgo".freeze, "http://dbpedia.org/ontology/GivenName".freeze, "http://dbpedia.org/ontology/Glacier".freeze, "http://dbpedia.org/ontology/Globularswarm".freeze, "http://dbpedia.org/ontology/Gnetophytes".freeze, "http://dbpedia.org/ontology/GolfCourse".freeze, "http://dbpedia.org/ontology/GolfLeague".freeze, "http://dbpedia.org/ontology/GolfPlayer".freeze, "http://dbpedia.org/ontology/GolfTournament".freeze, "http://dbpedia.org/ontology/GovernmentAgency".freeze, "http://dbpedia.org/ontology/GovernmentCabinet".freeze, "http://dbpedia.org/ontology/GovernmentType".freeze, "http://dbpedia.org/ontology/GovernmentalAdministrativeRegion".freeze, "http://dbpedia.org/ontology/Governor".freeze, "http://dbpedia.org/ontology/GrandPrix".freeze, "http://dbpedia.org/ontology/GrandPrix/course".freeze, "http://dbpedia.org/ontology/GrandPrix/distance".freeze, "http://dbpedia.org/ontology/Grape".freeze, "http://dbpedia.org/ontology/GraveMonument".freeze, "http://dbpedia.org/ontology/GreenAlga".freeze, "http://dbpedia.org/ontology/GridironFootballPlayer".freeze, "http://dbpedia.org/ontology/GrossDomesticProduct".freeze, "http://dbpedia.org/ontology/GrossDomesticProductPerCapita".freeze, "http://dbpedia.org/ontology/Group".freeze, "http://dbpedia.org/ontology/Guitar".freeze, "http://dbpedia.org/ontology/Guitarist".freeze, "http://dbpedia.org/ontology/Gymnast".freeze, "http://dbpedia.org/ontology/HandballLeague".freeze, "http://dbpedia.org/ontology/HandballPlayer".freeze, "http://dbpedia.org/ontology/HandballTeam".freeze, "http://dbpedia.org/ontology/HighDiver".freeze, "http://dbpedia.org/ontology/Historian".freeze, "http://dbpedia.org/ontology/HistoricBuilding".freeze, "http://dbpedia.org/ontology/HistoricPlace".freeze, "http://dbpedia.org/ontology/HistoricalAreaOfAuthority".freeze, "http://dbpedia.org/ontology/HistoricalCountry".freeze, "http://dbpedia.org/ontology/HistoricalDistrict".freeze, "http://dbpedia.org/ontology/HistoricalEvent".freeze, "http://dbpedia.org/ontology/HistoricalPeriod".freeze, "http://dbpedia.org/ontology/HistoricalProvince".freeze, "http://dbpedia.org/ontology/HistoricalRegion".freeze, "http://dbpedia.org/ontology/HistoricalSettlement".freeze, "http://dbpedia.org/ontology/HockeyClub".freeze, "http://dbpedia.org/ontology/HockeyTeam".freeze, "http://dbpedia.org/ontology/Holiday".freeze, "http://dbpedia.org/ontology/HollywoodCartoon".freeze, "http://dbpedia.org/ontology/Hormone".freeze, "http://dbpedia.org/ontology/Horse".freeze, "http://dbpedia.org/ontology/HorseRace".freeze, "http://dbpedia.org/ontology/HorseRider".freeze, "http://dbpedia.org/ontology/HorseTrainer".freeze, "http://dbpedia.org/ontology/Hospital".freeze, "http://dbpedia.org/ontology/HotSpring".freeze, "http://dbpedia.org/ontology/Hotel".freeze, "http://dbpedia.org/ontology/HumanGene".freeze, "http://dbpedia.org/ontology/HumanGeneLocation".freeze, "http://dbpedia.org/ontology/Humorist".freeze, "http://dbpedia.org/ontology/IceHockeyLeague".freeze, "http://dbpedia.org/ontology/IceHockeyPlayer".freeze, "http://dbpedia.org/ontology/Identifier".freeze, "http://dbpedia.org/ontology/Ideology".freeze, "http://dbpedia.org/ontology/Image".freeze, "http://dbpedia.org/ontology/InformationAppliance".freeze, "http://dbpedia.org/ontology/Infrastructure".freeze, "http://dbpedia.org/ontology/Infrastructure/length".freeze, "http://dbpedia.org/ontology/InlineHockeyLeague".freeze, "http://dbpedia.org/ontology/Insect".freeze, "http://dbpedia.org/ontology/Instrument".freeze, "http://dbpedia.org/ontology/Instrumentalist".freeze, "http://dbpedia.org/ontology/Intercommunality".freeze, "http://dbpedia.org/ontology/InternationalFootballLeagueEvent".freeze, "http://dbpedia.org/ontology/InternationalOrganisation".freeze, "http://dbpedia.org/ontology/Island".freeze, "http://dbpedia.org/ontology/Jockey".freeze, "http://dbpedia.org/ontology/Journalist".freeze, "http://dbpedia.org/ontology/Judge".freeze, "http://dbpedia.org/ontology/LacrosseLeague".freeze, "http://dbpedia.org/ontology/LacrossePlayer".freeze, "http://dbpedia.org/ontology/Lake".freeze, "http://dbpedia.org/ontology/Lake/areaOfCatchment".freeze, "http://dbpedia.org/ontology/Lake/shoreLength".freeze, "http://dbpedia.org/ontology/Lake/volume".freeze, "http://dbpedia.org/ontology/Language".freeze, "http://dbpedia.org/ontology/LaunchPad".freeze, "http://dbpedia.org/ontology/Law".freeze, "http://dbpedia.org/ontology/LawFirm".freeze, "http://dbpedia.org/ontology/Lawyer".freeze, "http://dbpedia.org/ontology/LegalCase".freeze, "http://dbpedia.org/ontology/Legislature".freeze, "http://dbpedia.org/ontology/Letter".freeze, "http://dbpedia.org/ontology/Library".freeze, "http://dbpedia.org/ontology/Lieutenant".freeze, "http://dbpedia.org/ontology/LifeCycleEvent".freeze, "http://dbpedia.org/ontology/Ligament".freeze, "http://dbpedia.org/ontology/LightNovel".freeze, "http://dbpedia.org/ontology/Lighthouse".freeze, "http://dbpedia.org/ontology/LineOfFashion".freeze, "http://dbpedia.org/ontology/Linguist".freeze, "http://dbpedia.org/ontology/Lipid".freeze, "http://dbpedia.org/ontology/List".freeze, "http://dbpedia.org/ontology/LiteraryGenre".freeze, "http://dbpedia.org/ontology/Locality".freeze, "http://dbpedia.org/ontology/Lock".freeze, "http://dbpedia.org/ontology/Locomotive".freeze, "http://dbpedia.org/ontology/LunarCrater".freeze, "http://dbpedia.org/ontology/LunarCrater/diameter".freeze, "http://dbpedia.org/ontology/Lymph".freeze, "http://dbpedia.org/ontology/Magazine".freeze, "http://dbpedia.org/ontology/Mammal".freeze, "http://dbpedia.org/ontology/Man".freeze, "http://dbpedia.org/ontology/Manga".freeze, "http://dbpedia.org/ontology/Manhua".freeze, "http://dbpedia.org/ontology/Manhwa".freeze, "http://dbpedia.org/ontology/Manor".freeze, "http://dbpedia.org/ontology/MartialArtist".freeze, "http://dbpedia.org/ontology/MathematicalConcept".freeze, "http://dbpedia.org/ontology/Mayor".freeze, "http://dbpedia.org/ontology/MeanOfTransportation".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/diameter".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/height".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/length".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/mass".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/weight".freeze, "http://dbpedia.org/ontology/MeanOfTransportation/width".freeze, "http://dbpedia.org/ontology/Media".freeze, "http://dbpedia.org/ontology/MedicalSpecialty".freeze, "http://dbpedia.org/ontology/Medician".freeze, "http://dbpedia.org/ontology/Medicine".freeze, "http://dbpedia.org/ontology/Meeting".freeze, "http://dbpedia.org/ontology/MemberOfParliament".freeze, "http://dbpedia.org/ontology/MemberResistanceMovement".freeze, "http://dbpedia.org/ontology/Memorial".freeze, "http://dbpedia.org/ontology/MetroStation".freeze, "http://dbpedia.org/ontology/MicroRegion".freeze, "http://dbpedia.org/ontology/MilitaryAircraft".freeze, "http://dbpedia.org/ontology/MilitaryConflict".freeze, "http://dbpedia.org/ontology/MilitaryPerson".freeze, "http://dbpedia.org/ontology/MilitaryService".freeze, "http://dbpedia.org/ontology/MilitaryStructure".freeze, "http://dbpedia.org/ontology/MilitaryUnit".freeze, "http://dbpedia.org/ontology/MilitaryVehicle".freeze, "http://dbpedia.org/ontology/Mill".freeze, "http://dbpedia.org/ontology/Mine".freeze, "http://dbpedia.org/ontology/Mineral".freeze, "http://dbpedia.org/ontology/Minister".freeze, "http://dbpedia.org/ontology/MixedMartialArtsEvent".freeze, "http://dbpedia.org/ontology/MixedMartialArtsLeague".freeze, "http://dbpedia.org/ontology/MobilePhone".freeze, "http://dbpedia.org/ontology/Model".freeze, "http://dbpedia.org/ontology/Mollusca".freeze, "http://dbpedia.org/ontology/Monarch".freeze, "http://dbpedia.org/ontology/Monastery".freeze, "http://dbpedia.org/ontology/MonoclonalAntibody".freeze, "http://dbpedia.org/ontology/Monument".freeze, "http://dbpedia.org/ontology/Mosque".freeze, "http://dbpedia.org/ontology/Moss".freeze, "http://dbpedia.org/ontology/MotocycleRacer".freeze, "http://dbpedia.org/ontology/MotorRace".freeze, "http://dbpedia.org/ontology/Motorcycle".freeze, "http://dbpedia.org/ontology/MotorcycleRacingLeague".freeze, "http://dbpedia.org/ontology/MotorcycleRider".freeze, "http://dbpedia.org/ontology/MotorsportRacer".freeze, "http://dbpedia.org/ontology/MotorsportSeason".freeze, "http://dbpedia.org/ontology/Mountain".freeze, "http://dbpedia.org/ontology/MountainPass".freeze, "http://dbpedia.org/ontology/MountainRange".freeze, "http://dbpedia.org/ontology/MouseGene".freeze, "http://dbpedia.org/ontology/MouseGeneLocation".freeze, "http://dbpedia.org/ontology/MovieDirector".freeze, "http://dbpedia.org/ontology/MovieGenre".freeze, "http://dbpedia.org/ontology/MovingImage".freeze, "http://dbpedia.org/ontology/MovingWalkway".freeze, "http://dbpedia.org/ontology/MovingWalkway/diameter".freeze, "http://dbpedia.org/ontology/MovingWalkway/height".freeze, "http://dbpedia.org/ontology/MovingWalkway/length".freeze, "http://dbpedia.org/ontology/MovingWalkway/mass".freeze, "http://dbpedia.org/ontology/MovingWalkway/weight".freeze, "http://dbpedia.org/ontology/MovingWalkway/width".freeze, "http://dbpedia.org/ontology/MultiVolumePublication".freeze, "http://dbpedia.org/ontology/Municipality".freeze, "http://dbpedia.org/ontology/Murderer".freeze, "http://dbpedia.org/ontology/Muscle".freeze, "http://dbpedia.org/ontology/Museum".freeze, "http://dbpedia.org/ontology/MusicComposer".freeze, "http://dbpedia.org/ontology/MusicDirector".freeze, "http://dbpedia.org/ontology/MusicFestival".freeze, "http://dbpedia.org/ontology/MusicGenre".freeze, "http://dbpedia.org/ontology/Musical".freeze, "http://dbpedia.org/ontology/MusicalArtist".freeze, "http://dbpedia.org/ontology/MusicalWork".freeze, "http://dbpedia.org/ontology/MythologicalFigure".freeze, "http://dbpedia.org/ontology/NCAATeamSeason".freeze, "http://dbpedia.org/ontology/Name".freeze, "http://dbpedia.org/ontology/NarutoCharacter".freeze, "http://dbpedia.org/ontology/NascarDriver".freeze, "http://dbpedia.org/ontology/NationalAnthem".freeze, "http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete".freeze, "http://dbpedia.org/ontology/NationalFootballLeagueEvent".freeze, "http://dbpedia.org/ontology/NationalFootballLeagueSeason".freeze, "http://dbpedia.org/ontology/NationalSoccerClub".freeze, "http://dbpedia.org/ontology/NaturalEvent".freeze, "http://dbpedia.org/ontology/NaturalPlace".freeze, "http://dbpedia.org/ontology/NaturalRegion".freeze, "http://dbpedia.org/ontology/Nebula".freeze, "http://dbpedia.org/ontology/Nerve".freeze, "http://dbpedia.org/ontology/NetballPlayer".freeze, "http://dbpedia.org/ontology/Newspaper".freeze, "http://dbpedia.org/ontology/NobelPrize".freeze, "http://dbpedia.org/ontology/Noble".freeze, "http://dbpedia.org/ontology/NobleFamily".freeze, "http://dbpedia.org/ontology/Non-ProfitOrganisation".freeze, "http://dbpedia.org/ontology/NordicCombined".freeze, "http://dbpedia.org/ontology/Novel".freeze, "http://dbpedia.org/ontology/NuclearPowerStation".freeze, "http://dbpedia.org/ontology/Ocean".freeze, "http://dbpedia.org/ontology/OfficeHolder".freeze, "http://dbpedia.org/ontology/OldTerritory".freeze, "http://dbpedia.org/ontology/OlympicEvent".freeze, "http://dbpedia.org/ontology/OlympicResult".freeze, "http://dbpedia.org/ontology/Olympics".freeze, "http://dbpedia.org/ontology/On-SiteTransportation".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/diameter".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/height".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/length".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/mass".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/weight".freeze, "http://dbpedia.org/ontology/On-SiteTransportation/width".freeze, "http://dbpedia.org/ontology/Openswarm".freeze, "http://dbpedia.org/ontology/Opera".freeze, "http://dbpedia.org/ontology/Organ".freeze, "http://dbpedia.org/ontology/Organisation".freeze, "http://dbpedia.org/ontology/OrganisationMember".freeze, "http://dbpedia.org/ontology/Outbreak".freeze, "http://dbpedia.org/ontology/OverseasDepartment".freeze, "http://dbpedia.org/ontology/PaintballLeague".freeze, "http://dbpedia.org/ontology/Painter".freeze, "http://dbpedia.org/ontology/Painting".freeze, "http://dbpedia.org/ontology/Parish".freeze, "http://dbpedia.org/ontology/Park".freeze, "http://dbpedia.org/ontology/Parliament".freeze, "http://dbpedia.org/ontology/PenaltyShootOut".freeze, "http://dbpedia.org/ontology/PeriodOfArtisticStyle".freeze, "http://dbpedia.org/ontology/PeriodicalLiterature".freeze, "http://dbpedia.org/ontology/Person".freeze, "http://dbpedia.org/ontology/Person/height".freeze, "http://dbpedia.org/ontology/Person/weight".freeze, "http://dbpedia.org/ontology/PersonFunction".freeze, "http://dbpedia.org/ontology/PersonalEvent".freeze, "http://dbpedia.org/ontology/Philosopher".freeze, "http://dbpedia.org/ontology/PhilosophicalConcept".freeze, "http://dbpedia.org/ontology/Photographer".freeze, "http://dbpedia.org/ontology/Place".freeze, "http://dbpedia.org/ontology/Planet".freeze, "http://dbpedia.org/ontology/Planet/apoapsis".freeze, "http://dbpedia.org/ontology/Planet/averageSpeed".freeze, "http://dbpedia.org/ontology/Planet/density".freeze, "http://dbpedia.org/ontology/Planet/mass".freeze, "http://dbpedia.org/ontology/Planet/maximumTemperature".freeze, "http://dbpedia.org/ontology/Planet/meanRadius".freeze, "http://dbpedia.org/ontology/Planet/meanTemperature".freeze, "http://dbpedia.org/ontology/Planet/minimumTemperature".freeze, "http://dbpedia.org/ontology/Planet/orbitalPeriod".freeze, "http://dbpedia.org/ontology/Planet/periapsis".freeze, "http://dbpedia.org/ontology/Planet/surfaceArea".freeze, "http://dbpedia.org/ontology/Planet/temperature".freeze, "http://dbpedia.org/ontology/Planet/volume".freeze, "http://dbpedia.org/ontology/Plant".freeze, "http://dbpedia.org/ontology/Play".freeze, "http://dbpedia.org/ontology/PlayWright".freeze, "http://dbpedia.org/ontology/PlayboyPlaymate".freeze, "http://dbpedia.org/ontology/Poem".freeze, "http://dbpedia.org/ontology/Poet".freeze, "http://dbpedia.org/ontology/PokerPlayer".freeze, "http://dbpedia.org/ontology/PoliticalConcept".freeze, "http://dbpedia.org/ontology/PoliticalFunction".freeze, "http://dbpedia.org/ontology/PoliticalParty".freeze, "http://dbpedia.org/ontology/Politician".freeze, "http://dbpedia.org/ontology/PoliticianSpouse".freeze, "http://dbpedia.org/ontology/PoloLeague".freeze, "http://dbpedia.org/ontology/Polysaccharide".freeze, "http://dbpedia.org/ontology/Pope".freeze, "http://dbpedia.org/ontology/PopulatedPlace".freeze, "http://dbpedia.org/ontology/PopulatedPlace/area".freeze, "http://dbpedia.org/ontology/PopulatedPlace/areaMetro".freeze, "http://dbpedia.org/ontology/PopulatedPlace/areaTotal".freeze, "http://dbpedia.org/ontology/PopulatedPlace/areaUrban".freeze, "http://dbpedia.org/ontology/PopulatedPlace/populationDensity".freeze, "http://dbpedia.org/ontology/PopulatedPlace/populationMetroDensity".freeze, "http://dbpedia.org/ontology/PopulatedPlace/populationUrbanDensity".freeze, "http://dbpedia.org/ontology/Population".freeze, "http://dbpedia.org/ontology/Port".freeze, "http://dbpedia.org/ontology/PowerStation".freeze, "http://dbpedia.org/ontology/Prefecture".freeze, "http://dbpedia.org/ontology/PrehistoricalPeriod".freeze, "http://dbpedia.org/ontology/Presenter".freeze, "http://dbpedia.org/ontology/President".freeze, "http://dbpedia.org/ontology/Priest".freeze, "http://dbpedia.org/ontology/PrimeMinister".freeze, "http://dbpedia.org/ontology/Prison".freeze, "http://dbpedia.org/ontology/Producer".freeze, "http://dbpedia.org/ontology/Profession".freeze, "http://dbpedia.org/ontology/Professor".freeze, "http://dbpedia.org/ontology/ProgrammingLanguage".freeze, "http://dbpedia.org/ontology/Project".freeze, "http://dbpedia.org/ontology/ProtectedArea".freeze, "http://dbpedia.org/ontology/Protein".freeze, "http://dbpedia.org/ontology/Protocol".freeze, "http://dbpedia.org/ontology/ProtohistoricalPeriod".freeze, "http://dbpedia.org/ontology/Province".freeze, "http://dbpedia.org/ontology/Psychologist".freeze, "http://dbpedia.org/ontology/PublicService".freeze, "http://dbpedia.org/ontology/PublicTransitSystem".freeze, "http://dbpedia.org/ontology/Publisher".freeze, "http://dbpedia.org/ontology/Pyramid".freeze, "http://dbpedia.org/ontology/Quote".freeze, "http://dbpedia.org/ontology/Race".freeze, "http://dbpedia.org/ontology/RaceTrack".freeze, "http://dbpedia.org/ontology/Racecourse".freeze, "http://dbpedia.org/ontology/RacingDriver".freeze, "http://dbpedia.org/ontology/RadioControlledRacingLeague".freeze, "http://dbpedia.org/ontology/RadioHost".freeze, "http://dbpedia.org/ontology/RadioProgram".freeze, "http://dbpedia.org/ontology/RadioStation".freeze, "http://dbpedia.org/ontology/RailwayLine".freeze, "http://dbpedia.org/ontology/RailwayStation".freeze, "http://dbpedia.org/ontology/RailwayTunnel".freeze, "http://dbpedia.org/ontology/RallyDriver".freeze, "http://dbpedia.org/ontology/Rebellion".freeze, "http://dbpedia.org/ontology/RecordLabel".freeze, "http://dbpedia.org/ontology/RecordOffice".freeze, "http://dbpedia.org/ontology/Referee".freeze, "http://dbpedia.org/ontology/Reference".freeze, "http://dbpedia.org/ontology/Regency".freeze, "http://dbpedia.org/ontology/Region".freeze, "http://dbpedia.org/ontology/Reign".freeze, "http://dbpedia.org/ontology/Relationship".freeze, "http://dbpedia.org/ontology/Religious".freeze, "http://dbpedia.org/ontology/ReligiousBuilding".freeze, "http://dbpedia.org/ontology/ReligiousOrganisation".freeze, "http://dbpedia.org/ontology/Reptile".freeze, "http://dbpedia.org/ontology/ResearchProject".freeze, "http://dbpedia.org/ontology/RestArea".freeze, "http://dbpedia.org/ontology/Restaurant".freeze, "http://dbpedia.org/ontology/Resume".freeze, "http://dbpedia.org/ontology/River".freeze, "http://dbpedia.org/ontology/Road".freeze, "http://dbpedia.org/ontology/RoadJunction".freeze, "http://dbpedia.org/ontology/RoadTunnel".freeze, "http://dbpedia.org/ontology/Robot".freeze, "http://dbpedia.org/ontology/Rocket".freeze, "http://dbpedia.org/ontology/Rocket/lowerEarthOrbitPayload".freeze, "http://dbpedia.org/ontology/Rocket/mass".freeze, "http://dbpedia.org/ontology/RocketEngine".freeze, "http://dbpedia.org/ontology/RollerCoaster".freeze, "http://dbpedia.org/ontology/RomanEmperor".freeze, "http://dbpedia.org/ontology/RouteOfTransportation".freeze, "http://dbpedia.org/ontology/RouteStop".freeze, "http://dbpedia.org/ontology/Rower".freeze, "http://dbpedia.org/ontology/Royalty".freeze, "http://dbpedia.org/ontology/RugbyClub".freeze, "http://dbpedia.org/ontology/RugbyLeague".freeze, "http://dbpedia.org/ontology/RugbyPlayer".freeze, "http://dbpedia.org/ontology/Saint".freeze, "http://dbpedia.org/ontology/Sales".freeze, "http://dbpedia.org/ontology/SambaSchool".freeze, "http://dbpedia.org/ontology/Satellite".freeze, "http://dbpedia.org/ontology/School".freeze, "http://dbpedia.org/ontology/School/campusSize".freeze, "http://dbpedia.org/ontology/ScientificConcept".freeze, "http://dbpedia.org/ontology/Scientist".freeze, "http://dbpedia.org/ontology/ScreenWriter".freeze, "http://dbpedia.org/ontology/Sculptor".freeze, "http://dbpedia.org/ontology/Sculpture".freeze, "http://dbpedia.org/ontology/Sea".freeze, "http://dbpedia.org/ontology/Senator".freeze, "http://dbpedia.org/ontology/SerialKiller".freeze, "http://dbpedia.org/ontology/Settlement".freeze, "http://dbpedia.org/ontology/Ship".freeze, "http://dbpedia.org/ontology/ShoppingMall".freeze, "http://dbpedia.org/ontology/Shrine".freeze, "http://dbpedia.org/ontology/Singer".freeze, "http://dbpedia.org/ontology/Single".freeze, "http://dbpedia.org/ontology/SiteOfSpecialScientificInterest".freeze, "http://dbpedia.org/ontology/Skater".freeze, "http://dbpedia.org/ontology/SkiArea".freeze, "http://dbpedia.org/ontology/SkiResort".freeze, "http://dbpedia.org/ontology/Ski_jumper".freeze, "http://dbpedia.org/ontology/Skier".freeze, "http://dbpedia.org/ontology/Skyscraper".freeze, "http://dbpedia.org/ontology/SnookerChamp".freeze, "http://dbpedia.org/ontology/SnookerPlayer".freeze, "http://dbpedia.org/ontology/SnookerWorldRanking".freeze, "http://dbpedia.org/ontology/SoapCharacter".freeze, "http://dbpedia.org/ontology/SoccerClub".freeze, "http://dbpedia.org/ontology/SoccerClubSeason".freeze, "http://dbpedia.org/ontology/SoccerLeague".freeze, "http://dbpedia.org/ontology/SoccerLeagueSeason".freeze, "http://dbpedia.org/ontology/SoccerManager".freeze, "http://dbpedia.org/ontology/SoccerPlayer".freeze, "http://dbpedia.org/ontology/SoccerTournament".freeze, "http://dbpedia.org/ontology/SocietalEvent".freeze, "http://dbpedia.org/ontology/SoftballLeague".freeze, "http://dbpedia.org/ontology/Software".freeze, "http://dbpedia.org/ontology/Software/fileSize".freeze, "http://dbpedia.org/ontology/SolarEclipse".freeze, "http://dbpedia.org/ontology/Song".freeze, "http://dbpedia.org/ontology/SongWriter".freeze, "http://dbpedia.org/ontology/Sound".freeze, "http://dbpedia.org/ontology/SpaceMission".freeze, "http://dbpedia.org/ontology/SpaceMission/cmpEvaDuration".freeze, "http://dbpedia.org/ontology/SpaceMission/distanceTraveled".freeze, "http://dbpedia.org/ontology/SpaceMission/lunarEvaTime".freeze, "http://dbpedia.org/ontology/SpaceMission/lunarOrbitTime".freeze, "http://dbpedia.org/ontology/SpaceMission/lunarSampleMass".freeze, "http://dbpedia.org/ontology/SpaceMission/lunarSurfaceTime".freeze, "http://dbpedia.org/ontology/SpaceMission/mass".freeze, "http://dbpedia.org/ontology/SpaceMission/missionDuration".freeze, "http://dbpedia.org/ontology/SpaceMission/stationEvaDuration".freeze, "http://dbpedia.org/ontology/SpaceMission/stationVisitDuration".freeze, "http://dbpedia.org/ontology/SpaceShuttle".freeze, "http://dbpedia.org/ontology/SpaceShuttle/distance".freeze, "http://dbpedia.org/ontology/SpaceShuttle/timeInSpace".freeze, "http://dbpedia.org/ontology/SpaceStation".freeze, "http://dbpedia.org/ontology/SpaceStation/volume".freeze, "http://dbpedia.org/ontology/Spacecraft".freeze, "http://dbpedia.org/ontology/Spacecraft/apoapsis".freeze, "http://dbpedia.org/ontology/Spacecraft/cargoFuel".freeze, "http://dbpedia.org/ontology/Spacecraft/cargoGas".freeze, "http://dbpedia.org/ontology/Spacecraft/cargoWater".freeze, "http://dbpedia.org/ontology/Spacecraft/dockedTime".freeze, "http://dbpedia.org/ontology/Spacecraft/dryCargo".freeze, "http://dbpedia.org/ontology/Spacecraft/freeFlightTime".freeze, "http://dbpedia.org/ontology/Spacecraft/periapsis".freeze, "http://dbpedia.org/ontology/Spacecraft/totalCargo".freeze, "http://dbpedia.org/ontology/Spacecraft/totalMass".freeze, "http://dbpedia.org/ontology/Species".freeze, "http://dbpedia.org/ontology/SpeedSkater".freeze, "http://dbpedia.org/ontology/SpeedwayLeague".freeze, "http://dbpedia.org/ontology/SpeedwayRider".freeze, "http://dbpedia.org/ontology/SpeedwayTeam".freeze, "http://dbpedia.org/ontology/Sport".freeze, "http://dbpedia.org/ontology/SportCompetitionResult".freeze, "http://dbpedia.org/ontology/SportFacility".freeze, "http://dbpedia.org/ontology/SportsClub".freeze, "http://dbpedia.org/ontology/SportsEvent".freeze, "http://dbpedia.org/ontology/SportsLeague".freeze, "http://dbpedia.org/ontology/SportsManager".freeze, "http://dbpedia.org/ontology/SportsSeason".freeze, "http://dbpedia.org/ontology/SportsTeam".freeze, "http://dbpedia.org/ontology/SportsTeamMember".freeze, "http://dbpedia.org/ontology/SportsTeamSeason".freeze, "http://dbpedia.org/ontology/Spreadsheet".freeze, "http://dbpedia.org/ontology/Square".freeze, "http://dbpedia.org/ontology/SquashPlayer".freeze, "http://dbpedia.org/ontology/Stadium".freeze, "http://dbpedia.org/ontology/Standard".freeze, "http://dbpedia.org/ontology/Star".freeze, "http://dbpedia.org/ontology/StarCluster".freeze, "http://dbpedia.org/ontology/State".freeze, "http://dbpedia.org/ontology/StatedResolution".freeze, "http://dbpedia.org/ontology/Station".freeze, "http://dbpedia.org/ontology/Statistic".freeze, "http://dbpedia.org/ontology/StillImage".freeze, "http://dbpedia.org/ontology/StormSurge".freeze, "http://dbpedia.org/ontology/Stream".freeze, "http://dbpedia.org/ontology/Stream/discharge".freeze, "http://dbpedia.org/ontology/Stream/dischargeAverage".freeze, "http://dbpedia.org/ontology/Stream/maximumDischarge".freeze, "http://dbpedia.org/ontology/Stream/minimumDischarge".freeze, "http://dbpedia.org/ontology/Stream/watershed".freeze, "http://dbpedia.org/ontology/Street".freeze, "http://dbpedia.org/ontology/SubMunicipality".freeze, "http://dbpedia.org/ontology/SumoWrestler".freeze, "http://dbpedia.org/ontology/SupremeCourtOfTheUnitedStatesCase".freeze, "http://dbpedia.org/ontology/Surfer".freeze, "http://dbpedia.org/ontology/Surname".freeze, "http://dbpedia.org/ontology/Swarm".freeze, "http://dbpedia.org/ontology/Swimmer".freeze, "http://dbpedia.org/ontology/Synagogue".freeze, "http://dbpedia.org/ontology/SystemOfLaw".freeze, "http://dbpedia.org/ontology/TableTennisPlayer".freeze, "http://dbpedia.org/ontology/Tank".freeze, "http://dbpedia.org/ontology/Tax".freeze, "http://dbpedia.org/ontology/Taxon".freeze, "http://dbpedia.org/ontology/TeamMember".freeze, "http://dbpedia.org/ontology/TeamSport".freeze, "http://dbpedia.org/ontology/TelevisionDirector".freeze, "http://dbpedia.org/ontology/TelevisionEpisode".freeze, "http://dbpedia.org/ontology/TelevisionHost".freeze, "http://dbpedia.org/ontology/TelevisionSeason".freeze, "http://dbpedia.org/ontology/TelevisionShow".freeze, "http://dbpedia.org/ontology/TelevisionStation".freeze, "http://dbpedia.org/ontology/Temple".freeze, "http://dbpedia.org/ontology/TennisLeague".freeze, "http://dbpedia.org/ontology/TennisPlayer".freeze, "http://dbpedia.org/ontology/TennisTournament".freeze, "http://dbpedia.org/ontology/Tenure".freeze, "http://dbpedia.org/ontology/TermOfOffice".freeze, "http://dbpedia.org/ontology/Territory".freeze, "http://dbpedia.org/ontology/Theatre".freeze, "http://dbpedia.org/ontology/TheatreDirector".freeze, "http://dbpedia.org/ontology/TheologicalConcept".freeze, "http://dbpedia.org/ontology/TimePeriod".freeze, "http://dbpedia.org/ontology/TopLevelDomain".freeze, "http://dbpedia.org/ontology/TopicalConcept".freeze, "http://dbpedia.org/ontology/Tournament".freeze, "http://dbpedia.org/ontology/Tower".freeze, "http://dbpedia.org/ontology/Town".freeze, "http://dbpedia.org/ontology/TrackList".freeze, "http://dbpedia.org/ontology/TradeUnion".freeze, "http://dbpedia.org/ontology/Train".freeze, "http://dbpedia.org/ontology/TrainCarriage".freeze, "http://dbpedia.org/ontology/Tram".freeze, "http://dbpedia.org/ontology/TramStation".freeze, "http://dbpedia.org/ontology/Treadmill".freeze, "http://dbpedia.org/ontology/Treaty".freeze, "http://dbpedia.org/ontology/Tunnel".freeze, "http://dbpedia.org/ontology/Type".freeze, "http://dbpedia.org/ontology/UndergroundJournal".freeze, "http://dbpedia.org/ontology/UnitOfWork".freeze, "http://dbpedia.org/ontology/University".freeze, "http://dbpedia.org/ontology/Unknown".freeze, "http://dbpedia.org/ontology/Vaccine".freeze, "http://dbpedia.org/ontology/Valley".freeze, "http://dbpedia.org/ontology/Vein".freeze, "http://dbpedia.org/ontology/Venue".freeze, "http://dbpedia.org/ontology/Vicar".freeze, "http://dbpedia.org/ontology/VicePresident".freeze, "http://dbpedia.org/ontology/VicePrimeMinister".freeze, "http://dbpedia.org/ontology/VideoGame".freeze, "http://dbpedia.org/ontology/VideogamesLeague".freeze, "http://dbpedia.org/ontology/Village".freeze, "http://dbpedia.org/ontology/Vodka".freeze, "http://dbpedia.org/ontology/VoiceActor".freeze, "http://dbpedia.org/ontology/Volcano".freeze, "http://dbpedia.org/ontology/VolleyballCoach".freeze, "http://dbpedia.org/ontology/VolleyballLeague".freeze, "http://dbpedia.org/ontology/VolleyballPlayer".freeze, "http://dbpedia.org/ontology/WaterPoloPlayer".freeze, "http://dbpedia.org/ontology/WaterRide".freeze, "http://dbpedia.org/ontology/WaterTower".freeze, "http://dbpedia.org/ontology/Watermill".freeze, "http://dbpedia.org/ontology/WaterwayTunnel".freeze, "http://dbpedia.org/ontology/Weapon".freeze, "http://dbpedia.org/ontology/Weapon/diameter".freeze, "http://dbpedia.org/ontology/Weapon/height".freeze, "http://dbpedia.org/ontology/Weapon/length".freeze, "http://dbpedia.org/ontology/Weapon/weight".freeze, "http://dbpedia.org/ontology/Weapon/width".freeze, "http://dbpedia.org/ontology/Website".freeze, "http://dbpedia.org/ontology/WikimediaTemplate".freeze, "http://dbpedia.org/ontology/WindMotor".freeze, "http://dbpedia.org/ontology/Windmill".freeze, "http://dbpedia.org/ontology/Wine".freeze, "http://dbpedia.org/ontology/WineRegion".freeze, "http://dbpedia.org/ontology/Winery".freeze, "http://dbpedia.org/ontology/WinterSportPlayer".freeze, "http://dbpedia.org/ontology/Woman".freeze, "http://dbpedia.org/ontology/WomensTennisAssociationTournament".freeze, "http://dbpedia.org/ontology/Work".freeze, "http://dbpedia.org/ontology/Work/runtime".freeze, "http://dbpedia.org/ontology/WorldHeritageSite".freeze, "http://dbpedia.org/ontology/Wrestler".freeze, "http://dbpedia.org/ontology/WrestlingEvent".freeze, "http://dbpedia.org/ontology/Writer".freeze, "http://dbpedia.org/ontology/WrittenWork".freeze, "http://dbpedia.org/ontology/Year".freeze, "http://dbpedia.org/ontology/YearInSpaceflight".freeze, "http://dbpedia.org/ontology/Zoo".freeze, "http://dbpedia.org/ontology/aSide".freeze, "http://dbpedia.org/ontology/abbeychurchBlessing".freeze, "http://dbpedia.org/ontology/abbeychurchBlessingCharge".freeze, "http://dbpedia.org/ontology/abbreviation".freeze, "http://dbpedia.org/ontology/ableToGrind".freeze, "http://dbpedia.org/ontology/absoluteMagnitude".freeze, "http://dbpedia.org/ontology/abstentions".freeze, "http://dbpedia.org/ontology/abstract".freeze, "http://dbpedia.org/ontology/academicAdvisor".freeze, "http://dbpedia.org/ontology/academicDiscipline".freeze, "http://dbpedia.org/ontology/academyAward".freeze, "http://dbpedia.org/ontology/acceleration".freeze, "http://dbpedia.org/ontology/access".freeze, "http://dbpedia.org/ontology/accessDate".freeze, "http://dbpedia.org/ontology/achievement".freeze, "http://dbpedia.org/ontology/acquirementDate".freeze, "http://dbpedia.org/ontology/actScore".freeze, "http://dbpedia.org/ontology/actingHeadteacher".freeze, "http://dbpedia.org/ontology/activeCases".freeze, "http://dbpedia.org/ontology/activeYears".freeze, "http://dbpedia.org/ontology/activeYearsEndDate".freeze, "http://dbpedia.org/ontology/activeYearsEndDateMgr".freeze, "http://dbpedia.org/ontology/activeYearsEndYear".freeze, "http://dbpedia.org/ontology/activeYearsEndYearMgr".freeze, "http://dbpedia.org/ontology/activeYearsStartDate".freeze, "http://dbpedia.org/ontology/activeYearsStartDateMgr".freeze, "http://dbpedia.org/ontology/activeYearsStartYear".freeze, "http://dbpedia.org/ontology/activeYearsStartYearMgr".freeze, "http://dbpedia.org/ontology/activity".freeze, "http://dbpedia.org/ontology/address".freeze, "http://dbpedia.org/ontology/addressInRoad".freeze, "http://dbpedia.org/ontology/adjacentSettlement".freeze, "http://dbpedia.org/ontology/administrativeCenter".freeze, "http://dbpedia.org/ontology/administrativeCollectivity".freeze, "http://dbpedia.org/ontology/administrativeDistrict".freeze, "http://dbpedia.org/ontology/administrativeHeadCity".freeze, "http://dbpedia.org/ontology/administrativeStatus".freeze, "http://dbpedia.org/ontology/administrator".freeze, "http://dbpedia.org/ontology/afdbId".freeze, "http://dbpedia.org/ontology/affair".freeze, "http://dbpedia.org/ontology/affiliate".freeze, "http://dbpedia.org/ontology/affiliation".freeze, "http://dbpedia.org/ontology/afiAward".freeze, "http://dbpedia.org/ontology/age".freeze, "http://dbpedia.org/ontology/ageRange".freeze, "http://dbpedia.org/ontology/agency".freeze, "http://dbpedia.org/ontology/agencyStationCode".freeze, "http://dbpedia.org/ontology/agglomeration".freeze, "http://dbpedia.org/ontology/agglomerationArea".freeze, "http://dbpedia.org/ontology/agglomerationDemographics".freeze, "http://dbpedia.org/ontology/agglomerationPopulation".freeze, "http://dbpedia.org/ontology/agglomerationPopulationTotal".freeze, "http://dbpedia.org/ontology/agglomerationPopulationYear".freeze, "http://dbpedia.org/ontology/aggregation".freeze, "http://dbpedia.org/ontology/airDate".freeze, "http://dbpedia.org/ontology/aircraftAttack".freeze, "http://dbpedia.org/ontology/aircraftBomber".freeze, "http://dbpedia.org/ontology/aircraftElectronic".freeze, "http://dbpedia.org/ontology/aircraftFighter".freeze, "http://dbpedia.org/ontology/aircraftHelicopter".freeze, "http://dbpedia.org/ontology/aircraftHelicopterAttack".freeze, "http://dbpedia.org/ontology/aircraftHelicopterCargo".freeze, "http://dbpedia.org/ontology/aircraftHelicopterMultirole".freeze, "http://dbpedia.org/ontology/aircraftHelicopterObservation".freeze, "http://dbpedia.org/ontology/aircraftHelicopterTransport".freeze, "http://dbpedia.org/ontology/aircraftHelicopterUtility".freeze, "http://dbpedia.org/ontology/aircraftInterceptor".freeze, "http://dbpedia.org/ontology/aircraftPatrol".freeze, "http://dbpedia.org/ontology/aircraftRecon".freeze, "http://dbpedia.org/ontology/aircraftTrainer".freeze, "http://dbpedia.org/ontology/aircraftTransport".freeze, "http://dbpedia.org/ontology/aircraftType".freeze, "http://dbpedia.org/ontology/aircraftUser".freeze, "http://dbpedia.org/ontology/airportUsing".freeze, "http://dbpedia.org/ontology/aitaCode".freeze, "http://dbpedia.org/ontology/albedo".freeze, "http://dbpedia.org/ontology/album".freeze, "http://dbpedia.org/ontology/albumRuntime".freeze, "http://dbpedia.org/ontology/alias".freeze, "http://dbpedia.org/ontology/allcinemaId".freeze, "http://dbpedia.org/ontology/allegiance".freeze, "http://dbpedia.org/ontology/alliance".freeze, "http://dbpedia.org/ontology/almaMater".freeze, "http://dbpedia.org/ontology/alongside".freeze, "http://dbpedia.org/ontology/alpsGroup".freeze, "http://dbpedia.org/ontology/alpsMainPart".freeze, "http://dbpedia.org/ontology/alpsMajorSector".freeze, "http://dbpedia.org/ontology/alpsSection".freeze, "http://dbpedia.org/ontology/alpsSoiusaCode".freeze, "http://dbpedia.org/ontology/alpsSubgroup".freeze, "http://dbpedia.org/ontology/alpsSubsection".freeze, "http://dbpedia.org/ontology/alpsSupergroup".freeze, "http://dbpedia.org/ontology/alternativeName".freeze, "http://dbpedia.org/ontology/alternativeTitle".freeze, "http://dbpedia.org/ontology/altitude".freeze, "http://dbpedia.org/ontology/alumni".freeze, "http://dbpedia.org/ontology/amateurDefeat".freeze, "http://dbpedia.org/ontology/amateurFight".freeze, "http://dbpedia.org/ontology/amateurKo".freeze, "http://dbpedia.org/ontology/amateurNoContest".freeze, "http://dbpedia.org/ontology/amateurTeam".freeze, "http://dbpedia.org/ontology/amateurTie".freeze, "http://dbpedia.org/ontology/amateurTitle".freeze, "http://dbpedia.org/ontology/amateurVictory".freeze, "http://dbpedia.org/ontology/amateurYear".freeze, "http://dbpedia.org/ontology/americanComedyAward".freeze, "http://dbpedia.org/ontology/amgid".freeze, "http://dbpedia.org/ontology/amsterdamCode".freeze, "http://dbpedia.org/ontology/analogChannel".freeze, "http://dbpedia.org/ontology/animal".freeze, "http://dbpedia.org/ontology/animator".freeze, "http://dbpedia.org/ontology/anniversary".freeze, "http://dbpedia.org/ontology/announcedFrom".freeze, "http://dbpedia.org/ontology/annualTemperature".freeze, "http://dbpedia.org/ontology/anthem".freeze, "http://dbpedia.org/ontology/aoCloassification".freeze, "http://dbpedia.org/ontology/apcPresident".freeze, "http://dbpedia.org/ontology/apoapsis".freeze, "http://dbpedia.org/ontology/apofocus".freeze, "http://dbpedia.org/ontology/apparentMagnitude".freeze, "http://dbpedia.org/ontology/appearance".freeze, "http://dbpedia.org/ontology/appearancesInLeague".freeze, "http://dbpedia.org/ontology/appearancesInNationalTeam".freeze, "http://dbpedia.org/ontology/appointer".freeze, "http://dbpedia.org/ontology/apprehended".freeze, "http://dbpedia.org/ontology/approach".freeze, "http://dbpedia.org/ontology/approvedByLowerParliament".freeze, "http://dbpedia.org/ontology/approvedByUpperParliament".freeze, "http://dbpedia.org/ontology/approximateCalories".freeze, "http://dbpedia.org/ontology/apskritis".freeze, "http://dbpedia.org/ontology/archipelago".freeze, "http://dbpedia.org/ontology/architect".freeze, "http://dbpedia.org/ontology/architectualBureau".freeze, "http://dbpedia.org/ontology/architecturalMovement".freeze, "http://dbpedia.org/ontology/architecturalStyle".freeze, "http://dbpedia.org/ontology/area".freeze, "http://dbpedia.org/ontology/areaCode".freeze, "http://dbpedia.org/ontology/areaDate".freeze, "http://dbpedia.org/ontology/areaLand".freeze, "http://dbpedia.org/ontology/areaMetro".freeze, "http://dbpedia.org/ontology/areaOfCatchment".freeze, "http://dbpedia.org/ontology/areaOfCatchmentQuote".freeze, "http://dbpedia.org/ontology/areaOfSearch".freeze, "http://dbpedia.org/ontology/areaQuote".freeze, "http://dbpedia.org/ontology/areaRank".freeze, "http://dbpedia.org/ontology/areaRural".freeze, "http://dbpedia.org/ontology/areaTotal".freeze, "http://dbpedia.org/ontology/areaTotalRanking".freeze, "http://dbpedia.org/ontology/areaUrban".freeze, "http://dbpedia.org/ontology/areaWater".freeze, "http://dbpedia.org/ontology/argueDate".freeze, "http://dbpedia.org/ontology/arielAward".freeze, "http://dbpedia.org/ontology/arm".freeze, "http://dbpedia.org/ontology/army".freeze, "http://dbpedia.org/ontology/arrestDate".freeze, "http://dbpedia.org/ontology/arrondissement".freeze, "http://dbpedia.org/ontology/artPatron".freeze, "http://dbpedia.org/ontology/artery".freeze, "http://dbpedia.org/ontology/artificialSnowArea".freeze, "http://dbpedia.org/ontology/artist".freeze, "http://dbpedia.org/ontology/artisticFunction".freeze, "http://dbpedia.org/ontology/asWikiText".freeze, "http://dbpedia.org/ontology/ascent".freeze, "http://dbpedia.org/ontology/asiaChampionship".freeze, "http://dbpedia.org/ontology/aspectRatio".freeze, "http://dbpedia.org/ontology/assembly".freeze, "http://dbpedia.org/ontology/assetUnderManagement".freeze, "http://dbpedia.org/ontology/assets".freeze, "http://dbpedia.org/ontology/assistantPrincipal".freeze, "http://dbpedia.org/ontology/associate".freeze, "http://dbpedia.org/ontology/associateEditor".freeze, "http://dbpedia.org/ontology/associateStar".freeze, "http://dbpedia.org/ontology/associatedAct".freeze, "http://dbpedia.org/ontology/associatedBand".freeze, "http://dbpedia.org/ontology/associatedMusicalArtist".freeze, "http://dbpedia.org/ontology/associatedRocket".freeze, "http://dbpedia.org/ontology/associationOfLocalGovernment".freeze, "http://dbpedia.org/ontology/astrologicalSign".freeze, "http://dbpedia.org/ontology/atPage".freeze, "http://dbpedia.org/ontology/atRowNumber".freeze, "http://dbpedia.org/ontology/atcCode".freeze, "http://dbpedia.org/ontology/atcPrefix".freeze, "http://dbpedia.org/ontology/atcSuffix".freeze, "http://dbpedia.org/ontology/athletics".freeze, "http://dbpedia.org/ontology/athleticsDiscipline".freeze, "http://dbpedia.org/ontology/atomicNumber".freeze, "http://dbpedia.org/ontology/attorneyGeneral".freeze, "http://dbpedia.org/ontology/aunt".freeze, "http://dbpedia.org/ontology/australiaOpenDouble".freeze, "http://dbpedia.org/ontology/australiaOpenMixed".freeze, "http://dbpedia.org/ontology/australiaOpenSingle".freeze, "http://dbpedia.org/ontology/author".freeze, "http://dbpedia.org/ontology/authority".freeze, "http://dbpedia.org/ontology/authorityMandate".freeze, "http://dbpedia.org/ontology/authorityTitle".freeze, "http://dbpedia.org/ontology/automobileModel".freeze, "http://dbpedia.org/ontology/automobilePlatform".freeze, "http://dbpedia.org/ontology/autonomy".freeze, "http://dbpedia.org/ontology/availableSmartCard".freeze, "http://dbpedia.org/ontology/average".freeze, "http://dbpedia.org/ontology/averageAnnualGeneration".freeze, "http://dbpedia.org/ontology/averageClassSize".freeze, "http://dbpedia.org/ontology/averageDepth".freeze, "http://dbpedia.org/ontology/averageDepthQuote".freeze, "http://dbpedia.org/ontology/averageSpeed".freeze, "http://dbpedia.org/ontology/avifaunaPopulation".freeze, "http://dbpedia.org/ontology/award".freeze, "http://dbpedia.org/ontology/awardName".freeze, "http://dbpedia.org/ontology/awayColourHexCode".freeze, "http://dbpedia.org/ontology/bSide".freeze, "http://dbpedia.org/ontology/background".freeze, "http://dbpedia.org/ontology/backhand".freeze, "http://dbpedia.org/ontology/badGuy".freeze, "http://dbpedia.org/ontology/baftaAward".freeze, "http://dbpedia.org/ontology/band".freeze, "http://dbpedia.org/ontology/bandMember".freeze, "http://dbpedia.org/ontology/barPassRate".freeze, "http://dbpedia.org/ontology/barangays".freeze, "http://dbpedia.org/ontology/basedOn".freeze, "http://dbpedia.org/ontology/battery".freeze, "http://dbpedia.org/ontology/battingSide".freeze, "http://dbpedia.org/ontology/battle".freeze, "http://dbpedia.org/ontology/battleHonours".freeze, "http://dbpedia.org/ontology/bbr".freeze, "http://dbpedia.org/ontology/beatifiedBy".freeze, "http://dbpedia.org/ontology/beatifiedDate".freeze, "http://dbpedia.org/ontology/beatifiedPlace".freeze, "http://dbpedia.org/ontology/bedCount".freeze, "http://dbpedia.org/ontology/believers".freeze, "http://dbpedia.org/ontology/beltwayCity".freeze, "http://dbpedia.org/ontology/bestFinish".freeze, "http://dbpedia.org/ontology/bestLap".freeze, "http://dbpedia.org/ontology/bestRankDouble".freeze, "http://dbpedia.org/ontology/bestRankSingle".freeze, "http://dbpedia.org/ontology/bestWsopRank".freeze, "http://dbpedia.org/ontology/bestYearWsop".freeze, "http://dbpedia.org/ontology/bgafdId".freeze, "http://dbpedia.org/ontology/bibsysId".freeze, "http://dbpedia.org/ontology/bicycleInformation".freeze, "http://dbpedia.org/ontology/bigPoolRecord".freeze, "http://dbpedia.org/ontology/biggestCity".freeze, "http://dbpedia.org/ontology/billed".freeze, "http://dbpedia.org/ontology/binomial".freeze, "http://dbpedia.org/ontology/binomialAuthority".freeze, "http://dbpedia.org/ontology/bioavailability".freeze, "http://dbpedia.org/ontology/bioclimate".freeze, "http://dbpedia.org/ontology/biome".freeze, "http://dbpedia.org/ontology/bird".freeze, "http://dbpedia.org/ontology/birthDate".freeze, "http://dbpedia.org/ontology/birthName".freeze, "http://dbpedia.org/ontology/birthPlace".freeze, "http://dbpedia.org/ontology/birthSign".freeze, "http://dbpedia.org/ontology/birthYear".freeze, "http://dbpedia.org/ontology/bishopric".freeze, "http://dbpedia.org/ontology/blackLongDistancePisteNumber".freeze, "http://dbpedia.org/ontology/blackSkiPisteNumber".freeze, "http://dbpedia.org/ontology/blazon".freeze, "http://dbpedia.org/ontology/blazonCaption".freeze, "http://dbpedia.org/ontology/blazonLink".freeze, "http://dbpedia.org/ontology/blazonRatio".freeze, "http://dbpedia.org/ontology/block".freeze, "http://dbpedia.org/ontology/blockAlloy".freeze, "http://dbpedia.org/ontology/bloodGroup".freeze, "http://dbpedia.org/ontology/bloodType".freeze, "http://dbpedia.org/ontology/blueLongDistancePisteNumber".freeze, "http://dbpedia.org/ontology/blueSkiPisteNumber".freeze, "http://dbpedia.org/ontology/bnfId".freeze, "http://dbpedia.org/ontology/board".freeze, "http://dbpedia.org/ontology/bodyDiscovered".freeze, "http://dbpedia.org/ontology/bodyStyle".freeze, "http://dbpedia.org/ontology/boiler".freeze, "http://dbpedia.org/ontology/boilerPressure".freeze, "http://dbpedia.org/ontology/boilingPoint".freeze, "http://dbpedia.org/ontology/book".freeze, "http://dbpedia.org/ontology/booster".freeze, "http://dbpedia.org/ontology/border".freeze, "http://dbpedia.org/ontology/borough".freeze, "http://dbpedia.org/ontology/bourgmestre".freeze, "http://dbpedia.org/ontology/bowlRecord".freeze, "http://dbpedia.org/ontology/bowlingSide".freeze, "http://dbpedia.org/ontology/boxerStyle".freeze, "http://dbpedia.org/ontology/bpnId".freeze, "http://dbpedia.org/ontology/brainInfoNumber".freeze, "http://dbpedia.org/ontology/brainInfoType".freeze, "http://dbpedia.org/ontology/branchFrom".freeze, "http://dbpedia.org/ontology/branchTo".freeze, "http://dbpedia.org/ontology/brand".freeze, "http://dbpedia.org/ontology/breeder".freeze, "http://dbpedia.org/ontology/bridgeCarries".freeze, "http://dbpedia.org/ontology/brinCode".freeze, "http://dbpedia.org/ontology/britishComedyAwards".freeze, "http://dbpedia.org/ontology/britishOpen".freeze, "http://dbpedia.org/ontology/britishWins".freeze, "http://dbpedia.org/ontology/broadcastArea".freeze, "http://dbpedia.org/ontology/broadcastNetwork".freeze, "http://dbpedia.org/ontology/broadcastRepeater".freeze, "http://dbpedia.org/ontology/broadcastStationClass".freeze, "http://dbpedia.org/ontology/broadcastTranslator".freeze, "http://dbpedia.org/ontology/bronzeMedalDouble".freeze, "http://dbpedia.org/ontology/bronzeMedalMixed".freeze, "http://dbpedia.org/ontology/bronzeMedalSingle".freeze, "http://dbpedia.org/ontology/bronzeMedalist".freeze, "http://dbpedia.org/ontology/brother".freeze, "http://dbpedia.org/ontology/budget".freeze, "http://dbpedia.org/ontology/budgetYear".freeze, "http://dbpedia.org/ontology/builder".freeze, "http://dbpedia.org/ontology/building".freeze, "http://dbpedia.org/ontology/buildingEndDate".freeze, "http://dbpedia.org/ontology/buildingEndYear".freeze, "http://dbpedia.org/ontology/buildingStartDate".freeze, "http://dbpedia.org/ontology/buildingStartYear".freeze, "http://dbpedia.org/ontology/buildingType".freeze, "http://dbpedia.org/ontology/bustSize".freeze, "http://dbpedia.org/ontology/bustWaistHipSize".freeze, "http://dbpedia.org/ontology/cableCar".freeze, "http://dbpedia.org/ontology/calculationNeeds".freeze, "http://dbpedia.org/ontology/callSign".freeze, "http://dbpedia.org/ontology/callsignMeaning".freeze, "http://dbpedia.org/ontology/campus".freeze, "http://dbpedia.org/ontology/campusSize".freeze, "http://dbpedia.org/ontology/campusType".freeze, "http://dbpedia.org/ontology/canBaggageChecked".freeze, "http://dbpedia.org/ontology/cannonNumber".freeze, "http://dbpedia.org/ontology/canonizedBy".freeze, "http://dbpedia.org/ontology/canonizedDate".freeze, "http://dbpedia.org/ontology/canonizedPlace".freeze, "http://dbpedia.org/ontology/canton".freeze, "http://dbpedia.org/ontology/capacity".freeze, "http://dbpedia.org/ontology/capacityFactor".freeze, "http://dbpedia.org/ontology/capital".freeze, "http://dbpedia.org/ontology/capitalCoordinates".freeze, "http://dbpedia.org/ontology/capitalCountry".freeze, "http://dbpedia.org/ontology/capitalDistrict".freeze, "http://dbpedia.org/ontology/capitalElevation".freeze, "http://dbpedia.org/ontology/capitalMountain".freeze, "http://dbpedia.org/ontology/capitalPlace".freeze, "http://dbpedia.org/ontology/capitalPosition".freeze, "http://dbpedia.org/ontology/capitalRegion".freeze, "http://dbpedia.org/ontology/captureDate".freeze, "http://dbpedia.org/ontology/carNumber".freeze, "http://dbpedia.org/ontology/carbohydrate".freeze, "http://dbpedia.org/ontology/carcinogen".freeze, "http://dbpedia.org/ontology/careerPoints".freeze, "http://dbpedia.org/ontology/careerPrizeMoney".freeze, "http://dbpedia.org/ontology/careerStation".freeze, "http://dbpedia.org/ontology/cargoFuel".freeze, "http://dbpedia.org/ontology/cargoGas".freeze, "http://dbpedia.org/ontology/cargoWater".freeze, "http://dbpedia.org/ontology/casNumber".freeze, "http://dbpedia.org/ontology/casSupplemental".freeze, "http://dbpedia.org/ontology/case".freeze, "http://dbpedia.org/ontology/casualties".freeze, "http://dbpedia.org/ontology/catch".freeze, "http://dbpedia.org/ontology/category".freeze, "http://dbpedia.org/ontology/caterer".freeze, "http://dbpedia.org/ontology/catholicPercentage".freeze, "http://dbpedia.org/ontology/causalties".freeze, "http://dbpedia.org/ontology/causeOfDeath".freeze, "http://dbpedia.org/ontology/causedBy".freeze, "http://dbpedia.org/ontology/ccaState".freeze, "http://dbpedia.org/ontology/ceeb".freeze, "http://dbpedia.org/ontology/ceiling".freeze, "http://dbpedia.org/ontology/cemetery".freeze, "http://dbpedia.org/ontology/censusYear".freeze, "http://dbpedia.org/ontology/center".freeze, "http://dbpedia.org/ontology/centuryBreaks".freeze, "http://dbpedia.org/ontology/ceo".freeze, "http://dbpedia.org/ontology/ceremonialCounty".freeze, "http://dbpedia.org/ontology/certification".freeze, "http://dbpedia.org/ontology/certificationDate".freeze, "http://dbpedia.org/ontology/cesarAward".freeze, "http://dbpedia.org/ontology/chEBI".freeze, "http://dbpedia.org/ontology/chEMBL".freeze, "http://dbpedia.org/ontology/chain".freeze, "http://dbpedia.org/ontology/chairLabel".freeze, "http://dbpedia.org/ontology/chairman".freeze, "http://dbpedia.org/ontology/chairmanTitle".freeze, "http://dbpedia.org/ontology/chairperson".freeze, "http://dbpedia.org/ontology/champion".freeze, "http://dbpedia.org/ontology/championInDouble".freeze, "http://dbpedia.org/ontology/championInDoubleFemale".freeze, "http://dbpedia.org/ontology/championInDoubleMale".freeze, "http://dbpedia.org/ontology/championInMixedDouble".freeze, "http://dbpedia.org/ontology/championInSingle".freeze, "http://dbpedia.org/ontology/championInSingleFemale".freeze, "http://dbpedia.org/ontology/championInSingleMale".freeze, "http://dbpedia.org/ontology/championships".freeze, "http://dbpedia.org/ontology/chancellor".freeze, "http://dbpedia.org/ontology/channel".freeze, "http://dbpedia.org/ontology/chaplain".freeze, "http://dbpedia.org/ontology/characterInPlay".freeze, "http://dbpedia.org/ontology/chef".freeze, "http://dbpedia.org/ontology/chemSpiderId".freeze, "http://dbpedia.org/ontology/chemicalFormula".freeze, "http://dbpedia.org/ontology/chiefEditor".freeze, "http://dbpedia.org/ontology/chiefPlace".freeze, "http://dbpedia.org/ontology/child".freeze, "http://dbpedia.org/ontology/childOrganisation".freeze, "http://dbpedia.org/ontology/choreographer".freeze, "http://dbpedia.org/ontology/chorusCharacterInPlay".freeze, "http://dbpedia.org/ontology/christeningDate".freeze, "http://dbpedia.org/ontology/chromosome".freeze, "http://dbpedia.org/ontology/cinematography".freeze, "http://dbpedia.org/ontology/circle".freeze, "http://dbpedia.org/ontology/circuitLength".freeze, "http://dbpedia.org/ontology/circuitName".freeze, "http://dbpedia.org/ontology/circulation".freeze, "http://dbpedia.org/ontology/circumcised".freeze, "http://dbpedia.org/ontology/cites".freeze, "http://dbpedia.org/ontology/citizenship".freeze, "http://dbpedia.org/ontology/city".freeze, "http://dbpedia.org/ontology/cityLink".freeze, "http://dbpedia.org/ontology/cityRank".freeze, "http://dbpedia.org/ontology/citySince".freeze, "http://dbpedia.org/ontology/cityType".freeze, "http://dbpedia.org/ontology/clade".freeze, "http://dbpedia.org/ontology/class".freeze, "http://dbpedia.org/ontology/classes".freeze, "http://dbpedia.org/ontology/classification".freeze, "http://dbpedia.org/ontology/classis".freeze, "http://dbpedia.org/ontology/climate".freeze, "http://dbpedia.org/ontology/climbUpNumber".freeze, "http://dbpedia.org/ontology/closeTo".freeze, "http://dbpedia.org/ontology/closed".freeze, "http://dbpedia.org/ontology/closingDate".freeze, "http://dbpedia.org/ontology/closingFilm".freeze, "http://dbpedia.org/ontology/closingYear".freeze, "http://dbpedia.org/ontology/clothSize".freeze, "http://dbpedia.org/ontology/clothingSize".freeze, "http://dbpedia.org/ontology/club".freeze, "http://dbpedia.org/ontology/clubsRecordGoalscorer".freeze, "http://dbpedia.org/ontology/cluster".freeze, "http://dbpedia.org/ontology/cmpEvaDuration".freeze, "http://dbpedia.org/ontology/cmykCoordinateBlack".freeze, "http://dbpedia.org/ontology/cmykCoordinateCyanic".freeze, "http://dbpedia.org/ontology/cmykCoordinateMagenta".freeze, "http://dbpedia.org/ontology/cmykCoordinateYellow".freeze, "http://dbpedia.org/ontology/co2Emission".freeze, "http://dbpedia.org/ontology/coExecutiveProducer".freeze, "http://dbpedia.org/ontology/coProducer".freeze, "http://dbpedia.org/ontology/coach".freeze, "http://dbpedia.org/ontology/coachClub".freeze, "http://dbpedia.org/ontology/coachSeason".freeze, "http://dbpedia.org/ontology/coachedTeam".freeze, "http://dbpedia.org/ontology/coachingRecord".freeze, "http://dbpedia.org/ontology/coalition".freeze, "http://dbpedia.org/ontology/coastLength".freeze, "http://dbpedia.org/ontology/coastLine".freeze, "http://dbpedia.org/ontology/coatOfArms".freeze, "http://dbpedia.org/ontology/code".freeze, "http://dbpedia.org/ontology/codeBook".freeze, "http://dbpedia.org/ontology/codeDistrict".freeze, "http://dbpedia.org/ontology/codeIndex".freeze, "http://dbpedia.org/ontology/codeListOfHonour".freeze, "http://dbpedia.org/ontology/codeMemorial".freeze, "http://dbpedia.org/ontology/codeMunicipalMonument".freeze, "http://dbpedia.org/ontology/codeNationalMonument".freeze, "http://dbpedia.org/ontology/codeProvincialMonument".freeze, "http://dbpedia.org/ontology/codeSettlement".freeze, "http://dbpedia.org/ontology/codeStockExchange".freeze, "http://dbpedia.org/ontology/coden".freeze, "http://dbpedia.org/ontology/coemperor".freeze, "http://dbpedia.org/ontology/collaboration".freeze, "http://dbpedia.org/ontology/colleague".freeze, "http://dbpedia.org/ontology/collection".freeze, "http://dbpedia.org/ontology/collectionSize".freeze, "http://dbpedia.org/ontology/collectivityMinority".freeze, "http://dbpedia.org/ontology/college".freeze, "http://dbpedia.org/ontology/collegeHof".freeze, "http://dbpedia.org/ontology/colonialName".freeze, "http://dbpedia.org/ontology/colorChart".freeze, "http://dbpedia.org/ontology/colour".freeze, "http://dbpedia.org/ontology/colourHexCode".freeze, "http://dbpedia.org/ontology/colourName".freeze, "http://dbpedia.org/ontology/combatant".freeze, "http://dbpedia.org/ontology/comic".freeze, "http://dbpedia.org/ontology/comitat".freeze, "http://dbpedia.org/ontology/command".freeze, "http://dbpedia.org/ontology/commandModule".freeze, "http://dbpedia.org/ontology/commandStructure".freeze, "http://dbpedia.org/ontology/commandant".freeze, "http://dbpedia.org/ontology/commander".freeze, "http://dbpedia.org/ontology/comment".freeze, "http://dbpedia.org/ontology/commissioner".freeze, "http://dbpedia.org/ontology/commissionerDate".freeze, "http://dbpedia.org/ontology/commissioningDate".freeze, "http://dbpedia.org/ontology/committee".freeze, "http://dbpedia.org/ontology/committeeInLegislature".freeze, "http://dbpedia.org/ontology/commonName".freeze, "http://dbpedia.org/ontology/commune".freeze, "http://dbpedia.org/ontology/communityIsoCode".freeze, "http://dbpedia.org/ontology/company".freeze, "http://dbpedia.org/ontology/comparable".freeze, "http://dbpedia.org/ontology/competition".freeze, "http://dbpedia.org/ontology/competitionTitle".freeze, "http://dbpedia.org/ontology/compiler".freeze, "http://dbpedia.org/ontology/completionDate".freeze, "http://dbpedia.org/ontology/complexion".freeze, "http://dbpedia.org/ontology/complexity".freeze, "http://dbpedia.org/ontology/complications".freeze, "http://dbpedia.org/ontology/component".freeze, "http://dbpedia.org/ontology/composer".freeze, "http://dbpedia.org/ontology/compressionRatio".freeze, "http://dbpedia.org/ontology/computingInput".freeze, "http://dbpedia.org/ontology/computingMedia".freeze, "http://dbpedia.org/ontology/computingPlatform".freeze, "http://dbpedia.org/ontology/configuration".freeze, "http://dbpedia.org/ontology/confirmedCases".freeze, "http://dbpedia.org/ontology/conflict".freeze, "http://dbpedia.org/ontology/congressionalDistrict".freeze, "http://dbpedia.org/ontology/connectsReferencedTo".freeze, "http://dbpedia.org/ontology/connotation".freeze, "http://dbpedia.org/ontology/consecration".freeze, "http://dbpedia.org/ontology/conservationStatus".freeze, "http://dbpedia.org/ontology/conservationStatusSystem".freeze, "http://dbpedia.org/ontology/constellation".freeze, "http://dbpedia.org/ontology/constituencyDistrict".freeze, "http://dbpedia.org/ontology/construction".freeze, "http://dbpedia.org/ontology/constructionMaterial".freeze, "http://dbpedia.org/ontology/contest".freeze, "http://dbpedia.org/ontology/continent".freeze, "http://dbpedia.org/ontology/continentRank".freeze, "http://dbpedia.org/ontology/continentalTournament".freeze, "http://dbpedia.org/ontology/continentalTournamentBronze".freeze, "http://dbpedia.org/ontology/continentalTournamentGold".freeze, "http://dbpedia.org/ontology/continentalTournamentSilver".freeze, "http://dbpedia.org/ontology/contractAward".freeze, "http://dbpedia.org/ontology/contractor".freeze, "http://dbpedia.org/ontology/convictionDate".freeze, "http://dbpedia.org/ontology/convictionPenalty".freeze, "http://dbpedia.org/ontology/coolingSystem".freeze, "http://dbpedia.org/ontology/copilote".freeze, "http://dbpedia.org/ontology/coronationDate".freeze, "http://dbpedia.org/ontology/cosparId".freeze, "http://dbpedia.org/ontology/cost".freeze, "http://dbpedia.org/ontology/costumeDesigner".freeze, "http://dbpedia.org/ontology/council".freeze, "http://dbpedia.org/ontology/councilArea".freeze, "http://dbpedia.org/ontology/country".freeze, "http://dbpedia.org/ontology/countryCode".freeze, "http://dbpedia.org/ontology/countryOrigin".freeze, "http://dbpedia.org/ontology/countryRank".freeze, "http://dbpedia.org/ontology/countryWithFirstAstronaut".freeze, "http://dbpedia.org/ontology/countryWithFirstSatellite".freeze, "http://dbpedia.org/ontology/countryWithFirstSatelliteLaunched".freeze, "http://dbpedia.org/ontology/countryWithFirstSpaceflight".freeze, "http://dbpedia.org/ontology/county".freeze, "http://dbpedia.org/ontology/countySeat".freeze, "http://dbpedia.org/ontology/course".freeze, "http://dbpedia.org/ontology/courseArea".freeze, "http://dbpedia.org/ontology/cousurper".freeze, "http://dbpedia.org/ontology/coverArtist".freeze, "http://dbpedia.org/ontology/cpu".freeze, "http://dbpedia.org/ontology/created".freeze, "http://dbpedia.org/ontology/creationChristianBishop".freeze, "http://dbpedia.org/ontology/creationYear".freeze, "http://dbpedia.org/ontology/creativeDirector".freeze, "http://dbpedia.org/ontology/creator".freeze, "http://dbpedia.org/ontology/creatorOfDish".freeze, "http://dbpedia.org/ontology/credit".freeze, "http://dbpedia.org/ontology/crest".freeze, "http://dbpedia.org/ontology/crew".freeze, "http://dbpedia.org/ontology/crewMember".freeze, "http://dbpedia.org/ontology/crewSize".freeze, "http://dbpedia.org/ontology/crews".freeze, "http://dbpedia.org/ontology/criminalCharge".freeze, "http://dbpedia.org/ontology/criteria".freeze, "http://dbpedia.org/ontology/crosses".freeze, "http://dbpedia.org/ontology/crownDependency".freeze, "http://dbpedia.org/ontology/cuisine".freeze, "http://dbpedia.org/ontology/cultivatedVariety".freeze, "http://dbpedia.org/ontology/curator".freeze, "http://dbpedia.org/ontology/currency".freeze, "http://dbpedia.org/ontology/currencyCode".freeze, "http://dbpedia.org/ontology/currentCity".freeze, "http://dbpedia.org/ontology/currentLeague".freeze, "http://dbpedia.org/ontology/currentMember".freeze, "http://dbpedia.org/ontology/currentPartner".freeze, "http://dbpedia.org/ontology/currentProduction".freeze, "http://dbpedia.org/ontology/currentRank".freeze, "http://dbpedia.org/ontology/currentRecord".freeze, "http://dbpedia.org/ontology/currentSeason".freeze, "http://dbpedia.org/ontology/currentStatus".freeze, "http://dbpedia.org/ontology/currentTeam".freeze, "http://dbpedia.org/ontology/currentTeamManager".freeze, "http://dbpedia.org/ontology/currentTeamMember".freeze, "http://dbpedia.org/ontology/currentWorldChampion".freeze, "http://dbpedia.org/ontology/currentlyUsedFor".freeze, "http://dbpedia.org/ontology/custodian".freeze, "http://dbpedia.org/ontology/cyclistGenre".freeze, "http://dbpedia.org/ontology/cylinderBore".freeze, "http://dbpedia.org/ontology/cylinderCount".freeze, "http://dbpedia.org/ontology/daira".freeze, "http://dbpedia.org/ontology/dam".freeze, "http://dbpedia.org/ontology/damage".freeze, "http://dbpedia.org/ontology/damsire".freeze, "http://dbpedia.org/ontology/danseCompetition".freeze, "http://dbpedia.org/ontology/danseScore".freeze, "http://dbpedia.org/ontology/date".freeze, "http://dbpedia.org/ontology/dateAct".freeze, "http://dbpedia.org/ontology/dateAgreement".freeze, "http://dbpedia.org/ontology/dateBudget".freeze, "http://dbpedia.org/ontology/dateClosed".freeze, "http://dbpedia.org/ontology/dateCompleted".freeze, "http://dbpedia.org/ontology/dateConstruction".freeze, "http://dbpedia.org/ontology/dateExtended".freeze, "http://dbpedia.org/ontology/dateLastUpdated".freeze, "http://dbpedia.org/ontology/dateOfAbandonment".freeze, "http://dbpedia.org/ontology/dateOfBurial".freeze, "http://dbpedia.org/ontology/dateUnveiled".freeze, "http://dbpedia.org/ontology/dateUse".freeze, "http://dbpedia.org/ontology/daughter".freeze, "http://dbpedia.org/ontology/davisCup".freeze, "http://dbpedia.org/ontology/day".freeze, "http://dbpedia.org/ontology/daylightSavingTimeZone".freeze, "http://dbpedia.org/ontology/dbnlCodeDutch".freeze, "http://dbpedia.org/ontology/dcc".freeze, "http://dbpedia.org/ontology/deFactoLanguage".freeze, "http://dbpedia.org/ontology/deadInFightDate".freeze, "http://dbpedia.org/ontology/deadInFightPlace".freeze, "http://dbpedia.org/ontology/dean".freeze, "http://dbpedia.org/ontology/deanery".freeze, "http://dbpedia.org/ontology/deathAge".freeze, "http://dbpedia.org/ontology/deathCause".freeze, "http://dbpedia.org/ontology/deathDate".freeze, "http://dbpedia.org/ontology/deathPlace".freeze, "http://dbpedia.org/ontology/deathYear".freeze, "http://dbpedia.org/ontology/debut".freeze, "http://dbpedia.org/ontology/debutTeam".freeze, "http://dbpedia.org/ontology/debutWork".freeze, "http://dbpedia.org/ontology/dec".freeze, "http://dbpedia.org/ontology/decay".freeze, "http://dbpedia.org/ontology/decideDate".freeze, "http://dbpedia.org/ontology/declination".freeze, "http://dbpedia.org/ontology/decommissioningDate".freeze, "http://dbpedia.org/ontology/decoration".freeze, "http://dbpedia.org/ontology/defeat".freeze, "http://dbpedia.org/ontology/defeatAsMgr".freeze, "http://dbpedia.org/ontology/definition".freeze, "http://dbpedia.org/ontology/defunct".freeze, "http://dbpedia.org/ontology/delegateMayor".freeze, "http://dbpedia.org/ontology/delegation".freeze, "http://dbpedia.org/ontology/deliveryDate".freeze, "http://dbpedia.org/ontology/deme".freeze, "http://dbpedia.org/ontology/demographics".freeze, "http://dbpedia.org/ontology/demographicsAsOf".freeze, "http://dbpedia.org/ontology/demolitionDate".freeze, "http://dbpedia.org/ontology/demolitionYear".freeze, "http://dbpedia.org/ontology/demonym".freeze, "http://dbpedia.org/ontology/denomination".freeze, "http://dbpedia.org/ontology/density".freeze, "http://dbpedia.org/ontology/department".freeze, "http://dbpedia.org/ontology/departmentCode".freeze, "http://dbpedia.org/ontology/departmentPosition".freeze, "http://dbpedia.org/ontology/depictionDescription".freeze, "http://dbpedia.org/ontology/depth".freeze, "http://dbpedia.org/ontology/depthQuote".freeze, "http://dbpedia.org/ontology/depths".freeze, "http://dbpedia.org/ontology/deputy".freeze, "http://dbpedia.org/ontology/derivative".freeze, "http://dbpedia.org/ontology/derivedWord".freeze, "http://dbpedia.org/ontology/description".freeze, "http://dbpedia.org/ontology/designCompany".freeze, "http://dbpedia.org/ontology/designer".freeze, "http://dbpedia.org/ontology/destination".freeze, "http://dbpedia.org/ontology/destructionDate".freeze, "http://dbpedia.org/ontology/detectionMethod".freeze, "http://dbpedia.org/ontology/detractor".freeze, "http://dbpedia.org/ontology/developer".freeze, "http://dbpedia.org/ontology/dfE".freeze, "http://dbpedia.org/ontology/diameter".freeze, "http://dbpedia.org/ontology/differentialDiagnosis".freeze, "http://dbpedia.org/ontology/digitalChannel".freeze, "http://dbpedia.org/ontology/digitalSubChannel".freeze, "http://dbpedia.org/ontology/diocese".freeze, "http://dbpedia.org/ontology/diploma".freeze, "http://dbpedia.org/ontology/director".freeze, "http://dbpedia.org/ontology/disappearanceDate".freeze, "http://dbpedia.org/ontology/disbanded".freeze, "http://dbpedia.org/ontology/discharge".freeze, "http://dbpedia.org/ontology/dischargeAverage".freeze, "http://dbpedia.org/ontology/disciple".freeze, "http://dbpedia.org/ontology/discipline".freeze, "http://dbpedia.org/ontology/discontinued".freeze, "http://dbpedia.org/ontology/discovered".freeze, "http://dbpedia.org/ontology/discoverer".freeze, "http://dbpedia.org/ontology/discovery".freeze, "http://dbpedia.org/ontology/disease".freeze, "http://dbpedia.org/ontology/diseasesDB".freeze, "http://dbpedia.org/ontology/diseasesDb".freeze, "http://dbpedia.org/ontology/displacement".freeze, "http://dbpedia.org/ontology/dissolutionDate".freeze, "http://dbpedia.org/ontology/dissolutionYear".freeze, "http://dbpedia.org/ontology/dissolved".freeze, "http://dbpedia.org/ontology/dist_ly".freeze, "http://dbpedia.org/ontology/dist_pc".freeze, "http://dbpedia.org/ontology/distance".freeze, "http://dbpedia.org/ontology/distanceLaps".freeze, "http://dbpedia.org/ontology/distanceToBelfast".freeze, "http://dbpedia.org/ontology/distanceToCapital".freeze, "http://dbpedia.org/ontology/distanceToCardiff".freeze, "http://dbpedia.org/ontology/distanceToCharingCross".freeze, "http://dbpedia.org/ontology/distanceToDouglas".freeze, "http://dbpedia.org/ontology/distanceToDublin".freeze, "http://dbpedia.org/ontology/distanceToEdinburgh".freeze, "http://dbpedia.org/ontology/distanceToLondon".freeze, "http://dbpedia.org/ontology/distanceToNearestCity".freeze, "http://dbpedia.org/ontology/distanceTraveled".freeze, "http://dbpedia.org/ontology/distributingCompany".freeze, "http://dbpedia.org/ontology/distributingLabel".freeze, "http://dbpedia.org/ontology/distributor".freeze, "http://dbpedia.org/ontology/district".freeze, "http://dbpedia.org/ontology/division".freeze, "http://dbpedia.org/ontology/dockedTime".freeze, "http://dbpedia.org/ontology/doctoralAdvisor".freeze, "http://dbpedia.org/ontology/doctoralStudent".freeze, "http://dbpedia.org/ontology/documentDesignation".freeze, "http://dbpedia.org/ontology/documentNumber".freeze, "http://dbpedia.org/ontology/domain".freeze, "http://dbpedia.org/ontology/dorlandsId".freeze, "http://dbpedia.org/ontology/dorlandsPrefix".freeze, "http://dbpedia.org/ontology/dorlandsSuffix".freeze, "http://dbpedia.org/ontology/draft".freeze, "http://dbpedia.org/ontology/draftLeague".freeze, "http://dbpedia.org/ontology/draftPick".freeze, "http://dbpedia.org/ontology/draftPosition".freeze, "http://dbpedia.org/ontology/draftRound".freeze, "http://dbpedia.org/ontology/draftTeam".freeze, "http://dbpedia.org/ontology/draftYear".freeze, "http://dbpedia.org/ontology/drainsFrom".freeze, "http://dbpedia.org/ontology/drainsTo".freeze, "http://dbpedia.org/ontology/drama".freeze, "http://dbpedia.org/ontology/dressCode".freeze, "http://dbpedia.org/ontology/drugbank".freeze, "http://dbpedia.org/ontology/drugs.com".freeze, "http://dbpedia.org/ontology/dryCargo".freeze, "http://dbpedia.org/ontology/dubber".freeze, "http://dbpedia.org/ontology/duration".freeze, "http://dbpedia.org/ontology/dutchArtworkCode".freeze, "http://dbpedia.org/ontology/dutchCOROPCode".freeze, "http://dbpedia.org/ontology/dutchMIPCode".freeze, "http://dbpedia.org/ontology/dutchNAIdentifier".freeze, "http://dbpedia.org/ontology/dutchPPNCode".freeze, "http://dbpedia.org/ontology/dutchRKDCode".freeze, "http://dbpedia.org/ontology/dutchWinkelID".freeze, "http://dbpedia.org/ontology/dynasty".freeze, "http://dbpedia.org/ontology/eMedicineSubject".freeze, "http://dbpedia.org/ontology/eMedicineTopic".freeze, "http://dbpedia.org/ontology/eTeatrId".freeze, "http://dbpedia.org/ontology/eastPlace".freeze, "http://dbpedia.org/ontology/ecNumber".freeze, "http://dbpedia.org/ontology/editing".freeze, "http://dbpedia.org/ontology/editor".freeze, "http://dbpedia.org/ontology/editorTitle".freeze, "http://dbpedia.org/ontology/education".freeze, "http://dbpedia.org/ontology/educationPlace".freeze, "http://dbpedia.org/ontology/educationSystem".freeze, "http://dbpedia.org/ontology/effectiveRadiatedPower".freeze, "http://dbpedia.org/ontology/egafdId".freeze, "http://dbpedia.org/ontology/einecsNumber".freeze, "http://dbpedia.org/ontology/ekatteCode".freeze, "http://dbpedia.org/ontology/electionDate".freeze, "http://dbpedia.org/ontology/electionDateLeader".freeze, "http://dbpedia.org/ontology/electionMajority".freeze, "http://dbpedia.org/ontology/elementAbove".freeze, "http://dbpedia.org/ontology/elementBlock".freeze, "http://dbpedia.org/ontology/elementGroup".freeze, "http://dbpedia.org/ontology/elementPeriod".freeze, "http://dbpedia.org/ontology/elevation".freeze, "http://dbpedia.org/ontology/elevationQuote".freeze, "http://dbpedia.org/ontology/elevatorCount".freeze, "http://dbpedia.org/ontology/elo".freeze, "http://dbpedia.org/ontology/eloRecord".freeze, "http://dbpedia.org/ontology/emblem".freeze, "http://dbpedia.org/ontology/emmyAward".freeze, "http://dbpedia.org/ontology/employer".freeze, "http://dbpedia.org/ontology/employersCelebration".freeze, "http://dbpedia.org/ontology/end".freeze, "http://dbpedia.org/ontology/endCareer".freeze, "http://dbpedia.org/ontology/endDate".freeze, "http://dbpedia.org/ontology/endDateTime".freeze, "http://dbpedia.org/ontology/endOccupation".freeze, "http://dbpedia.org/ontology/endPoint".freeze, "http://dbpedia.org/ontology/endReign".freeze, "http://dbpedia.org/ontology/endYear".freeze, "http://dbpedia.org/ontology/endYearOfInsertion".freeze, "http://dbpedia.org/ontology/endYearOfSales".freeze, "http://dbpedia.org/ontology/endangeredSince".freeze, "http://dbpedia.org/ontology/endingTheme".freeze, "http://dbpedia.org/ontology/endowment".freeze, "http://dbpedia.org/ontology/enemy".freeze, "http://dbpedia.org/ontology/engine".freeze, "http://dbpedia.org/ontology/enginePower".freeze, "http://dbpedia.org/ontology/engineType".freeze, "http://dbpedia.org/ontology/engineer".freeze, "http://dbpedia.org/ontology/ensembl".freeze, "http://dbpedia.org/ontology/enshrinedDeity".freeze, "http://dbpedia.org/ontology/entourage".freeze, "http://dbpedia.org/ontology/entrezgene".freeze, "http://dbpedia.org/ontology/eparchy".freeze, "http://dbpedia.org/ontology/episode".freeze, "http://dbpedia.org/ontology/episodeNumber".freeze, "http://dbpedia.org/ontology/epoch".freeze, "http://dbpedia.org/ontology/eptFinalTable".freeze, "http://dbpedia.org/ontology/eptItm".freeze, "http://dbpedia.org/ontology/eptTitle".freeze, "http://dbpedia.org/ontology/equipment".freeze, "http://dbpedia.org/ontology/equity".freeze, "http://dbpedia.org/ontology/era".freeze, "http://dbpedia.org/ontology/eruption".freeze, "http://dbpedia.org/ontology/eruptionYear".freeze, "http://dbpedia.org/ontology/escalafon".freeze, "http://dbpedia.org/ontology/escapeVelocity".freeze, "http://dbpedia.org/ontology/espnId".freeze, "http://dbpedia.org/ontology/established".freeze, "http://dbpedia.org/ontology/establishment".freeze, "http://dbpedia.org/ontology/ethnicGroup".freeze, "http://dbpedia.org/ontology/ethnicGroupsInYear".freeze, "http://dbpedia.org/ontology/ethnicity".freeze, "http://dbpedia.org/ontology/eurobabeIndexId".freeze, "http://dbpedia.org/ontology/europeanAffiliation".freeze, "http://dbpedia.org/ontology/europeanChampionship".freeze, "http://dbpedia.org/ontology/europeanParliamentGroup".freeze, "http://dbpedia.org/ontology/europeanUnionEntranceDate".freeze, "http://dbpedia.org/ontology/event".freeze, "http://dbpedia.org/ontology/eventDate".freeze, "http://dbpedia.org/ontology/eventDescription".freeze, "http://dbpedia.org/ontology/executiveHeadteacher".freeze, "http://dbpedia.org/ontology/executiveProducer".freeze, "http://dbpedia.org/ontology/exhibition".freeze, "http://dbpedia.org/ontology/existence".freeze, "http://dbpedia.org/ontology/expedition".freeze, "http://dbpedia.org/ontology/explorer".freeze, "http://dbpedia.org/ontology/externalOrnament".freeze, "http://dbpedia.org/ontology/extinctionDate".freeze, "http://dbpedia.org/ontology/extinctionYear".freeze, "http://dbpedia.org/ontology/eyeColor".freeze, "http://dbpedia.org/ontology/eyeColour".freeze, "http://dbpedia.org/ontology/eyes".freeze, "http://dbpedia.org/ontology/faaLocationIdentifier".freeze, "http://dbpedia.org/ontology/facilityId".freeze, "http://dbpedia.org/ontology/facultySize".freeze, "http://dbpedia.org/ontology/failedLaunches".freeze, "http://dbpedia.org/ontology/family".freeze, "http://dbpedia.org/ontology/familyMember".freeze, "http://dbpedia.org/ontology/fansgroup".freeze, "http://dbpedia.org/ontology/fareZone".freeze, "http://dbpedia.org/ontology/fastestDriver".freeze, "http://dbpedia.org/ontology/fastestDriverCountry".freeze, "http://dbpedia.org/ontology/fastestDriverTeam".freeze, "http://dbpedia.org/ontology/fastestLap".freeze, "http://dbpedia.org/ontology/fat".freeze, "http://dbpedia.org/ontology/fatalityRate".freeze, "http://dbpedia.org/ontology/fate".freeze, "http://dbpedia.org/ontology/father".freeze, "http://dbpedia.org/ontology/fauna".freeze, "http://dbpedia.org/ontology/fc".freeze, "http://dbpedia.org/ontology/fcRuns".freeze, "http://dbpedia.org/ontology/fdaUniiCode".freeze, "http://dbpedia.org/ontology/feastDay".freeze, "http://dbpedia.org/ontology/feat".freeze, "http://dbpedia.org/ontology/feature".freeze, "http://dbpedia.org/ontology/features".freeze, "http://dbpedia.org/ontology/fedCup".freeze, "http://dbpedia.org/ontology/federalState".freeze, "http://dbpedia.org/ontology/federation".freeze, "http://dbpedia.org/ontology/fees".freeze, "http://dbpedia.org/ontology/fibahof".freeze, "http://dbpedia.org/ontology/field".freeze, "http://dbpedia.org/ontology/fight".freeze, "http://dbpedia.org/ontology/fighter".freeze, "http://dbpedia.org/ontology/fileExtension".freeze, "http://dbpedia.org/ontology/fileSize".freeze, "http://dbpedia.org/ontology/fileURL".freeze, "http://dbpedia.org/ontology/filename".freeze, "http://dbpedia.org/ontology/fillingStation".freeze, "http://dbpedia.org/ontology/film".freeze, "http://dbpedia.org/ontology/filmAudioType".freeze, "http://dbpedia.org/ontology/filmColourType".freeze, "http://dbpedia.org/ontology/filmFareAward".freeze, "http://dbpedia.org/ontology/filmNumber".freeze, "http://dbpedia.org/ontology/filmPolskiId".freeze, "http://dbpedia.org/ontology/filmRuntime".freeze, "http://dbpedia.org/ontology/filmVersion".freeze, "http://dbpedia.org/ontology/finalFlight".freeze, "http://dbpedia.org/ontology/finalLost".freeze, "http://dbpedia.org/ontology/finalLostDouble".freeze, "http://dbpedia.org/ontology/finalLostSingle".freeze, "http://dbpedia.org/ontology/finalLostTeam".freeze, "http://dbpedia.org/ontology/finalPublicationDate".freeze, "http://dbpedia.org/ontology/finalPublicationYear".freeze, "http://dbpedia.org/ontology/fipsCode".freeze, "http://dbpedia.org/ontology/firstAirDate".freeze, "http://dbpedia.org/ontology/firstAppearance".freeze, "http://dbpedia.org/ontology/firstAscent".freeze, "http://dbpedia.org/ontology/firstAscentPerson".freeze, "http://dbpedia.org/ontology/firstAscentYear".freeze, "http://dbpedia.org/ontology/firstBroadcast".freeze, "http://dbpedia.org/ontology/firstDriver".freeze, "http://dbpedia.org/ontology/firstDriverCountry".freeze, "http://dbpedia.org/ontology/firstDriverTeam".freeze, "http://dbpedia.org/ontology/firstFlight".freeze, "http://dbpedia.org/ontology/firstFlightEndDate".freeze, "http://dbpedia.org/ontology/firstFlightStartDate".freeze, "http://dbpedia.org/ontology/firstGame".freeze, "http://dbpedia.org/ontology/firstLaunch".freeze, "http://dbpedia.org/ontology/firstLaunchDate".freeze, "http://dbpedia.org/ontology/firstLaunchRocket".freeze, "http://dbpedia.org/ontology/firstLeader".freeze, "http://dbpedia.org/ontology/firstMention".freeze, "http://dbpedia.org/ontology/firstOlympicEvent".freeze, "http://dbpedia.org/ontology/firstOwner".freeze, "http://dbpedia.org/ontology/firstPlace".freeze, "http://dbpedia.org/ontology/firstPopularVote".freeze, "http://dbpedia.org/ontology/firstProMatch".freeze, "http://dbpedia.org/ontology/firstPublicationDate".freeze, "http://dbpedia.org/ontology/firstPublicationYear".freeze, "http://dbpedia.org/ontology/firstPublisher".freeze, "http://dbpedia.org/ontology/firstRace".freeze, "http://dbpedia.org/ontology/firstWin".freeze, "http://dbpedia.org/ontology/firstWinner".freeze, "http://dbpedia.org/ontology/flag".freeze, "http://dbpedia.org/ontology/flagBearer".freeze, "http://dbpedia.org/ontology/flagBorder".freeze, "http://dbpedia.org/ontology/flagCaption".freeze, "http://dbpedia.org/ontology/flagLink".freeze, "http://dbpedia.org/ontology/flagSize".freeze, "http://dbpedia.org/ontology/flashPoint".freeze, "http://dbpedia.org/ontology/floodingDate".freeze, "http://dbpedia.org/ontology/floorArea".freeze, "http://dbpedia.org/ontology/floorCount".freeze, "http://dbpedia.org/ontology/flora".freeze, "http://dbpedia.org/ontology/flower".freeze, "http://dbpedia.org/ontology/flyingHours".freeze, "http://dbpedia.org/ontology/foalDate".freeze, "http://dbpedia.org/ontology/focus".freeze, "http://dbpedia.org/ontology/followedBy".freeze, "http://dbpedia.org/ontology/followingEvent".freeze, "http://dbpedia.org/ontology/follows".freeze, "http://dbpedia.org/ontology/foot".freeze, "http://dbpedia.org/ontology/footedness".freeze, "http://dbpedia.org/ontology/forces".freeze, "http://dbpedia.org/ontology/foresterDistrict".freeze, "http://dbpedia.org/ontology/format".freeze, "http://dbpedia.org/ontology/formationDate".freeze, "http://dbpedia.org/ontology/formationYear".freeze, "http://dbpedia.org/ontology/formerBandMember".freeze, "http://dbpedia.org/ontology/formerBroadcastNetwork".freeze, "http://dbpedia.org/ontology/formerCallsign".freeze, "http://dbpedia.org/ontology/formerChannel".freeze, "http://dbpedia.org/ontology/formerChoreographer".freeze, "http://dbpedia.org/ontology/formerCoach".freeze, "http://dbpedia.org/ontology/formerHighschool".freeze, "http://dbpedia.org/ontology/formerName".freeze, "http://dbpedia.org/ontology/formerPartner".freeze, "http://dbpedia.org/ontology/formerTeam".freeze, "http://dbpedia.org/ontology/formula".freeze, "http://dbpedia.org/ontology/fossil".freeze, "http://dbpedia.org/ontology/foundation".freeze, "http://dbpedia.org/ontology/foundationPlace".freeze, "http://dbpedia.org/ontology/foundedBy".freeze, "http://dbpedia.org/ontology/founder".freeze, "http://dbpedia.org/ontology/foundingDate".freeze, "http://dbpedia.org/ontology/foundingYear".freeze, "http://dbpedia.org/ontology/fourthCommander".freeze, "http://dbpedia.org/ontology/frazioni".freeze, "http://dbpedia.org/ontology/free".freeze, "http://dbpedia.org/ontology/freeDanseScore".freeze, "http://dbpedia.org/ontology/freeFlightTime".freeze, "http://dbpedia.org/ontology/freeLabel".freeze, "http://dbpedia.org/ontology/freeProgCompetition".freeze, "http://dbpedia.org/ontology/freeProgScore".freeze, "http://dbpedia.org/ontology/freeScoreCompetition".freeze, "http://dbpedia.org/ontology/frequency".freeze, "http://dbpedia.org/ontology/frequencyOfPublication".freeze, "http://dbpedia.org/ontology/frequentlyUpdated".freeze, "http://dbpedia.org/ontology/friend".freeze, "http://dbpedia.org/ontology/frontierLength".freeze, "http://dbpedia.org/ontology/frozen".freeze, "http://dbpedia.org/ontology/fuel".freeze, "http://dbpedia.org/ontology/fuelCapacity".freeze, "http://dbpedia.org/ontology/fuelConsumption".freeze, "http://dbpedia.org/ontology/fuelSystem".freeze, "http://dbpedia.org/ontology/fuelType".freeze, "http://dbpedia.org/ontology/fuelTypeName".freeze, "http://dbpedia.org/ontology/fullCompetition".freeze, "http://dbpedia.org/ontology/fullScore".freeze, "http://dbpedia.org/ontology/functionEndDate".freeze, "http://dbpedia.org/ontology/functionEndYear".freeze, "http://dbpedia.org/ontology/functionStartDate".freeze, "http://dbpedia.org/ontology/functionStartYear".freeze, "http://dbpedia.org/ontology/fundedBy".freeze, "http://dbpedia.org/ontology/galicianSpeakersDate".freeze, "http://dbpedia.org/ontology/galicianSpeakersPercentage".freeze, "http://dbpedia.org/ontology/galleryItem".freeze, "http://dbpedia.org/ontology/gameArtist".freeze, "http://dbpedia.org/ontology/gameEngine".freeze, "http://dbpedia.org/ontology/gameModus".freeze, "http://dbpedia.org/ontology/games".freeze, "http://dbpedia.org/ontology/garrison".freeze, "http://dbpedia.org/ontology/gasChambers".freeze, "http://dbpedia.org/ontology/gaudiAward".freeze, "http://dbpedia.org/ontology/gdpPerCapita".freeze, "http://dbpedia.org/ontology/geminiAward".freeze, "http://dbpedia.org/ontology/gender".freeze, "http://dbpedia.org/ontology/geneLocation".freeze, "http://dbpedia.org/ontology/geneLocationEnd".freeze, "http://dbpedia.org/ontology/geneLocationStart".freeze, "http://dbpedia.org/ontology/geneReviewsId".freeze, "http://dbpedia.org/ontology/geneReviewsName".freeze, "http://dbpedia.org/ontology/generalCouncil".freeze, "http://dbpedia.org/ontology/generalManager".freeze, "http://dbpedia.org/ontology/generationUnits".freeze, "http://dbpedia.org/ontology/genomeDB".freeze, "http://dbpedia.org/ontology/genre".freeze, "http://dbpedia.org/ontology/genus".freeze, "http://dbpedia.org/ontology/geolocDepartment".freeze, "http://dbpedia.org/ontology/geolocDual".freeze, "http://dbpedia.org/ontology/geologicPeriod".freeze, "http://dbpedia.org/ontology/geology".freeze, "http://dbpedia.org/ontology/giniCoefficient".freeze, "http://dbpedia.org/ontology/giniCoefficientAsOf".freeze, "http://dbpedia.org/ontology/giniCoefficientCategory".freeze, "http://dbpedia.org/ontology/giniCoefficientRanking".freeze, "http://dbpedia.org/ontology/glycemicIndex".freeze, "http://dbpedia.org/ontology/gnisCode".freeze, "http://dbpedia.org/ontology/gnl".freeze, "http://dbpedia.org/ontology/goalsInLeague".freeze, "http://dbpedia.org/ontology/goalsInNationalTeam".freeze, "http://dbpedia.org/ontology/goldMedalDouble".freeze, "http://dbpedia.org/ontology/goldMedalMixed".freeze, "http://dbpedia.org/ontology/goldMedalSingle".freeze, "http://dbpedia.org/ontology/goldMedalist".freeze, "http://dbpedia.org/ontology/goldenCalfAward".freeze, "http://dbpedia.org/ontology/goldenGlobeAward".freeze, "http://dbpedia.org/ontology/goldenRaspberryAward".freeze, "http://dbpedia.org/ontology/governingBody".freeze, "http://dbpedia.org/ontology/government".freeze, "http://dbpedia.org/ontology/governmentCountry".freeze, "http://dbpedia.org/ontology/governmentElevation".freeze, "http://dbpedia.org/ontology/governmentMountain".freeze, "http://dbpedia.org/ontology/governmentPlace".freeze, "http://dbpedia.org/ontology/governmentPosition".freeze, "http://dbpedia.org/ontology/governmentRegion".freeze, "http://dbpedia.org/ontology/governmentType".freeze, "http://dbpedia.org/ontology/governor".freeze, "http://dbpedia.org/ontology/governorGeneral".freeze, "http://dbpedia.org/ontology/governorate".freeze, "http://dbpedia.org/ontology/goyaAward".freeze, "http://dbpedia.org/ontology/gradName".freeze, "http://dbpedia.org/ontology/gradNum".freeze, "http://dbpedia.org/ontology/grades".freeze, "http://dbpedia.org/ontology/grammyAward".freeze, "http://dbpedia.org/ontology/grandsire".freeze, "http://dbpedia.org/ontology/grave".freeze, "http://dbpedia.org/ontology/grayPage".freeze, "http://dbpedia.org/ontology/graySubject".freeze, "http://dbpedia.org/ontology/greekName".freeze, "http://dbpedia.org/ontology/greenLongDistancePisteNumber".freeze, "http://dbpedia.org/ontology/greenSkiPisteNumber".freeze, "http://dbpedia.org/ontology/gridReference".freeze, "http://dbpedia.org/ontology/grindingCapability".freeze, "http://dbpedia.org/ontology/gross".freeze, "http://dbpedia.org/ontology/grossDomesticProduct".freeze, "http://dbpedia.org/ontology/grossDomesticProductAsOf".freeze, "http://dbpedia.org/ontology/grossDomesticProductNominalPerCapita".freeze, "http://dbpedia.org/ontology/grossDomesticProductPerPeople".freeze, "http://dbpedia.org/ontology/grossDomesticProductPurchasingPowerParityPerCapita".freeze, "http://dbpedia.org/ontology/grossDomesticProductRank".freeze, "http://dbpedia.org/ontology/ground".freeze, "http://dbpedia.org/ontology/groundsForLiquidation".freeze, "http://dbpedia.org/ontology/groupCommemorated".freeze, "http://dbpedia.org/ontology/growingGrape".freeze, "http://dbpedia.org/ontology/guest".freeze, "http://dbpedia.org/ontology/gun".freeze, "http://dbpedia.org/ontology/gymApparatus".freeze, "http://dbpedia.org/ontology/hairColor".freeze, "http://dbpedia.org/ontology/hairColour".freeze, "http://dbpedia.org/ontology/hairs".freeze, "http://dbpedia.org/ontology/hallOfFame".freeze, "http://dbpedia.org/ontology/hand".freeze, "http://dbpedia.org/ontology/handedness".freeze, "http://dbpedia.org/ontology/handisport".freeze, "http://dbpedia.org/ontology/hasAbsorbedMunicipality".freeze, "http://dbpedia.org/ontology/hasAnnotation".freeze, "http://dbpedia.org/ontology/hasChannel".freeze, "http://dbpedia.org/ontology/hasInput".freeze, "http://dbpedia.org/ontology/hasInsidePlace".freeze, "http://dbpedia.org/ontology/hasJunctionWith".freeze, "http://dbpedia.org/ontology/hasKMLData".freeze, "http://dbpedia.org/ontology/hasNaturalBust".freeze, "http://dbpedia.org/ontology/hasOutsidePlace".freeze, "http://dbpedia.org/ontology/hasSurfaceForm".freeze, "http://dbpedia.org/ontology/hasVariant".freeze, "http://dbpedia.org/ontology/head".freeze, "http://dbpedia.org/ontology/headAlloy".freeze, "http://dbpedia.org/ontology/headChef".freeze, "http://dbpedia.org/ontology/headLabel".freeze, "http://dbpedia.org/ontology/headOfFamily".freeze, "http://dbpedia.org/ontology/headquarter".freeze, "http://dbpedia.org/ontology/headteacher".freeze, "http://dbpedia.org/ontology/height".freeze, "http://dbpedia.org/ontology/heightAboveAverageTerrain".freeze, "http://dbpedia.org/ontology/heightAgainst".freeze, "http://dbpedia.org/ontology/heightAttack".freeze, "http://dbpedia.org/ontology/heir".freeze, "http://dbpedia.org/ontology/heisman".freeze, "http://dbpedia.org/ontology/heritageRegister".freeze, "http://dbpedia.org/ontology/hgncid".freeze, "http://dbpedia.org/ontology/highest".freeze, "http://dbpedia.org/ontology/highestAltitude".freeze, "http://dbpedia.org/ontology/highestBreak".freeze, "http://dbpedia.org/ontology/highestBuildingInYear".freeze, "http://dbpedia.org/ontology/highestMountain".freeze, "http://dbpedia.org/ontology/highestPlace".freeze, "http://dbpedia.org/ontology/highestPoint".freeze, "http://dbpedia.org/ontology/highestPointIsland".freeze, "http://dbpedia.org/ontology/highestPosition".freeze, "http://dbpedia.org/ontology/highestRank".freeze, "http://dbpedia.org/ontology/highestRegion".freeze, "http://dbpedia.org/ontology/highestState".freeze, "http://dbpedia.org/ontology/highschool".freeze, "http://dbpedia.org/ontology/highwaySystem".freeze, "http://dbpedia.org/ontology/hipSize".freeze, "http://dbpedia.org/ontology/historicalMap".freeze, "http://dbpedia.org/ontology/historicalName".freeze, "http://dbpedia.org/ontology/historicalRegion".freeze, "http://dbpedia.org/ontology/hof".freeze, "http://dbpedia.org/ontology/homage".freeze, "http://dbpedia.org/ontology/homeArena".freeze, "http://dbpedia.org/ontology/homeColourHexCode".freeze, "http://dbpedia.org/ontology/homeStadium".freeze, "http://dbpedia.org/ontology/homeport".freeze, "http://dbpedia.org/ontology/hometown".freeze, "http://dbpedia.org/ontology/honours".freeze, "http://dbpedia.org/ontology/hopmanCup".freeze, "http://dbpedia.org/ontology/horseRidingDiscipline".freeze, "http://dbpedia.org/ontology/house".freeze, "http://dbpedia.org/ontology/hraState".freeze, "http://dbpedia.org/ontology/hsvCoordinateHue".freeze, "http://dbpedia.org/ontology/hsvCoordinateSaturation".freeze, "http://dbpedia.org/ontology/hsvCoordinateValue".freeze, "http://dbpedia.org/ontology/hubAirport".freeze, "http://dbpedia.org/ontology/humanDevelopmentIndex".freeze, "http://dbpedia.org/ontology/humanDevelopmentIndexAsOf".freeze, "http://dbpedia.org/ontology/humanDevelopmentIndexRank".freeze, "http://dbpedia.org/ontology/humanDevelopmentIndexRankingCategory".freeze, "http://dbpedia.org/ontology/hybrid".freeze, "http://dbpedia.org/ontology/iafdId".freeze, "http://dbpedia.org/ontology/iataAirlineCode".freeze, "http://dbpedia.org/ontology/iataLocationIdentifier".freeze, "http://dbpedia.org/ontology/ibdbId".freeze, "http://dbpedia.org/ontology/icaoAirlineCode".freeze, "http://dbpedia.org/ontology/icaoLocationIdentifier".freeze, "http://dbpedia.org/ontology/icd1".freeze, "http://dbpedia.org/ontology/icd10".freeze, "http://dbpedia.org/ontology/icd9".freeze, "http://dbpedia.org/ontology/icdo".freeze, "http://dbpedia.org/ontology/iconographicAttributes".freeze, "http://dbpedia.org/ontology/id".freeze, "http://dbpedia.org/ontology/idAllocine".freeze, "http://dbpedia.org/ontology/idNumber".freeze, "http://dbpedia.org/ontology/identificationSymbol".freeze, "http://dbpedia.org/ontology/ideology".freeze, "http://dbpedia.org/ontology/iftaAward".freeze, "http://dbpedia.org/ontology/iihfHof".freeze, "http://dbpedia.org/ontology/illiteracy".freeze, "http://dbpedia.org/ontology/illustrator".freeze, "http://dbpedia.org/ontology/imageSize".freeze, "http://dbpedia.org/ontology/imdbId".freeze, "http://dbpedia.org/ontology/impactFactor".freeze, "http://dbpedia.org/ontology/impactFactorAsOf".freeze, "http://dbpedia.org/ontology/importantStation".freeze, "http://dbpedia.org/ontology/imposedDanseCompetition".freeze, "http://dbpedia.org/ontology/imposedDanseScore".freeze, "http://dbpedia.org/ontology/inCemetery".freeze, "http://dbpedia.org/ontology/inchi".freeze, "http://dbpedia.org/ontology/inclination".freeze, "http://dbpedia.org/ontology/income".freeze, "http://dbpedia.org/ontology/incumbent".freeze, "http://dbpedia.org/ontology/individualisedGnd".freeze, "http://dbpedia.org/ontology/individualisedPnd".freeze, "http://dbpedia.org/ontology/industry".freeze, "http://dbpedia.org/ontology/infantMortality".freeze, "http://dbpedia.org/ontology/inflow".freeze, "http://dbpedia.org/ontology/influenced".freeze, "http://dbpedia.org/ontology/influencedBy".freeze, "http://dbpedia.org/ontology/information".freeze, "http://dbpedia.org/ontology/informationName".freeze, "http://dbpedia.org/ontology/ingredient".freeze, "http://dbpedia.org/ontology/ingredientName".freeze, "http://dbpedia.org/ontology/initiallyUsedFor".freeze, "http://dbpedia.org/ontology/inn".freeze, "http://dbpedia.org/ontology/innervates".freeze, "http://dbpedia.org/ontology/inscription".freeze, "http://dbpedia.org/ontology/inseeCode".freeze, "http://dbpedia.org/ontology/installedCapacity".freeze, "http://dbpedia.org/ontology/institution".freeze, "http://dbpedia.org/ontology/instrument".freeze, "http://dbpedia.org/ontology/intercommunality".freeze, "http://dbpedia.org/ontology/interest".freeze, "http://dbpedia.org/ontology/internationalAffiliation".freeze, "http://dbpedia.org/ontology/internationalPhonePrefix".freeze, "http://dbpedia.org/ontology/internationalPhonePrefixLabel".freeze, "http://dbpedia.org/ontology/internationally".freeze, "http://dbpedia.org/ontology/introduced".freeze, "http://dbpedia.org/ontology/introductionDate".freeze, "http://dbpedia.org/ontology/iobdbId".freeze, "http://dbpedia.org/ontology/isCityState".freeze, "http://dbpedia.org/ontology/isHandicappedAccessible".freeze, "http://dbpedia.org/ontology/isPartOf".freeze, "http://dbpedia.org/ontology/isPartOfAnatomicalStructure".freeze, "http://dbpedia.org/ontology/isPartOfMilitaryConflict".freeze, "http://dbpedia.org/ontology/isPartOfName".freeze, "http://dbpedia.org/ontology/isPartOfWineRegion".freeze, "http://dbpedia.org/ontology/isPeerReviewed".freeze, "http://dbpedia.org/ontology/isRouteStop".freeze, "http://dbpedia.org/ontology/isbn".freeze, "http://dbpedia.org/ontology/isil".freeze, "http://dbpedia.org/ontology/island".freeze, "http://dbpedia.org/ontology/isniId".freeze, "http://dbpedia.org/ontology/iso31661Code".freeze, "http://dbpedia.org/ontology/iso6391Code".freeze, "http://dbpedia.org/ontology/iso6392Code".freeze, "http://dbpedia.org/ontology/iso6393Code".freeze, "http://dbpedia.org/ontology/isoCode".freeze, "http://dbpedia.org/ontology/isoCodeRegion".freeze, "http://dbpedia.org/ontology/issDockings".freeze, "http://dbpedia.org/ontology/issn".freeze, "http://dbpedia.org/ontology/ist".freeze, "http://dbpedia.org/ontology/istat".freeze, "http://dbpedia.org/ontology/ithfDate".freeze, "http://dbpedia.org/ontology/iucnCategory".freeze, "http://dbpedia.org/ontology/iupacName".freeze, "http://dbpedia.org/ontology/jockey".freeze, "http://dbpedia.org/ontology/jointCommunity".freeze, "http://dbpedia.org/ontology/jstor".freeze, "http://dbpedia.org/ontology/judge".freeze, "http://dbpedia.org/ontology/juniorSeason".freeze, "http://dbpedia.org/ontology/juniorTeam".freeze, "http://dbpedia.org/ontology/juniorYearsEndYear".freeze, "http://dbpedia.org/ontology/juniorYearsStartYear".freeze, "http://dbpedia.org/ontology/jureLanguage".freeze, "http://dbpedia.org/ontology/jurisdiction".freeze, "http://dbpedia.org/ontology/jutsu".freeze, "http://dbpedia.org/ontology/kegg".freeze, "http://dbpedia.org/ontology/keyPerson".freeze, "http://dbpedia.org/ontology/khlDraft".freeze, "http://dbpedia.org/ontology/khlDraftTeam".freeze, "http://dbpedia.org/ontology/khlDraftYear".freeze, "http://dbpedia.org/ontology/killedBy".freeze, "http://dbpedia.org/ontology/kinOfLanguage".freeze, "http://dbpedia.org/ontology/kindOfCoordinate".freeze, "http://dbpedia.org/ontology/kindOfCriminal".freeze, "http://dbpedia.org/ontology/kindOfCriminalAction".freeze, "http://dbpedia.org/ontology/kindOfRock".freeze, "http://dbpedia.org/ontology/kingdom".freeze, "http://dbpedia.org/ontology/knownFor".freeze, "http://dbpedia.org/ontology/ko".freeze, "http://dbpedia.org/ontology/lahHof".freeze, "http://dbpedia.org/ontology/lake".freeze, "http://dbpedia.org/ontology/land".freeze, "http://dbpedia.org/ontology/landArea".freeze, "http://dbpedia.org/ontology/landPercentage".freeze, "http://dbpedia.org/ontology/landRegistryCode".freeze, "http://dbpedia.org/ontology/landeshauptmann".freeze, "http://dbpedia.org/ontology/landingDate".freeze, "http://dbpedia.org/ontology/landingSite".freeze, "http://dbpedia.org/ontology/landingVehicle".freeze, "http://dbpedia.org/ontology/landskap".freeze, "http://dbpedia.org/ontology/landtag".freeze, "http://dbpedia.org/ontology/landtagMandate".freeze, "http://dbpedia.org/ontology/language".freeze, "http://dbpedia.org/ontology/languageCode".freeze, "http://dbpedia.org/ontology/languageFamily".freeze, "http://dbpedia.org/ontology/languageRegulator".freeze, "http://dbpedia.org/ontology/largestCity".freeze, "http://dbpedia.org/ontology/largestMetro".freeze, "http://dbpedia.org/ontology/largestSettlement".freeze, "http://dbpedia.org/ontology/largestWin".freeze, "http://dbpedia.org/ontology/lastAirDate".freeze, "http://dbpedia.org/ontology/lastAppearance".freeze, "http://dbpedia.org/ontology/lastElectionDate".freeze, "http://dbpedia.org/ontology/lastFamilyMember".freeze, "http://dbpedia.org/ontology/lastFlight".freeze, "http://dbpedia.org/ontology/lastFlightEndDate".freeze, "http://dbpedia.org/ontology/lastFlightStartDate".freeze, "http://dbpedia.org/ontology/lastLaunch".freeze, "http://dbpedia.org/ontology/lastLaunchDate".freeze, "http://dbpedia.org/ontology/lastLaunchRocket".freeze, "http://dbpedia.org/ontology/lastPosition".freeze, "http://dbpedia.org/ontology/lastProMatch".freeze, "http://dbpedia.org/ontology/lastPublicationDate".freeze, "http://dbpedia.org/ontology/lastRace".freeze, "http://dbpedia.org/ontology/lastSeason".freeze, "http://dbpedia.org/ontology/lastWin".freeze, "http://dbpedia.org/ontology/laterality".freeze, "http://dbpedia.org/ontology/latestElection".freeze, "http://dbpedia.org/ontology/latestPreviewDate".freeze, "http://dbpedia.org/ontology/latestPreviewVersion".freeze, "http://dbpedia.org/ontology/latestReleaseDate".freeze, "http://dbpedia.org/ontology/latestReleaseVersion".freeze, "http://dbpedia.org/ontology/latinName".freeze, "http://dbpedia.org/ontology/launch".freeze, "http://dbpedia.org/ontology/launchDate".freeze, "http://dbpedia.org/ontology/launchPad".freeze, "http://dbpedia.org/ontology/launchSite".freeze, "http://dbpedia.org/ontology/launchVehicle".freeze, "http://dbpedia.org/ontology/launches".freeze, "http://dbpedia.org/ontology/laurenceOlivierAward".freeze, "http://dbpedia.org/ontology/lawCountry".freeze, "http://dbpedia.org/ontology/layingDown".freeze, "http://dbpedia.org/ontology/layout".freeze, "http://dbpedia.org/ontology/lcc".freeze, "http://dbpedia.org/ontology/lccn".freeze, "http://dbpedia.org/ontology/lccnId".freeze, "http://dbpedia.org/ontology/lchfDraft".freeze, "http://dbpedia.org/ontology/lchfDraftTeam".freeze, "http://dbpedia.org/ontology/lchfDraftYear".freeze, "http://dbpedia.org/ontology/leadTeam".freeze, "http://dbpedia.org/ontology/leadYear".freeze, "http://dbpedia.org/ontology/leader".freeze, "http://dbpedia.org/ontology/leaderFunction".freeze, "http://dbpedia.org/ontology/leaderName".freeze, "http://dbpedia.org/ontology/leaderParty".freeze, "http://dbpedia.org/ontology/leaderTitle".freeze, "http://dbpedia.org/ontology/leadership".freeze, "http://dbpedia.org/ontology/league".freeze, "http://dbpedia.org/ontology/leagueManager".freeze, "http://dbpedia.org/ontology/leftChild".freeze, "http://dbpedia.org/ontology/leftTributary".freeze, "http://dbpedia.org/ontology/legalArrondissement".freeze, "http://dbpedia.org/ontology/legalArticle".freeze, "http://dbpedia.org/ontology/legalForm".freeze, "http://dbpedia.org/ontology/legislativePeriodName".freeze, "http://dbpedia.org/ontology/legislature".freeze, "http://dbpedia.org/ontology/length".freeze, "http://dbpedia.org/ontology/lengthQuote".freeze, "http://dbpedia.org/ontology/lengthReference".freeze, "http://dbpedia.org/ontology/lethalOnChickens".freeze, "http://dbpedia.org/ontology/lethalOnMice".freeze, "http://dbpedia.org/ontology/lethalOnRabbits".freeze, "http://dbpedia.org/ontology/lethalOnRats".freeze, "http://dbpedia.org/ontology/liberationDate".freeze, "http://dbpedia.org/ontology/libretto".freeze, "http://dbpedia.org/ontology/licenceLetter".freeze, "http://dbpedia.org/ontology/licenceNumber".freeze, "http://dbpedia.org/ontology/licenceNumberLabel".freeze, "http://dbpedia.org/ontology/license".freeze, "http://dbpedia.org/ontology/licensee".freeze, "http://dbpedia.org/ontology/lieutenancy".freeze, "http://dbpedia.org/ontology/lieutenancyArea".freeze, "http://dbpedia.org/ontology/lieutenant".freeze, "http://dbpedia.org/ontology/lifeExpectancy".freeze, "http://dbpedia.org/ontology/limit".freeze, "http://dbpedia.org/ontology/lineLength".freeze, "http://dbpedia.org/ontology/linguisticsTradition".freeze, "http://dbpedia.org/ontology/linkedSpace".freeze, "http://dbpedia.org/ontology/linkedTo".freeze, "http://dbpedia.org/ontology/listItemOf".freeze, "http://dbpedia.org/ontology/literaryGenre".freeze, "http://dbpedia.org/ontology/littlePoolRecord".freeze, "http://dbpedia.org/ontology/livingPlace".freeze, "http://dbpedia.org/ontology/loadLimit".freeze, "http://dbpedia.org/ontology/localAuthority".freeze, "http://dbpedia.org/ontology/localPhonePrefix".freeze, "http://dbpedia.org/ontology/locality".freeze, "http://dbpedia.org/ontology/localization".freeze, "http://dbpedia.org/ontology/localizationThumbnail".freeze, "http://dbpedia.org/ontology/localizationThumbnailCaption".freeze, "http://dbpedia.org/ontology/locatedInArea".freeze, "http://dbpedia.org/ontology/location".freeze, "http://dbpedia.org/ontology/locationCity".freeze, "http://dbpedia.org/ontology/locationCountry".freeze, "http://dbpedia.org/ontology/locationIdentifier".freeze, "http://dbpedia.org/ontology/locationName".freeze, "http://dbpedia.org/ontology/locomotive".freeze, "http://dbpedia.org/ontology/locusSupplementaryData".freeze, "http://dbpedia.org/ontology/logo".freeze, "http://dbpedia.org/ontology/longDistancePisteKilometre".freeze, "http://dbpedia.org/ontology/longDistancePisteNumber".freeze, "http://dbpedia.org/ontology/longName".freeze, "http://dbpedia.org/ontology/longtype".freeze, "http://dbpedia.org/ontology/lounge".freeze, "http://dbpedia.org/ontology/lowerAge".freeze, "http://dbpedia.org/ontology/lowerEarthOrbitPayload".freeze, "http://dbpedia.org/ontology/lowest".freeze, "http://dbpedia.org/ontology/lowestAltitude".freeze, "http://dbpedia.org/ontology/lowestMountain".freeze, "http://dbpedia.org/ontology/lowestPlace".freeze, "http://dbpedia.org/ontology/lowestPoint".freeze, "http://dbpedia.org/ontology/lowestPosition".freeze, "http://dbpedia.org/ontology/lowestRegion".freeze, "http://dbpedia.org/ontology/lowestState".freeze, "http://dbpedia.org/ontology/lunarEvaTime".freeze, "http://dbpedia.org/ontology/lunarLandingSite".freeze, "http://dbpedia.org/ontology/lunarModule".freeze, "http://dbpedia.org/ontology/lunarOrbitTime".freeze, "http://dbpedia.org/ontology/lunarRover".freeze, "http://dbpedia.org/ontology/lunarSampleMass".freeze, "http://dbpedia.org/ontology/lunarSurfaceTime".freeze, "http://dbpedia.org/ontology/lymph".freeze, "http://dbpedia.org/ontology/lyrics".freeze, "http://dbpedia.org/ontology/magazine".freeze, "http://dbpedia.org/ontology/maidenFlight".freeze, "http://dbpedia.org/ontology/maidenFlightRocket".freeze, "http://dbpedia.org/ontology/maidenVoyage".freeze, "http://dbpedia.org/ontology/mainBuilding".freeze, "http://dbpedia.org/ontology/mainCharacter".freeze, "http://dbpedia.org/ontology/mainDomain".freeze, "http://dbpedia.org/ontology/mainFamilyBranch".freeze, "http://dbpedia.org/ontology/mainInterest".freeze, "http://dbpedia.org/ontology/mainIsland".freeze, "http://dbpedia.org/ontology/mainIslands".freeze, "http://dbpedia.org/ontology/mainOrgan".freeze, "http://dbpedia.org/ontology/mainspan".freeze, "http://dbpedia.org/ontology/maintainedBy".freeze, "http://dbpedia.org/ontology/majorIsland".freeze, "http://dbpedia.org/ontology/majorShrine".freeze, "http://dbpedia.org/ontology/majorityFloorLeader".freeze, "http://dbpedia.org/ontology/majorityLeader".freeze, "http://dbpedia.org/ontology/makeupArtist".freeze, "http://dbpedia.org/ontology/management".freeze, "http://dbpedia.org/ontology/managementCountry".freeze, "http://dbpedia.org/ontology/managementElevation".freeze, "http://dbpedia.org/ontology/managementMountain".freeze, "http://dbpedia.org/ontology/managementPlace".freeze, "http://dbpedia.org/ontology/managementPosition".freeze, "http://dbpedia.org/ontology/managementRegion".freeze, "http://dbpedia.org/ontology/manager".freeze, "http://dbpedia.org/ontology/managerClub".freeze, "http://dbpedia.org/ontology/managerSeason".freeze, "http://dbpedia.org/ontology/managerTitle".freeze, "http://dbpedia.org/ontology/managerYears".freeze, "http://dbpedia.org/ontology/managerYearsEndYear".freeze, "http://dbpedia.org/ontology/managerYearsStartYear".freeze, "http://dbpedia.org/ontology/managingEditor".freeze, "http://dbpedia.org/ontology/mandate".freeze, "http://dbpedia.org/ontology/manufactory".freeze, "http://dbpedia.org/ontology/manufacturer".freeze, "http://dbpedia.org/ontology/map".freeze, "http://dbpedia.org/ontology/mapCaption".freeze, "http://dbpedia.org/ontology/mapDescription".freeze, "http://dbpedia.org/ontology/march".freeze, "http://dbpedia.org/ontology/marketCapitalisation".freeze, "http://dbpedia.org/ontology/mascot".freeze, "http://dbpedia.org/ontology/mass".freeze, "http://dbpedia.org/ontology/massif".freeze, "http://dbpedia.org/ontology/mastersWins".freeze, "http://dbpedia.org/ontology/matchPoint".freeze, "http://dbpedia.org/ontology/material".freeze, "http://dbpedia.org/ontology/max".freeze, "http://dbpedia.org/ontology/maxAbsoluteMagnitude".freeze, "http://dbpedia.org/ontology/maxApparentMagnitude".freeze, "http://dbpedia.org/ontology/maxTime".freeze, "http://dbpedia.org/ontology/maximumArea".freeze, "http://dbpedia.org/ontology/maximumAreaQuote".freeze, "http://dbpedia.org/ontology/maximumBoatBeam".freeze, "http://dbpedia.org/ontology/maximumBoatLength".freeze, "http://dbpedia.org/ontology/maximumDepth".freeze, "http://dbpedia.org/ontology/maximumDepthQuote".freeze, "http://dbpedia.org/ontology/maximumDischarge".freeze, "http://dbpedia.org/ontology/maximumElevation".freeze, "http://dbpedia.org/ontology/maximumInclination".freeze, "http://dbpedia.org/ontology/maximumTemperature".freeze, "http://dbpedia.org/ontology/mayor".freeze, "http://dbpedia.org/ontology/mayorArticle".freeze, "http://dbpedia.org/ontology/mayorCouncillor".freeze, "http://dbpedia.org/ontology/mayorFunction".freeze, "http://dbpedia.org/ontology/mayorMandate".freeze, "http://dbpedia.org/ontology/mayorTitle".freeze, "http://dbpedia.org/ontology/mbaId".freeze, "http://dbpedia.org/ontology/meanRadius".freeze, "http://dbpedia.org/ontology/meanTemperature".freeze, "http://dbpedia.org/ontology/meaning".freeze, "http://dbpedia.org/ontology/measurements".freeze, "http://dbpedia.org/ontology/medalist".freeze, "http://dbpedia.org/ontology/media".freeze, "http://dbpedia.org/ontology/mediaItem".freeze, "http://dbpedia.org/ontology/mediaType".freeze, "http://dbpedia.org/ontology/medicalCause".freeze, "http://dbpedia.org/ontology/medicalDiagnosis".freeze, "http://dbpedia.org/ontology/medicalSpecialty".freeze, "http://dbpedia.org/ontology/medication".freeze, "http://dbpedia.org/ontology/medlinePlus".freeze, "http://dbpedia.org/ontology/meetingBuilding".freeze, "http://dbpedia.org/ontology/meetingCity".freeze, "http://dbpedia.org/ontology/meetingRoad".freeze, "http://dbpedia.org/ontology/meltingPoint".freeze, "http://dbpedia.org/ontology/member".freeze, "http://dbpedia.org/ontology/memberOfParliament".freeze, "http://dbpedia.org/ontology/membership".freeze, "http://dbpedia.org/ontology/membershipAsOf".freeze, "http://dbpedia.org/ontology/mentor".freeze, "http://dbpedia.org/ontology/mergedSettlement".freeze, "http://dbpedia.org/ontology/mergedWith".freeze, "http://dbpedia.org/ontology/mergerDate".freeze, "http://dbpedia.org/ontology/meshId".freeze, "http://dbpedia.org/ontology/meshName".freeze, "http://dbpedia.org/ontology/meshNumber".freeze, "http://dbpedia.org/ontology/messierName".freeze, "http://dbpedia.org/ontology/metropolitanBorough".freeze, "http://dbpedia.org/ontology/mgiid".freeze, "http://dbpedia.org/ontology/militaryBranch".freeze, "http://dbpedia.org/ontology/militaryCommand".freeze, "http://dbpedia.org/ontology/militaryFunction".freeze, "http://dbpedia.org/ontology/militaryGovernment".freeze, "http://dbpedia.org/ontology/militaryRank".freeze, "http://dbpedia.org/ontology/militaryService".freeze, "http://dbpedia.org/ontology/militaryUnit".freeze, "http://dbpedia.org/ontology/militaryUnitSize".freeze, "http://dbpedia.org/ontology/millSpan".freeze, "http://dbpedia.org/ontology/millType".freeze, "http://dbpedia.org/ontology/millsCodeBE".freeze, "http://dbpedia.org/ontology/millsCodeDutch".freeze, "http://dbpedia.org/ontology/millsCodeNL".freeze, "http://dbpedia.org/ontology/millsCodeNLVerdwenen".freeze, "http://dbpedia.org/ontology/millsCodeNLWindmotoren".freeze, "http://dbpedia.org/ontology/min".freeze, "http://dbpedia.org/ontology/minTime".freeze, "http://dbpedia.org/ontology/minimumArea".freeze, "http://dbpedia.org/ontology/minimumAreaQuote".freeze, "http://dbpedia.org/ontology/minimumDischarge".freeze, "http://dbpedia.org/ontology/minimumElevation".freeze, "http://dbpedia.org/ontology/minimumInclination".freeze, "http://dbpedia.org/ontology/minimumTemperature".freeze, "http://dbpedia.org/ontology/minister".freeze, "http://dbpedia.org/ontology/minority".freeze, "http://dbpedia.org/ontology/minorityFloorLeader".freeze, "http://dbpedia.org/ontology/minorityLeader".freeze, "http://dbpedia.org/ontology/mirDockings".freeze, "http://dbpedia.org/ontology/mission".freeze, "http://dbpedia.org/ontology/missionDuration".freeze, "http://dbpedia.org/ontology/missions".freeze, "http://dbpedia.org/ontology/model".freeze, "http://dbpedia.org/ontology/modelEndDate".freeze, "http://dbpedia.org/ontology/modelEndYear".freeze, "http://dbpedia.org/ontology/modelLineVehicle".freeze, "http://dbpedia.org/ontology/modelStartDate".freeze, "http://dbpedia.org/ontology/modelStartYear".freeze, "http://dbpedia.org/ontology/molarMass".freeze, "http://dbpedia.org/ontology/molecularWeight".freeze, "http://dbpedia.org/ontology/monarch".freeze, "http://dbpedia.org/ontology/month".freeze, "http://dbpedia.org/ontology/mood".freeze, "http://dbpedia.org/ontology/mostDownPoint".freeze, "http://dbpedia.org/ontology/mostSuccessfulPlayer".freeze, "http://dbpedia.org/ontology/mostWins".freeze, "http://dbpedia.org/ontology/mother".freeze, "http://dbpedia.org/ontology/motive".freeze, "http://dbpedia.org/ontology/motto".freeze, "http://dbpedia.org/ontology/mount".freeze, "http://dbpedia.org/ontology/mountainRange".freeze, "http://dbpedia.org/ontology/mouthCountry".freeze, "http://dbpedia.org/ontology/mouthDistrict".freeze, "http://dbpedia.org/ontology/mouthElevation".freeze, "http://dbpedia.org/ontology/mouthMountain".freeze, "http://dbpedia.org/ontology/mouthPlace".freeze, "http://dbpedia.org/ontology/mouthPosition".freeze, "http://dbpedia.org/ontology/mouthRegion".freeze, "http://dbpedia.org/ontology/mouthState".freeze, "http://dbpedia.org/ontology/movement".freeze, "http://dbpedia.org/ontology/movie".freeze, "http://dbpedia.org/ontology/mukhtar".freeze, "http://dbpedia.org/ontology/municipality".freeze, "http://dbpedia.org/ontology/municipalityAbsorbedBy".freeze, "http://dbpedia.org/ontology/municipalityCode".freeze, "http://dbpedia.org/ontology/municipalityRenamedTo".freeze, "http://dbpedia.org/ontology/municipalityType".freeze, "http://dbpedia.org/ontology/museum".freeze, "http://dbpedia.org/ontology/museumType".freeze, "http://dbpedia.org/ontology/musicBand".freeze, "http://dbpedia.org/ontology/musicBrainzArtistId".freeze, "http://dbpedia.org/ontology/musicBy".freeze, "http://dbpedia.org/ontology/musicComposer".freeze, "http://dbpedia.org/ontology/musicFormat".freeze, "http://dbpedia.org/ontology/musicFusionGenre".freeze, "http://dbpedia.org/ontology/musicSubgenre".freeze, "http://dbpedia.org/ontology/musicType".freeze, "http://dbpedia.org/ontology/musicalArtist".freeze, "http://dbpedia.org/ontology/musicalBand".freeze, "http://dbpedia.org/ontology/musicalKey".freeze, "http://dbpedia.org/ontology/musicians".freeze, "http://dbpedia.org/ontology/muteCharacterInPlay".freeze, "http://dbpedia.org/ontology/mvp".freeze, "http://dbpedia.org/ontology/mythology".freeze, "http://dbpedia.org/ontology/naacpImageAward".freeze, "http://dbpedia.org/ontology/name".freeze, "http://dbpedia.org/ontology/nameAsOf".freeze, "http://dbpedia.org/ontology/nameDay".freeze, "http://dbpedia.org/ontology/nameInCantoneseChinese".freeze, "http://dbpedia.org/ontology/nameInHangulKorean".freeze, "http://dbpedia.org/ontology/nameInHanjaKorean".freeze, "http://dbpedia.org/ontology/nameInJapanese".freeze, "http://dbpedia.org/ontology/nameInMindongyuChinese".freeze, "http://dbpedia.org/ontology/nameInMinnanyuChinese".freeze, "http://dbpedia.org/ontology/nameInPinyinChinese".freeze, "http://dbpedia.org/ontology/nameInSimplifiedChinese".freeze, "http://dbpedia.org/ontology/nameInTraditionalChinese".freeze, "http://dbpedia.org/ontology/nameInWadeGilesChinese".freeze, "http://dbpedia.org/ontology/namedAfter".freeze, "http://dbpedia.org/ontology/namedByLanguage".freeze, "http://dbpedia.org/ontology/names".freeze, "http://dbpedia.org/ontology/narrator".freeze, "http://dbpedia.org/ontology/nation".freeze, "http://dbpedia.org/ontology/nationalAffiliation".freeze, "http://dbpedia.org/ontology/nationalChampionship".freeze, "http://dbpedia.org/ontology/nationalFilmAward".freeze, "http://dbpedia.org/ontology/nationalOlympicCommittee".freeze, "http://dbpedia.org/ontology/nationalRanking".freeze, "http://dbpedia.org/ontology/nationalSelection".freeze, "http://dbpedia.org/ontology/nationalTeam".freeze, "http://dbpedia.org/ontology/nationalTeamMatchPoint".freeze, "http://dbpedia.org/ontology/nationalTeamYear".freeze, "http://dbpedia.org/ontology/nationalTopographicSystemMapNumber".freeze, "http://dbpedia.org/ontology/nationalTournament".freeze, "http://dbpedia.org/ontology/nationalTournamentBronze".freeze, "http://dbpedia.org/ontology/nationalTournamentGold".freeze, "http://dbpedia.org/ontology/nationalTournamentSilver".freeze, "http://dbpedia.org/ontology/nationalYears".freeze, "http://dbpedia.org/ontology/nationality".freeze, "http://dbpedia.org/ontology/ncaaSeason".freeze, "http://dbpedia.org/ontology/ncaaTeam".freeze, "http://dbpedia.org/ontology/ncbhof".freeze, "http://dbpedia.org/ontology/nciId".freeze, "http://dbpedia.org/ontology/ndlId".freeze, "http://dbpedia.org/ontology/nearestCity".freeze, "http://dbpedia.org/ontology/neighboringMunicipality".freeze, "http://dbpedia.org/ontology/neighbourConstellations".freeze, "http://dbpedia.org/ontology/neighbourRegion".freeze, "http://dbpedia.org/ontology/neighbourhood".freeze, "http://dbpedia.org/ontology/nerve".freeze, "http://dbpedia.org/ontology/netIncome".freeze, "http://dbpedia.org/ontology/network".freeze, "http://dbpedia.org/ontology/networth".freeze, "http://dbpedia.org/ontology/newspaper".freeze, "http://dbpedia.org/ontology/nextEntity".freeze, "http://dbpedia.org/ontology/nextEvent".freeze, "http://dbpedia.org/ontology/nextMission".freeze, "http://dbpedia.org/ontology/nflCode".freeze, "http://dbpedia.org/ontology/nflSeason".freeze, "http://dbpedia.org/ontology/nflTeam".freeze, "http://dbpedia.org/ontology/ngcName".freeze, "http://dbpedia.org/ontology/nisCode".freeze, "http://dbpedia.org/ontology/nlaId".freeze, "http://dbpedia.org/ontology/nndbId".freeze, "http://dbpedia.org/ontology/noContest".freeze, "http://dbpedia.org/ontology/nobelLaureates".freeze, "http://dbpedia.org/ontology/nominee".freeze, "http://dbpedia.org/ontology/nonFictionSubject".freeze, "http://dbpedia.org/ontology/nonProfessionalCareer".freeze, "http://dbpedia.org/ontology/nord".freeze, "http://dbpedia.org/ontology/northEastPlace".freeze, "http://dbpedia.org/ontology/northPlace".freeze, "http://dbpedia.org/ontology/northWestPlace".freeze, "http://dbpedia.org/ontology/notSolubleIn".freeze, "http://dbpedia.org/ontology/notableCommander".freeze, "http://dbpedia.org/ontology/notableFeatures".freeze, "http://dbpedia.org/ontology/notableIdea".freeze, "http://dbpedia.org/ontology/notableStudent".freeze, "http://dbpedia.org/ontology/notableWine".freeze, "http://dbpedia.org/ontology/notableWork".freeze, "http://dbpedia.org/ontology/note".freeze, "http://dbpedia.org/ontology/noteOnPlaceOfBurial".freeze, "http://dbpedia.org/ontology/noteOnRestingPlace".freeze, "http://dbpedia.org/ontology/notes".freeze, "http://dbpedia.org/ontology/notifyDate".freeze, "http://dbpedia.org/ontology/novel".freeze, "http://dbpedia.org/ontology/nrhpReferenceNumber".freeze, "http://dbpedia.org/ontology/nrhpType".freeze, "http://dbpedia.org/ontology/nssdcId".freeze, "http://dbpedia.org/ontology/number".freeze, "http://dbpedia.org/ontology/numberBuilt".freeze, "http://dbpedia.org/ontology/numberOfAcademicStaff".freeze, "http://dbpedia.org/ontology/numberOfAlbums".freeze, "http://dbpedia.org/ontology/numberOfArrondissement".freeze, "http://dbpedia.org/ontology/numberOfBombs".freeze, "http://dbpedia.org/ontology/numberOfBronzeMedalsWon".freeze, "http://dbpedia.org/ontology/numberOfCanton".freeze, "http://dbpedia.org/ontology/numberOfCantons".freeze, "http://dbpedia.org/ontology/numberOfCapitalDeputies".freeze, "http://dbpedia.org/ontology/numberOfCity".freeze, "http://dbpedia.org/ontology/numberOfClasses".freeze, "http://dbpedia.org/ontology/numberOfClassesWithResource".freeze, "http://dbpedia.org/ontology/numberOfClassrooms".freeze, "http://dbpedia.org/ontology/numberOfClubs".freeze, "http://dbpedia.org/ontology/numberOfCollectionItems".freeze, "http://dbpedia.org/ontology/numberOfCompetitors".freeze, "http://dbpedia.org/ontology/numberOfCounties".freeze, "http://dbpedia.org/ontology/numberOfCountries".freeze, "http://dbpedia.org/ontology/numberOfCrew".freeze, "http://dbpedia.org/ontology/numberOfDeaths".freeze, "http://dbpedia.org/ontology/numberOfDependency".freeze, "http://dbpedia.org/ontology/numberOfDisambiguates".freeze, "http://dbpedia.org/ontology/numberOfDistrict".freeze, "http://dbpedia.org/ontology/numberOfDistricts".freeze, "http://dbpedia.org/ontology/numberOfDoctoralStudents".freeze, "http://dbpedia.org/ontology/numberOfDoors".freeze, "http://dbpedia.org/ontology/numberOfEmployees".freeze, "http://dbpedia.org/ontology/numberOfEntrances".freeze, "http://dbpedia.org/ontology/numberOfEpisodes".freeze, "http://dbpedia.org/ontology/numberOfFederalDeputies".freeze, "http://dbpedia.org/ontology/numberOfFilms".freeze, "http://dbpedia.org/ontology/numberOfGoals".freeze, "http://dbpedia.org/ontology/numberOfGoldMedalsWon".freeze, "http://dbpedia.org/ontology/numberOfGraduateStudents".freeze, "http://dbpedia.org/ontology/numberOfGraves".freeze, "http://dbpedia.org/ontology/numberOfHoles".freeze, "http://dbpedia.org/ontology/numberOfHouses".freeze, "http://dbpedia.org/ontology/numberOfIndegree".freeze, "http://dbpedia.org/ontology/numberOfIntercommunality".freeze, "http://dbpedia.org/ontology/numberOfIsland".freeze, "http://dbpedia.org/ontology/numberOfIslands".freeze, "http://dbpedia.org/ontology/numberOfLanes".freeze, "http://dbpedia.org/ontology/numberOfLaps".freeze, "http://dbpedia.org/ontology/numberOfLaunches".freeze, "http://dbpedia.org/ontology/numberOfLawyers".freeze, "http://dbpedia.org/ontology/numberOfLifts".freeze, "http://dbpedia.org/ontology/numberOfLines".freeze, "http://dbpedia.org/ontology/numberOfLiveAlbums".freeze, "http://dbpedia.org/ontology/numberOfLocations".freeze, "http://dbpedia.org/ontology/numberOfMatches".freeze, "http://dbpedia.org/ontology/numberOfMembers".freeze, "http://dbpedia.org/ontology/numberOfMembersAsOf".freeze, "http://dbpedia.org/ontology/numberOfMinistries".freeze, "http://dbpedia.org/ontology/numberOfMunicipalities".freeze, "http://dbpedia.org/ontology/numberOfMusicalArtistEntities".freeze, "http://dbpedia.org/ontology/numberOfMusicalArtistInstrument".freeze, "http://dbpedia.org/ontology/numberOfMusicalArtistStyle".freeze, "http://dbpedia.org/ontology/numberOfNeighbourhood".freeze, "http://dbpedia.org/ontology/numberOfNewlyIntroducedSports".freeze, "http://dbpedia.org/ontology/numberOfOffices".freeze, "http://dbpedia.org/ontology/numberOfOfficials".freeze, "http://dbpedia.org/ontology/numberOfOrbits".freeze, "http://dbpedia.org/ontology/numberOfOutdegree".freeze, "http://dbpedia.org/ontology/numberOfPads".freeze, "http://dbpedia.org/ontology/numberOfPages".freeze, "http://dbpedia.org/ontology/numberOfParkingSpaces".freeze, "http://dbpedia.org/ontology/numberOfParticipatingAthletes".freeze, "http://dbpedia.org/ontology/numberOfParticipatingFemaleAthletes".freeze, "http://dbpedia.org/ontology/numberOfParticipatingMaleAthletes".freeze, "http://dbpedia.org/ontology/numberOfParticipatingNations".freeze, "http://dbpedia.org/ontology/numberOfPassengers".freeze, "http://dbpedia.org/ontology/numberOfPeopleAttending".freeze, "http://dbpedia.org/ontology/numberOfPeopleLicensed".freeze, "http://dbpedia.org/ontology/numberOfPersonBornInPlace".freeze, "http://dbpedia.org/ontology/numberOfPersonEntities".freeze, "http://dbpedia.org/ontology/numberOfPersonFromUniversity".freeze, "http://dbpedia.org/ontology/numberOfPersonInOccupation".freeze, "http://dbpedia.org/ontology/numberOfPiersInWater".freeze, "http://dbpedia.org/ontology/numberOfPixels".freeze, "http://dbpedia.org/ontology/numberOfPlatformLevels".freeze, "http://dbpedia.org/ontology/numberOfPlayers".freeze, "http://dbpedia.org/ontology/numberOfPostgraduateStudents".freeze, "http://dbpedia.org/ontology/numberOfPredicates".freeze, "http://dbpedia.org/ontology/numberOfProfessionals".freeze, "http://dbpedia.org/ontology/numberOfProperties".freeze, "http://dbpedia.org/ontology/numberOfPropertiesUsed".freeze, "http://dbpedia.org/ontology/numberOfReactors".freeze, "http://dbpedia.org/ontology/numberOfRedirectedResource".freeze, "http://dbpedia.org/ontology/numberOfResource".freeze, "http://dbpedia.org/ontology/numberOfResourceOfClass".freeze, "http://dbpedia.org/ontology/numberOfResourceOfType".freeze, "http://dbpedia.org/ontology/numberOfResourceWithType".freeze, "http://dbpedia.org/ontology/numberOfRestaurants".freeze, "http://dbpedia.org/ontology/numberOfRockets".freeze, "http://dbpedia.org/ontology/numberOfRooms".freeze, "http://dbpedia.org/ontology/numberOfRun".freeze, "http://dbpedia.org/ontology/numberOfSeasons".freeze, "http://dbpedia.org/ontology/numberOfSeats".freeze, "http://dbpedia.org/ontology/numberOfSeatsInParliament".freeze, "http://dbpedia.org/ontology/numberOfSettlement".freeze, "http://dbpedia.org/ontology/numberOfSettlementsInCountry".freeze, "http://dbpedia.org/ontology/numberOfSilverMedalsWon".freeze, "http://dbpedia.org/ontology/numberOfSoccerPlayerInCountryRepre".freeze, "http://dbpedia.org/ontology/numberOfSoccerPlayersBornInPlace".freeze, "http://dbpedia.org/ontology/numberOfSoccerPlayersInTeam".freeze, "http://dbpedia.org/ontology/numberOfSpans".freeze, "http://dbpedia.org/ontology/numberOfSpeakers".freeze, "http://dbpedia.org/ontology/numberOfSports".freeze, "http://dbpedia.org/ontology/numberOfSportsEvents".freeze, "http://dbpedia.org/ontology/numberOfStaff".freeze, "http://dbpedia.org/ontology/numberOfStars".freeze, "http://dbpedia.org/ontology/numberOfStateDeputies".freeze, "http://dbpedia.org/ontology/numberOfStations".freeze, "http://dbpedia.org/ontology/numberOfStores".freeze, "http://dbpedia.org/ontology/numberOfStudents".freeze, "http://dbpedia.org/ontology/numberOfStudioAlbums".freeze, "http://dbpedia.org/ontology/numberOfSuites".freeze, "http://dbpedia.org/ontology/numberOfTeams".freeze, "http://dbpedia.org/ontology/numberOfTracks".freeze, "http://dbpedia.org/ontology/numberOfTrails".freeze, "http://dbpedia.org/ontology/numberOfTriples".freeze, "http://dbpedia.org/ontology/numberOfTurns".freeze, "http://dbpedia.org/ontology/numberOfUndergraduateStudents".freeze, "http://dbpedia.org/ontology/numberOfUniqeResources".freeze, "http://dbpedia.org/ontology/numberOfUseOfProperty".freeze, "http://dbpedia.org/ontology/numberOfVehicles".freeze, "http://dbpedia.org/ontology/numberOfVillages".freeze, "http://dbpedia.org/ontology/numberOfVineyards".freeze, "http://dbpedia.org/ontology/numberOfVisitors".freeze, "http://dbpedia.org/ontology/numberOfVisitorsAsOf".freeze, "http://dbpedia.org/ontology/numberOfVolumes".freeze, "http://dbpedia.org/ontology/numberOfVolunteers".freeze, "http://dbpedia.org/ontology/numberOfWineries".freeze, "http://dbpedia.org/ontology/numberSold".freeze, "http://dbpedia.org/ontology/nutsCode".freeze, "http://dbpedia.org/ontology/observatory".freeze, "http://dbpedia.org/ontology/occupation".freeze, "http://dbpedia.org/ontology/oclc".freeze, "http://dbpedia.org/ontology/odor".freeze, "http://dbpedia.org/ontology/offeredClasses".freeze, "http://dbpedia.org/ontology/office".freeze, "http://dbpedia.org/ontology/officerInCharge".freeze, "http://dbpedia.org/ontology/officialLanguage".freeze, "http://dbpedia.org/ontology/officialName".freeze, "http://dbpedia.org/ontology/officialOpenedBy".freeze, "http://dbpedia.org/ontology/officialSchoolColour".freeze, "http://dbpedia.org/ontology/ofsCode".freeze, "http://dbpedia.org/ontology/oilSystem".freeze, "http://dbpedia.org/ontology/okatoCode".freeze, "http://dbpedia.org/ontology/oldDistrict".freeze, "http://dbpedia.org/ontology/oldName".freeze, "http://dbpedia.org/ontology/oldProvince".freeze, "http://dbpedia.org/ontology/oldTeamCoached".freeze, "http://dbpedia.org/ontology/oldcode".freeze, "http://dbpedia.org/ontology/olivierAward".freeze, "http://dbpedia.org/ontology/olympicGames".freeze, "http://dbpedia.org/ontology/olympicGamesBronze".freeze, "http://dbpedia.org/ontology/olympicGamesGold".freeze, "http://dbpedia.org/ontology/olympicGamesSilver".freeze, "http://dbpedia.org/ontology/olympicGamesWins".freeze, "http://dbpedia.org/ontology/olympicOathSwornBy".freeze, "http://dbpedia.org/ontology/olympicOathSwornByAthlete".freeze, "http://dbpedia.org/ontology/olympicOathSwornByJudge".freeze, "http://dbpedia.org/ontology/omim".freeze, "http://dbpedia.org/ontology/onChromosome".freeze, "http://dbpedia.org/ontology/ons".freeze, "http://dbpedia.org/ontology/openAccessContent".freeze, "http://dbpedia.org/ontology/openingDate".freeze, "http://dbpedia.org/ontology/openingFilm".freeze, "http://dbpedia.org/ontology/openingTheme".freeze, "http://dbpedia.org/ontology/openingYear".freeze, "http://dbpedia.org/ontology/operatingIncome".freeze, "http://dbpedia.org/ontology/operatingSystem".freeze, "http://dbpedia.org/ontology/operator".freeze, "http://dbpedia.org/ontology/opponent".freeze, "http://dbpedia.org/ontology/opponents".freeze, "http://dbpedia.org/ontology/orbitalEccentricity".freeze, "http://dbpedia.org/ontology/orbitalFlights".freeze, "http://dbpedia.org/ontology/orbitalInclination".freeze, "http://dbpedia.org/ontology/orbitalPeriod".freeze, "http://dbpedia.org/ontology/orbits".freeze, "http://dbpedia.org/ontology/orcidId".freeze, "http://dbpedia.org/ontology/order".freeze, "http://dbpedia.org/ontology/orderDate".freeze, "http://dbpedia.org/ontology/orderInOffice".freeze, "http://dbpedia.org/ontology/ordination".freeze, "http://dbpedia.org/ontology/organ".freeze, "http://dbpedia.org/ontology/organSystem".freeze, "http://dbpedia.org/ontology/organisation".freeze, "http://dbpedia.org/ontology/organisationMember".freeze, "http://dbpedia.org/ontology/orientation".freeze, "http://dbpedia.org/ontology/origin".freeze, "http://dbpedia.org/ontology/originalDanseCompetition".freeze, "http://dbpedia.org/ontology/originalDanseScore".freeze, "http://dbpedia.org/ontology/originalEndPoint".freeze, "http://dbpedia.org/ontology/originalLanguage".freeze, "http://dbpedia.org/ontology/originalMaximumBoatBeam".freeze, "http://dbpedia.org/ontology/originalMaximumBoatLength".freeze, "http://dbpedia.org/ontology/originalName".freeze, "http://dbpedia.org/ontology/originalStartPoint".freeze, "http://dbpedia.org/ontology/originalTitle".freeze, "http://dbpedia.org/ontology/originallyUsedFor".freeze, "http://dbpedia.org/ontology/origo".freeze, "http://dbpedia.org/ontology/orogeny".freeze, "http://dbpedia.org/ontology/orpha".freeze, "http://dbpedia.org/ontology/orthologousGene".freeze, "http://dbpedia.org/ontology/other".freeze, "http://dbpedia.org/ontology/otherActivity".freeze, "http://dbpedia.org/ontology/otherAppearances".freeze, "http://dbpedia.org/ontology/otherChannel".freeze, "http://dbpedia.org/ontology/otherFamilyBranch".freeze, "http://dbpedia.org/ontology/otherFuelType".freeze, "http://dbpedia.org/ontology/otherFunction".freeze, "http://dbpedia.org/ontology/otherInformation".freeze, "http://dbpedia.org/ontology/otherLanguage".freeze, "http://dbpedia.org/ontology/otherMedia".freeze, "http://dbpedia.org/ontology/otherName".freeze, "http://dbpedia.org/ontology/otherOccupation".freeze, "http://dbpedia.org/ontology/otherParty".freeze, "http://dbpedia.org/ontology/otherServingLines".freeze, "http://dbpedia.org/ontology/otherSportsExperience".freeze, "http://dbpedia.org/ontology/otherWins".freeze, "http://dbpedia.org/ontology/outflow".freeze, "http://dbpedia.org/ontology/output".freeze, "http://dbpedia.org/ontology/outskirts".freeze, "http://dbpedia.org/ontology/overallRecord".freeze, "http://dbpedia.org/ontology/oversight".freeze, "http://dbpedia.org/ontology/owner".freeze, "http://dbpedia.org/ontology/owningCompany".freeze, "http://dbpedia.org/ontology/owningOrganisation".freeze, "http://dbpedia.org/ontology/owns".freeze, "http://dbpedia.org/ontology/painter".freeze, "http://dbpedia.org/ontology/parent".freeze, "http://dbpedia.org/ontology/parentCompany".freeze, "http://dbpedia.org/ontology/parentMountainPeak".freeze, "http://dbpedia.org/ontology/parentOrganisation".freeze, "http://dbpedia.org/ontology/parentheses".freeze, "http://dbpedia.org/ontology/parish".freeze, "http://dbpedia.org/ontology/parkingInformation".freeze, "http://dbpedia.org/ontology/parkingLotsCars".freeze, "http://dbpedia.org/ontology/parkingLotsTrucks".freeze, "http://dbpedia.org/ontology/parliament".freeze, "http://dbpedia.org/ontology/parliamentType".freeze, "http://dbpedia.org/ontology/parliamentaryGroup".freeze, "http://dbpedia.org/ontology/part".freeze, "http://dbpedia.org/ontology/partialFailedLaunches".freeze, "http://dbpedia.org/ontology/participant".freeze, "http://dbpedia.org/ontology/participatingIn".freeze, "http://dbpedia.org/ontology/particularSign".freeze, "http://dbpedia.org/ontology/partitionCoefficient".freeze, "http://dbpedia.org/ontology/partner".freeze, "http://dbpedia.org/ontology/party".freeze, "http://dbpedia.org/ontology/partyNumber".freeze, "http://dbpedia.org/ontology/passengersPerDay".freeze, "http://dbpedia.org/ontology/passengersPerYear".freeze, "http://dbpedia.org/ontology/passengersUsedSystem".freeze, "http://dbpedia.org/ontology/pastMember".freeze, "http://dbpedia.org/ontology/pastor".freeze, "http://dbpedia.org/ontology/patent".freeze, "http://dbpedia.org/ontology/patron".freeze, "http://dbpedia.org/ontology/patronSaint".freeze, "http://dbpedia.org/ontology/pccSecretary".freeze, "http://dbpedia.org/ontology/pdb".freeze, "http://dbpedia.org/ontology/peabodyAward".freeze, "http://dbpedia.org/ontology/penaltiesTeamA".freeze, "http://dbpedia.org/ontology/penaltiesTeamB".freeze, "http://dbpedia.org/ontology/penaltyScore".freeze, "http://dbpedia.org/ontology/pendamicDeaths".freeze, "http://dbpedia.org/ontology/penisLength".freeze, "http://dbpedia.org/ontology/peopleName".freeze, "http://dbpedia.org/ontology/perCapitaIncome".freeze, "http://dbpedia.org/ontology/perCapitaIncomeAsOf".freeze, "http://dbpedia.org/ontology/perCapitaIncomeRank".freeze, "http://dbpedia.org/ontology/percentage".freeze, "http://dbpedia.org/ontology/percentageAlcohol".freeze, "http://dbpedia.org/ontology/percentageFat".freeze, "http://dbpedia.org/ontology/percentageLiteracyMen".freeze, "http://dbpedia.org/ontology/percentageLiteracyWomen".freeze, "http://dbpedia.org/ontology/percentageLiterate".freeze, "http://dbpedia.org/ontology/percentageOfAreaWater".freeze, "http://dbpedia.org/ontology/performer".freeze, "http://dbpedia.org/ontology/periapsis".freeze, "http://dbpedia.org/ontology/perifocus".freeze, "http://dbpedia.org/ontology/perimeter".freeze, "http://dbpedia.org/ontology/period".freeze, "http://dbpedia.org/ontology/perpetrator".freeze, "http://dbpedia.org/ontology/person".freeze, "http://dbpedia.org/ontology/personFunction".freeze, "http://dbpedia.org/ontology/personName".freeze, "http://dbpedia.org/ontology/pgaWins".freeze, "http://dbpedia.org/ontology/philosophicalSchool".freeze, "http://dbpedia.org/ontology/phonePrefix".freeze, "http://dbpedia.org/ontology/phonePrefixLabel".freeze, "http://dbpedia.org/ontology/photographer".freeze, "http://dbpedia.org/ontology/phylum".freeze, "http://dbpedia.org/ontology/picture".freeze, "http://dbpedia.org/ontology/pictureDescription".freeze, "http://dbpedia.org/ontology/pictureFormat".freeze, "http://dbpedia.org/ontology/picturesCommonsCategory".freeze, "http://dbpedia.org/ontology/piercing".freeze, "http://dbpedia.org/ontology/pisciculturalPopulation".freeze, "http://dbpedia.org/ontology/pistonStroke".freeze, "http://dbpedia.org/ontology/place".freeze, "http://dbpedia.org/ontology/placeOfBurial".freeze, "http://dbpedia.org/ontology/placeOfWorship".freeze, "http://dbpedia.org/ontology/plant".freeze, "http://dbpedia.org/ontology/playRole".freeze, "http://dbpedia.org/ontology/playerInTeam".freeze, "http://dbpedia.org/ontology/playerSeason".freeze, "http://dbpedia.org/ontology/playerStatus".freeze, "http://dbpedia.org/ontology/playingTime".freeze, "http://dbpedia.org/ontology/plays".freeze, "http://dbpedia.org/ontology/pluviometry".freeze, "http://dbpedia.org/ontology/podium".freeze, "http://dbpedia.org/ontology/podiums".freeze, "http://dbpedia.org/ontology/pole".freeze, "http://dbpedia.org/ontology/poleDriver".freeze, "http://dbpedia.org/ontology/poleDriverCountry".freeze, "http://dbpedia.org/ontology/poleDriverTeam".freeze, "http://dbpedia.org/ontology/polePosition".freeze, "http://dbpedia.org/ontology/poles".freeze, "http://dbpedia.org/ontology/policeName".freeze, "http://dbpedia.org/ontology/polishFilmAward".freeze, "http://dbpedia.org/ontology/politicGovernmentDepartment".freeze, "http://dbpedia.org/ontology/politicalFunction".freeze, "http://dbpedia.org/ontology/politicalLeader".freeze, "http://dbpedia.org/ontology/politicalMajority".freeze, "http://dbpedia.org/ontology/politicalPartyInLegislature".freeze, "http://dbpedia.org/ontology/politicalPartyOfLeader".freeze, "http://dbpedia.org/ontology/politicalSeats".freeze, "http://dbpedia.org/ontology/politician".freeze, "http://dbpedia.org/ontology/popularVote".freeze, "http://dbpedia.org/ontology/population".freeze, "http://dbpedia.org/ontology/populationAsOf".freeze, "http://dbpedia.org/ontology/populationDensity".freeze, "http://dbpedia.org/ontology/populationMetro".freeze, "http://dbpedia.org/ontology/populationMetroDensity".freeze, "http://dbpedia.org/ontology/populationPctChildren".freeze, "http://dbpedia.org/ontology/populationPctMen".freeze, "http://dbpedia.org/ontology/populationPctWomen".freeze, "http://dbpedia.org/ontology/populationPlace".freeze, "http://dbpedia.org/ontology/populationQuote".freeze, "http://dbpedia.org/ontology/populationRural".freeze, "http://dbpedia.org/ontology/populationRuralDensity".freeze, "http://dbpedia.org/ontology/populationTotal".freeze, "http://dbpedia.org/ontology/populationTotalRanking".freeze, "http://dbpedia.org/ontology/populationTotalReference".freeze, "http://dbpedia.org/ontology/populationUrban".freeze, "http://dbpedia.org/ontology/populationUrbanDensity".freeze, "http://dbpedia.org/ontology/populationYear".freeze, "http://dbpedia.org/ontology/portfolio".freeze, "http://dbpedia.org/ontology/portrayer".freeze, "http://dbpedia.org/ontology/position".freeze, "http://dbpedia.org/ontology/postalCode".freeze, "http://dbpedia.org/ontology/power".freeze, "http://dbpedia.org/ontology/powerOutput".freeze, "http://dbpedia.org/ontology/powerType".freeze, "http://dbpedia.org/ontology/precursor".freeze, "http://dbpedia.org/ontology/predecessor".freeze, "http://dbpedia.org/ontology/prefaceBy".freeze, "http://dbpedia.org/ontology/prefect".freeze, "http://dbpedia.org/ontology/prefectMandate".freeze, "http://dbpedia.org/ontology/prefecture".freeze, "http://dbpedia.org/ontology/prefix".freeze, "http://dbpedia.org/ontology/premiereDate".freeze, "http://dbpedia.org/ontology/premierePlace".freeze, "http://dbpedia.org/ontology/premiereYear".freeze, "http://dbpedia.org/ontology/presentMunicipality".freeze, "http://dbpedia.org/ontology/presentName".freeze, "http://dbpedia.org/ontology/presenter".freeze, "http://dbpedia.org/ontology/president".freeze, "http://dbpedia.org/ontology/presidentGeneralCouncil".freeze, "http://dbpedia.org/ontology/presidentGeneralCouncilMandate".freeze, "http://dbpedia.org/ontology/presidentRegionalCouncil".freeze, "http://dbpedia.org/ontology/presidentRegionalCouncilMandate".freeze, "http://dbpedia.org/ontology/previousDemographics".freeze, "http://dbpedia.org/ontology/previousEditor".freeze, "http://dbpedia.org/ontology/previousEntity".freeze, "http://dbpedia.org/ontology/previousEvent".freeze, "http://dbpedia.org/ontology/previousInfrastructure".freeze, "http://dbpedia.org/ontology/previousMission".freeze, "http://dbpedia.org/ontology/previousName".freeze, "http://dbpedia.org/ontology/previousPopulation".freeze, "http://dbpedia.org/ontology/previousPopulationTotal".freeze, "http://dbpedia.org/ontology/previousWork".freeze, "http://dbpedia.org/ontology/price".freeze, "http://dbpedia.org/ontology/primaryFuelType".freeze, "http://dbpedia.org/ontology/primate".freeze, "http://dbpedia.org/ontology/primeMinister".freeze, "http://dbpedia.org/ontology/primogenitor".freeze, "http://dbpedia.org/ontology/principal".freeze, "http://dbpedia.org/ontology/principalArea".freeze, "http://dbpedia.org/ontology/principalEngineer".freeze, "http://dbpedia.org/ontology/proTeam".freeze, "http://dbpedia.org/ontology/probowlPick".freeze, "http://dbpedia.org/ontology/procedure".freeze, "http://dbpedia.org/ontology/producedBy".freeze, "http://dbpedia.org/ontology/producer".freeze, "http://dbpedia.org/ontology/produces".freeze, "http://dbpedia.org/ontology/product".freeze, "http://dbpedia.org/ontology/productShape".freeze, "http://dbpedia.org/ontology/production".freeze, "http://dbpedia.org/ontology/productionCompany".freeze, "http://dbpedia.org/ontology/productionEndDate".freeze, "http://dbpedia.org/ontology/productionEndYear".freeze, "http://dbpedia.org/ontology/productionStartDate".freeze, "http://dbpedia.org/ontology/productionStartYear".freeze, "http://dbpedia.org/ontology/productionYears".freeze, "http://dbpedia.org/ontology/profession".freeze, "http://dbpedia.org/ontology/programCost".freeze, "http://dbpedia.org/ontology/programmeFormat".freeze, "http://dbpedia.org/ontology/programmingLanguage".freeze, "http://dbpedia.org/ontology/project".freeze, "http://dbpedia.org/ontology/projectBudgetFunding".freeze, "http://dbpedia.org/ontology/projectBudgetTotal".freeze, "http://dbpedia.org/ontology/projectCoordinator".freeze, "http://dbpedia.org/ontology/projectEndDate".freeze, "http://dbpedia.org/ontology/projectKeyword".freeze, "http://dbpedia.org/ontology/projectObjective".freeze, "http://dbpedia.org/ontology/projectParticipant".freeze, "http://dbpedia.org/ontology/projectReferenceID".freeze, "http://dbpedia.org/ontology/projectStartDate".freeze, "http://dbpedia.org/ontology/projectType".freeze, "http://dbpedia.org/ontology/prominence".freeze, "http://dbpedia.org/ontology/promotion".freeze, "http://dbpedia.org/ontology/pronunciation".freeze, "http://dbpedia.org/ontology/prospectLeague".freeze, "http://dbpedia.org/ontology/prospectTeam".freeze, "http://dbpedia.org/ontology/protectionStatus".freeze, "http://dbpedia.org/ontology/protein".freeze, "http://dbpedia.org/ontology/protestantPercentage".freeze, "http://dbpedia.org/ontology/provCode".freeze, "http://dbpedia.org/ontology/provides".freeze, "http://dbpedia.org/ontology/province".freeze, "http://dbpedia.org/ontology/provinceIsoCode".freeze, "http://dbpedia.org/ontology/provinceLink".freeze, "http://dbpedia.org/ontology/provost".freeze, "http://dbpedia.org/ontology/pseudonym".freeze, "http://dbpedia.org/ontology/pubchem".freeze, "http://dbpedia.org/ontology/publication".freeze, "http://dbpedia.org/ontology/publicationDate".freeze, "http://dbpedia.org/ontology/publiclyAccessible".freeze, "http://dbpedia.org/ontology/publisher".freeze, "http://dbpedia.org/ontology/purchasingPowerParity".freeze, "http://dbpedia.org/ontology/purchasingPowerParityRank".freeze, "http://dbpedia.org/ontology/purchasingPowerParityYear".freeze, "http://dbpedia.org/ontology/purpose".freeze, "http://dbpedia.org/ontology/qatarClassic".freeze, "http://dbpedia.org/ontology/quebecerTitle".freeze, "http://dbpedia.org/ontology/quotation".freeze, "http://dbpedia.org/ontology/quote".freeze, "http://dbpedia.org/ontology/ra".freeze, "http://dbpedia.org/ontology/race".freeze, "http://dbpedia.org/ontology/raceHorse".freeze, "http://dbpedia.org/ontology/raceLength".freeze, "http://dbpedia.org/ontology/raceResult".freeze, "http://dbpedia.org/ontology/raceTrack".freeze, "http://dbpedia.org/ontology/raceWins".freeze, "http://dbpedia.org/ontology/races".freeze, "http://dbpedia.org/ontology/racketCatching".freeze, "http://dbpedia.org/ontology/radio".freeze, "http://dbpedia.org/ontology/radioStation".freeze, "http://dbpedia.org/ontology/radius_ly".freeze, "http://dbpedia.org/ontology/railGauge".freeze, "http://dbpedia.org/ontology/railwayLineUsingTunnel".freeze, "http://dbpedia.org/ontology/railwayPlatforms".freeze, "http://dbpedia.org/ontology/railwayRollingStock".freeze, "http://dbpedia.org/ontology/range".freeze, "http://dbpedia.org/ontology/rank".freeze, "http://dbpedia.org/ontology/rankAgreement".freeze, "http://dbpedia.org/ontology/rankArea".freeze, "http://dbpedia.org/ontology/rankInFinalMedalCount".freeze, "http://dbpedia.org/ontology/rankPopulation".freeze, "http://dbpedia.org/ontology/ranking".freeze, "http://dbpedia.org/ontology/rankingWins".freeze, "http://dbpedia.org/ontology/rankingsDoubles".freeze, "http://dbpedia.org/ontology/rankingsSingles".freeze, "http://dbpedia.org/ontology/rating".freeze, "http://dbpedia.org/ontology/ratio".freeze, "http://dbpedia.org/ontology/rebuildDate".freeze, "http://dbpedia.org/ontology/rebuilder".freeze, "http://dbpedia.org/ontology/rebuildingDate".freeze, "http://dbpedia.org/ontology/rebuildingYear".freeze, "http://dbpedia.org/ontology/recentWinner".freeze, "http://dbpedia.org/ontology/recommissioningDate".freeze, "http://dbpedia.org/ontology/recordDate".freeze, "http://dbpedia.org/ontology/recordLabel".freeze, "http://dbpedia.org/ontology/recordedIn".freeze, "http://dbpedia.org/ontology/recoveryCases".freeze, "http://dbpedia.org/ontology/rector".freeze, "http://dbpedia.org/ontology/redListIdNL".freeze, "http://dbpedia.org/ontology/redLongDistancePisteNumber".freeze, "http://dbpedia.org/ontology/redSkiPisteNumber".freeze, "http://dbpedia.org/ontology/redline".freeze, "http://dbpedia.org/ontology/refcul".freeze, "http://dbpedia.org/ontology/reference".freeze, "http://dbpedia.org/ontology/reffBourgmestre".freeze, "http://dbpedia.org/ontology/refgen".freeze, "http://dbpedia.org/ontology/refgeo".freeze, "http://dbpedia.org/ontology/refpol".freeze, "http://dbpedia.org/ontology/refseq".freeze, "http://dbpedia.org/ontology/refseqmrna".freeze, "http://dbpedia.org/ontology/refseqprotein".freeze, "http://dbpedia.org/ontology/regency".freeze, "http://dbpedia.org/ontology/regentOf".freeze, "http://dbpedia.org/ontology/regime".freeze, "http://dbpedia.org/ontology/region".freeze, "http://dbpedia.org/ontology/regionLink".freeze, "http://dbpedia.org/ontology/regionServed".freeze, "http://dbpedia.org/ontology/regionType".freeze, "http://dbpedia.org/ontology/regionalCouncil".freeze, "http://dbpedia.org/ontology/regionalLanguage".freeze, "http://dbpedia.org/ontology/regionalPrefecture".freeze, "http://dbpedia.org/ontology/registration".freeze, "http://dbpedia.org/ontology/registry".freeze, "http://dbpedia.org/ontology/registryNumber".freeze, "http://dbpedia.org/ontology/reign".freeze, "http://dbpedia.org/ontology/reignName".freeze, "http://dbpedia.org/ontology/reigningPope".freeze, "http://dbpedia.org/ontology/related".freeze, "http://dbpedia.org/ontology/relatedFunctions".freeze, "http://dbpedia.org/ontology/relatedMeanOfTransportation".freeze, "http://dbpedia.org/ontology/relatedPlaces".freeze, "http://dbpedia.org/ontology/relation".freeze, "http://dbpedia.org/ontology/relative".freeze, "http://dbpedia.org/ontology/relativeAtomicMass".freeze, "http://dbpedia.org/ontology/releaseDate".freeze, "http://dbpedia.org/ontology/releaseLocation".freeze, "http://dbpedia.org/ontology/relics".freeze, "http://dbpedia.org/ontology/relief".freeze, "http://dbpedia.org/ontology/religion".freeze, "http://dbpedia.org/ontology/religiousHead".freeze, "http://dbpedia.org/ontology/religiousHeadLabel".freeze, "http://dbpedia.org/ontology/religiousOrder".freeze, "http://dbpedia.org/ontology/reopened".freeze, "http://dbpedia.org/ontology/reopeningDate".freeze, "http://dbpedia.org/ontology/reopeningYear".freeze, "http://dbpedia.org/ontology/reportingMark".freeze, "http://dbpedia.org/ontology/representative".freeze, "http://dbpedia.org/ontology/requirement".freeze, "http://dbpedia.org/ontology/reservations".freeze, "http://dbpedia.org/ontology/residence".freeze, "http://dbpedia.org/ontology/resolution".freeze, "http://dbpedia.org/ontology/restingDate".freeze, "http://dbpedia.org/ontology/restingPlace".freeze, "http://dbpedia.org/ontology/restingPlacePosition".freeze, "http://dbpedia.org/ontology/restoreDate".freeze, "http://dbpedia.org/ontology/restriction".freeze, "http://dbpedia.org/ontology/result".freeze, "http://dbpedia.org/ontology/retentionTime".freeze, "http://dbpedia.org/ontology/retired".freeze, "http://dbpedia.org/ontology/retiredRocket".freeze, "http://dbpedia.org/ontology/retirementDate".freeze, "http://dbpedia.org/ontology/revenue".freeze, "http://dbpedia.org/ontology/revenueYear".freeze, "http://dbpedia.org/ontology/review".freeze, "http://dbpedia.org/ontology/rgbCoordinateBlue".freeze, "http://dbpedia.org/ontology/rgbCoordinateGreen".freeze, "http://dbpedia.org/ontology/rgbCoordinateRed".freeze, "http://dbpedia.org/ontology/ridId".freeze, "http://dbpedia.org/ontology/rightAscension".freeze, "http://dbpedia.org/ontology/rightChild".freeze, "http://dbpedia.org/ontology/rightTributary".freeze, "http://dbpedia.org/ontology/rivalSchool".freeze, "http://dbpedia.org/ontology/river".freeze, "http://dbpedia.org/ontology/riverBranch".freeze, "http://dbpedia.org/ontology/riverBranchOf".freeze, "http://dbpedia.org/ontology/riverMouth".freeze, "http://dbpedia.org/ontology/rkdArtistsId".freeze, "http://dbpedia.org/ontology/road".freeze, "http://dbpedia.org/ontology/rocket".freeze, "http://dbpedia.org/ontology/rocketFunction".freeze, "http://dbpedia.org/ontology/rocketStages".freeze, "http://dbpedia.org/ontology/rolandGarrosDouble".freeze, "http://dbpedia.org/ontology/rolandGarrosMixed".freeze, "http://dbpedia.org/ontology/rolandGarrosSingle".freeze, "http://dbpedia.org/ontology/role".freeze, "http://dbpedia.org/ontology/roleInEvent".freeze, "http://dbpedia.org/ontology/roofHeight".freeze, "http://dbpedia.org/ontology/rotationPeriod".freeze, "http://dbpedia.org/ontology/route".freeze, "http://dbpedia.org/ontology/routeActivity".freeze, "http://dbpedia.org/ontology/routeDirection".freeze, "http://dbpedia.org/ontology/routeEnd".freeze, "http://dbpedia.org/ontology/routeEndDirection".freeze, "http://dbpedia.org/ontology/routeEndLocation".freeze, "http://dbpedia.org/ontology/routeJunction".freeze, "http://dbpedia.org/ontology/routeLine".freeze, "http://dbpedia.org/ontology/routeNext".freeze, "http://dbpedia.org/ontology/routeNumber".freeze, "http://dbpedia.org/ontology/routePrevious".freeze, "http://dbpedia.org/ontology/routeStart".freeze, "http://dbpedia.org/ontology/routeStartDirection".freeze, "http://dbpedia.org/ontology/routeStartLocation".freeze, "http://dbpedia.org/ontology/routeTypeAbbreviation".freeze, "http://dbpedia.org/ontology/royalAnthem".freeze, "http://dbpedia.org/ontology/ruling".freeze, "http://dbpedia.org/ontology/runningMate".freeze, "http://dbpedia.org/ontology/runtime".freeze, "http://dbpedia.org/ontology/runwayDesignation".freeze, "http://dbpedia.org/ontology/runwayLength".freeze, "http://dbpedia.org/ontology/runwaySurface".freeze, "http://dbpedia.org/ontology/runwayWidth".freeze, "http://dbpedia.org/ontology/ruralMunicipality".freeze, "http://dbpedia.org/ontology/saint".freeze, "http://dbpedia.org/ontology/salary".freeze, "http://dbpedia.org/ontology/sales".freeze, "http://dbpedia.org/ontology/sameName".freeze, "http://dbpedia.org/ontology/satScore".freeze, "http://dbpedia.org/ontology/satcat".freeze, "http://dbpedia.org/ontology/satellite".freeze, "http://dbpedia.org/ontology/satellitesDeployed".freeze, "http://dbpedia.org/ontology/scale".freeze, "http://dbpedia.org/ontology/scene".freeze, "http://dbpedia.org/ontology/school".freeze, "http://dbpedia.org/ontology/schoolBoard".freeze, "http://dbpedia.org/ontology/schoolCode".freeze, "http://dbpedia.org/ontology/schoolNumber".freeze, "http://dbpedia.org/ontology/schoolPatron".freeze, "http://dbpedia.org/ontology/scientificName".freeze, "http://dbpedia.org/ontology/score".freeze, "http://dbpedia.org/ontology/screenActorsGuildAward".freeze, "http://dbpedia.org/ontology/sea".freeze, "http://dbpedia.org/ontology/season".freeze, "http://dbpedia.org/ontology/seasonManager".freeze, "http://dbpedia.org/ontology/seasonNumber".freeze, "http://dbpedia.org/ontology/seatNumber".freeze, "http://dbpedia.org/ontology/seatingCapacity".freeze, "http://dbpedia.org/ontology/second".freeze, "http://dbpedia.org/ontology/secondCommander".freeze, "http://dbpedia.org/ontology/secondDriver".freeze, "http://dbpedia.org/ontology/secondDriverCountry".freeze, "http://dbpedia.org/ontology/secondLeader".freeze, "http://dbpedia.org/ontology/secondPlace".freeze, "http://dbpedia.org/ontology/secondPopularVote".freeze, "http://dbpedia.org/ontology/secondTeam".freeze, "http://dbpedia.org/ontology/secretaryGeneral".freeze, "http://dbpedia.org/ontology/security".freeze, "http://dbpedia.org/ontology/seiyu".freeze, "http://dbpedia.org/ontology/selection".freeze, "http://dbpedia.org/ontology/selectionPoint".freeze, "http://dbpedia.org/ontology/selectionYear".freeze, "http://dbpedia.org/ontology/selibrId".freeze, "http://dbpedia.org/ontology/senator".freeze, "http://dbpedia.org/ontology/senior".freeze, "http://dbpedia.org/ontology/seniority".freeze, "http://dbpedia.org/ontology/seniunija".freeze, "http://dbpedia.org/ontology/sentence".freeze, "http://dbpedia.org/ontology/series".freeze, "http://dbpedia.org/ontology/service".freeze, "http://dbpedia.org/ontology/serviceEndDate".freeze, "http://dbpedia.org/ontology/serviceEndYear".freeze, "http://dbpedia.org/ontology/serviceModule".freeze, "http://dbpedia.org/ontology/serviceNumber".freeze, "http://dbpedia.org/ontology/serviceStartDate".freeze, "http://dbpedia.org/ontology/serviceStartYear".freeze, "http://dbpedia.org/ontology/servingRailwayLine".freeze, "http://dbpedia.org/ontology/servingSize".freeze, "http://dbpedia.org/ontology/servingTemperature".freeze, "http://dbpedia.org/ontology/sessionNumber".freeze, "http://dbpedia.org/ontology/setDesigner".freeze, "http://dbpedia.org/ontology/settingOfPlay".freeze, "http://dbpedia.org/ontology/settlement".freeze, "http://dbpedia.org/ontology/settlementAttached".freeze, "http://dbpedia.org/ontology/setupTime".freeze, "http://dbpedia.org/ontology/severeCases".freeze, "http://dbpedia.org/ontology/sex".freeze, "http://dbpedia.org/ontology/sexualOrientation".freeze, "http://dbpedia.org/ontology/shape".freeze, "http://dbpedia.org/ontology/shareDate".freeze, "http://dbpedia.org/ontology/shareOfAudience".freeze, "http://dbpedia.org/ontology/shareSource".freeze, "http://dbpedia.org/ontology/sharingOutPopulation".freeze, "http://dbpedia.org/ontology/sharingOutPopulationYear".freeze, "http://dbpedia.org/ontology/sheading".freeze, "http://dbpedia.org/ontology/shipBeam".freeze, "http://dbpedia.org/ontology/shipCrew".freeze, "http://dbpedia.org/ontology/shipDisplacement".freeze, "http://dbpedia.org/ontology/shipDraft".freeze, "http://dbpedia.org/ontology/shipLaunch".freeze, "http://dbpedia.org/ontology/shoeNumber".freeze, "http://dbpedia.org/ontology/shoeSize".freeze, "http://dbpedia.org/ontology/shoot".freeze, "http://dbpedia.org/ontology/shoots".freeze, "http://dbpedia.org/ontology/shoreLength".freeze, "http://dbpedia.org/ontology/shortProgCompetition".freeze, "http://dbpedia.org/ontology/shortProgScore".freeze, "http://dbpedia.org/ontology/show".freeze, "http://dbpedia.org/ontology/showJudge".freeze, "http://dbpedia.org/ontology/shuttle".freeze, "http://dbpedia.org/ontology/sibling".freeze, "http://dbpedia.org/ontology/signName".freeze, "http://dbpedia.org/ontology/signature".freeze, "http://dbpedia.org/ontology/significantBuilding".freeze, "http://dbpedia.org/ontology/significantDesign".freeze, "http://dbpedia.org/ontology/significantProject".freeze, "http://dbpedia.org/ontology/silCode".freeze, "http://dbpedia.org/ontology/silverMedalDouble".freeze, "http://dbpedia.org/ontology/silverMedalMixed".freeze, "http://dbpedia.org/ontology/silverMedalSingle".freeze, "http://dbpedia.org/ontology/silverMedalist".freeze, "http://dbpedia.org/ontology/simcCode".freeze, "http://dbpedia.org/ontology/similar".freeze, "http://dbpedia.org/ontology/sire".freeze, "http://dbpedia.org/ontology/siren".freeze, "http://dbpedia.org/ontology/sister".freeze, "http://dbpedia.org/ontology/sisterCollege".freeze, "http://dbpedia.org/ontology/sisterNewspaper".freeze, "http://dbpedia.org/ontology/sisterStation".freeze, "http://dbpedia.org/ontology/sixthFormStudents".freeze, "http://dbpedia.org/ontology/sizeBlazon".freeze, "http://dbpedia.org/ontology/sizeLogo".freeze, "http://dbpedia.org/ontology/sizeMap".freeze, "http://dbpedia.org/ontology/sizeThumbnail".freeze, "http://dbpedia.org/ontology/size_v".freeze, "http://dbpedia.org/ontology/skiLift".freeze, "http://dbpedia.org/ontology/skiPisteKilometre".freeze, "http://dbpedia.org/ontology/skiPisteNumber".freeze, "http://dbpedia.org/ontology/skiTow".freeze, "http://dbpedia.org/ontology/skills".freeze, "http://dbpedia.org/ontology/skinColor".freeze, "http://dbpedia.org/ontology/slogan".freeze, "http://dbpedia.org/ontology/smiles".freeze, "http://dbpedia.org/ontology/snowParkNumber".freeze, "http://dbpedia.org/ontology/soccerLeaguePromoted".freeze, "http://dbpedia.org/ontology/soccerLeagueRelegated".freeze, "http://dbpedia.org/ontology/soccerLeagueSeason".freeze, "http://dbpedia.org/ontology/soccerLeagueWinner".freeze, "http://dbpedia.org/ontology/soccerTournamentClosingSeason".freeze, "http://dbpedia.org/ontology/soccerTournamentLastChampion".freeze, "http://dbpedia.org/ontology/soccerTournamentMostSteady".freeze, "http://dbpedia.org/ontology/soccerTournamentMostSuccesfull".freeze, "http://dbpedia.org/ontology/soccerTournamentOpeningSeason".freeze, "http://dbpedia.org/ontology/soccerTournamentThisSeason".freeze, "http://dbpedia.org/ontology/soccerTournamentTopScorer".freeze, "http://dbpedia.org/ontology/solicitorGeneral".freeze, "http://dbpedia.org/ontology/solubility".freeze, "http://dbpedia.org/ontology/solvent".freeze, "http://dbpedia.org/ontology/solventWithBadSolubility".freeze, "http://dbpedia.org/ontology/solventWithGoodSolubility".freeze, "http://dbpedia.org/ontology/solventWithMediocreSolubility".freeze, "http://dbpedia.org/ontology/son".freeze, "http://dbpedia.org/ontology/soundRecording".freeze, "http://dbpedia.org/ontology/source".freeze, "http://dbpedia.org/ontology/sourceConfluence".freeze, "http://dbpedia.org/ontology/sourceConfluenceCountry".freeze, "http://dbpedia.org/ontology/sourceConfluenceElevation".freeze, "http://dbpedia.org/ontology/sourceConfluenceMountain".freeze, "http://dbpedia.org/ontology/sourceConfluencePlace".freeze, "http://dbpedia.org/ontology/sourceConfluencePosition".freeze, "http://dbpedia.org/ontology/sourceConfluenceRegion".freeze, "http://dbpedia.org/ontology/sourceConfluenceState".freeze, "http://dbpedia.org/ontology/sourceCountry".freeze, "http://dbpedia.org/ontology/sourceDistrict".freeze, "http://dbpedia.org/ontology/sourceElevation".freeze, "http://dbpedia.org/ontology/sourceMountain".freeze, "http://dbpedia.org/ontology/sourcePlace".freeze, "http://dbpedia.org/ontology/sourcePosition".freeze, "http://dbpedia.org/ontology/sourceRegion".freeze, "http://dbpedia.org/ontology/sourceState".freeze, "http://dbpedia.org/ontology/sourceText".freeze, "http://dbpedia.org/ontology/southEastPlace".freeze, "http://dbpedia.org/ontology/southPlace".freeze, "http://dbpedia.org/ontology/southWestPlace".freeze, "http://dbpedia.org/ontology/sovereignCountry".freeze, "http://dbpedia.org/ontology/space".freeze, "http://dbpedia.org/ontology/spacecraft".freeze, "http://dbpedia.org/ontology/spacestation".freeze, "http://dbpedia.org/ontology/spacewalkBegin".freeze, "http://dbpedia.org/ontology/spacewalkEnd".freeze, "http://dbpedia.org/ontology/speaker".freeze, "http://dbpedia.org/ontology/specialEffects".freeze, "http://dbpedia.org/ontology/specialTrial".freeze, "http://dbpedia.org/ontology/specialist".freeze, "http://dbpedia.org/ontology/speciality".freeze, "http://dbpedia.org/ontology/specialization".freeze, "http://dbpedia.org/ontology/species".freeze, "http://dbpedia.org/ontology/speedLimit".freeze, "http://dbpedia.org/ontology/spike".freeze, "http://dbpedia.org/ontology/splitFromParty".freeze, "http://dbpedia.org/ontology/spokenIn".freeze, "http://dbpedia.org/ontology/spokesperson".freeze, "http://dbpedia.org/ontology/sport".freeze, "http://dbpedia.org/ontology/sportCountry".freeze, "http://dbpedia.org/ontology/sportDiscipline".freeze, "http://dbpedia.org/ontology/sportGoverningBody".freeze, "http://dbpedia.org/ontology/sportSpecialty".freeze, "http://dbpedia.org/ontology/sportsFunction".freeze, "http://dbpedia.org/ontology/spouse".freeze, "http://dbpedia.org/ontology/spouseName".freeze, "http://dbpedia.org/ontology/spurOf".freeze, "http://dbpedia.org/ontology/spurType".freeze, "http://dbpedia.org/ontology/squadNumber".freeze, "http://dbpedia.org/ontology/stadium".freeze, "http://dbpedia.org/ontology/staff".freeze, "http://dbpedia.org/ontology/starRating".freeze, "http://dbpedia.org/ontology/starring".freeze, "http://dbpedia.org/ontology/start".freeze, "http://dbpedia.org/ontology/startCareer".freeze, "http://dbpedia.org/ontology/startDate".freeze, "http://dbpedia.org/ontology/startDateTime".freeze, "http://dbpedia.org/ontology/startOccupation".freeze, "http://dbpedia.org/ontology/startPoint".freeze, "http://dbpedia.org/ontology/startReign".freeze, "http://dbpedia.org/ontology/startWct".freeze, "http://dbpedia.org/ontology/startWqs".freeze, "http://dbpedia.org/ontology/startYear".freeze, "http://dbpedia.org/ontology/startYearOfInsertion".freeze, "http://dbpedia.org/ontology/startYearOfSales".freeze, "http://dbpedia.org/ontology/statName".freeze, "http://dbpedia.org/ontology/statValue".freeze, "http://dbpedia.org/ontology/state".freeze, "http://dbpedia.org/ontology/stateDelegate".freeze, "http://dbpedia.org/ontology/stateOfOrigin".freeze, "http://dbpedia.org/ontology/stateOfOriginPoint".freeze, "http://dbpedia.org/ontology/stateOfOriginTeam".freeze, "http://dbpedia.org/ontology/stateOfOriginYear".freeze, "http://dbpedia.org/ontology/stationEvaDuration".freeze, "http://dbpedia.org/ontology/stationStructure".freeze, "http://dbpedia.org/ontology/stationVisitDuration".freeze, "http://dbpedia.org/ontology/statistic".freeze, "http://dbpedia.org/ontology/statisticLabel".freeze, "http://dbpedia.org/ontology/statisticValue".freeze, "http://dbpedia.org/ontology/statisticYear".freeze, "http://dbpedia.org/ontology/status".freeze, "http://dbpedia.org/ontology/statusManager".freeze, "http://dbpedia.org/ontology/statusYear".freeze, "http://dbpedia.org/ontology/stellarClassification".freeze, "http://dbpedia.org/ontology/stockExchange".freeze, "http://dbpedia.org/ontology/storyEditor".freeze, "http://dbpedia.org/ontology/strength".freeze, "http://dbpedia.org/ontology/structuralSystem".freeze, "http://dbpedia.org/ontology/student".freeze, "http://dbpedia.org/ontology/style".freeze, "http://dbpedia.org/ontology/stylisticOrigin".freeze, "http://dbpedia.org/ontology/subClassis".freeze, "http://dbpedia.org/ontology/subFamily".freeze, "http://dbpedia.org/ontology/subGenus".freeze, "http://dbpedia.org/ontology/subMunicipalityType".freeze, "http://dbpedia.org/ontology/subOrder".freeze, "http://dbpedia.org/ontology/subPrefecture".freeze, "http://dbpedia.org/ontology/subTribus".freeze, "http://dbpedia.org/ontology/subdivision".freeze, "http://dbpedia.org/ontology/subdivisionLink".freeze, "http://dbpedia.org/ontology/subdivisionName".freeze, "http://dbpedia.org/ontology/subdivisions".freeze, "http://dbpedia.org/ontology/subjectOfPlay".freeze, "http://dbpedia.org/ontology/subjectTerm".freeze, "http://dbpedia.org/ontology/sublimationPoint".freeze, "http://dbpedia.org/ontology/suborbitalFlights".freeze, "http://dbpedia.org/ontology/subprefecture".freeze, "http://dbpedia.org/ontology/subregion".freeze, "http://dbpedia.org/ontology/subsequentInfrastructure".freeze, "http://dbpedia.org/ontology/subsequentWork".freeze, "http://dbpedia.org/ontology/subsidiary".freeze, "http://dbpedia.org/ontology/subsystem".freeze, "http://dbpedia.org/ontology/subsystemLink".freeze, "http://dbpedia.org/ontology/subtitle".freeze, "http://dbpedia.org/ontology/successfulLaunches".freeze, "http://dbpedia.org/ontology/successor".freeze, "http://dbpedia.org/ontology/sudocId".freeze, "http://dbpedia.org/ontology/summerAppearances".freeze, "http://dbpedia.org/ontology/summerTemperature".freeze, "http://dbpedia.org/ontology/superFamily".freeze, "http://dbpedia.org/ontology/superOrder".freeze, "http://dbpedia.org/ontology/superTribus".freeze, "http://dbpedia.org/ontology/superbowlWin".freeze, "http://dbpedia.org/ontology/superintendent".freeze, "http://dbpedia.org/ontology/supplementalDraftRound".freeze, "http://dbpedia.org/ontology/supplementalDraftYear".freeze, "http://dbpedia.org/ontology/supplies".freeze, "http://dbpedia.org/ontology/supply".freeze, "http://dbpedia.org/ontology/suppreddedDate".freeze, "http://dbpedia.org/ontology/surfaceArea".freeze, "http://dbpedia.org/ontology/surfaceFormOccurrenceOffset".freeze, "http://dbpedia.org/ontology/surfaceGravity".freeze, "http://dbpedia.org/ontology/surfaceType".freeze, "http://dbpedia.org/ontology/suspectedCases".freeze, "http://dbpedia.org/ontology/swimmingStyle".freeze, "http://dbpedia.org/ontology/symbol".freeze, "http://dbpedia.org/ontology/symptom".freeze, "http://dbpedia.org/ontology/synonym".freeze, "http://dbpedia.org/ontology/systemOfLaw".freeze, "http://dbpedia.org/ontology/systemRequirements".freeze, "http://dbpedia.org/ontology/tag".freeze, "http://dbpedia.org/ontology/taoiseach".freeze, "http://dbpedia.org/ontology/targetAirport".freeze, "http://dbpedia.org/ontology/targetSpaceStation".freeze, "http://dbpedia.org/ontology/taste".freeze, "http://dbpedia.org/ontology/tattoo".freeze, "http://dbpedia.org/ontology/taxon".freeze, "http://dbpedia.org/ontology/teachingStaff".freeze, "http://dbpedia.org/ontology/team".freeze, "http://dbpedia.org/ontology/teamCoached".freeze, "http://dbpedia.org/ontology/teamManager".freeze, "http://dbpedia.org/ontology/teamName".freeze, "http://dbpedia.org/ontology/teamPoint".freeze, "http://dbpedia.org/ontology/teamSize".freeze, "http://dbpedia.org/ontology/teamTitle".freeze, "http://dbpedia.org/ontology/technique".freeze, "http://dbpedia.org/ontology/televisionSeries".freeze, "http://dbpedia.org/ontology/tempPlace".freeze, "http://dbpedia.org/ontology/temperature".freeze, "http://dbpedia.org/ontology/templateName".freeze, "http://dbpedia.org/ontology/temple".freeze, "http://dbpedia.org/ontology/templeYear".freeze, "http://dbpedia.org/ontology/tenant".freeze, "http://dbpedia.org/ontology/tennisSurfaceType".freeze, "http://dbpedia.org/ontology/termOfOffice".freeze, "http://dbpedia.org/ontology/termPeriod".freeze, "http://dbpedia.org/ontology/territory".freeze, "http://dbpedia.org/ontology/terytCode".freeze, "http://dbpedia.org/ontology/tessitura".freeze, "http://dbpedia.org/ontology/testaverage".freeze, "http://dbpedia.org/ontology/theology".freeze, "http://dbpedia.org/ontology/third".freeze, "http://dbpedia.org/ontology/thirdCommander".freeze, "http://dbpedia.org/ontology/thirdDriver".freeze, "http://dbpedia.org/ontology/thirdDriverCountry".freeze, "http://dbpedia.org/ontology/thirdPlace".freeze, "http://dbpedia.org/ontology/thirdTeam".freeze, "http://dbpedia.org/ontology/throwingSide".freeze, "http://dbpedia.org/ontology/thumbnail".freeze, "http://dbpedia.org/ontology/thumbnailCaption".freeze, "http://dbpedia.org/ontology/tie".freeze, "http://dbpedia.org/ontology/time".freeze, "http://dbpedia.org/ontology/timeInSpace".freeze, "http://dbpedia.org/ontology/timeZone".freeze, "http://dbpedia.org/ontology/timeshiftChannel".freeze, "http://dbpedia.org/ontology/title".freeze, "http://dbpedia.org/ontology/titleDate".freeze, "http://dbpedia.org/ontology/titleDouble".freeze, "http://dbpedia.org/ontology/titleLanguage".freeze, "http://dbpedia.org/ontology/titleSingle".freeze, "http://dbpedia.org/ontology/toll".freeze, "http://dbpedia.org/ontology/tonyAward".freeze, "http://dbpedia.org/ontology/topFloorHeight".freeze, "http://dbpedia.org/ontology/topLevelDomain".freeze, "http://dbpedia.org/ontology/topSpeed".freeze, "http://dbpedia.org/ontology/topic".freeze, "http://dbpedia.org/ontology/torchBearer".freeze, "http://dbpedia.org/ontology/torqueOutput".freeze, "http://dbpedia.org/ontology/totalCargo".freeze, "http://dbpedia.org/ontology/totalDiscs".freeze, "http://dbpedia.org/ontology/totalIliCases".freeze, "http://dbpedia.org/ontology/totalLaunches".freeze, "http://dbpedia.org/ontology/totalMass".freeze, "http://dbpedia.org/ontology/totalPopulation".freeze, "http://dbpedia.org/ontology/totalTracks".freeze, "http://dbpedia.org/ontology/totalTravellers".freeze, "http://dbpedia.org/ontology/touristicSite".freeze, "http://dbpedia.org/ontology/tournamentOfChampions".freeze, "http://dbpedia.org/ontology/tournamentRecord".freeze, "http://dbpedia.org/ontology/towerHeight".freeze, "http://dbpedia.org/ontology/trackLength".freeze, "http://dbpedia.org/ontology/trackNumber".freeze, "http://dbpedia.org/ontology/trackWidth".freeze, "http://dbpedia.org/ontology/tradeMark".freeze, "http://dbpedia.org/ontology/tradingName".freeze, "http://dbpedia.org/ontology/trainer".freeze, "http://dbpedia.org/ontology/trainerClub".freeze, "http://dbpedia.org/ontology/trainerYears".freeze, "http://dbpedia.org/ontology/training".freeze, "http://dbpedia.org/ontology/translatedMotto".freeze, "http://dbpedia.org/ontology/translator".freeze, "http://dbpedia.org/ontology/transmission".freeze, "http://dbpedia.org/ontology/treatment".freeze, "http://dbpedia.org/ontology/tree".freeze, "http://dbpedia.org/ontology/tribus".freeze, "http://dbpedia.org/ontology/trustee".freeze, "http://dbpedia.org/ontology/tuition".freeze, "http://dbpedia.org/ontology/tvComId".freeze, "http://dbpedia.org/ontology/tvShow".freeze, "http://dbpedia.org/ontology/twinCountry".freeze, "http://dbpedia.org/ontology/twinTown".freeze, "http://dbpedia.org/ontology/type".freeze, "http://dbpedia.org/ontology/typeCoordinate".freeze, "http://dbpedia.org/ontology/typeOfElectrification".freeze, "http://dbpedia.org/ontology/typeOfGrain".freeze, "http://dbpedia.org/ontology/typeOfStorage".freeze, "http://dbpedia.org/ontology/typeOfYeast".freeze, "http://dbpedia.org/ontology/uRN".freeze, "http://dbpedia.org/ontology/uciCode".freeze, "http://dbpedia.org/ontology/ulanId".freeze, "http://dbpedia.org/ontology/umbrellaTitle".freeze, "http://dbpedia.org/ontology/unNumber".freeze, "http://dbpedia.org/ontology/uncle".freeze, "http://dbpedia.org/ontology/undraftedYear".freeze, "http://dbpedia.org/ontology/unesco".freeze, "http://dbpedia.org/ontology/unicode".freeze, "http://dbpedia.org/ontology/uniprot".freeze, "http://dbpedia.org/ontology/unitCost".freeze, "http://dbpedia.org/ontology/unitaryAuthority".freeze, "http://dbpedia.org/ontology/unitedStatesNationalBridgeId".freeze, "http://dbpedia.org/ontology/university".freeze, "http://dbpedia.org/ontology/unknownOutcomes".freeze, "http://dbpedia.org/ontology/unloCode".freeze, "http://dbpedia.org/ontology/updated".freeze, "http://dbpedia.org/ontology/upperAge".freeze, "http://dbpedia.org/ontology/urbanArea".freeze, "http://dbpedia.org/ontology/usOpenDouble".freeze, "http://dbpedia.org/ontology/usOpenMixed".freeze, "http://dbpedia.org/ontology/usOpenSingle".freeze, "http://dbpedia.org/ontology/usSales".freeze, "http://dbpedia.org/ontology/usedInWar".freeze, "http://dbpedia.org/ontology/uses".freeze, "http://dbpedia.org/ontology/usingCountry".freeze, "http://dbpedia.org/ontology/usk".freeze, "http://dbpedia.org/ontology/usopenWins".freeze, "http://dbpedia.org/ontology/usurper".freeze, "http://dbpedia.org/ontology/utcOffset".freeze, "http://dbpedia.org/ontology/v_hb".freeze, "http://dbpedia.org/ontology/value".freeze, "http://dbpedia.org/ontology/valvetrain".freeze, "http://dbpedia.org/ontology/vaporPressure".freeze, "http://dbpedia.org/ontology/variantOf".freeze, "http://dbpedia.org/ontology/varietals".freeze, "http://dbpedia.org/ontology/vehicle".freeze, "http://dbpedia.org/ontology/vehicleCode".freeze, "http://dbpedia.org/ontology/vehiclesInFleet".freeze, "http://dbpedia.org/ontology/vehiclesPerDay".freeze, "http://dbpedia.org/ontology/vein".freeze, "http://dbpedia.org/ontology/veneratedIn".freeze, "http://dbpedia.org/ontology/version".freeze, "http://dbpedia.org/ontology/viafId".freeze, "http://dbpedia.org/ontology/viceChancellor".freeze, "http://dbpedia.org/ontology/viceLeader".freeze, "http://dbpedia.org/ontology/viceLeaderParty".freeze, "http://dbpedia.org/ontology/vicePresident".freeze, "http://dbpedia.org/ontology/vicePrimeMinister".freeze, "http://dbpedia.org/ontology/vicePrincipal".freeze, "http://dbpedia.org/ontology/vicePrincipalLabel".freeze, "http://dbpedia.org/ontology/victim".freeze, "http://dbpedia.org/ontology/victims".freeze, "http://dbpedia.org/ontology/victory".freeze, "http://dbpedia.org/ontology/victoryAsMgr".freeze, "http://dbpedia.org/ontology/victoryPercentageAsMgr".freeze, "http://dbpedia.org/ontology/virtualChannel".freeze, "http://dbpedia.org/ontology/visitorStatisticsAsOf".freeze, "http://dbpedia.org/ontology/visitorsPerDay".freeze, "http://dbpedia.org/ontology/visitorsPerYear".freeze, "http://dbpedia.org/ontology/visitorsPercentageChange".freeze, "http://dbpedia.org/ontology/visitorsTotal".freeze, "http://dbpedia.org/ontology/voice".freeze, "http://dbpedia.org/ontology/voiceType".freeze, "http://dbpedia.org/ontology/volcanicActivity".freeze, "http://dbpedia.org/ontology/volcanicType".freeze, "http://dbpedia.org/ontology/volcanoId".freeze, "http://dbpedia.org/ontology/voltageOfElectrification".freeze, "http://dbpedia.org/ontology/volume".freeze, "http://dbpedia.org/ontology/volumeQuote".freeze, "http://dbpedia.org/ontology/volumes".freeze, "http://dbpedia.org/ontology/vonKlitzingConstant".freeze, "http://dbpedia.org/ontology/votesAgainst".freeze, "http://dbpedia.org/ontology/votesFor".freeze, "http://dbpedia.org/ontology/wagon".freeze, "http://dbpedia.org/ontology/waistSize".freeze, "http://dbpedia.org/ontology/war".freeze, "http://dbpedia.org/ontology/ward".freeze, "http://dbpedia.org/ontology/water".freeze, "http://dbpedia.org/ontology/waterArea".freeze, "http://dbpedia.org/ontology/waterPercentage".freeze, "http://dbpedia.org/ontology/watercourse".freeze, "http://dbpedia.org/ontology/watershed".freeze, "http://dbpedia.org/ontology/waterwayThroughTunnel".freeze, "http://dbpedia.org/ontology/wavelength".freeze, "http://dbpedia.org/ontology/weapon".freeze, "http://dbpedia.org/ontology/webcast".freeze, "http://dbpedia.org/ontology/websiteLabel".freeze, "http://dbpedia.org/ontology/weddingParentsDate".freeze, "http://dbpedia.org/ontology/weight".freeze, "http://dbpedia.org/ontology/westPlace".freeze, "http://dbpedia.org/ontology/whaDraft".freeze, "http://dbpedia.org/ontology/whaDraftTeam".freeze, "http://dbpedia.org/ontology/whaDraftYear".freeze, "http://dbpedia.org/ontology/wheelbase".freeze, "http://dbpedia.org/ontology/wholeArea".freeze, "http://dbpedia.org/ontology/width".freeze, "http://dbpedia.org/ontology/widthQuote".freeze, "http://dbpedia.org/ontology/wikiPageCharacterSize".freeze, "http://dbpedia.org/ontology/wikiPageDisambiguates".freeze, "http://dbpedia.org/ontology/wikiPageEditLink".freeze, "http://dbpedia.org/ontology/wikiPageExternalLink".freeze, "http://dbpedia.org/ontology/wikiPageExtracted".freeze, "http://dbpedia.org/ontology/wikiPageHistoryLink".freeze, "http://dbpedia.org/ontology/wikiPageID".freeze, "http://dbpedia.org/ontology/wikiPageInDegree".freeze, "http://dbpedia.org/ontology/wikiPageInterLanguageLink".freeze, "http://dbpedia.org/ontology/wikiPageLength".freeze, "http://dbpedia.org/ontology/wikiPageModified".freeze, "http://dbpedia.org/ontology/wikiPageOutDegree".freeze, "http://dbpedia.org/ontology/wikiPageRedirects".freeze, "http://dbpedia.org/ontology/wikiPageRevisionID".freeze, "http://dbpedia.org/ontology/wikiPageRevisionLink".freeze, "http://dbpedia.org/ontology/wikiPageUsesTemplate".freeze, "http://dbpedia.org/ontology/wikiPageWikiLink".freeze, "http://dbpedia.org/ontology/wikiPageWikiLinkText".freeze, "http://dbpedia.org/ontology/wikidataSplitIri".freeze, "http://dbpedia.org/ontology/wilaya".freeze, "http://dbpedia.org/ontology/wimbledonDouble".freeze, "http://dbpedia.org/ontology/wimbledonMixed".freeze, "http://dbpedia.org/ontology/wimbledonSingle".freeze, "http://dbpedia.org/ontology/wineProduced".freeze, "http://dbpedia.org/ontology/wineRegion".freeze, "http://dbpedia.org/ontology/wineYear".freeze, "http://dbpedia.org/ontology/wingArea".freeze, "http://dbpedia.org/ontology/wingspan".freeze, "http://dbpedia.org/ontology/wins".freeze, "http://dbpedia.org/ontology/winsAtAlpg".freeze, "http://dbpedia.org/ontology/winsAtAsia".freeze, "http://dbpedia.org/ontology/winsAtAus".freeze, "http://dbpedia.org/ontology/winsAtChallenges".freeze, "http://dbpedia.org/ontology/winsAtChampionships".freeze, "http://dbpedia.org/ontology/winsAtJLPGA".freeze, "http://dbpedia.org/ontology/winsAtJapan".freeze, "http://dbpedia.org/ontology/winsAtKLPGA".freeze, "http://dbpedia.org/ontology/winsAtLAGT".freeze, "http://dbpedia.org/ontology/winsAtLET".freeze, "http://dbpedia.org/ontology/winsAtLPGA".freeze, "http://dbpedia.org/ontology/winsAtMajors".freeze, "http://dbpedia.org/ontology/winsAtNWIDE".freeze, "http://dbpedia.org/ontology/winsAtOtherTournaments".freeze, "http://dbpedia.org/ontology/winsAtPGA".freeze, "http://dbpedia.org/ontology/winsAtProTournaments".freeze, "http://dbpedia.org/ontology/winsAtSenEuro".freeze, "http://dbpedia.org/ontology/winsAtSun".freeze, "http://dbpedia.org/ontology/winsInEurope".freeze, "http://dbpedia.org/ontology/winterAppearances".freeze, "http://dbpedia.org/ontology/winterTemperature".freeze, "http://dbpedia.org/ontology/woRMS".freeze, "http://dbpedia.org/ontology/wordBefore".freeze, "http://dbpedia.org/ontology/work".freeze, "http://dbpedia.org/ontology/workArea".freeze, "http://dbpedia.org/ontology/world".freeze, "http://dbpedia.org/ontology/worldChampionTitleYear".freeze, "http://dbpedia.org/ontology/worldOpen".freeze, "http://dbpedia.org/ontology/worldTeamCup".freeze, "http://dbpedia.org/ontology/worldTournament".freeze, "http://dbpedia.org/ontology/worldTournamentBronze".freeze, "http://dbpedia.org/ontology/worldTournamentGold".freeze, "http://dbpedia.org/ontology/worldTournamentSilver".freeze, "http://dbpedia.org/ontology/worstDefeat".freeze, "http://dbpedia.org/ontology/wptFinalTable".freeze, "http://dbpedia.org/ontology/wptItm".freeze, "http://dbpedia.org/ontology/wptTitle".freeze, "http://dbpedia.org/ontology/writer".freeze, "http://dbpedia.org/ontology/wsopItm".freeze, "http://dbpedia.org/ontology/wsopWinYear".freeze, "http://dbpedia.org/ontology/wsopWristband".freeze, "http://dbpedia.org/ontology/year".freeze, "http://dbpedia.org/ontology/yearElevationIntoNobility".freeze, "http://dbpedia.org/ontology/yearOfConstruction".freeze, "http://dbpedia.org/ontology/yearOfElectrification".freeze, "http://dbpedia.org/ontology/years".freeze, "http://dbpedia.org/ontology/youthClub".freeze, "http://dbpedia.org/ontology/youthWing".freeze, "http://dbpedia.org/ontology/youthYears".freeze, "http://dbpedia.org/ontology/zdb".freeze, "http://dbpedia.org/ontology/zipCode".freeze, "http://dbpedia.org/ontology/zodiacSign".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#boolean".freeze, "http://www.w3.org/2001/XMLSchema#date".freeze, "http://www.w3.org/2001/XMLSchema#dateTime".freeze, "http://www.w3.org/2001/XMLSchema#double".freeze, "http://www.w3.org/2001/XMLSchema#float".freeze, "http://www.w3.org/2001/XMLSchema#gDay".freeze, "http://www.w3.org/2001/XMLSchema#gMonth".freeze, "http://www.w3.org/2001/XMLSchema#gMonthDay".freeze, "http://www.w3.org/2001/XMLSchema#gYear".freeze, "http://www.w3.org/2001/XMLSchema#gYearMonth".freeze, "http://www.w3.org/2001/XMLSchema#integer".freeze, "http://www.w3.org/2001/XMLSchema#negativeInteger".freeze, "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, "http://www.w3.org/2001/XMLSchema#nonPositiveInteger".freeze, "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze, "http://www.w3.org/2001/XMLSchema#time".freeze], + "http://purl.org/dc/terms/creator": "DBpedia Maintainers and Contributors".freeze, + "http://purl.org/dc/terms/description": "\n The DBpedia ontology provides the classes and properties used in the DBpedia data set.\n ".freeze, + "http://purl.org/dc/terms/issued": "2008-11-17T12:00Z".freeze, + "http://purl.org/dc/terms/license": "http://creativecommons.org/licenses/by-sa/3.0/".freeze, + "http://purl.org/dc/terms/publisher": "DBpedia Maintainers".freeze, + "http://purl.org/dc/terms/source": "http://mappings.dbpedia.org".freeze, + "http://purl.org/dc/terms/title": "The DBpedia Ontology".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "dbo".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://dbpedia.org/ontology/".freeze, - isDefinedBy: "dbo:".freeze, - "owl:sameAs": "dbo:".freeze, - "owl:versionInfo": "4.2-SNAPSHOT".freeze, - type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze], - "wdrs:describedby": "http://dbpedia.org/ontology/data/definitions.ttl".freeze + "http://www.w3.org/2002/07/owl#sameAs": "http://dbpedia.org/ontology/".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "latest-snapshot".freeze, + "http://www.w3.org/2007/05/powder-s#describedby": "http://dbpedia.org/ontology/data/definitions.ttl".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://wiki.dbpedia.org/Ontology".freeze, + isDefinedBy: "http://dbpedia.org/ontology/".freeze, + type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze] # Extra definitions - term :Abbey, - isDefinedBy: "dbo:".freeze term :AcademicConference, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AcademicJournal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AcademicSubject, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Activity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Actor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AdministrativeRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AdultActor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Agent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Agglomeration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Aircraft, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Airline, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Airport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Album, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Algorithm, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Altitude, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AmateurBoxer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Ambassador, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AmericanFootballCoach, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AmericanFootballLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AmericanFootballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AmericanFootballTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Amphibian, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AmusementParkAttraction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AnatomicalStructure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Animal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AnimangaCharacter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Anime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Annotation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Arachnid, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Archaea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Archbishop, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Archeologist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ArcherPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Archipelago, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Architect, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ArchitecturalStructure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Archive, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Area, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Arena, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Aristocrat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Arrondissement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Artery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Article, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ArtificialSatellite, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Artist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ArtistDiscography, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ArtisticGenre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Artwork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Asteroid, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Astronaut, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Astronaut/timeInSpace", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Athlete, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Athletics, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AthleticsPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Atoll, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Attack, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AustralianFootballLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AustralianFootballTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AustralianRulesFootballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AutoRacingLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Automobile, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Automobile/fuelCapacity", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Automobile/wheelbase", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :AutomobileEngine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Award, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BackScene, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Bacteria, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BadmintonPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Band, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Bank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Baronet, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BaseballLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BaseballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BaseballSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BaseballTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BasketballLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BasketballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BasketballTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Battery, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Bay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Beach, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BeachVolleyballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BeautyQueen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Beer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Beverage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Biathlete, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BiologicalDatabase, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Biologist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Biomolecule, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Bird, - isDefinedBy: "dbo:".freeze - term :Birth, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Blazon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BloodVessel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BoardGame, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BobsleighAthlete, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BodyOfWater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Bodybuilder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Bone, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Book, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BowlingLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Boxer, - isDefinedBy: "dbo:".freeze - term :Boxing, - isDefinedBy: "dbo:".freeze - term :BoxingCategory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BoxingLeague, - isDefinedBy: "dbo:".freeze - term :BoxingStyle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Brain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Brewery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Bridge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BritishRoyalty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BroadcastNetwork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Broadcaster, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BrownDwarf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Browser, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Building, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Building/floorArea", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BullFighter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BusCompany, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :BusinessPerson, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Camera, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CanadianFootballLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CanadianFootballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CanadianFootballTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Canal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Canal/maximumBoatBeam", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Canal/maximumBoatLength", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Canal/originalMaximumBoatBeam", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Canal/originalMaximumBoatLength", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Canoeist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Canton, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cape, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Capital, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CapitalOfRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CardGame, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cardinal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CardinalDirection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CareerStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cartoon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Case, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Casino, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Castle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Caterer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cave, - isDefinedBy: "dbo:".freeze - term :Celebrity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CelestialBody, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cemetery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Chancellor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ChartsPlacements, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cheese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Chef, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ChemicalCompound, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ChemicalElement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ChemicalSubstance, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"ChemicalSubstance/boilingPoint", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"ChemicalSubstance/density", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"ChemicalSubstance/meltingPoint", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ChessPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ChristianBishop, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ChristianDoctrine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ChristianPatriarch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Church, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Cinema, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Cipher, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :City, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CityDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ClassicalMusicArtist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ClassicalMusicComposition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cleric, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ClericalAdministrativeRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ClericalOrder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ClubMoss, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Coach, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CoalPit, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CollectionOfValuables, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :College, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CollegeCoach, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Colour, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :CombinationDrug, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Comedian, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ComedyGroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Comic, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ComicStrip, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ComicsCharacter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ComicsCreator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Community, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Company, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Competition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ConcentrationCamp, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Congressman, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Conifer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Constellation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Contest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Continent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ControlledDesignationOfOriginWine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Convention, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ConveyorSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"ConveyorSystem/diameter", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"ConveyorSystem/height", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"ConveyorSystem/length", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"ConveyorSystem/mass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"ConveyorSystem/weight", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"ConveyorSystem/width", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Country, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CountrySeat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Crater, - isDefinedBy: "dbo:".freeze - term :Creek, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CricketGround, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CricketLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CricketTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cricketer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Criminal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CrossCountrySkier, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Crustacean, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CultivatedVariety, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Curler, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CurlingLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Currency, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cycad, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CyclingCompetition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CyclingLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CyclingRace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :CyclingTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Cyclist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :DBpedian, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :DTMRacer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Dam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Dancer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :DartsPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Database, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Deanery, - isDefinedBy: "dbo:".freeze - term :Death, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Decoration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Deity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Demographics, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Department, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Depth, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Deputy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Desert, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Device, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :DigitalCamera, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Dike, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Diocese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Diploma, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Disease, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :DisneyCharacter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :District, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :DistrictWaterBoard, - isDefinedBy: "dbo:".freeze - term :Divorce, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Document, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :DocumentType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Dog, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Drama, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Drug, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Drug/boilingPoint", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Drug/meltingPoint", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Earthquake, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Economist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :EducationalInstitution, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Egyptologist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Election, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ElectionDiagram, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ElectricalSubstation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Embryology, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Employer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :EmployersOrganisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Engine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/acceleration", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/co2Emission", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/cylinderBore", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/diameter", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/displacement", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/height", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/length", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/pistonStroke", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/powerOutput", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/topSpeed", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/torqueOutput", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/weight", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Engine/width", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Engineer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Entomologist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Enzyme, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Escalator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Escalator/diameter", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Escalator/height", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Escalator/length", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Escalator/mass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Escalator/weight", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Escalator/width", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :EthnicGroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Eukaryote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :EurovisionSongContestEntry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Event, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Factory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Family, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Farmer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Fashion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FashionDesigner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Fencer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Fern, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FictionalCharacter, - isDefinedBy: "dbo:".freeze - term :Fiefdom, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FieldHockeyLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FigureSkater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :File, - isDefinedBy: "dbo:".freeze - term :FillingStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :FileSystem, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Film, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FilmFestival, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Fish, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Flag, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FloweringPlant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Food, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FootballLeagueSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FootballMatch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Forest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FormerMunicipality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FormulaOneRacer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FormulaOneRacing, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :FormulaOneTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Fort, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Fungus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GaelicGamesPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Galaxy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/apoapsis", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/averageSpeed", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/density", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/mass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/maximumTemperature", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/meanRadius", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/meanTemperature", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/minimumTemperature", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/orbitalPeriod", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/periapsis", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/surfaceArea", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/temperature", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Galaxy/volume", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Game, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Garden, - isDefinedBy: "dbo:".freeze - term :Gate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GatedCommunity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Gene, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GeneLocation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Genre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GeologicalPeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GeopoliticalOrganisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"GeopoliticalOrganisation/areaMetro", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"GeopoliticalOrganisation/populationDensity", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Ginkgo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GivenName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Glacier, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Globularswarm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Gnetophytes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GolfCourse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GolfLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GolfPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GolfTournament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GovernmentAgency, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GovernmentCabinet, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GovernmentType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GovernmentalAdministrativeRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Governor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GrandPrix, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"GrandPrix/course", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"GrandPrix/distance", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Grape, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GraveMonument, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GreenAlga, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GridironFootballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GrossDomesticProduct, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :GrossDomesticProductPerCapita, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Group, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Guitar, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Guitarist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Gymnast, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HandballLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HandballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HandballTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HighDiver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Historian, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HistoricBuilding, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HistoricPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HistoricalAreaOfAuthority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HistoricalCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HistoricalDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :HistoricalEvent, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HistoricalPeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HistoricalProvince, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HistoricalRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HistoricalSettlement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HockeyClub, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HockeyTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Holiday, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HollywoodCartoon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Hormone, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Horse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HorseRace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HorseRider, - isDefinedBy: "dbo:".freeze - term :HorseRiding, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HorseTrainer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Hospital, - isDefinedBy: "dbo:".freeze - term :Host, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HotSpring, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Hotel, - isDefinedBy: "dbo:".freeze - term :HumanDevelopmentIndex, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HumanGene, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :HumanGeneLocation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Humorist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :IceHockeyLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :IceHockeyPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Identifier, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Ideology, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Image, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :InformationAppliance, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Infrastructure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Infrastructure/length", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :InlineHockeyLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Insect, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Instrument, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Instrumentalist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Intercommunality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :InternationalFootballLeagueEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :InternationalOrganisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Island, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Jockey, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Journalist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Judge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LacrosseLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LacrossePlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Lake, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Lake/areaOfCatchment", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Lake/shoreLength", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Lake/volume", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Language, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LaunchPad, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Law, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LawFirm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Lawyer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LegalCase, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Legislature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Letter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Library, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Lieutenant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LifeCycleEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Ligament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LightNovel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Lighthouse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LineOfFashion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Linguist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Lipid, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :List, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LiteraryGenre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Locality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Lock, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Locomotive, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :LunarCrater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"LunarCrater/diameter", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Lymph, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Magazine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Mammal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Man, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Manga, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Manhua, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Manhwa, - isDefinedBy: "dbo:".freeze - term :Marriage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Manor, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MartialArtist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MathematicalConcept, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Mayor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MeanOfTransportation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MeanOfTransportation/diameter", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MeanOfTransportation/height", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MeanOfTransportation/length", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MeanOfTransportation/mass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MeanOfTransportation/weight", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MeanOfTransportation/width", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Media, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :MedicalSpecialty, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Medician, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Medicine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Meeting, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MemberOfParliament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MemberResistanceMovement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Memorial, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MetroStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MicroRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MilitaryAircraft, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MilitaryConflict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MilitaryPerson, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :MilitaryService, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MilitaryStructure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MilitaryUnit, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MilitaryVehicle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Mill, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Mine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Mineral, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Minister, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MixedMartialArtsEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MixedMartialArtsLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MobilePhone, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Model, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Mollusca, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Monarch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Monastery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :MonoclonalAntibody, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Monument, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Mosque, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Moss, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MotocycleRacer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MotorRace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Motorcycle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MotorcycleRacingLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MotorcycleRider, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MotorsportRacer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MotorsportSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Mountain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MountainPass, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MountainRange, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MouseGene, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MouseGeneLocation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MovieDirector, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MovieGenre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MovingImage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MovingWalkway, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MovingWalkway/diameter", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MovingWalkway/height", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MovingWalkway/length", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MovingWalkway/mass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MovingWalkway/weight", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"MovingWalkway/width", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MultiVolumePublication, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Municipality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Murderer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Muscle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Museum, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MusicComposer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MusicDirector, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MusicFestival, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MusicGenre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Musical, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MusicalArtist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MusicalWork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :MythologicalFigure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NCAATeamSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Name, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NarutoCharacter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NascarDriver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NationalAnthem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NationalCollegiateAthleticAssociationAthlete, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NationalFootballLeagueEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NationalFootballLeagueSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NationalSoccerClub, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NaturalEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NaturalPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NaturalRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Nebula, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Nerve, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NetballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Newspaper, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NobelPrize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Noble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NobleFamily, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Non-ProfitOrganisation", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NordicCombined, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Novel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :NuclearPowerStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Ocean, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :OfficeHolder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :OldTerritory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :OlympicEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :OlympicResult, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Olympics, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"On-SiteTransportation", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"On-SiteTransportation/diameter", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"On-SiteTransportation/height", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"On-SiteTransportation/length", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"On-SiteTransportation/mass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"On-SiteTransportation/weight", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"On-SiteTransportation/width", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Openswarm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Opera, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Organ, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Organisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :OrganisationMember, - isDefinedBy: "dbo:".freeze - term :Orphan, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Outbreak, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :OverseasDepartment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PaintballLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Painter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Painting, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Parish, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Park, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Parliament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PenaltyShootOut, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PeriodOfArtisticStyle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PeriodicalLiterature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Person, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Person/height", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Person/weight", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PersonFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PersonalEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Philosopher, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PhilosophicalConcept, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Photographer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Place, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Planet, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/apoapsis", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/averageSpeed", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/density", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/mass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/maximumTemperature", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/meanRadius", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/meanTemperature", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/minimumTemperature", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/orbitalPeriod", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/periapsis", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/surfaceArea", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/temperature", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Planet/volume", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Plant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Play, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PlayWright, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PlayboyPlaymate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Poem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Poet, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PokerPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PoliticalConcept, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PoliticalFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PoliticalParty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Politician, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PoliticianSpouse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PoloLeague, - isDefinedBy: "dbo:".freeze - term :Polyhedron, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Polysaccharide, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Pope, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PopulatedPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"PopulatedPlace/area", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"PopulatedPlace/areaMetro", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"PopulatedPlace/areaTotal", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"PopulatedPlace/areaUrban", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"PopulatedPlace/populationDensity", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"PopulatedPlace/populationMetroDensity", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"PopulatedPlace/populationUrbanDensity", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Population, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Port, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PowerStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Prefecture, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PrehistoricalPeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Presenter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :President, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Priest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PrimeMinister, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Prison, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Producer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Profession, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Professor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ProgrammingLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Project, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ProtectedArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Protein, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Protocol, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ProtohistoricalPeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Province, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Psychologist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PublicService, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :PublicTransitSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Publisher, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Pyramid, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Quote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Race, - isDefinedBy: "dbo:".freeze - term :RaceHorse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RaceTrack, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Racecourse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RacingDriver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RadioControlledRacingLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RadioHost, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RadioProgram, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RadioStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RailwayLine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RailwayStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RailwayTunnel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RallyDriver, - isDefinedBy: "dbo:".freeze - term :Ratio, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Rebellion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RecordLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RecordOffice, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Referee, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Reference, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Regency, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Region, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Reign, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Relationship, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Religious, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ReligiousBuilding, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ReligiousOrganisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Reptile, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ResearchProject, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RestArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Restaurant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Resume, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :River, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Road, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RoadJunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RoadTunnel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Robot, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Rocket, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Rocket/lowerEarthOrbitPayload", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Rocket/mass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RocketEngine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RollerCoaster, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RomanEmperor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RouteOfTransportation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RouteStop, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Rower, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Royalty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RugbyClub, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RugbyLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :RugbyPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Saint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Sales, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SambaSchool, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Satellite, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :School, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"School/campusSize", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ScientificConcept, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Scientist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ScreenWriter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Sculptor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Sculpture, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Sea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Senator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SerialKiller, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Settlement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Ship, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ShoppingMall, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Shrine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Singer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Single, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SiteOfSpecialScientificInterest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Skater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SkiArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SkiResort, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Ski_jumper, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Skier, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Skyscraper, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SnookerChamp, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SnookerPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SnookerWorldRanking, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SoapCharacter, - isDefinedBy: "dbo:".freeze - term :Soccer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SoccerClub, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SoccerClubSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SoccerLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SoccerLeagueSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SoccerManager, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SoccerPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SoccerTournament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SocietalEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SoftballLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Software, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Software/fileSize", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SolarEclipse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Song, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SongWriter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Sound, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SpaceMission, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/cmpEvaDuration", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/distanceTraveled", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/lunarEvaTime", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/lunarOrbitTime", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/lunarSampleMass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/lunarSurfaceTime", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/mass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/missionDuration", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/stationEvaDuration", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceMission/stationVisitDuration", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SpaceShuttle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceShuttle/distance", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceShuttle/timeInSpace", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SpaceStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"SpaceStation/volume", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Spacecraft, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/apoapsis", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/cargoFuel", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/cargoGas", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/cargoWater", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/dockedTime", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/dryCargo", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/freeFlightTime", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/periapsis", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/totalCargo", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Spacecraft/totalMass", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Species, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SpeedSkater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SpeedwayLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SpeedwayRider, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SpeedwayTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Sport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportCompetitionResult, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportFacility, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportsClub, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportsEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportsLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportsManager, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportsSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportsTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportsTeamMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SportsTeamSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Spreadsheet, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Square, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SquashPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Stadium, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Standard, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Star, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :StarCluster, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :State, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :StatedResolution, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Station, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Statistic, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :StillImage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :StormSurge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Stream, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Stream/discharge", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Stream/dischargeAverage", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Stream/maximumDischarge", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Stream/minimumDischarge", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Stream/watershed", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Street, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SubMunicipality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SumoWrestler, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SupremeCourtOfTheUnitedStatesCase, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Surfer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Surname, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Swarm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Swimmer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Synagogue, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :SystemOfLaw, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TableTennisPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Tank, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Tax, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Taxon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TeamMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TeamSport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TelevisionDirector, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TelevisionEpisode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TelevisionHost, - isDefinedBy: "dbo:".freeze - term :TelevisionPersonality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TelevisionSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TelevisionShow, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TelevisionStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Temple, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TennisLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TennisPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TennisTournament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Tenure, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TermOfOffice, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Territory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Theatre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TheatreDirector, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TheologicalConcept, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TimePeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :TopLevelDomain, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TopicalConcept, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Tournament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Tower, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Town, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TrackList, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TradeUnion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Train, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TrainCarriage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Tram, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :TramStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Treadmill, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Treaty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Tunnel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Type, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :UndergroundJournal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :UnitOfWork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :University, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Unknown, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Vaccine, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Valley, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Vein, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Venue, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Vicar, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :VicePresident, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :VicePrimeMinister, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :VideoGame, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :VideogamesLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Village, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Vodka, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :VoiceActor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Volcano, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :VolleyballCoach, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :VolleyballLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :VolleyballPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WaterPoloPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WaterRide, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WaterTower, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Watermill, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WaterwayTunnel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Weapon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Weapon/diameter", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Weapon/height", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Weapon/length", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Weapon/weight", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Weapon/width", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Website, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :WikimediaTemplate, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WindMotor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Windmill, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Wine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WineRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Winery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WinterSportPlayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :Woman, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WomensTennisAssociationTournament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Work, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"Work/runtime", - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WorldHeritageSite, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Wrestler, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WrestlingEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Writer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :WrittenWork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Year, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :YearInSpaceflight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :Zoo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aSide, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :abbeychurchBlessing, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :abbeychurchBlessingCharge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :abbreviation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ableToGrind, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :absoluteMagnitude, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :abstentions, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :abstract, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :academicAdvisor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :academicDiscipline, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :academyAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :acceleration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :access, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :accessDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :achievement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :acquirementDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :actScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :actingHeadteacher, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :activeCases, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activeYears, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activeYearsEndDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activeYearsEndDateMgr, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activeYearsEndYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activeYearsEndYearMgr, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activeYearsStartDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activeYearsStartDateMgr, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activeYearsStartYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activeYearsStartYearMgr, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :activity, - isDefinedBy: "dbo:".freeze - term :added, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :address, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :addressInRoad, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :adjacentSettlement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :administrativeCenter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :administrativeCollectivity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :administrativeDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :administrativeHeadCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :administrativeStatus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :administrator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :afdbId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :affair, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :affiliate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :affiliation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :afiAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :age, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ageRange, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :agency, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :agencyStationCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :agglomeration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :agglomerationArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :agglomerationDemographics, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :agglomerationPopulation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :agglomerationPopulationTotal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :agglomerationPopulationYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aggregation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :airDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftAttack, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftBomber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftElectronic, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftFighter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftHelicopter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftHelicopterAttack, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftHelicopterCargo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftHelicopterMultirole, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftHelicopterObservation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftHelicopterTransport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftHelicopterUtility, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftInterceptor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftPatrol, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftRecon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftTrainer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftTransport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aircraftUser, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :airportUsing, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aitaCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :albedo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :album, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :albumRuntime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alias, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :allcinemaId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :allegiance, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alliance, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :almaMater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alongside, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alpsGroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alpsMainPart, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alpsMajorSector, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alpsSection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alpsSoiusaCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alpsSubgroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alpsSubsection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alpsSupergroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alternativeName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alternativeTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :altitude, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :alumni, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amateurDefeat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amateurFight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amateurKo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amateurNoContest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amateurTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amateurTie, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amateurTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amateurVictory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amateurYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :americanComedyAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amgid, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :amsterdamCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :analogChannel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :animal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :animator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :anniversary, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :announcedFrom, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :annualTemperature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :anthem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :aoCloassification, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :apcPresident, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :apoapsis, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :apofocus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :apparentMagnitude, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :appearance, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :appearancesInLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :appearancesInNationalTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :appointer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :apprehended, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :approach, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :approvedByLowerParliament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :approvedByUpperParliament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :approximateCalories, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :apskritis, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :archipelago, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :architect, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :architectualBureau, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :architecturalMovement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :architecturalStyle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :area, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaLand, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaMetro, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaOfCatchment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaOfCatchmentQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaOfSearch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaRural, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaTotal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaTotalRanking, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaUrban, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :areaWater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :argueDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :arielAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :arm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :army, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :arrestDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :arrondissement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :artPatron, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :artery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :artificialSnowArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :artist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :artisticFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :asWikiText, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ascent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :asiaChampionship, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :aspectRatio, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :assembly, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :assetUnderManagement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :assets, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :assistantPrincipal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :associate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :associateEditor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :associateStar, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :associatedAct, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :associatedBand, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :associatedMusicalArtist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :associatedRocket, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :associationOfLocalGovernment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :astrologicalSign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :atPage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :atRowNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :atcCode, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :atcPrefix, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :atcSuffix, - isDefinedBy: "dbo:".freeze - term :atcSupplemental, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :athletics, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :athleticsDiscipline, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :atomicNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :attorneyGeneral, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :aunt, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :australiaOpenDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :australiaOpenMixed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :australiaOpenSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :author, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :authority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :authorityMandate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :authorityTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :automobileModel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :automobilePlatform, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :autonomy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :availableSmartCard, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :average, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :averageAnnualGeneration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :averageClassSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :averageDepth, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :averageDepthQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :averageSpeed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :avifaunaPopulation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :award, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :awardName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :awayColourHexCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bSide, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :background, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :backhand, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :badGuy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :baftaAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :band, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bandMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :barPassRate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :barangays, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :basedOn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :battery, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :battingSide, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :battle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :battleHonours, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :bbr, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :beatifiedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :beatifiedDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :beatifiedPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bedCount, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :believers, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :beltwayCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bestFinish, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bestLap, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bestRankDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bestRankSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bestWsopRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bestYearWsop, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bgafdId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bibsysId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bicycleInformation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bigPoolRecord, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :biggestCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :billed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :binomial, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :binomialAuthority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bioavailability, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bioclimate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :biome, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bird, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :birthDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :birthName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :birthPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :birthSign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :birthYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bishopric, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :blackLongDistancePisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :blackSkiPisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :blazon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :blazonCaption, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :blazonLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :blazonRatio, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :block, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :blockAlloy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bloodGroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bloodType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :blueLongDistancePisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :blueSkiPisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bnfId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :board, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bodyDiscovered, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bodyStyle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :boiler, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :boilerPressure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :boilingPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :book, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :booster, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :border, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :borough, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bourgmestre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bowlRecord, - isDefinedBy: "dbo:".freeze - term :boxerCategory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :bowlingSide, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :boxerStyle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bpnId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :brainInfoNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :brainInfoType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :branchFrom, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :branchTo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :brand, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :breeder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bridgeCarries, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :brinCode, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :britishComedyAwards, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :britishOpen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :britishWins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :broadcastArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :broadcastNetwork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :broadcastRepeater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :broadcastStationClass, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :broadcastTranslator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bronzeMedalDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bronzeMedalMixed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bronzeMedalSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bronzeMedalist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :brother, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :budget, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :budgetYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :builder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :building, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :buildingEndDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :buildingEndYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :buildingStartDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :buildingStartYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :buildingType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bustSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :bustWaistHipSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cableCar, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :calculationNeeds, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :callSign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :callsignMeaning, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :campus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :campusSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :campusType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :canBaggageChecked, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cannonNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :canonizedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :canonizedDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :canonizedPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :canton, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capacity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capacityFactor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capital, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capitalCoordinates, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capitalCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capitalDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capitalElevation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capitalMountain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capitalPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capitalPosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :capitalRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :captureDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :carNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :carbohydrate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :carcinogen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :careerPoints, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :careerPrizeMoney, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :careerStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cargoFuel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cargoGas, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cargoWater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :casNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :casSupplemental, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :case, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :casualties, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :catch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :category, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :caterer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :catholicPercentage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :causalties, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :causeOfDeath, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :causedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ccaState, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ceeb, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ceiling, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cemetery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :censusYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :center, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :centuryBreaks, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ceo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ceremonialCounty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :certification, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :certificationDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cesarAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chEBI, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :chEMBL, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chairLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chairman, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chairmanTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chairperson, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :champion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :championInDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :championInDoubleFemale, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :championInDoubleMale, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :championInMixedDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :championInSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :championInSingleFemale, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :championInSingleMale, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :championships, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chancellor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :channel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chaplain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :characterInPlay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chef, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :chemSpiderId, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :chemicalFormula, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chiefEditor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chiefPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :child, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :childOrganisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :choreographer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chorusCharacterInPlay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :christeningDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :chromosome, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cinematography, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :circle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :circuitLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :circuitName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :circulation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :circumcised, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cites, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :citizenship, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :city, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cityLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cityRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :citySince, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cityType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :clade, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :class, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :classes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :classification, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :classis, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :climate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :climbUpNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :closeTo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :closed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :closingDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :closingFilm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :closingYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :clothSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :clothingSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :club, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :clubsRecordGoalscorer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cluster, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cmpEvaDuration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cmykCoordinateBlack, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cmykCoordinateCyanic, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cmykCoordinateMagenta, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cmykCoordinateYellow, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :co2Emission, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coExecutiveProducer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coProducer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coach, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coachClub, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coachSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coachedTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coachingRecord, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coalition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coastLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coastLine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coatOfArms, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :code, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeBook, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeIndex, - isDefinedBy: "dbo:".freeze - term :codeLandRegistry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeListOfHonour, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeMemorial, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeMunicipalMonument, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeNationalMonument, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeProvincialMonument, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeSettlement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :codeStockExchange, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coden, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coemperor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :collaboration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :colleague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :collection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :collectionSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :collectivityMinority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :college, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :collegeHof, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :colonialName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :colorChart, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :colour, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :colourHexCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :colourName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :combatant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :comic, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :comitat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :command, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :commandModule, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :commandStructure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :commandant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :commander, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :comment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :commissioner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :commissionerDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :commissioningDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :committee, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :committeeInLegislature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :commonName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :commune, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :communityIsoCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :company, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :comparable, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :competition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :competitionTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :compiler, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :completionDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :complexion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :complexity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :complications, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :component, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :composer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :compressionRatio, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :computingInput, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :computingMedia, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :computingPlatform, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :configuration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :confirmedCases, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :conflict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :congressionalDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :connectsReferencedTo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :connotation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :consecration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :conservationStatus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :conservationStatusSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :constellation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :constituencyDistrict, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :construction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :constructionMaterial, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :contest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :continent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :continentRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :continentalTournament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :continentalTournamentBronze, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :continentalTournamentGold, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :continentalTournamentSilver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :contractAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :contractor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :convictionDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :convictionPenalty, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coolingSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :copilote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coronationDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cosparId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cost, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :costumeDesigner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :council, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :councilArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :country, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :countryCode, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :countryOrigin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :countryRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :countryWithFirstAstronaut, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :countryWithFirstSatellite, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :countryWithFirstSatelliteLaunched, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :countryWithFirstSpaceflight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :county, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :countySeat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :course, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :courseArea, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cousurper, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :coverArtist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cpu, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :created, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :creationChristianBishop, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :creationYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :creativeDirector, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :creator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :creatorOfDish, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :credit, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :crest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :crew, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :crewMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :crewSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :crews, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :criminalCharge, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :criteria, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :crosses, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :crownDependency, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cuisine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cultivatedVariety, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :curator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currency, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currencyCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentPartner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentProduction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentRecord, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentStatus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentTeamManager, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentTeamMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentWorldChampion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :currentlyUsedFor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :custodian, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cyclistGenre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cylinderBore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :cylinderCount, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :daira, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :damage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :damsire, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :danseCompetition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :danseScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :"data/definitions.ttl", - "http://open.vocab.org/terms/describes": "dbo:".freeze + "http://open.vocab.org/terms/describes": "http://dbpedia.org/ontology/".freeze term :date, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateAct, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateAgreement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateBudget, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateClosed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateCompleted, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateConstruction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateExtended, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateLastUpdated, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateOfAbandonment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateOfBurial, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateUnveiled, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dateUse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :daughter, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :davisCup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :day, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :daylightSavingTimeZone, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dbnlCodeDutch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dcc, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deFactoLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deadInFightDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deadInFightPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dean, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deanery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deathAge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deathCause, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deathDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deathPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deathYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :debut, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :debutTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :debutWork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dec, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :decay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :decideDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :declination, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :decommissioningDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :decoration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :defeat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :defeatAsMgr, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :definition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :defunct, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :delegateMayor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :delegation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deliveryDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deme, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :demographics, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :demographicsAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :demolitionDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :demolitionYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :demonym, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :denomination, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :density, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :department, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :departmentCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :departmentPosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :depictionDescription, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :depth, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :depthQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :depths, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :deputy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :derivative, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :derivedWord, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :description, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :designCompany, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :designer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :destination, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :destructionDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :detectionMethod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :detractor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :developer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dfE, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :diameter, - isDefinedBy: "dbo:".freeze - term :different, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :differentialDiagnosis, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :digitalChannel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :digitalSubChannel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :diocese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :diploma, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :director, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :disappearanceDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :disbanded, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :discharge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dischargeAverage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :disciple, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :discipline, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :discontinued, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :discovered, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :discoverer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :discovery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :disease, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :diseasesDB, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :diseasesDb, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :displacement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dissolutionDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dissolutionYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dissolved, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dist_ly, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dist_pc, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distance, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceLaps, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceToBelfast, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceToCapital, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceToCardiff, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceToCharingCross, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceToDouglas, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceToDublin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceToEdinburgh, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceToLondon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceToNearestCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distanceTraveled, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distributingCompany, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distributingLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :distributor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :district, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :division, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dockedTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :doctoralAdvisor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :doctoralStudent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :documentDesignation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :documentNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :domain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :dorlandsId, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dorlandsPrefix, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dorlandsSuffix, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :draft, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :draftLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :draftPick, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :draftPosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :draftRound, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :draftTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :draftYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :drainsFrom, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :drainsTo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :drama, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dressCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :drugbank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :"drugs.com", + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dryCargo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dubber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :duration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dutchArtworkCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dutchCOROPCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dutchMIPCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dutchNAIdentifier, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dutchPPNCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dutchRKDCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dutchWinkelID, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :dynasty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eMedicineSubject, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eMedicineTopic, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eTeatrId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eastPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ecNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :editing, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :editor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :editorTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :education, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :educationPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :educationSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :effectiveRadiatedPower, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :egafdId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :einecsNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ekatteCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :electionDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :electionDateLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :electionMajority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :elementAbove, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :elementBlock, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :elementGroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :elementPeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :elevation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :elevationQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :elevatorCount, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :elo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eloRecord, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :emblem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :emmyAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :employer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :employersCelebration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :end, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endCareer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endDateTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endOccupation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endReign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endYearOfInsertion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endYearOfSales, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endangeredSince, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endingTheme, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :endowment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :enemy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :engine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :enginePower, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :engineType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :engineer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ensembl, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :enshrinedDeity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :entourage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :entrezgene, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eparchy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :episode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :episodeNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :epoch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eptFinalTable, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eptItm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eptTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :equipment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :equity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :era, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eruption, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eruptionYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :escalafon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :escapeVelocity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :espnId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :established, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :establishment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ethnicGroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ethnicGroupsInYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ethnicity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eurobabeIndexId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :europeanAffiliation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :europeanChampionship, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :europeanParliamentGroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :europeanUnionEntranceDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :event, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eventDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eventDescription, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :executiveHeadteacher, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :executiveProducer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :exhibition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :existence, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :expedition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :explorer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :externalOrnament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :extinctionDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :extinctionYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eyeColor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eyeColour, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :eyes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :faaLocationIdentifier, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :facilityId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :facultySize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :failedLaunches, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :family, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :familyMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fansgroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fareZone, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fastestDriver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fastestDriverCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fastestDriverTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fastestLap, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :fatalityRate, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :father, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fauna, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fc, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fcRuns, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fdaUniiCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :feastDay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :feat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :feature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :features, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fedCup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :federalState, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :federation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fees, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fibahof, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :field, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fighter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fileExtension, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fileSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fileURL, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :filename, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fillingStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :film, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :filmAudioType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :filmColourType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :filmFareAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :filmNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :filmPolskiId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :filmRuntime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :filmVersion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :finalFlight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :finalLost, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :finalLostDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :finalLostSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :finalLostTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :finalPublicationDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :finalPublicationYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fipsCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstAirDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstAppearance, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstAscent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstAscentPerson, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstAscentYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstBroadcast, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstDriver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstDriverCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstDriverTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstFlight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstFlightEndDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstFlightStartDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstGame, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstLaunch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstLaunchDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstLaunchRocket, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstMention, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstOlympicEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstOwner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstPopularVote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstProMatch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstPublicationDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstPublicationYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstPublisher, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstRace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstWin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :firstWinner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flag, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flagBearer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flagBorder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flagCaption, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flagLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flagSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flashPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :floodingDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :floorArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :floorCount, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flora, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flower, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :flyingHours, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :foalDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :focus, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :followedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :followingEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :follows, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :foot, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :footedness, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :forces, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :foresterDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :format, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formationDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formationYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerBandMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerBroadcastNetwork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerCallsign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerChannel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerChoreographer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerCoach, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerHighschool, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerPartner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formerTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :formula, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fossil, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :foundation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :foundationPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :foundedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :founder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :foundingDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :foundingYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fourthCommander, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :frazioni, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :free, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :freeDanseScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :freeFlightTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :freeLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :freeProgCompetition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :freeProgScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :freeScoreCompetition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :frequency, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :frequencyOfPublication, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :frequentlyUpdated, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :friend, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :frontierLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :frozen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fuel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fuelCapacity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fuelConsumption, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fuelSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fuelType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fuelTypeName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fullCompetition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fullScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :functionEndDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :functionEndYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :functionStartDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :functionStartYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :fundedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :galicianSpeakersDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :galicianSpeakersPercentage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :galleryItem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gameArtist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gameEngine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gameModus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :games, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :garrison, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gasChambers, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gaudiAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :gdpPerCapita, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geminiAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gender, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geneLocation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geneLocationEnd, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geneLocationStart, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geneReviewsId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geneReviewsName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :generalCouncil, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :generalManager, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :generationUnits, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :genomeDB, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :genre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :genus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geolocDepartment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geolocDual, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geologicPeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :geology, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :giniCoefficient, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :giniCoefficientAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :giniCoefficientCategory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :giniCoefficientRanking, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :glycemicIndex, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gnisCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gnl, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goalsInLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goalsInNationalTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goldMedalDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goldMedalMixed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goldMedalSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goldMedalist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goldenCalfAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goldenGlobeAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goldenRaspberryAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governingBody, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :government, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governmentCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governmentElevation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governmentMountain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governmentPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governmentPosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governmentRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governmentType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governorGeneral, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :governorate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :goyaAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :gradName, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :gradNum, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grades, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grammyAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grandsire, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grave, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grayPage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :graySubject, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :greekName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :greenLongDistancePisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :greenSkiPisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gridReference, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grindingCapability, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gross, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grossDomesticProduct, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grossDomesticProductAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grossDomesticProductNominalPerCapita, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grossDomesticProductPerPeople, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grossDomesticProductPurchasingPowerParityPerCapita, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :grossDomesticProductRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ground, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :groundsForLiquidation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :groupCommemorated, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :growingGrape, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :guest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gun, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :gymApparatus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hairColor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hairColour, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hairs, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hallOfFame, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hand, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :handedness, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :handisport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasAbsorbedMunicipality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasAnnotation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasChannel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasInput, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasInsidePlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasJunctionWith, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasKMLData, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasNaturalBust, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasOutsidePlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasSurfaceForm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hasVariant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :head, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :headAlloy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :headChef, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :headLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :headOfFamily, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :headquarter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :headteacher, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :height, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :heightAboveAverageTerrain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :heightAgainst, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :heightAttack, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :heir, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :heisman, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :heritageRegister, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hgncid, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :highest, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :highestAltitude, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestBreak, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestBuildingInYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestMountain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestPointIsland, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestPosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highestState, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highschool, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :highwaySystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hipSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :historicalMap, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :historicalName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :historicalRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hof, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :homage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :homeArena, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :homeColourHexCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :homeStadium, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :homeport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hometown, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :honours, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hopmanCup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :horseRidingDiscipline, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :house, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hraState, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hsvCoordinateHue, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hsvCoordinateSaturation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hsvCoordinateValue, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hubAirport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :humanDevelopmentIndex, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :humanDevelopmentIndexAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :humanDevelopmentIndexRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :humanDevelopmentIndexRankingCategory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :hybrid, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iafdId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iataAirlineCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iataLocationIdentifier, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ibdbId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :icaoAirlineCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :icaoLocationIdentifier, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :icd1, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :icd10, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :icd9, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :icdo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iconographicAttributes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :id, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :idAllocine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :idNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :identificationSymbol, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ideology, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iftaAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iihfHof, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :illiteracy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :illustrator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :imageSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :imdbId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :impactFactor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :impactFactorAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :importantStation, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :imposedDanseCompetition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :imposedDanseScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :inCemetery, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :inchi, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :inclination, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :income, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :incumbent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :individualisedGnd, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :individualisedPnd, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :industry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :infantMortality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :inflow, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :influenced, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :influencedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :information, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :informationName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ingredient, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ingredientName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :initiallyUsedFor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :inn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :innervates, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :inscription, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :inseeCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :installedCapacity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :institution, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :instrument, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :intercommunality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :interest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :internationalAffiliation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :internationalPhonePrefix, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :internationalPhonePrefixLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :internationally, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :introduced, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :introductionDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iobdbId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isCityState, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isHandicappedAccessible, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isPartOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isPartOfAnatomicalStructure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isPartOfMilitaryConflict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isPartOfName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isPartOfWineRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isPeerReviewed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isRouteStop, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isbn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isil, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :island, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isniId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iso31661Code, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iso6391Code, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iso6392Code, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iso6393Code, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isoCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :isoCodeRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :issDockings, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :issn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :istat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ithfDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iucnCategory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :iupacName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :jockey, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :jointCommunity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :jstor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :judge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :juniorSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :juniorTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :juniorYearsEndYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :juniorYearsStartYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :jureLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :jurisdiction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :jutsu, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :kegg, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :keyPerson, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :khlDraft, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :khlDraftTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :khlDraftYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :killedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :kinOfLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :kindOfCoordinate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :kindOfCriminal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :kindOfCriminalAction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :kindOfRock, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :kingdom, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :knownFor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ko, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lahHof, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lake, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :land, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landPercentage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landRegistryCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landeshauptmann, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landingDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landingSite, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landingVehicle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landskap, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landtag, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :landtagMandate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :language, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :languageCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :languageFamily, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :languageRegulator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :largestCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :largestMetro, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :largestSettlement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :largestWin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastAirDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastAppearance, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastElectionDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastFamilyMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastFlight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastFlightEndDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastFlightStartDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastLaunch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastLaunchDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastLaunchRocket, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastPosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastProMatch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastPublicationDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastRace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lastWin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :laterality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :latestElection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :latestPreviewDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :latestPreviewVersion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :latestReleaseDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :latestReleaseVersion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :latinName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :launch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :launchDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :launchPad, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :launchSite, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :launchVehicle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :launches, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :laurenceOlivierAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lawCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :layingDown, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :layout, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lcc, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lccn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lccnId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lchfDraft, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lchfDraftTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lchfDraftYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leadTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leadYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leaderFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leaderName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leaderParty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leaderTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leadership, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :league, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leagueManager, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leftChild, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :leftTributary, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :legalArrondissement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :legalArticle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :legalForm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :legislativePeriodName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :legislature, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :length, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lengthQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lengthReference, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lethalOnChickens, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lethalOnMice, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lethalOnRabbits, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lethalOnRats, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :liberationDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :libretto, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :licenceLetter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :licenceNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :licenceNumberLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :license, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :licensee, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lieutenancy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lieutenancyArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lieutenant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lifeExpectancy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :limit, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lineLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :linguisticsTradition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :linkedSpace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :linkedTo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :listItemOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :literaryGenre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :littlePoolRecord, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :livingPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :loadLimit, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :localAuthority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :localPhonePrefix, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :locality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :localization, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :localizationThumbnail, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :localizationThumbnailCaption, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :locatedInArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :location, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :locationCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :locationCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :locationIdentifier, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :locationName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :locomotive, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :locusSupplementaryData, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :logo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :longDistancePisteKilometre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :longDistancePisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :longName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :longtype, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lounge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lowerAge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lowerEarthOrbitPayload, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lowest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :lowestAltitude, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lowestMountain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lowestPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lowestPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lowestPosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lowestRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lowestState, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lunarEvaTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lunarLandingSite, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lunarModule, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lunarOrbitTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lunarRover, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lunarSampleMass, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lunarSurfaceTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lymph, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :lyrics, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :magazine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maidenFlight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maidenFlightRocket, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maidenVoyage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mainBuilding, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mainCharacter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mainDomain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mainFamilyBranch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mainInterest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mainIsland, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mainIslands, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mainOrgan, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mainspan, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maintainedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :majorIsland, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :majorShrine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :majorityFloorLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :majorityLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :makeupArtist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :management, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managementCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managementElevation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managementMountain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managementPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managementPosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managementRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :manager, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managerClub, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managerSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managerTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managerYears, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managerYearsEndYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managerYearsStartYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :managingEditor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mandate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :manufactory, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :manufacturer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :map, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mapCaption, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mapDescription, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :march, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :marketCapitalisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mascot, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mass, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :massif, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mastersWins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :matchPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :material, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :max, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maxAbsoluteMagnitude, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maxApparentMagnitude, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maxTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumAreaQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumBoatBeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumBoatLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumDepth, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumDepthQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumDischarge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumElevation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumInclination, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :maximumTemperature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mayor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mayorArticle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mayorCouncillor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mayorFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mayorMandate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mayorTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mbaId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meanRadius, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meanTemperature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meaning, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :measurements, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :medalist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :media, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mediaItem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mediaType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :medicalCause, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :medicalDiagnosis, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :medicalSpecialty, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :medication, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :medlinePlus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meetingBuilding, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meetingCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meetingRoad, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meltingPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :member, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :memberOfParliament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :membership, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :membershipAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mentor, - isDefinedBy: "dbo:".freeze - term :mergedIntoParty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mergedSettlement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :mergedWith, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mergerDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meshId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meshName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :meshNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :messierName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :metropolitanBorough, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mgiid, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :militaryBranch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :militaryCommand, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :militaryFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :militaryGovernment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :militaryRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :militaryService, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :militaryUnit, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :militaryUnitSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :millSpan, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :millType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :millsCodeBE, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :millsCodeDutch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :millsCodeNL, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :millsCodeNLVerdwenen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :millsCodeNLWindmotoren, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :min, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minimumArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minimumAreaQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minimumDischarge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minimumElevation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minimumInclination, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minimumTemperature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :minister, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minorityFloorLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :minorityLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mirDockings, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mission, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :missionDuration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :missions, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :model, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :modelEndDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :modelEndYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :modelLineVehicle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :modelStartDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :modelStartYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :molarMass, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :molecularWeight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :monarch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :month, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mood, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mostDownPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :mostSuccessfulPlayer, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mostWins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mother, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :motive, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :motto, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mount, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mountainRange, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mouthCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mouthDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mouthElevation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mouthMountain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mouthPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mouthPosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mouthRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mouthState, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :movement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :movie, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mukhtar, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :municipality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :municipalityAbsorbedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :municipalityCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :municipalityRenamedTo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :municipalityType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :museum, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :museumType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicBand, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :musicBrainzArtistId, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicComposer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicFormat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicFusionGenre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicSubgenre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicalArtist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicalBand, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicalKey, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :musicians, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :muteCharacterInPlay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mvp, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :mythology, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :naacpImageAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :name, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameDay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInCantoneseChinese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInHangulKorean, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInHanjaKorean, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInJapanese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInMindongyuChinese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInMinnanyuChinese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInPinyinChinese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInSimplifiedChinese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInTraditionalChinese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nameInWadeGilesChinese, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :namedAfter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :namedByLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :names, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :narrator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalAffiliation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalChampionship, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalFilmAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalOlympicCommittee, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalRanking, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalSelection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalTeamMatchPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalTeamYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalTopographicSystemMapNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalTournament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalTournamentBronze, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalTournamentGold, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalTournamentSilver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationalYears, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nationality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ncaaSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ncaaTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ncbhof, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :nciId, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ndlId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nearestCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :neighboringMunicipality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :neighbourConstellations, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :neighbourRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :neighbourhood, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nerve, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :netIncome, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :network, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :networth, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :newspaper, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nextEntity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nextEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nextMission, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nflCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nflSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nflTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ngcName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nisCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nlaId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nndbId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :noContest, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nobelLaureates, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nominee, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nonFictionSubject, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nonProfessionalCareer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :nord, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :northEastPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :northPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :northWestPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :notSolubleIn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :notableCommander, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :notableFeatures, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :notableIdea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :notableStudent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :notableWine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :notableWork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :note, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :noteOnPlaceOfBurial, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :noteOnRestingPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :notes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :notifyDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :novel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nrhpReferenceNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nrhpType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nssdcId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :number, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberBuilt, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfAcademicStaff, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfAlbums, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfArrondissement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfBombs, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfBronzeMedalsWon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfCanton, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfCantons, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfCapitalDeputies, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfCity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfClasses, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfClassesWithResource, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfClassrooms, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfClubs, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfCollectionItems, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfCompetitors, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfCounties, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfCountries, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfCrew, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfDeaths, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfDependency, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfDisambiguates, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfDistricts, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfDoctoralStudents, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfDoors, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfEmployees, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfEntrances, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfEpisodes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfFederalDeputies, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfFilms, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfGoals, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfGoldMedalsWon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfGraduateStudents, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfGraves, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfHoles, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfHouses, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfIndegree, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfIntercommunality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfIsland, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfIslands, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfLanes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfLaps, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfLaunches, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfLawyers, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfLifts, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfLines, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfLiveAlbums, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfLocations, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfMatches, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfMembers, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfMembersAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfMinistries, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfMunicipalities, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfMusicalArtistEntities, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfMusicalArtistInstrument, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfMusicalArtistStyle, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfNeighbourhood, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfNewlyIntroducedSports, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfOffices, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfOfficials, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfOrbits, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfOutdegree, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfPads, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfPages, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfParkingSpaces, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfParticipatingAthletes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfParticipatingFemaleAthletes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfParticipatingMaleAthletes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfParticipatingNations, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfPassengers, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfPeopleAttending, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfPeopleLicensed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfPersonBornInPlace, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfPersonEntities, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfPersonFromUniversity, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfPersonInOccupation, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfPiersInWater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfPixels, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfPlatformLevels, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfPlayers, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfPostgraduateStudents, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfPredicates, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfProfessionals, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfProperties, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfPropertiesUsed, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfReactors, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfRedirectedResource, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfResource, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfResourceOfClass, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfResourceOfType, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfResourceWithType, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfRestaurants, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfRockets, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfRooms, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfRun, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSeasons, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSeats, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSeatsInParliament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSettlement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfSettlementsInCountry, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSilverMedalsWon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfSoccerPlayerInCountryRepre, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfSoccerPlayersBornInPlace, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfSoccerPlayersInTeam, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSpans, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSpeakers, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSports, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSportsEvents, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfStaff, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfStars, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfStateDeputies, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfStations, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfStores, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfStudents, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfStudioAlbums, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfSuites, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfTeams, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfTracks, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfTrails, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfTriples, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfTurns, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfUndergraduateStudents, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfUniqeResources, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :numberOfUseOfProperty, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfVehicles, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfVillages, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfVineyards, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfVisitors, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfVisitorsAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfVolumes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfVolunteers, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberOfWineries, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :numberSold, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :nutsCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :observatory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :occupation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :oclc, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :odor, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :offeredClasses, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :office, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :officerInCharge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :officialLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :officialName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :officialOpenedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :officialSchoolColour, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ofsCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :oilSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :okatoCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :oldDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :oldName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :oldProvince, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :oldTeamCoached, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :oldcode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :olivierAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :olympicGames, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :olympicGamesBronze, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :olympicGamesGold, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :olympicGamesSilver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :olympicGamesWins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :olympicOathSwornBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :olympicOathSwornByAthlete, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :olympicOathSwornByJudge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :omim, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :onChromosome, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ons, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :openAccessContent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :openingDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :openingFilm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :openingTheme, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :openingYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :operatingIncome, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :operatingSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :operator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :opponent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :opponents, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orbitalEccentricity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orbitalFlights, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orbitalInclination, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orbitalPeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orbits, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orcidId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :order, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orderDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orderInOffice, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ordination, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :organ, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :organSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :organisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :organisationMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orientation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :origin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originalDanseCompetition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originalDanseScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originalEndPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originalLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originalMaximumBoatBeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originalMaximumBoatLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originalName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originalStartPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originalTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :originallyUsedFor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :origo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orogeny, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :orpha, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :orthologousGene, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :other, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherActivity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherAppearances, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherChannel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherFamilyBranch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherFuelType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherInformation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherMedia, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherOccupation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherParty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherServingLines, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherSportsExperience, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :otherWins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :outflow, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :output, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :outskirts, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :overallRecord, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :oversight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :owner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :owningCompany, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :owningOrganisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :owns, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :painter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parentCompany, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parentMountainPeak, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parentOrganisation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :parentheses, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parish, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parkingInformation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parkingLotsCars, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parkingLotsTrucks, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parliament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parliamentType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :parliamentaryGroup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :part, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :partialFailedLaunches, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :participant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :participatingIn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :particularSign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :partitionCoefficient, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :partner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :party, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :partyNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :passengersPerDay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :passengersPerYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :passengersUsedSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pastMember, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pastor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :patent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :patron, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :patronSaint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pccSecretary, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pdb, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :peabodyAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :penaltiesTeamA, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :penaltiesTeamB, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :penaltyScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :pendamicDeaths, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :penisLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :peopleName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :perCapitaIncome, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :perCapitaIncomeAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :perCapitaIncomeRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :percentage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :percentageAlcohol, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :percentageFat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :percentageLiteracyMen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :percentageLiteracyWomen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :percentageLiterate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :percentageOfAreaWater, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :performer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :periapsis, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :perifocus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :perimeter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :period, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :perpetrator, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :person, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :personFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :personName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pgaWins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :philosophicalSchool, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :phonePrefix, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :phonePrefixLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :photographer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :phylum, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :picture, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pictureDescription, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pictureFormat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :picturesCommonsCategory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :piercing, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pisciculturalPopulation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pistonStroke, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :place, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :placeOfBurial, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :placeOfWorship, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :plant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :playRole, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :playerInTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :playerSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :playerStatus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :playingTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :plays, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pluviometry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :podium, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :podiums, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pole, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :poleDriver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :poleDriverCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :poleDriverTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :polePosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :poles, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :policeName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :polishFilmAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :politicGovernmentDepartment, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :politicalFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :politicalLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :politicalMajority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :politicalPartyInLegislature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :politicalPartyOfLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :politicalSeats, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :politician, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :popularVote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :population, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationDensity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationMetro, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationMetroDensity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationPctChildren, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationPctMen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationPctWomen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationRural, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationRuralDensity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationTotal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationTotalRanking, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationTotalReference, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationUrban, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationUrbanDensity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :populationYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :portfolio, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :portrayer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :position, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :postalCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :power, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :powerOutput, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :powerType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :precursor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :predecessor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :prefaceBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :prefect, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :prefectMandate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :prefecture, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :prefix, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :premiereDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :premierePlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :premiereYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :presentMunicipality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :presentName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :presenter, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :president, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :presidentGeneralCouncil, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :presidentGeneralCouncilMandate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :presidentRegionalCouncil, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :presidentRegionalCouncilMandate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousDemographics, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousEditor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousEntity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousInfrastructure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousMission, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousPopulation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousPopulationTotal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :previousWork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :price, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :primaryFuelType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :primate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :primeMinister, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :primogenitor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :principal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :principalArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :principalEngineer, - isDefinedBy: "dbo:".freeze - term :proPeriod, - isDefinedBy: "dbo:".freeze - term :proSince, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :proTeam, - isDefinedBy: "dbo:".freeze - term :proYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :probowlPick, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :procedure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :producedBy, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :producer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :produces, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :product, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :productShape, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :production, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :productionCompany, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :productionEndDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :productionEndYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :productionStartDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :productionStartYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :productionYears, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :profession, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :programCost, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :programmeFormat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :programmingLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :project, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectBudgetFunding, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectBudgetTotal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectCoordinator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectEndDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectKeyword, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectObjective, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectParticipant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectReferenceID, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectStartDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :projectType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :prominence, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :promotion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pronunciation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :prospectLeague, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :prospectTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :protectionStatus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :protein, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :protestantPercentage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :provCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :provides, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :province, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :provinceIsoCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :provinceLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :provost, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pseudonym, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :pubchem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :publication, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :publicationDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :publiclyAccessible, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :publisher, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :purchasingPowerParity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :purchasingPowerParityRank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :purchasingPowerParityYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :purpose, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :qatarClassic, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :quebecerTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :quotation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :quote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ra, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :race, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :raceHorse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :raceLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :raceResult, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :raceTrack, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :raceWins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :races, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :racketCatching, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :radio, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :radioStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :radius_ly, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :railGauge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :railwayLineUsingTunnel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :railwayPlatforms, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :railwayRollingStock, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :range, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rank, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rankAgreement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rankArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rankInFinalMedalCount, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rankPopulation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ranking, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rankingWins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rankingsDoubles, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rankingsSingles, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rating, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ratio, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rebuildDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rebuilder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rebuildingDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rebuildingYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :recentWinner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :recommissioningDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :recordDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :recordLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :recordedIn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :recoveryCases, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rector, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :redListIdNL, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :redLongDistancePisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :redSkiPisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :redline, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :refcul, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reference, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reffBourgmestre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :refgen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :refgeo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :refpol, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :refseq, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :refseqmrna, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :refseqprotein, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :regency, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :regentOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :regime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :region, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :regionLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :regionServed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :regionType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :regionalCouncil, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :regionalLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :regionalPrefecture, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :registration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :registry, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :registryNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reignName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reigningPope, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :related, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :relatedFunctions, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :relatedMeanOfTransportation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :relatedPlaces, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :relation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :relative, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :relativeAtomicMass, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :releaseDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :releaseLocation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :relics, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :relief, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :religion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :religiousHead, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :religiousHeadLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :religiousOrder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reopened, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reopeningDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reopeningYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reportingMark, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :representative, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :requirement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :reservations, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :residence, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :resolution, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :restingDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :restingPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :restingPlacePosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :restoreDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :restriction, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :result, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :retentionTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :retired, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :retiredRocket, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :retirementDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :revenue, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :revenueYear, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :review, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rgbCoordinateBlue, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rgbCoordinateGreen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rgbCoordinateRed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ridId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rightAscension, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rightChild, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rightTributary, - isDefinedBy: "dbo:".freeze - term :rival, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :rivalSchool, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :river, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :riverBranch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :riverBranchOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :riverMouth, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rkdArtistsId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :road, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rocket, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rocketFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rocketStages, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rolandGarrosDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rolandGarrosMixed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rolandGarrosSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :role, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :roleInEvent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :roofHeight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :rotationPeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :route, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeActivity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeDirection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeEnd, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeEndDirection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeEndLocation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeJunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeLine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeNext, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routePrevious, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeStart, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeStartDirection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeStartLocation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :routeTypeAbbreviation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :royalAnthem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ruling, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :runningMate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :runtime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :runwayDesignation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :runwayLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :runwaySurface, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :runwayWidth, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ruralMunicipality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :saint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :salary, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sales, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sameName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :satScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :satcat, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :satellite, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :satellitesDeployed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :scale, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :scene, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :school, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :schoolBoard, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :schoolCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :schoolNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :schoolPatron, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :scientificName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :score, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :screenActorsGuildAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :season, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :seasonManager, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :seasonNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :seatNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :seatingCapacity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :second, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :secondCommander, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :secondDriver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :secondDriverCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :secondLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :secondPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :secondPopularVote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :secondTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :secretaryGeneral, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :security, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :seiyu, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :selection, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :selectionPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :selectionYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :selibrId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :senator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :senior, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :seniority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :seniunija, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sentence, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :series, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :service, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :serviceEndDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :serviceEndYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :serviceModule, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :serviceNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :serviceStartDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :serviceStartYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :servingRailwayLine, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :servingSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :servingTemperature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sessionNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :setDesigner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :settingOfPlay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :settlement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :settlementAttached, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :setupTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :severeCases, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sex, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sexualOrientation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shape, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shareDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shareOfAudience, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shareSource, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sharingOutPopulation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sharingOutPopulationYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sheading, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shipBeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shipCrew, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shipDisplacement, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shipDraft, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shipLaunch, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shoeNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shoeSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shoot, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shoots, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shoreLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shortProgCompetition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shortProgScore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :show, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :showJudge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :shuttle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sibling, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :signName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :signature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :significantBuilding, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :significantDesign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :significantProject, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :silCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :silverMedalDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :silverMedalMixed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :silverMedalSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :silverMedalist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :simcCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :similar, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sire, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :siren, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :sister, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sisterCollege, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sisterNewspaper, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sisterStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sixthFormStudents, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sizeBlazon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sizeLogo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sizeMap, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sizeThumbnail, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :size_v, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :skiLift, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :skiPisteKilometre, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :skiPisteNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :skiTow, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :skills, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :skinColor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :slogan, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :smiles, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :snowParkNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerLeaguePromoted, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerLeagueRelegated, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerLeagueSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerLeagueWinner, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerTournamentClosingSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerTournamentLastChampion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerTournamentMostSteady, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerTournamentMostSuccesfull, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerTournamentOpeningSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerTournamentThisSeason, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soccerTournamentTopScorer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :solicitorGeneral, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :solubility, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :solvent, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :solventWithBadSolubility, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :solventWithGoodSolubility, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :solventWithMediocreSolubility, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :son, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :soundRecording, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :source, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceConfluence, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceConfluenceCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceConfluenceElevation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceConfluenceMountain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceConfluencePlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceConfluencePosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceConfluenceRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceConfluenceState, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceDistrict, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceElevation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceMountain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourcePlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourcePosition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceState, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sourceText, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :southEastPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :southPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :southWestPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sovereignCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :space, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spacecraft, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spacestation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spacewalkBegin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spacewalkEnd, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :speaker, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :specialEffects, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :specialTrial, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :specialist, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :speciality, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :specialization, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :species, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :speedLimit, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spike, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :splitFromParty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spokenIn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spokesperson, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sportCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sportDiscipline, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sportGoverningBody, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sportSpecialty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sportsFunction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spouse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spouseName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spurOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :spurType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :squadNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stadium, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :staff, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :starRating, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :starring, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :start, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startCareer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startDateTime, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startOccupation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startReign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startWct, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startWqs, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startYearOfInsertion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :startYearOfSales, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :statName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :statValue, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :state, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stateDelegate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stateOfOrigin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stateOfOriginPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stateOfOriginTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stateOfOriginYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stationEvaDuration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stationStructure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stationVisitDuration, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :statistic, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :statisticLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :statisticValue, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :statisticYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :status, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :statusManager, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :statusYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stellarClassification, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stockExchange, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :storyEditor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :strength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :structuralSystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :student, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :style, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :stylisticOrigin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subClassis, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subFamily, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subGenus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subMunicipalityType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subOrder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subPrefecture, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subTribus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subdivision, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subdivisionLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subdivisionName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subdivisions, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subjectOfPlay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subjectTerm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sublimationPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :suborbitalFlights, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subprefecture, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subregion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subsequentInfrastructure, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subsequentWork, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subsidiary, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subsystem, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subsystemLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :subtitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :successfulLaunches, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :successor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :sudocId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :summerAppearances, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :summerTemperature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :superFamily, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :superOrder, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :superTribus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :superbowlWin, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :superintendent, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :supplementalDraftRound, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :supplementalDraftYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :supplies, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :supply, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :suppreddedDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :surfaceArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :surfaceFormOccurrenceOffset, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :surfaceGravity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :surfaceType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :suspectedCases, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :swimmingStyle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :symbol, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :symptom, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :synonym, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :systemOfLaw, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :systemRequirements, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tag, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :taoiseach, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :targetAirport, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :targetSpaceStation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :taste, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tattoo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :taxon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :teachingStaff, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :team, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :teamCoached, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :teamManager, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :teamName, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :teamPoint, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :teamSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :teamTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :technique, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :televisionSeries, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tempPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :temperature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :templateName, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :temple, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :templeYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tenant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tennisSurfaceType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :termOfOffice, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :termPeriod, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :territory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :terytCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tessitura, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :testaverage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :theology, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :third, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :thirdCommander, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :thirdDriver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :thirdDriverCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :thirdPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :thirdTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :throwingSide, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :thumbnail, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :thumbnailCaption, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tie, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :time, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :timeInSpace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :timeZone, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :timeshiftChannel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :title, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :titleDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :titleDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :titleLanguage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :titleSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :toll, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tonyAward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :topFloorHeight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :topLevelDomain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :topSpeed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :topic, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :torchBearer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :torqueOutput, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :totalCargo, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :totalDiscs, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :totalIliCases, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :totalLaunches, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :totalMass, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :totalPopulation, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :totalTracks, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :totalTravellers, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :touristicSite, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tournamentOfChampions, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tournamentRecord, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :towerHeight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :trackLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :trackNumber, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :trackWidth, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tradeMark, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :tradingName, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :trainer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :trainerClub, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :trainerYears, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :training, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :translatedMotto, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :translator, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :transmission, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :treatment, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tree, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tribus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :trustee, - isDefinedBy: "dbo:".freeze - term :tu, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tuition, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tvComId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :tvShow, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :twinCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :twinTown, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :type, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :typeCoordinate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :typeOfElectrification, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :typeOfGrain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :typeOfStorage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :typeOfYeast, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :uRN, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :uciCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ulanId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :umbrellaTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :unNumber, + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :uncle, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :undraftedYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :unesco, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :unicode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :uniprot, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :unitCost, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :unitaryAuthority, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :unitedStatesNationalBridgeId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :university, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :unknownOutcomes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :unloCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :updated, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :upperAge, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :urbanArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :usOpenDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :usOpenMixed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :usOpenSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :usSales, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :usedInWar, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :uses, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :usingCountry, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :usk, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :usopenWins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :usurper, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :utcOffset, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :v_hb, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :value, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :valvetrain, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :vaporPressure, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :variantOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :varietals, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :vehicle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :vehicleCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :vehiclesInFleet, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :vehiclesPerDay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :vein, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :veneratedIn, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :version, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :viafId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :viceChancellor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :viceLeader, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :viceLeaderParty, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :vicePresident, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :vicePrimeMinister, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :vicePrincipal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :vicePrincipalLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :victim, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :victims, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :victory, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :victoryAsMgr, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :victoryPercentageAsMgr, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :virtualChannel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :visitorStatisticsAsOf, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :visitorsPerDay, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :visitorsPerYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :visitorsPercentageChange, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :visitorsTotal, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :voice, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :voiceType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :volcanicActivity, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :volcanicType, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :volcanoId, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :voltageOfElectrification, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :volume, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :volumeQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :volumes, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :vonKlitzingConstant, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :votesAgainst, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :votesFor, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wagon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :waistSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :war, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :ward, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :water, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :waterArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :waterPercentage, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :watercourse, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :watershed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :waterwayThroughTunnel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wavelength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :weapon, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :webcast, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :websiteLabel, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :weddingParentsDate, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :weight, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :westPlace, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :whaDraft, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :whaDraftTeam, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :whaDraftYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wheelbase, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wholeArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :width, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :widthQuote, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageCharacterSize, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageDisambiguates, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageEditLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageExternalLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageExtracted, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageHistoryLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageID, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageInDegree, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageInterLanguageLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageLength, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageModified, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageOutDegree, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageRedirects, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageRevisionID, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageRevisionLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze + term :wikiPageUsesTemplate, + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageWikiLink, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikiPageWikiLinkText, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wikidataSplitIri, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wilaya, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wimbledonDouble, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wimbledonMixed, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wimbledonSingle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wineProduced, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wineRegion, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wineYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wingArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wingspan, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wins, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtAlpg, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtAsia, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtAus, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtChallenges, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtChampionships, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtJLPGA, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtJapan, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtKLPGA, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtLAGT, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtLET, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtLPGA, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtMajors, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtNWIDE, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtOtherTournaments, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtPGA, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtProTournaments, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtSenEuro, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsAtSun, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winsInEurope, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winterAppearances, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :winterTemperature, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :woRMS, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wordBefore, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :work, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :workArea, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :world, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :worldChampionTitleYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :worldOpen, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :worldTeamCup, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :worldTournament, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :worldTournamentBronze, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :worldTournamentGold, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :worldTournamentSilver, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :worstDefeat, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wptFinalTable, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wptItm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wptTitle, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :writer, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wsopItm, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wsopWinYear, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :wsopWristband, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :year, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :yearElevationIntoNobility, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :yearOfConstruction, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :yearOfElectrification, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :years, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :youthClub, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :youthWing, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :youthYears, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :zdb, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :zipCode, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze term :zodiacSign, - isDefinedBy: "dbo:".freeze + isDefinedBy: "http://dbpedia.org/ontology/".freeze end end diff --git a/lib/rdf/vocab/dc.rb b/lib/rdf/vocab/dc.rb index c383c3c..3d6951a 100644 --- a/lib/rdf/vocab/dc.rb +++ b/lib/rdf/vocab/dc.rb @@ -3,1168 +3,778 @@ # This file generated automatically using rdf vocabulary format from http://purl.org/dc/terms/ require 'rdf' 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 # Ontology definition ontology :"http://purl.org/dc/terms/", - "dc:modified": "2012-06-14".freeze, - "dc:publisher": "http://purl.org/dc/aboutdcmi#DCMI".freeze, - "dc:title": "DCMI Metadata Terms - other".freeze + "http://purl.org/dc/terms/modified": "2012-06-14".freeze, + "http://purl.org/dc/terms/publisher": "http://purl.org/dc/aboutdcmi#DCMI".freeze, + "http://purl.org/dc/terms/title": "DCMI Metadata Terms - other".freeze # Class definitions term :Agent, comment: "A resource that acts or has the power to act.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Agent".freeze, - type: ["dc:AgentClass".freeze, "rdfs:Class".freeze] + type: ["http://purl.org/dc/terms/AgentClass".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :AgentClass, comment: "A group of agents.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Agent Class".freeze, - subClassOf: "rdfs:Class".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BibliographicResource, comment: "A book, article, or other documentary resource.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Bibliographic Resource".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FileFormat, comment: "A digital resource format.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "File Format".freeze, - subClassOf: "dc:MediaType".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/MediaType".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Frequency, comment: "A rate at which something recurs.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Frequency".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Jurisdiction, comment: "The extent or range of judicial, law enforcement, or other authority.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Jurisdiction".freeze, - subClassOf: "dc:LocationPeriodOrJurisdiction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/LocationPeriodOrJurisdiction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LicenseDocument, comment: "A legal document giving official permission to do something with a resource.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "License Document".freeze, - subClassOf: "dc:RightsStatement".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/RightsStatement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LinguisticSystem, comment: "A system of signs, symbols, sounds, gestures, or rules used in communication.".freeze, - "dc:description": "Written, spoken, sign, and computer languages are linguistic systems.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Written, spoken, sign, and computer languages are linguistic systems.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Linguistic System".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Location, comment: "A spatial region or named place.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Location".freeze, - subClassOf: "dc:LocationPeriodOrJurisdiction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/LocationPeriodOrJurisdiction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LocationPeriodOrJurisdiction, comment: "A location, period of time, or jurisdiction.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Location, Period, or Jurisdiction".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaType, comment: "A file format or physical medium.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Media Type".freeze, - subClassOf: "dc:MediaTypeOrExtent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/MediaTypeOrExtent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaTypeOrExtent, comment: "A media type or extent.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Media Type or Extent".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MethodOfAccrual, comment: "A method by which resources are added to a collection.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Method of Accrual".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MethodOfInstruction, comment: "A process that is used to engender knowledge, attitudes, and skills.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Method of Instruction".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PeriodOfTime, comment: "An interval of time that is named or defined by its start and end dates.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Period of Time".freeze, - subClassOf: "dc:LocationPeriodOrJurisdiction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/LocationPeriodOrJurisdiction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalMedium, comment: "A physical material or carrier.".freeze, - "dc:description": "Examples include paper, canvas, or DVD.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Examples include paper, canvas, or DVD.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Physical Medium".freeze, - subClassOf: "dc:MediaType".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/MediaType".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalResource, comment: "A material thing.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Physical Resource".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Policy, comment: "A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Policy".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProvenanceStatement, comment: "Any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Provenance Statement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RightsStatement, comment: "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.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Rights Statement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SizeOrDuration, comment: "A dimension or extent, or a time taken to play or execute.".freeze, - "dc:description": "Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Size or Duration".freeze, - subClassOf: "dc:MediaTypeOrExtent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/MediaTypeOrExtent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Standard, comment: "A reference point against which other things can be evaluated or compared.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Standard".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :abstract, comment: "A summary of the resource.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Abstract".freeze, - subPropertyOf: ["dc11:description".freeze, "dc:description".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/description".freeze, "http://purl.org/dc/terms/description".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessRights, comment: "Information about who access the resource or an indication of its security status.".freeze, - "dc:description": "Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.".freeze, - "dc:issued": "2003-02-15".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:RightsStatement".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/RightsStatement".freeze, + "http://purl.org/dc/terms/description": "Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.".freeze, + "http://purl.org/dc/terms/issued": "2003-02-15".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Access Rights".freeze, - subPropertyOf: ["dc11:rights".freeze, "dc:rights".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/rights".freeze, "http://purl.org/dc/terms/rights".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accrualMethod, comment: "The method by which items are added to a collection.".freeze, - "dc:description": "Recommended practice is to use a value from the Collection Description Accrual Method Vocabulary [[DCMI-ACCRUALMETHOD](https://dublincore.org/groups/collections/accrual-method/)].".freeze, - "dc:issued": "2005-06-13".freeze, - domain: "dcmitype:Collection".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:MethodOfAccrual".freeze, - isDefinedBy: "dc:".freeze, + domain: "http://purl.org/dc/dcmitype/Collection".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/MethodOfAccrual".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to use a value from the Collection Description Accrual Method Vocabulary [[DCMI-ACCRUALMETHOD](https://dublincore.org/groups/collections/accrual-method/)].".freeze, + "http://purl.org/dc/terms/issued": "2005-06-13".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Accrual Method".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accrualPeriodicity, comment: "The frequency with which items are added to a collection.".freeze, - "dc:description": "Recommended practice is to use a value from the Collection Description Frequency Vocabulary [[DCMI-COLLFREQ](https://dublincore.org/groups/collections/frequency/)].".freeze, - "dc:issued": "2005-06-13".freeze, - domain: "dcmitype:Collection".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:Frequency".freeze, - isDefinedBy: "dc:".freeze, + domain: "http://purl.org/dc/dcmitype/Collection".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/Frequency".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to use a value from the Collection Description Frequency Vocabulary [[DCMI-COLLFREQ](https://dublincore.org/groups/collections/frequency/)].".freeze, + "http://purl.org/dc/terms/issued": "2005-06-13".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Accrual Periodicity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accrualPolicy, comment: "The policy governing the addition of items to a collection.".freeze, - "dc:description": "Recommended practice is to use a value from the Collection Description Accrual Policy Vocabulary [[DCMI-ACCRUALPOLICY](https://dublincore.org/groups/collections/accrual-policy/)].".freeze, - "dc:issued": "2005-06-13".freeze, - domain: "dcmitype:Collection".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:Policy".freeze, - isDefinedBy: "dc:".freeze, + domain: "http://purl.org/dc/dcmitype/Collection".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/Policy".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to use a value from the Collection Description Accrual Policy Vocabulary [[DCMI-ACCRUALPOLICY](https://dublincore.org/groups/collections/accrual-policy/)].".freeze, + "http://purl.org/dc/terms/issued": "2005-06-13".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Accrual Policy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alternative, comment: "An alternative name for the resource.".freeze, - "dc:description": "The distinction between titles and alternative titles is application-specific.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "The distinction between titles and alternative titles is application-specific.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Alternative Title".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:title".freeze, "dc:title".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/title".freeze, "http://purl.org/dc/terms/title".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audience, comment: "A class of agents for whom the resource is intended or useful.".freeze, - "dc:description": "Recommended practice is to use this property with non-literal values from a vocabulary of audience types.".freeze, - "dc:issued": "2001-05-21".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:AgentClass".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/AgentClass".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to use this property with non-literal values from a vocabulary of audience types.".freeze, + "http://purl.org/dc/terms/issued": "2001-05-21".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Audience".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :available, comment: "Date that the resource became or will become available.".freeze, - "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Date Available".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:date".freeze, "dc:date".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/date".freeze, "http://purl.org/dc/terms/date".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bibliographicCitation, comment: "A bibliographic reference for the resource.".freeze, - "dc:description": "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible.".freeze, - "dc:issued": "2003-02-15".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible.".freeze, + "http://purl.org/dc/terms/issued": "2003-02-15".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Bibliographic Citation".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:identifier".freeze, "dc:identifier".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/identifier".freeze, "http://purl.org/dc/terms/identifier".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :conformsTo, comment: "An established standard to which the described resource conforms.".freeze, - "dc:issued": "2001-05-21".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:Standard".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/Standard".freeze, + "http://purl.org/dc/terms/issued": "2001-05-21".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Conforms To".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contributor, comment: "An entity responsible for making contributions to the resource.".freeze, - "dc:description": "The guidelines for using names of persons or organizations as creators apply to contributors.".freeze, - "dc:issued": "2008-01-14".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:Agent".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/Agent".freeze, + "http://purl.org/dc/terms/description": "The guidelines for using names of persons or organizations as creators apply to contributors.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Contributor".freeze, - subPropertyOf: "dc11:contributor".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/contributor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coverage, comment: "The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.".freeze, - "dc:description": "Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names [[TGN](https://www.getty.edu/research/tools/vocabulary/tgn/index.html)]. Where appropriate, named places or time periods may be used in preference to numeric identifiers such as sets of coordinates or date ranges. Because coverage is so broadly defined, it is preferable to use the more specific subproperties Temporal Coverage and Spatial Coverage.".freeze, - "dc:issued": "2008-01-14".freeze, - "http://purl.org/dc/dcam/rangeIncludes": ["dc:Jurisdiction".freeze, "dc:Location".freeze, "dc:Period".freeze], - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": ["http://purl.org/dc/terms/Jurisdiction".freeze, "http://purl.org/dc/terms/Location".freeze, "http://purl.org/dc/terms/Period".freeze], + "http://purl.org/dc/terms/description": "Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names [[TGN](https://www.getty.edu/research/tools/vocabulary/tgn/index.html)]. Where appropriate, named places or time periods may be used in preference to numeric identifiers such as sets of coordinates or date ranges. Because coverage is so broadly defined, it is preferable to use the more specific subproperties Temporal Coverage and Spatial Coverage.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Coverage".freeze, - subPropertyOf: "dc11:coverage".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/coverage".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :created, comment: "Date of creation of the resource.".freeze, - "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Date Created".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:date".freeze, "dc:date".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/date".freeze, "http://purl.org/dc/terms/date".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :creator, comment: "An entity responsible for making the resource.".freeze, - "dc:description": "Recommended practice is to identify the creator with a URI. If this is not possible or feasible, a literal value that identifies the creator may be provided.".freeze, - "dc:issued": "2008-01-14".freeze, - equivalentProperty: "foaf:maker".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:Agent".freeze, - isDefinedBy: "dc:".freeze, + equivalentProperty: "http://xmlns.com/foaf/0.1/maker".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/Agent".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to identify the creator with a URI. If this is not possible or feasible, a literal value that identifies the creator may be provided.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Creator".freeze, - subPropertyOf: ["dc11:creator".freeze, "dc:contributor".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/creator".freeze, "http://purl.org/dc/terms/contributor".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :date, comment: "A point or period of time associated with an event in the lifecycle of the resource.".freeze, - "dc:description": "Date may be used to express temporal information at any level of granularity. Recommended practice is to express the date, date/time, or period of time according to ISO 8601-1 [[ISO 8601-1](https://www.iso.org/iso-8601-date-and-time-format.html)] or a published profile of the ISO standard, such as the W3C Note on Date and Time Formats [[W3CDTF](https://www.w3.org/TR/NOTE-datetime)] or the Extended Date/Time Format Specification [[EDTF](http://www.loc.gov/standards/datetime/)]. If the full date is unknown, month and year (YYYY-MM) or just year (YYYY) may be used. Date ranges may be specified using ISO 8601 period of time specification in which start and end dates are separated by a '/' (slash) character. Either the start or end date may be missing.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Date may be used to express temporal information at any level of granularity. Recommended practice is to express the date, date/time, or period of time according to ISO 8601-1 [[ISO 8601-1](https://www.iso.org/iso-8601-date-and-time-format.html)] or a published profile of the ISO standard, such as the W3C Note on Date and Time Formats [[W3CDTF](https://www.w3.org/TR/NOTE-datetime)] or the Extended Date/Time Format Specification [[EDTF](http://www.loc.gov/standards/datetime/)]. If the full date is unknown, month and year (YYYY-MM) or just year (YYYY) may be used. Date ranges may be specified using ISO 8601 period of time specification in which start and end dates are separated by a '/' (slash) character. Either the start or end date may be missing.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "dc11:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/dc/elements/1.1/date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateAccepted, comment: "Date of acceptance of the resource.".freeze, - "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty. Examples of resources to which a date of acceptance may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal).".freeze, - "dc:issued": "2002-07-13".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty. Examples of resources to which a date of acceptance may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal).".freeze, + "http://purl.org/dc/terms/issued": "2002-07-13".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Date Accepted".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:date".freeze, "dc:date".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/date".freeze, "http://purl.org/dc/terms/date".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateCopyrighted, comment: "Date of copyright of the resource.".freeze, - "dc:description": "Typically a year. Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, - "dc:issued": "2002-07-13".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Typically a year. Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, + "http://purl.org/dc/terms/issued": "2002-07-13".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Date Copyrighted".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:date".freeze, "dc:date".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/date".freeze, "http://purl.org/dc/terms/date".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateSubmitted, comment: "Date of submission of the resource.".freeze, - "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty. Examples of resources to which a 'Date Submitted' may be relevant include a thesis (submitted to a university department) or an article (submitted to a journal).".freeze, - "dc:issued": "2002-07-13".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty. Examples of resources to which a 'Date Submitted' may be relevant include a thesis (submitted to a university department) or an article (submitted to a journal).".freeze, + "http://purl.org/dc/terms/issued": "2002-07-13".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Date Submitted".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:date".freeze, "dc:date".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/date".freeze, "http://purl.org/dc/terms/date".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, comment: "An account of the resource.".freeze, - "dc:description": "Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Description".freeze, - subPropertyOf: "dc11:description".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationLevel, comment: "A class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.".freeze, - "dc:issued": "2002-07-13".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:AgentClass".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/AgentClass".freeze, + "http://purl.org/dc/terms/issued": "2002-07-13".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Audience Education Level".freeze, - subPropertyOf: "dc:audience".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/audience".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :extent, comment: "The size or duration of the resource.".freeze, - "dc:description": "Recommended practice is to specify the file size in megabytes and duration in ISO 8601 format.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:SizeOrDuration".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/SizeOrDuration".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to specify the file size in megabytes and duration in ISO 8601 format.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Extent".freeze, - subPropertyOf: ["dc11:format".freeze, "dc:format".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/format".freeze, "http://purl.org/dc/terms/format".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :format, comment: "The file format, physical medium, or dimensions of the resource.".freeze, - "dc:description": "Recommended practice is to use a controlled vocabulary where available. For example, for file formats one could use the list of Internet Media Types [[MIME](https://www.iana.org/assignments/media-types/media-types.xhtml)]. Examples of dimensions include size and duration.".freeze, - "dc:issued": "2008-01-14".freeze, - "http://purl.org/dc/dcam/rangeIncludes": ["dc:Extent".freeze, "dc:MediaType".freeze], - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": ["http://purl.org/dc/terms/Extent".freeze, "http://purl.org/dc/terms/MediaType".freeze], + "http://purl.org/dc/terms/description": "Recommended practice is to use a controlled vocabulary where available. For example, for file formats one could use the list of Internet Media Types [[MIME](https://www.iana.org/assignments/media-types/media-types.xhtml)]. Examples of dimensions include size and duration.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Format".freeze, - subPropertyOf: "dc11:format".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/format".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasFormat, comment: "A related resource that is substantially the same as the pre-existing described resource, but in another format.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Format Of.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Format Of.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Has Format".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPart, comment: "A related resource that is included either physically or logically in the described resource.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Part Of.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Part Of.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Has Part".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasVersion, comment: "A related resource that is a version, edition, or adaptation of the described resource.".freeze, - "dc:description": "Changes in version imply substantive changes in content rather than differences in format. This property is intended to be used with non-literal values. This property is an inverse property of Is Version Of.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Changes in version imply substantive changes in content rather than differences in format. This property is intended to be used with non-literal values. This property is an inverse property of Is Version Of.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Has Version".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifier, comment: "An unambiguous reference to the resource within a given context.".freeze, - "dc:description": "Recommended practice is to identify the resource by means of a string conforming to an identification system. Examples include International Standard Book Number (ISBN), Digital Object Identifier (DOI), and Uniform Resource Name (URN). Persistent identifiers should be provided as HTTP URIs.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to identify the resource by means of a string conforming to an identification system. Examples include International Standard Book Number (ISBN), Digital Object Identifier (DOI), and Uniform Resource Name (URN). Persistent identifiers should be provided as HTTP URIs.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Identifier".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "dc11:identifier".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/dc/elements/1.1/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instructionalMethod, comment: "A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.".freeze, - "dc:description": "Instructional Method typically includes ways of presenting instructional materials or conducting instructional activities, patterns of learner-to-learner and learner-to-instructor interactions, and mechanisms by which group and individual levels of learning are measured. Instructional methods include all aspects of the instruction and learning processes from planning and implementation through evaluation and feedback.".freeze, - "dc:issued": "2005-06-13".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:MethodOfInstruction".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/MethodOfInstruction".freeze, + "http://purl.org/dc/terms/description": "Instructional Method typically includes ways of presenting instructional materials or conducting instructional activities, patterns of learner-to-learner and learner-to-instructor interactions, and mechanisms by which group and individual levels of learning are measured. Instructional methods include all aspects of the instruction and learning processes from planning and implementation through evaluation and feedback.".freeze, + "http://purl.org/dc/terms/issued": "2005-06-13".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Instructional Method".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isFormatOf, comment: "A pre-existing related resource that is substantially the same as the described resource, but in another format.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Has Format.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of Has Format.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Is Format Of".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isPartOf, comment: "A related resource in which the described resource is physically or logically included.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Has Part.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of Has Part.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Is Part Of".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isReferencedBy, comment: "A related resource that references, cites, or otherwise points to the described resource.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of References.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of References.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Is Referenced By".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isReplacedBy, comment: "A related resource that supplants, displaces, or supersedes the described resource.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Replaces.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of Replaces.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Is Replaced By".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isRequiredBy, comment: "A related resource that requires the described resource to support its function, delivery, or coherence.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Requires.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of Requires.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Is Required By".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isVersionOf, comment: "A related resource of which the described resource is a version, edition, or adaptation.".freeze, - "dc:description": "Changes in version imply substantive changes in content rather than differences in format. This property is intended to be used with non-literal values. This property is an inverse property of Has Version.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Changes in version imply substantive changes in content rather than differences in format. This property is intended to be used with non-literal values. This property is an inverse property of Has Version.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Is Version Of".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :issued, comment: "Date of formal issuance of the resource.".freeze, - "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Date Issued".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:date".freeze, "dc:date".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/date".freeze, "http://purl.org/dc/terms/date".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :language, comment: "A language of the resource.".freeze, - "dc:description": "Recommended practice is to use either a non-literal value representing a language from a controlled vocabulary such as ISO 639-2 or ISO 639-3, or a literal value consisting of an IETF Best Current Practice 47 [[IETF-BCP47](https://tools.ietf.org/html/bcp47)] language tag.".freeze, - "dc:issued": "2008-01-14".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:LinguisticSystem".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/LinguisticSystem".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to use either a non-literal value representing a language from a controlled vocabulary such as ISO 639-2 or ISO 639-3, or a literal value consisting of an IETF Best Current Practice 47 [[IETF-BCP47](https://tools.ietf.org/html/bcp47)] language tag.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Language".freeze, - subPropertyOf: "dc11:language".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/language".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :license, comment: "A legal document giving official permission to do something with the resource.".freeze, - "dc:description": "Recommended practice is to identify the license document with a URI. If this is not possible or feasible, a literal value that identifies the license may be provided.".freeze, - "dc:issued": "2004-06-14".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:LicenseDocument".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/LicenseDocument".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to identify the license document with a URI. If this is not possible or feasible, a literal value that identifies the license may be provided.".freeze, + "http://purl.org/dc/terms/issued": "2004-06-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "License".freeze, - subPropertyOf: ["dc11:rights".freeze, "dc:rights".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/rights".freeze, "http://purl.org/dc/terms/rights".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mediator, comment: "An entity that mediates access to the resource.".freeze, - "dc:description": "In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver.".freeze, - "dc:issued": "2001-05-21".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:AgentClass".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/AgentClass".freeze, + "http://purl.org/dc/terms/description": "In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver.".freeze, + "http://purl.org/dc/terms/issued": "2001-05-21".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Mediator".freeze, - subPropertyOf: "dc:audience".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/audience".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :medium, comment: "The material or physical carrier of the resource.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/domainIncludes": "dc:PhysicalResource".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:PhysicalMedium".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/domainIncludes": "http://purl.org/dc/terms/PhysicalResource".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/PhysicalMedium".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Medium".freeze, - subPropertyOf: ["dc11:format".freeze, "dc:format".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/format".freeze, "http://purl.org/dc/terms/format".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :modified, comment: "Date on which the resource was changed.".freeze, - "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Date Modified".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:date".freeze, "dc:date".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/date".freeze, "http://purl.org/dc/terms/date".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :provenance, comment: "A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.".freeze, - "dc:description": "The statement may include a description of any changes successive custodians made to the resource.".freeze, - "dc:issued": "2004-09-20".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:ProvenanceStatement".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/ProvenanceStatement".freeze, + "http://purl.org/dc/terms/description": "The statement may include a description of any changes successive custodians made to the resource.".freeze, + "http://purl.org/dc/terms/issued": "2004-09-20".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Provenance".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publisher, comment: "An entity responsible for making the resource available.".freeze, - "dc:issued": "2008-01-14".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:Agent".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/Agent".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Publisher".freeze, - subPropertyOf: "dc11:publisher".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/publisher".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :references, comment: "A related resource that is referenced, cited, or otherwise pointed to by the described resource.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "References".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relation, comment: "A related resource.".freeze, - "dc:description": "Recommended practice is to identify the related resource by means of a URI. If this is not possible or feasible, a string conforming to a formal identification system may be provided.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to identify the related resource by means of a URI. If this is not possible or feasible, a string conforming to a formal identification system may be provided.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Relation".freeze, - subPropertyOf: "dc11:relation".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/relation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :replaces, comment: "A related resource that is supplanted, displaced, or superseded by the described resource.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Replaced By.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Replaced By.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Replaces".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requires, comment: "A related resource that is required by the described resource to support its function, delivery, or coherence.".freeze, - "dc:description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Required By.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. This property is an inverse property of Is Required By.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Requires".freeze, - subPropertyOf: ["dc11:relation".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/relation".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rights, comment: "Information about rights held in and over the resource.".freeze, - "dc:description": "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. Recommended practice is to refer to a rights statement with a URI. If this is not possible or feasible, a literal value (name, label, or short text) may be provided.".freeze, - "dc:issued": "2008-01-14".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:RightsStatement".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/RightsStatement".freeze, + "http://purl.org/dc/terms/description": "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. Recommended practice is to refer to a rights statement with a URI. If this is not possible or feasible, a literal value (name, label, or short text) may be provided.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Rights".freeze, - subPropertyOf: "dc11:rights".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/rights".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsHolder, comment: "A person or organization owning or managing rights over the resource.".freeze, - "dc:description": "Recommended practice is to refer to the rights holder with a URI. If this is not possible or feasible, a literal value that identifies the rights holder may be provided.".freeze, - "dc:issued": "2004-06-14".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:Agent".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/Agent".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to refer to the rights holder with a URI. If this is not possible or feasible, a literal value that identifies the rights holder may be provided.".freeze, + "http://purl.org/dc/terms/issued": "2004-06-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Rights Holder".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :source, comment: "A related resource from which the described resource is derived.".freeze, - "dc:description": "This property is intended to be used with non-literal values. The described resource may be derived from the related resource in whole or in part. Best practice is to identify the related resource by means of a URI or a string conforming to a formal identification system.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "This property is intended to be used with non-literal values. The described resource may be derived from the related resource in whole or in part. Best practice is to identify the related resource by means of a URI or a string conforming to a formal identification system.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Source".freeze, - subPropertyOf: ["dc11:source".freeze, "dc:relation".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/source".freeze, "http://purl.org/dc/terms/relation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spatial, comment: "Spatial characteristics of the resource.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:Location".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/Location".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Spatial Coverage".freeze, - subPropertyOf: ["dc11:coverage".freeze, "dc:coverage".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/coverage".freeze, "http://purl.org/dc/terms/coverage".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subject, comment: "A topic of the resource.".freeze, - "dc:description": "Recommended practice is to refer to the subject with a URI. If this is not possible or feasible, a literal value that identifies the subject may be provided. Both should preferably refer to a subject in a controlled vocabulary.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to refer to the subject with a URI. If this is not possible or feasible, a literal value that identifies the subject may be provided. Both should preferably refer to a subject in a controlled vocabulary.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Subject".freeze, - subPropertyOf: "dc11:subject".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/subject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tableOfContents, comment: "A list of subunits of the resource.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Table Of Contents".freeze, - subPropertyOf: ["dc11:description".freeze, "dc:description".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/description".freeze, "http://purl.org/dc/terms/description".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :temporal, comment: "Temporal characteristics of the resource.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/rangeIncludes": "dc:PeriodOfTime".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/dcam/rangeIncludes": "http://purl.org/dc/terms/PeriodOfTime".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Temporal Coverage".freeze, - subPropertyOf: ["dc11:coverage".freeze, "dc:coverage".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/coverage".freeze, "http://purl.org/dc/terms/coverage".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, comment: "A name given to the resource.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Title".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "dc11:title".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/dc/elements/1.1/title".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :type, comment: "The nature or genre of the resource.".freeze, - "dc:description": "Recommended practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [[DCMI-TYPE](http://dublincore.org/documents/dcmi-type-vocabulary/)]. To describe the file format, physical medium, or dimensions of the resource, use the property Format.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [[DCMI-TYPE](http://dublincore.org/documents/dcmi-type-vocabulary/)]. To describe the file format, physical medium, or dimensions of the resource, use the property Format.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Type".freeze, - subPropertyOf: "dc11:type".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valid, comment: "Date (often a range) of validity of a resource.".freeze, - "dc:description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "Date Valid".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["dc11:date".freeze, "dc:date".freeze], - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/date".freeze, "http://purl.org/dc/terms/date".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Datatype definitions term :Box, comment: "The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.dublincore.org/specifications/dublin-core/dcmi-box/".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "DCMI Box".freeze, - "rdfs:seeAlso": "https://www.dublincore.org/specifications/dublin-core/dcmi-box/".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :ISO3166, comment: "The set of codes listed in ISO 3166-1 for the representation of names of countries.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.iso.org/obp/ui/#search".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "ISO 3166".freeze, - "rdfs:seeAlso": "https://www.iso.org/obp/ui/#search".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :"ISO639-2", comment: "The three-letter alphabetic codes listed in ISO639-2 for the representation of names of languages.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://lcweb.loc.gov/standards/iso639-2/langhome.html".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "ISO 639-2".freeze, - "rdfs:seeAlso": "http://lcweb.loc.gov/standards/iso639-2/langhome.html".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :"ISO639-3", comment: "The set of three-letter codes listed in ISO 639-3 for the representation of names of languages.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.sil.org/iso639-3/".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "ISO 639-3".freeze, - "rdfs:seeAlso": "http://www.sil.org/iso639-3/".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :Period, comment: "The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.dublincore.org/specifications/dublin-core/dcmi-period/".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "DCMI Period".freeze, - "rdfs:seeAlso": "https://www.dublincore.org/specifications/dublin-core/dcmi-period/".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :Point, comment: "The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.dublincore.org/specifications/dublin-core/dcmi-point/".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "DCMI Point".freeze, - "rdfs:seeAlso": "https://www.dublincore.org/specifications/dublin-core/dcmi-point/".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :RFC1766, comment: "The set of tags, constructed according to RFC 1766, for the identification of languages.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.ietf.org/rfc/rfc1766.txt".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "RFC 1766".freeze, - "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc1766.txt".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :RFC3066, comment: "The set of tags constructed according to RFC 3066 for the identification of languages.".freeze, - "dc:description": "RFC 3066 has been obsoleted by RFC 4646.".freeze, - "dc:issued": "2002-07-13".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "RFC 3066 has been obsoleted by RFC 4646.".freeze, + "http://purl.org/dc/terms/issued": "2002-07-13".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.ietf.org/rfc/rfc3066.txt".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "RFC 3066".freeze, - "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc3066.txt".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :RFC4646, comment: "The set of tags constructed according to RFC 4646 for the identification of languages.".freeze, - "dc:description": "RFC 4646 obsoletes RFC 3066.".freeze, - "dc:issued": "2008-01-14".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "RFC 4646 obsoletes RFC 3066.".freeze, + "http://purl.org/dc/terms/issued": "2008-01-14".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.ietf.org/rfc/rfc4646.txt".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "RFC 4646".freeze, - "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc4646.txt".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :RFC5646, comment: "The set of tags constructed according to RFC 5646 for the identification of languages.".freeze, - "dc:description": "RFC 5646 obsoletes RFC 4646.".freeze, - "dc:issued": "2010-10-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/description": "RFC 5646 obsoletes RFC 4646.".freeze, + "http://purl.org/dc/terms/issued": "2010-10-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.ietf.org/rfc/rfc5646.txt".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "RFC 5646".freeze, - "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc5646.txt".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :URI, comment: "The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.ietf.org/rfc/rfc3986.txt".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "URI".freeze, - "rdfs:seeAlso": "http://www.ietf.org/rfc/rfc3986.txt".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :W3CDTF, comment: "The set of dates and times constructed according to the W3C Date and Time Formats Specification.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/TR/NOTE-datetime".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "W3C-DTF".freeze, - "rdfs:seeAlso": "http://www.w3.org/TR/NOTE-datetime".freeze, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze # Extra definitions term :DCMIType, comment: "The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/dc/dcmitype/".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "DCMI Type Vocabulary".freeze, - "rdfs:seeAlso": "dcmitype:".freeze, type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze term :DDC, comment: "The set of conceptual resources specified by the Dewey Decimal Classification.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.oclc.org/dewey/".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "DDC".freeze, - "rdfs:seeAlso": "http://www.oclc.org/dewey/".freeze, type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze term :IMT, comment: "The set of media types specified by the Internet Assigned Numbers Authority.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.iana.org/assignments/media-types/".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "IMT".freeze, - "rdfs:seeAlso": "http://www.iana.org/assignments/media-types/".freeze, type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze term :LCC, comment: "The set of conceptual resources specified by the Library of Congress Classification.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "LCC".freeze, - "rdfs:seeAlso": "http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html".freeze, type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze term :LCSH, comment: "The set of labeled concepts specified by the Library of Congress Subject Headings.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "LCSH".freeze, type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze term :MESH, comment: "The set of labeled concepts specified by the Medical Subject Headings.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.nlm.nih.gov/mesh/meshhome.html".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "MeSH".freeze, - "rdfs:seeAlso": "http://www.nlm.nih.gov/mesh/meshhome.html".freeze, type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze term :NLM, comment: "The set of conceptual resources specified by the National Library of Medicine Classification.".freeze, - "dc:issued": "2005-06-13".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2005-06-13".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://wwwcf.nlm.nih.gov/class/".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "NLM".freeze, - "rdfs:seeAlso": "http://wwwcf.nlm.nih.gov/class/".freeze, type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze term :TGN, comment: "The set of places specified by the Getty Thesaurus of Geographic Names.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.getty.edu/research/tools/vocabulary/tgn/index.html".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "TGN".freeze, - "rdfs:seeAlso": "http://www.getty.edu/research/tools/vocabulary/tgn/index.html".freeze, type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze term :UDC, comment: "The set of conceptual resources specified by the Universal Decimal Classification.".freeze, - "dc:issued": "2000-07-11".freeze, - isDefinedBy: "dc:".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.udcc.org/".freeze, + isDefinedBy: "http://purl.org/dc/terms/".freeze, label: "UDC".freeze, - "rdfs:seeAlso": "http://www.udcc.org/".freeze, type: "http://purl.org/dc/dcam/VocabularyEncodingScheme".freeze end end diff --git a/lib/rdf/vocab/dc11.rb b/lib/rdf/vocab/dc11.rb index 70eb0a2..abedf58 100644 --- a/lib/rdf/vocab/dc11.rb +++ b/lib/rdf/vocab/dc11.rb @@ -3,199 +3,133 @@ # This file generated automatically using rdf vocabulary format from http://purl.org/dc/elements/1.1/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Dublin Core Metadata Element Set, Version 1.1 - # class DC11 < RDF::StrictVocabulary - # # 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 - # - # # An entity primarily 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 - # - # # An account of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # The file format, physical medium, or dimensions of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :format - # - # # An unambiguous reference to the resource within a given context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifier - # - # # A language of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # An entity responsible for making the resource available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publisher - # - # # A related resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relation - # - # # Information about rights held in and over the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rights - # - # # A related resource from which the described resource is derived. - # # @return [RDF::Vocabulary::Term] - # attr_reader :source - # - # # The topic of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subject - # - # # 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 - # - # end DC11 = Class.new(RDF::StrictVocabulary("http://purl.org/dc/elements/1.1/")) do # Ontology definition ontology :"http://purl.org/dc/elements/1.1/", - "dc:modified": "2012-06-14".freeze, - "dc:publisher": "http://purl.org/dc/aboutdcmi#DCMI".freeze, - "dc:title": "Dublin Core Metadata Element Set, Version 1.1".freeze + "http://purl.org/dc/terms/modified": "2012-06-14".freeze, + "http://purl.org/dc/terms/publisher": "http://purl.org/dc/aboutdcmi#DCMI".freeze, + "http://purl.org/dc/terms/title": "Dublin Core Metadata Element Set, Version 1.1".freeze # Property definitions property :contributor, comment: "An entity responsible for making contributions to the resource.".freeze, - "dc:description": "The guidelines for using names of persons or organizations as creators also apply to contributors. Typically, the name of a Contributor should be used to indicate the entity.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "The guidelines for using names of persons or organizations as creators also apply to contributors. Typically, the name of a Contributor should be used to indicate the entity.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Contributor".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/contributor) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coverage, comment: "The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.".freeze, - "dc:description": "Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names [[TGN](https://www.getty.edu/research/tools/vocabulary/tgn/index.html)]. Where appropriate, named places or time periods may be used in preference to numeric identifiers such as sets of coordinates or date ranges.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names [[TGN](https://www.getty.edu/research/tools/vocabulary/tgn/index.html)]. Where appropriate, named places or time periods may be used in preference to numeric identifiers such as sets of coordinates or date ranges.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Coverage".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/coverage) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :creator, comment: "An entity primarily responsible for making the resource.".freeze, - "dc:description": "Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Creator".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/creator) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :date, comment: "A point or period of time associated with an event in the lifecycle of the resource.".freeze, - "dc:description": "Date may be used to express temporal information at any level of granularity. Recommended practice is to express the date, date/time, or period of time according to ISO 8601-1 [[ISO 8601-1](https://www.iso.org/iso-8601-date-and-time-format.html)] or a published profile of the ISO standard, such as the W3C Note on Date and Time Formats [[W3CDTF](https://www.w3.org/TR/NOTE-datetime)] or the Extended Date/Time Format Specification [[EDTF](http://www.loc.gov/standards/datetime/)]. If the full date is unknown, month and year (YYYY-MM) or just year (YYYY) may be used. Date ranges may be specified using ISO 8601 period of time specification in which start and end dates are separated by a '/' (slash) character. Either the start or end date may be missing.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Date may be used to express temporal information at any level of granularity. Recommended practice is to express the date, date/time, or period of time according to ISO 8601-1 [[ISO 8601-1](https://www.iso.org/iso-8601-date-and-time-format.html)] or a published profile of the ISO standard, such as the W3C Note on Date and Time Formats [[W3CDTF](https://www.w3.org/TR/NOTE-datetime)] or the Extended Date/Time Format Specification [[EDTF](http://www.loc.gov/standards/datetime/)]. If the full date is unknown, month and year (YYYY-MM) or just year (YYYY) may be used. Date ranges may be specified using ISO 8601 period of time specification in which start and end dates are separated by a '/' (slash) character. Either the start or end date may be missing.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Date".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/date) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, comment: "An account of the resource.".freeze, - "dc:description": "Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Description".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/description) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :format, comment: "The file format, physical medium, or dimensions of the resource.".freeze, - "dc:description": "Recommended practice is to use a controlled vocabulary where available. For example, for file formats one could use the list of Internet Media Types [[MIME](https://www.iana.org/assignments/media-types/media-types.xhtml)].".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to use a controlled vocabulary where available. For example, for file formats one could use the list of Internet Media Types [[MIME](https://www.iana.org/assignments/media-types/media-types.xhtml)].".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Format".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/format) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifier, comment: "An unambiguous reference to the resource within a given context.".freeze, - "dc:description": "Recommended practice is to identify the resource by means of a string conforming to an identification system.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to identify the resource by means of a string conforming to an identification system.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Identifier".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/identifier) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :language, comment: "A language of the resource.".freeze, - "dc:description": "Recommended practice is to use either a non-literal value representing a language from a controlled vocabulary such as ISO 639-2 or ISO 639-3, or a literal value consisting of an IETF Best Current Practice 47 [[IETF-BCP47](https://tools.ietf.org/html/bcp47)] language tag.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to use either a non-literal value representing a language from a controlled vocabulary such as ISO 639-2 or ISO 639-3, or a literal value consisting of an IETF Best Current Practice 47 [[IETF-BCP47](https://tools.ietf.org/html/bcp47)] language tag.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Language".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/language) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publisher, comment: "An entity responsible for making the resource available.".freeze, - "dc:description": "Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Publisher".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/publisher) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relation, comment: "A related resource.".freeze, - "dc:description": "Recommended practice is to identify the related resource by means of a URI. If this is not possible or feasible, a string conforming to a formal identification system may be provided.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to identify the related resource by means of a URI. If this is not possible or feasible, a string conforming to a formal identification system may be provided.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Relation".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/relation) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rights, comment: "Information about rights held in and over the resource.".freeze, - "dc:description": "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Rights".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/rights) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :source, comment: "A related resource from which the described resource is derived.".freeze, - "dc:description": "The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Source".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/source) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subject, comment: "The topic of the resource.".freeze, - "dc:description": "Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Subject".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/subject) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, comment: "A name given to the resource.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Title".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/title) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :type, comment: "The nature or genre of the resource.".freeze, - "dc:description": "Recommended practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [[DCMI-TYPE](http://dublincore.org/documents/dcmi-type-vocabulary/)]. To describe the file format, physical medium, or dimensions of the resource, use the Format element.".freeze, - "dc:issued": "1999-07-02".freeze, - isDefinedBy: "dc11:".freeze, + "http://purl.org/dc/terms/description": "Recommended practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [[DCMI-TYPE](http://dublincore.org/documents/dcmi-type-vocabulary/)]. To describe the file format, physical medium, or dimensions of the resource, use the Format element.".freeze, + "http://purl.org/dc/terms/issued": "1999-07-02".freeze, + isDefinedBy: "http://purl.org/dc/elements/1.1/".freeze, label: "Type".freeze, note: "A [second property](/specifications/dublin-core/dcmi-terms/#http://purl.org/dc/terms/type) with the same name as this property has been declared in the [dcterms: namespace](http://purl.org/dc/terms/). See the Introduction to the document [DCMI Metadata Terms](/specifications/dublin-core/dcmi-terms/) for an explanation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/dcat.rb b/lib/rdf/vocab/dcat.rb index a4b6a4e..1336eb0 100644 --- a/lib/rdf/vocab/dcat.rb +++ b/lib/rdf/vocab/dcat.rb @@ -3,602 +3,435 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/dcat# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The data catalog vocabulary - # # - # # DCAT is an RDF vocabulary designed to facilitate interoperability between data catalogs published on the Web. By using DCAT to describe datasets in data catalogs, publishers increase discoverability and enable applications easily to consume metadata from multiple catalogs. It further enables decentralized publishing of catalogs and facilitates federated dataset search across sites. Aggregated DCAT metadata can serve as a manifest file to facilitate digital preservation. DCAT is defined at http://www.w3.org/TR/vocab-dcat/. Any variance between that normative document and this schema is an error in this schema. - # # @version This is an updated copy of v2.0 of the DCAT vocabulary, taken from https://www.w3.org/ns/dcat.ttl - # # @version Questa è una copia aggiornata del vocabolario DCAT v2.0 disponibile in https://www.w3.org/ns/dcat.ttl - # class DCAT < RDF::StrictVocabulary - # # A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Catalog - # - # # A record in a data catalog, describing the registration of a single dataset or data service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CatalogRecord - # - # # A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataService - # - # # A collection of data, published or curated by a single source, and available for access or download in one or more representations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dataset - # - # # A specific representation of a dataset. A dataset might be available in multiple serializations that may differ in various ways, including natural language, media-type or format, schematic organization, temporal and spatial resolution, level of detail or profiles (which might specify any or all of the above). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Distribution - # - # # An association class for attaching additional information to a relationship between DCAT Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Relationship - # - # # Resource published or curated by a single agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resource - # - # # A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Role - # - # # A site or end-point that gives access to the distribution of the dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessService - # - # # A URL of a resource that gives access to a distribution of the dataset. E.g. landing page, feed, SPARQL endpoint. Use for all cases except a simple download link, in which case downloadURL is preferred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessURL - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bbox - # - # # The size of a distribution in bytes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byteSize - # - # # A catalog whose contents are of interest in the context of this catalog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :catalog - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :centroid - # - # # The compression format of the distribution in which the data is contained in a compressed form, e.g. to reduce the size of the downloadable file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :compressFormat - # - # # Relevant contact information for the catalogued resource. Use of vCard is recommended. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactPoint - # - # # A collection of data that is listed in the catalog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataset - # - # # An available distribution of the dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distribution - # - # # The URL of the downloadable file in a given format. E.g. CSV file or RDF file. The format is indicated by the distribution's dct:format and/or dcat:mediaType. - # # @return [RDF::Vocabulary::Term] - # attr_reader :downloadURL - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :endDate - # - # # A description of the service end-point, including its operations, parameters etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endpointDescription - # - # # The root location or primary endpoint of the service (a web-resolvable IRI). - # # @return [RDF::Vocabulary::Term] - # attr_reader :endpointURL - # - # # The function of an entity or agent with respect to another entity or resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadRole - # - # # A keyword or tag describing a resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :keyword - # - # # A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :landingPage - # - # # The media type of the distribution as defined by IANA - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaType - # - # # The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packageFormat - # - # # Link to a description of a relationship with another resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedRelation - # - # # A record describing the registration of a single dataset or data service that is part of the catalog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :record - # - # # A collection of data that this DataService can distribute. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servesDataset - # - # # A site or endpoint that is listed in the catalog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :service - # - # # minimum spatial separation resolvable in a dataset, measured in metres. - # # - # # minimum spatial separation resolvable in a dataset, measured in meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spatialResolutionInMeters - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :startDate - # - # # minimum time period resolvable in a dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :temporalResolution - # - # # A main category of the resource. A resource can have multiple themes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :theme - # - # # The knowledge organization system (KOS) used to classify catalog's datasets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :themeTaxonomy - # - # end DCAT = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/dcat#")) do # Ontology definition ontology :"http://www.w3.org/ns/dcat#", comment: "DCAT is an RDF vocabulary designed to facilitate interoperability between data catalogs published on the Web. By using DCAT to describe datasets in data catalogs, publishers increase discoverability and enable applications easily to consume metadata from multiple catalogs. It further enables decentralized publishing of catalogs and facilitates federated dataset search across sites. Aggregated DCAT metadata can serve as a manifest file to facilitate digital preservation. DCAT is defined at http://www.w3.org/TR/vocab-dcat/. Any variance between that normative document and this schema is an error in this schema.".freeze, - "dc:contributor": [term( - "foaf:homepage": "http://makxdekkers.com/".freeze, - "foaf:name": "Makx Dekkers".freeze, - "rdfs:seeAlso": "http://makxdekkers.com/makxdekkers.rdf#me".freeze + editorialNote: "English language definitions updated in this revision in line with ED. Multilingual text unevenly updated.".freeze, + "http://purl.org/dc/terms/contributor": [term( + "http://schema.org/affiliation": "_:g10400".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0002-3884-3420".freeze, + "http://xmlns.com/foaf/0.1/name": "Simon J D Cox".freeze, + "http://xmlns.com/foaf/0.1/workInfoHomepage": "http://people.csiro.au/Simon-Cox".freeze, + type: "http://xmlns.com/foaf/0.1/Person".freeze ), term( - "foaf:homepage": "http://www.andrea-perego.name/foaf/#me".freeze, - "foaf:name": "Andrea Perego".freeze, - "rdfs:seeAlso": "https://orcid.org/0000-0001-9300-2694".freeze + "http://schema.org/affiliation": "_:g10420".freeze, + "http://xmlns.com/foaf/0.1/name": "Vassilios Peristeras".freeze ), term( - "foaf:homepage": "http://www.asahi-net.or.jp/~ax2s-kmtn/".freeze, - "foaf:name": "Shuji Kamitsuna".freeze + "http://schema.org/affiliation": "_:g10440".freeze, + "http://xmlns.com/foaf/0.1/name": "David Browning".freeze ), term( - "foaf:homepage": "http://www.w3.org/People/all#phila".freeze, - "foaf:name": "Phil Archer".freeze, - "rdfs:seeAlso": "http://philarcher.org/foaf.rdf#me".freeze, - "schema:affiliation": "http://www.w3.org/data#W3C".freeze + "http://schema.org/affiliation": "_:g10460".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0003-3499-8262".freeze, + "http://xmlns.com/foaf/0.1/homepage": "https://agbeltran.github.io".freeze, + "http://xmlns.com/foaf/0.1/name": "Alejandra Gonzalez-Beltran".freeze ), term( - "foaf:homepage": "https://agbeltran.github.io".freeze, - "foaf:name": "Alejandra Gonzalez-Beltran".freeze, - "rdfs:seeAlso": "https://orcid.org/0000-0003-3499-8262".freeze, - "schema:affiliation": term( - "foaf:homepage": "http://stfc.ac.uk".freeze, - "foaf:name": "Science and Technology Facilities Council, UK".freeze - ) + "http://schema.org/affiliation": "_:g10540".freeze, + "http://xmlns.com/foaf/0.1/name": "Rufus Pollock".freeze ), term( - "foaf:homepage": "https://jakub.klímek.com/".freeze, - "foaf:name": "Jakub Klímek".freeze, - "rdfs:seeAlso": "https://jakub.klímek.com/#me".freeze + "http://schema.org/affiliation": "http://www.w3.org/data#W3C".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://philarcher.org/foaf.rdf#me".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://www.w3.org/People/all#phila".freeze, + "http://xmlns.com/foaf/0.1/name": "Phil Archer".freeze ), term( - "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 + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://makxdekkers.com/makxdekkers.rdf#me".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://makxdekkers.com/".freeze, + "http://xmlns.com/foaf/0.1/name": "Makx Dekkers".freeze ), term( - "foaf:name": "Boris Villazón-Terrazas".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.eurecom.fr/~atemezin/gatemezing-foaf.rdf".freeze, + "http://xmlns.com/foaf/0.1/name": "Ghislain Auguste Atemezing".freeze ), term( - "foaf:name": "David Browning".freeze, - "schema:affiliation": term( - "foaf:homepage": "http://www.refinitiv.com".freeze, - "foaf:name": "Refinitiv".freeze - ) + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://jakub.klímek.com/#me".freeze, + "http://xmlns.com/foaf/0.1/homepage": "https://jakub.klímek.com/".freeze, + "http://xmlns.com/foaf/0.1/name": "Jakub Klímek".freeze ), term( - "foaf:name": "Ghislain Auguste Atemezing".freeze, - "rdfs:seeAlso": "http://www.eurecom.fr/~atemezin/gatemezing-foaf.rdf".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0001-5648-2713".freeze, + "http://xmlns.com/foaf/0.1/homepage": ["https://w3id.org/people/ralbertoni/".freeze,"http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni".freeze], + "http://xmlns.com/foaf/0.1/name": "Riccardo Albertoni".freeze ), term( - "foaf:name": "Marios Meimaris".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://orcid.org/0000-0001-9300-2694".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://www.andrea-perego.name/foaf/#me".freeze, + "http://xmlns.com/foaf/0.1/name": "Andrea Perego".freeze ), term( - "foaf:name": "Martin Alvarez-Espinar".freeze + "http://xmlns.com/foaf/0.1/homepage": "http://www.asahi-net.or.jp/~ax2s-kmtn/".freeze, + "http://xmlns.com/foaf/0.1/name": "Shuji Kamitsuna".freeze ), term( - "foaf:name": "Richard Cyganiak".freeze + "http://xmlns.com/foaf/0.1/name": "Boris Villazón-Terrazas".freeze ), term( - "foaf:name": "Rufus Pollock".freeze, - "schema:affiliation": term( - "foaf:homepage": "http://okfn.org".freeze, - "foaf:name": "Open Knowledge Foundation".freeze - ) + "http://xmlns.com/foaf/0.1/name": "Marios Meimaris".freeze ), term( - "foaf:name": "Simon J D Cox".freeze, - "foaf:workInfoHomepage": "http://people.csiro.au/Simon-Cox".freeze, - "rdfs:seeAlso": "https://orcid.org/0000-0002-3884-3420".freeze, - "schema:affiliation": term( - "foaf:homepage": "https://csiro.au".freeze, - "foaf:name": "Commonwealth Scientific and Industrial Research Organisation".freeze - ), - type: "foaf:Person".freeze + "http://xmlns.com/foaf/0.1/name": "Martin Alvarez-Espinar".freeze ), term( - "foaf:name": "Vassilios Peristeras".freeze, - "schema:affiliation": term( - "foaf:homepage": "http://ec.europa.eu/dgs/informatics/".freeze, - "foaf:name": "European Commission, DG DIGIT".freeze - ) + "http://xmlns.com/foaf/0.1/name": "Richard Cyganiak".freeze )], - "dc:creator": [term( - "foaf:name": "Fadi Maali".freeze, - "rdfs:seeAlso": "http://fadmaa.me/foaf.ttl".freeze + "http://purl.org/dc/terms/creator": [term( + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://fadmaa.me/foaf.ttl".freeze, + "http://xmlns.com/foaf/0.1/name": "Fadi Maali".freeze ), term( - "foaf:name": "John Erickson".freeze + "http://xmlns.com/foaf/0.1/name": "John Erickson".freeze )], - "dc:license": "https://creativecommons.org/licenses/by/4.0/".freeze, - "dc:modified": ["2012-04-24".freeze, "2013-09-20".freeze, "2013-11-28".freeze, "2017-12-19".freeze, "2019".freeze, "2020-11-30".freeze], - editorialNote: "English language definitions updated in this revision in line with ED. Multilingual text unevenly updated.".freeze, - "foaf:maker": term( - "foaf:homepage": "http://www.w3.org/2011/gld/".freeze, - "foaf:name": "Government Linked Data WG".freeze + "http://purl.org/dc/terms/license": "https://creativecommons.org/licenses/by/4.0/".freeze, + "http://purl.org/dc/terms/modified": ["2012-04-24".freeze, "2013-09-20".freeze, "2013-11-28".freeze, "2017-12-19".freeze, "2019".freeze, "2020-11-30".freeze], + "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/dc/terms/".freeze, "http://www.w3.org/2004/02/skos/core".freeze, "http://www.w3.org/ns/prov-o#".freeze], + "http://www.w3.org/2002/07/owl#versionInfo": ["Questa è una copia aggiornata del vocabolario DCAT v2.0 disponibile in https://www.w3.org/ns/dcat.ttl".freeze, "This is an updated copy of v2.0 of the DCAT vocabulary, taken from https://www.w3.org/ns/dcat.ttl".freeze], + "http://xmlns.com/foaf/0.1/maker": term( + "http://xmlns.com/foaf/0.1/homepage": "http://www.w3.org/2011/gld/".freeze, + "http://xmlns.com/foaf/0.1/name": "Government Linked Data WG".freeze ), label: "The data catalog vocabulary".freeze, - "owl:imports": ["dc:".freeze, "http://www.w3.org/2004/02/skos/core".freeze, "http://www.w3.org/ns/prov-o#".freeze], - "owl:versionInfo": ["Questa è una copia aggiornata del vocabolario DCAT v2.0 disponibile in https://www.w3.org/ns/dcat.ttl".freeze, "This is an updated copy of v2.0 of the DCAT vocabulary, taken from https://www.w3.org/ns/dcat.ttl".freeze], - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Catalog, comment: "A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog).".freeze, definition: "A curated collection of metadata about resources (e.g., datasets and data services in the context of a data catalog).".freeze, editorialNote: "English, Italian, Spanish definitions updated in this revision. Multilingual text not yet updated.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A web-based data catalog is typically represented as a single instance of this class.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "Catalog".freeze, - "skos:scopeNote": "A web-based data catalog is typically represented as a single instance of this class.".freeze, - subClassOf: ["dcat:Dataset".freeze, term( - allValuesFrom: "dcat:Resource".freeze, - onProperty: "dc:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.w3.org/ns/dcat#Dataset".freeze, term( + allValuesFrom: "http://www.w3.org/ns/dcat#Resource".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :CatalogRecord, comment: "A record in a data catalog, describing the registration of a single dataset or data service.".freeze, definition: "A record in a data catalog, describing the registration of a single dataset or data service.".freeze, editorialNote: "English definition updated in this revision. Multilingual text not yet updated except the Spanish one and the Czech one and Italian one.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This class is optional and not all catalogs will use it. It exists for catalogs where a distinction is made between metadata about a dataset or data service and metadata about the entry for the dataset or data service in the catalog. For example, the publication date property of the dataset reflects the date when the information was originally made available by the publishing agency, while the publication date of the catalog record is the date when the dataset was added to the catalog. In cases where both dates differ, or where only the latter is known, the publication date should only be specified for the catalog record. Notice that the W3C PROV Ontology allows describing further provenance information such as the details of the process and the agent involved in a particular change to a dataset.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "Catalog Record".freeze, - "skos:scopeNote": "This class is optional and not all catalogs will use it. It exists for catalogs where a distinction is made between metadata about a dataset or data service and metadata about the entry for the dataset or data service in the catalog. For example, the publication date property of the dataset reflects the date when the information was originally made available by the publishing agency, while the publication date of the catalog record is the date when the dataset was added to the catalog. In cases where both dates differ, or where only the latter is known, the publication date should only be specified for the catalog record. Notice that the W3C PROV Ontology allows describing further provenance information such as the details of the process and the agent involved in a particular change to a dataset.".freeze, subClassOf: [term( - allValuesFrom: "dcat:Resource".freeze, - onProperty: "foaf:primaryTopic".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/ns/dcat#Resource".freeze, + onProperty: "http://xmlns.com/foaf/0.1/primaryTopic".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( cardinality: "1".freeze, - onProperty: "foaf:primaryTopic".freeze, - type: "owl:Restriction".freeze + onProperty: "http://xmlns.com/foaf/0.1/primaryTopic".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :DataService, comment: "A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources.".freeze, definition: "A site or end-point providing operations related to the discovery of, access to, or processing functions on, data or related resources.".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New class added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": ["If a dcat:DataService is bound to one or more specified Datasets, they are indicated by the dcat:servesDataset property.".freeze, "The kind of service can be indicated using the dct:type property. Its value may be taken from a controlled vocabulary such as the INSPIRE spatial data service type vocabulary.".freeze], label: "Data service".freeze, - "skos:changeNote": "New class added in DCAT 2.0.".freeze, - "skos:scopeNote": ["If a dcat:DataService is bound to one or more specified Datasets, they are indicated by the dcat:servesDataset property.".freeze, "The kind of service can be indicated using the dct:type property. Its value may be taken from a controlled vocabulary such as the INSPIRE spatial data service type vocabulary.".freeze], - subClassOf: ["dcat:Resource".freeze, "dcmitype:Service".freeze, term( + subClassOf: ["http://purl.org/dc/dcmitype/Service".freeze, "http://www.w3.org/ns/dcat#Resource".freeze, term( maxCardinality: "1".freeze, - onProperty: "dcat:endpointURL".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/ns/dcat#endpointURL".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dataset, comment: "A collection of data, published or curated by a single source, and available for access or download in one or more representations.".freeze, definition: "A collection of data, published or curated by a single source, and available for access or download in one or more represenations.".freeze, editorialNote: "2020-03-16 A new scopenote added and need to be translated".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "2018-02 - subclass of dctype:Dataset removed because scope of dcat:Dataset includes several other types from the dctype vocabulary.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": ["The notion of dataset in DCAT is broad and inclusive, with the intention of accommodating resource types arising from all communities. Data comes in many forms including numbers, text, pixels, imagery, sound and other multi-media, and potentially other types, any of which might be collected into a dataset.".freeze, "This class describes the conceptual dataset. One or more representations might be available, with differing schematic layouts and formats or serializations.".freeze, "This class represents the actual dataset as published by the dataset provider. In cases where a distinction between the actual dataset and its entry in the catalog is necessary (because metadata such as modification date and maintainer might differ), the catalog record class can be used for the latter.".freeze], isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "Dataset".freeze, - "skos:changeNote": "2018-02 - subclass of dctype:Dataset removed because scope of dcat:Dataset includes several other types from the dctype vocabulary.".freeze, - "skos:scopeNote": ["The notion of dataset in DCAT is broad and inclusive, with the intention of accommodating resource types arising from all communities. Data comes in many forms including numbers, text, pixels, imagery, sound and other multi-media, and potentially other types, any of which might be collected into a dataset.".freeze, "This class describes the conceptual dataset. One or more representations might be available, with differing schematic layouts and formats or serializations.".freeze, "This class represents the actual dataset as published by the dataset provider. In cases where a distinction between the actual dataset and its entry in the catalog is necessary (because metadata such as modification date and maintainer might differ), the catalog record class can be used for the latter.".freeze], - subClassOf: "dcat:Resource".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/dcat#Resource".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Distribution, comment: "A specific representation of a dataset. A dataset might be available in multiple serializations that may differ in various ways, including natural language, media-type or format, schematic organization, temporal and spatial resolution, level of detail or profiles (which might specify any or all of the above).".freeze, definition: "A specific representation of a dataset. A dataset might be available in multiple serializations that may differ in various ways, including natural language, media-type or format, schematic organization, temporal and spatial resolution, level of detail or profiles (which might specify any or all of the above).".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This represents a general availability of a dataset it implies no information about the actual access method of the data, i.e. whether by direct download, API, or through a Web page. The use of dcat:downloadURL property indicates directly downloadable distributions.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "Distribution".freeze, - "skos:scopeNote": "This represents a general availability of a dataset it implies no information about the actual access method of the data, i.e. whether by direct download, API, or through a Web page. The use of dcat:downloadURL property indicates directly downloadable distributions.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Relationship, comment: "An association class for attaching additional information to a relationship between DCAT Resources.".freeze, definition: "An association class for attaching additional information to a relationship between DCAT Resources.".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New class added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Use to characterize a relationship between datasets, and potentially other resources, where the nature of the relationship is known but is not adequately characterized by the standard Dublin Core properties (dct:hasPart, dct:isPartOf, dct:conformsTo, dct:isFormatOf, dct:hasFormat, dct:isVersionOf, dct:hasVersion, dct:replaces, dct:isReplacedBy, dct:references, dct:isReferencedBy, dct:requires, dct:isRequiredBy) or PROV-O properties (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf).".freeze, label: "Relationship".freeze, - "skos:changeNote": "New class added in DCAT 2.0.".freeze, - "skos:scopeNote": "Use to characterize a relationship between datasets, and potentially other resources, where the nature of the relationship is known but is not adequately characterized by the standard Dublin Core properties (dct:hasPart, dct:isPartOf, dct:conformsTo, dct:isFormatOf, dct:hasFormat, dct:isVersionOf, dct:hasVersion, dct:replaces, dct:isReplacedBy, dct:references, dct:isReferencedBy, dct:requires, dct:isRequiredBy) or PROV-O properties (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf).".freeze, subClassOf: term( minCardinality: "1".freeze, - onProperty: "dc:relation".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/relation".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Resource, comment: "Resource published or curated by a single agent.".freeze, definition: "Resource published or curated by a single agent.".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New class added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": ["The class of all catalogued resources, the Superclass of dcat:Dataset, dcat:DataService, dcat:Catalog and any other member of a dcat:Catalog. This class carries properties common to all catalogued resources, including datasets and data services. It is strongly recommended to use a more specific sub-class. When describing a resource which is not a dcat:Dataset or dcat:DataService, it is recommended to create a suitable sub-class of dcat:Resource, or use dcat:Resource with the dct:type property to indicate the specific type.".freeze, "dcat:Resource is an extension point that enables the definition of any kind of catalog. Additional subclasses may be defined in a DCAT profile or application for catalogs of other kinds of resources.".freeze], label: "Catalogued resource".freeze, - "skos:changeNote": "New class added in DCAT 2.0.".freeze, - "skos:scopeNote": ["The class of all catalogued resources, the Superclass of dcat:Dataset, dcat:DataService, dcat:Catalog and any other member of a dcat:Catalog. This class carries properties common to all catalogued resources, including datasets and data services. It is strongly recommended to use a more specific sub-class. When describing a resource which is not a dcat:Dataset or dcat:DataService, it is recommended to create a suitable sub-class of dcat:Resource, or use dcat:Resource with the dct:type property to indicate the specific type.".freeze, "dcat:Resource is an extension point that enables the definition of any kind of catalog. Additional subclasses may be defined in a DCAT profile or application for catalogs of other kinds of resources.".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Role, comment: "A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships.".freeze, definition: "A role is the function of a resource or agent with respect to another resource, in the context of resource attribution or resource relationships.".freeze, editorialNote: "Introduced into DCAT to complement prov:Role (whose use is limited to roles in the context of an activity, as the range of prov:hadRole).".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/dcat#hadRole".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": ["New class added in DCAT 2.0.".freeze, "Ny klasse tilføjet i DCAT 2.0.".freeze], + "http://www.w3.org/2004/02/skos/core#scopeNote": ["Used in a qualified-attribution to specify the role of an Agent with respect to an Entity. It is recommended that the values be managed as a controlled vocabulary of agent roles, such as http://registry.it.csiro.au/def/isotc211/CI_RoleCode.".freeze, "Used in a qualified-relation to specify the role of an Entity with respect to another Entity. It is recommended that the values be managed as a controlled vocabulary of entity roles such as: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; DataCite metadata schema; MARC relators https://id.loc.gov/vocabulary/relators.".freeze], label: "Role".freeze, - "rdfs:seeAlso": "dcat:hadRole".freeze, - "skos:changeNote": ["New class added in DCAT 2.0.".freeze, "Ny klasse tilføjet i DCAT 2.0.".freeze], - "skos:scopeNote": ["Used in a qualified-attribution to specify the role of an Agent with respect to an Entity. It is recommended that the values be managed as a controlled vocabulary of agent roles, such as http://registry.it.csiro.au/def/isotc211/CI_RoleCode.".freeze, "Used in a qualified-relation to specify the role of an Entity with respect to another Entity. It is recommended that the values be managed as a controlled vocabulary of entity roles such as: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; DataCite metadata schema; MARC relators https://id.loc.gov/vocabulary/relators.".freeze], - subClassOf: "skos:Concept".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :accessService, comment: "A site or end-point that gives access to the distribution of the dataset.".freeze, definition: "A site or end-point that gives access to the distribution of the dataset.".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, label: "data access service".freeze, - range: "dcat:DataService".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/dcat#DataService".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :accessURL, comment: "A URL of a resource that gives access to a distribution of the dataset. E.g. landing page, feed, SPARQL endpoint. Use for all cases except a simple download link, in which case downloadURL is preferred.".freeze, definition: "A URL of a resource that gives access to a distribution of the dataset. E.g. landing page, feed, SPARQL endpoint. Use for all cases except a simple download link, in which case downloadURL is preferred.".freeze, - domain: "dcat:Distribution".freeze, + domain: "http://www.w3.org/ns/dcat#Distribution".freeze, editorialNote: ["Status: English Definition text modified by DCAT revision team, updated Italian and Czech translation provided, translations for other languages pending.".freeze, "rdfs:label, rdfs:comment and skos:scopeNote have been modified. Non-english versions except for Italian must be updated.".freeze], + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/dcat#accessService".freeze, "http://www.w3.org/ns/dcat#endpointURL".freeze), + "http://www.w3.org/2004/02/skos/core#scopeNote": "If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "access address".freeze, - "owl:propertyChainAxiom": list("dcat:accessService".freeze, "dcat:endpointURL".freeze), - range: "rdfs:Resource".freeze, - "skos:scopeNote": "If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution.".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :bbox, definition: "The geographic bounding box of a resource.".freeze, - domain: "dc:Location".freeze, + domain: "http://purl.org/dc/terms/Location".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different geometry encodings. E.g., the geometry could be encoded with as WKT (geosparql:wktLiteral [GeoSPARQL]) or [GML] (geosparql:asGML [GeoSPARQL]).".freeze, label: "bounding box".freeze, - range: "rdfs:Literal".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different geometry encodings. E.g., the geometry could be encoded with as WKT (geosparql:wktLiteral [GeoSPARQL]) or [GML] (geosparql:asGML [GeoSPARQL]).".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :byteSize, comment: "The size of a distribution in bytes.".freeze, definition: "The size of a distribution in bytes.".freeze, - domain: "dcat:Distribution".freeze, + domain: "http://www.w3.org/ns/dcat#Distribution".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The size in bytes can be approximated when the precise size is not known. The literal value of dcat:byteSize should by typed as xsd:decimal.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "byte size".freeze, - range: "rdfs:Literal".freeze, - "skos:scopeNote": "The size in bytes can be approximated when the precise size is not known. The literal value of dcat:byteSize should by typed as xsd:decimal.".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :catalog, comment: "A catalog whose contents are of interest in the context of this catalog.".freeze, definition: "A catalog whose contents are of interest in the context of this catalog.".freeze, - domain: "dcat:Catalog".freeze, + domain: "http://www.w3.org/ns/dcat#Catalog".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, label: "catalog".freeze, - range: "dcat:Catalog".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - subPropertyOf: ["dc:hasPart".freeze, "rdfs:member".freeze], - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/dcat#Catalog".freeze, + subPropertyOf: ["http://purl.org/dc/terms/hasPart".freeze, "http://www.w3.org/2000/01/rdf-schema#member".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :centroid, definition: "The geographic center (centroid) of a resource.".freeze, - domain: "dc:Location".freeze, + domain: "http://purl.org/dc/terms/Location".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different geometry encodings. E.g., the geometry could be encoded with as WKT (geosparql:wktLiteral [GeoSPARQL]) or [GML] (geosparql:asGML [GeoSPARQL]).".freeze, label: "centroid".freeze, - range: "rdfs:Literal".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different geometry encodings. E.g., the geometry could be encoded with as WKT (geosparql:wktLiteral [GeoSPARQL]) or [GML] (geosparql:asGML [GeoSPARQL]).".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :compressFormat, comment: "The compression format of the distribution in which the data is contained in a compressed form, e.g. to reduce the size of the downloadable file.".freeze, definition: "The compression format of the distribution in which the data is contained in a compressed form, e.g. to reduce the size of the downloadable file.".freeze, - domain: "dcat:Distribution".freeze, + domain: "http://www.w3.org/ns/dcat#Distribution".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This property is to be used when the files in the distribution are compressed, e.g. in a ZIP file. The format SHOULD be expressed using a media type as defined by IANA media types registry https://www.iana.org/assignments/media-types/, if available.".freeze, isDefinedBy: "https://www.w3.org/TR/vocab-dcat-2/".freeze, label: "compression format".freeze, - range: "dc:MediaType".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": "This property is to be used when the files in the distribution are compressed, e.g. in a ZIP file. The format SHOULD be expressed using a media type as defined by IANA media types registry https://www.iana.org/assignments/media-types/, if available.".freeze, - subPropertyOf: "dc:format".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://purl.org/dc/terms/MediaType".freeze, + subPropertyOf: "http://purl.org/dc/terms/format".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :contactPoint, comment: "Relevant contact information for the catalogued resource. Use of vCard is recommended.".freeze, definition: "Relevant contact information for the catalogued resource. Use of vCard is recommended.".freeze, editorialNote: "Status: English Definition text modified by DCAT revision team, Italian, Spanish and Czech translations provided, other translations pending.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "contact point".freeze, - range: "vcard:Kind".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2006/vcard/ns#Kind".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :dataset, comment: "A collection of data that is listed in the catalog.".freeze, definition: "A collection of data that is listed in the catalog.".freeze, - domain: "dcat:Catalog".freeze, + domain: "http://www.w3.org/ns/dcat#Catalog".freeze, editorialNote: "Status: English Definition text modified by DCAT revision team, Italian, Spanish and Czech translation provided, other translations pending.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "dataset".freeze, - range: "dcat:Dataset".freeze, - subPropertyOf: ["dc:hasPart".freeze, "rdfs:member".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/dcat#Dataset".freeze, + subPropertyOf: ["http://purl.org/dc/terms/hasPart".freeze, "http://www.w3.org/2000/01/rdf-schema#member".freeze], + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :distribution, comment: "An available distribution of the dataset.".freeze, definition: "An available distribution of the dataset.".freeze, - domain: "dcat:Dataset".freeze, + domain: "http://www.w3.org/ns/dcat#Dataset".freeze, editorialNote: "Status: English Definition text modified by DCAT revision team, translations pending (except for Italian, Spanish and Czech).".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "distribution".freeze, - range: "dcat:Distribution".freeze, - subPropertyOf: "dc:relation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/dcat#Distribution".freeze, + subPropertyOf: "http://purl.org/dc/terms/relation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :downloadURL, comment: "The URL of the downloadable file in a given format. E.g. CSV file or RDF file. The format is indicated by the distribution's dct:format and/or dcat:mediaType.".freeze, definition: "The URL of the downloadable file in a given format. E.g. CSV file or RDF file. The format is indicated by the distribution's dct:format and/or dcat:mediaType.".freeze, - domain: "dcat:Distribution".freeze, + domain: "http://www.w3.org/ns/dcat#Distribution".freeze, editorialNote: ["Status: English Definition text modified by DCAT revision team, Italian, Spanish and Czech translation updated, other translations pending.".freeze, "rdfs:label, rdfs:comment and/or skos:scopeNote have been modified. Non-english versions must be updated.".freeze], + "http://www.w3.org/2004/02/skos/core#scopeNote": "dcat:downloadURL SHOULD be used for the address at which this distribution is available directly, typically through a HTTP Get request.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "download URL".freeze, - range: "rdfs:Resource".freeze, - "skos:scopeNote": "dcat:downloadURL SHOULD be used for the address at which this distribution is available directly, typically through a HTTP Get request.".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :endDate, definition: "The end of the period.".freeze, - domain: "dc:PeriodOfTime".freeze, + domain: "http://purl.org/dc/terms/PeriodOfTime".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different level of temporal precision for specifying the end of a period. E.g., it can be expressed with a date (xsd:date), a date and time (xsd:dateTime), or a year (xsd:gYear).".freeze, label: "end date".freeze, - range: "rdfs:Literal".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different level of temporal precision for specifying the end of a period. E.g., it can be expressed with a date (xsd:date), a date and time (xsd:dateTime), or a year (xsd:gYear).".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :endpointDescription, comment: "A description of the service end-point, including its operations, parameters etc.".freeze, definition: "A description of the service end-point, including its operations, parameters etc.".freeze, - domain: "dcat:DataService".freeze, + domain: "http://www.w3.org/ns/dcat#DataService".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": ["New property in DCAT 2.0.".freeze, "Nueva propiedad agregada en DCAT 2.0.".freeze], + "http://www.w3.org/2004/02/skos/core#scopeNote": ["An endpoint description may be expressed in a machine-readable form, such as an OpenAPI (Swagger) description, an OGC GetCapabilities response, a SPARQL Service Description, an OpenSearch or WSDL document, a Hydra API description, else in text or some other informal mode if a formal representation is not possible.".freeze, "The endpoint description gives specific details of the actual endpoint instance, while dct:conformsTo is used to indicate the general standard or specification that the endpoint implements.".freeze], label: "description of service end-point".freeze, - "skos:changeNote": ["New property in DCAT 2.0.".freeze, "Nueva propiedad agregada en DCAT 2.0.".freeze], - "skos:scopeNote": ["An endpoint description may be expressed in a machine-readable form, such as an OpenAPI (Swagger) description, an OGC GetCapabilities response, a SPARQL Service Description, an OpenSearch or WSDL document, a Hydra API description, else in text or some other informal mode if a formal representation is not possible.".freeze, "The endpoint description gives specific details of the actual endpoint instance, while dct:conformsTo is used to indicate the general standard or specification that the endpoint implements.".freeze], - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :endpointURL, comment: "The root location or primary endpoint of the service (a web-resolvable IRI).".freeze, definition: "The root location or primary endpoint of the service (a web-resolvable IRI).".freeze, - domain: "dcat:DataService".freeze, + domain: "http://www.w3.org/ns/dcat#DataService".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property in DCAT 2.0.".freeze, label: "service end-point".freeze, - range: "rdfs:Resource".freeze, - "skos:changeNote": "New property in DCAT 2.0.".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hadRole, comment: "The function of an entity or agent with respect to another entity or resource.".freeze, definition: "The function of an entity or agent with respect to another entity or resource.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("prov:Attribution".freeze, "dcat:Relationship".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/ns/prov#Attribution".freeze, "http://www.w3.org/ns/dcat#Relationship".freeze) ), editorialNote: "Introduced into DCAT to complement prov:hadRole (whose use is limited to roles in the context of an activity, with the domain of prov:Association.".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": ["May be used in a qualified-attribution to specify the role of an Agent with respect to an Entity. It is recommended that the value be taken from a controlled vocabulary of agent roles, such as http://registry.it.csiro.au/def/isotc211/CI_RoleCode.".freeze, "May be used in a qualified-relation to specify the role of an Entity with respect to another Entity. It is recommended that the value be taken from a controlled vocabulary of entity roles such as: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; DataCite metadata schema; MARC relators https://id.loc.gov/vocabulary/relators.".freeze], label: "hadRole".freeze, - range: "dcat:Role".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": ["May be used in a qualified-attribution to specify the role of an Agent with respect to an Entity. It is recommended that the value be taken from a controlled vocabulary of agent roles, such as http://registry.it.csiro.au/def/isotc211/CI_RoleCode.".freeze, "May be used in a qualified-relation to specify the role of an Entity with respect to another Entity. It is recommended that the value be taken from a controlled vocabulary of entity roles such as: ISO 19115 DS_AssociationTypeCode http://registry.it.csiro.au/def/isotc211/DS_AssociationTypeCode; IANA Registry of Link Relations https://www.iana.org/assignments/link-relation; DataCite metadata schema; MARC relators https://id.loc.gov/vocabulary/relators.".freeze], - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/dcat#Role".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :keyword, comment: "A keyword or tag describing a resource.".freeze, definition: "A keyword or tag describing a resource.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "keyword".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "dc:subject".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/dc/terms/subject".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :landingPage, comment: "A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information.".freeze, definition: "A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "landing page".freeze, - range: "foaf:Document".freeze, - "skos:scopeNote": "If the distribution(s) are accessible only through a landing page (i.e. direct download URLs are not known), then the landing page link should be duplicated as accessURL on a distribution.".freeze, - subPropertyOf: "foaf:page".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/page".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :mediaType, comment: "The media type of the distribution as defined by IANA".freeze, definition: "The media type of the distribution as defined by IANA.".freeze, - domain: "dcat:Distribution".freeze, + domain: "http://www.w3.org/ns/dcat#Distribution".freeze, editorialNote: "Status: English Definition text modified by DCAT revision team, Italian and Czech translation provided, other translations pending. Note some inconsistency on def vs. usage.".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "The range of dcat:mediaType has been tightened as part of the revision of DCAT.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This property SHOULD be used when the media type of the distribution is defined in the IANA media types registry https://www.iana.org/assignments/media-types/, otherwise dct:format MAY be used with different values.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "media type".freeze, - range: "dc:MediaType".freeze, - "skos:changeNote": "The range of dcat:mediaType has been tightened as part of the revision of DCAT.".freeze, - "skos:scopeNote": "This property SHOULD be used when the media type of the distribution is defined in the IANA media types registry https://www.iana.org/assignments/media-types/, otherwise dct:format MAY be used with different values.".freeze, - subPropertyOf: "dc:format".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://purl.org/dc/terms/MediaType".freeze, + subPropertyOf: "http://purl.org/dc/terms/format".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packageFormat, comment: "The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together.".freeze, definition: "The package format of the distribution in which one or more data files are grouped together, e.g. to enable a set of related files to be downloaded together.".freeze, - domain: "dcat:Distribution".freeze, + domain: "http://www.w3.org/ns/dcat#Distribution".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This property to be used when the files in the distribution are packaged, e.g. in a TAR file, a Frictionless Data Package or a Bagit file. The format SHOULD be expressed using a media type as defined by IANA media types registry https://www.iana.org/assignments/media-types/, if available.".freeze, isDefinedBy: "https://www.w3.org/TR/vocab-dcat-2/".freeze, label: "packaging format".freeze, - range: "dc:MediaType".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": "This property to be used when the files in the distribution are packaged, e.g. in a TAR file, a Frictionless Data Package or a Bagit file. The format SHOULD be expressed using a media type as defined by IANA media types registry https://www.iana.org/assignments/media-types/, if available.".freeze, - subPropertyOf: "dc:format".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://purl.org/dc/terms/MediaType".freeze, + subPropertyOf: "http://purl.org/dc/terms/format".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :qualifiedRelation, comment: "Link to a description of a relationship with another resource.".freeze, definition: "Link to a description of a relationship with another resource.".freeze, - domain: "dcat:Resource".freeze, + domain: "http://www.w3.org/ns/dcat#Resource".freeze, editorialNote: "Introduced into DCAT to complement the other PROV qualified relations. ".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Used to link to another resource where the nature of the relationship is known but does not match one of the standard Dublin Core properties (dct:hasPart, dct:isPartOf, dct:conformsTo, dct:isFormatOf, dct:hasFormat, dct:isVersionOf, dct:hasVersion, dct:replaces, dct:isReplacedBy, dct:references, dct:isReferencedBy, dct:requires, dct:isRequiredBy) or PROV-O properties (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf).".freeze, label: "qualified relation".freeze, - range: "dcat:Relationship".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": "Used to link to another resource where the nature of the relationship is known but does not match one of the standard Dublin Core properties (dct:hasPart, dct:isPartOf, dct:conformsTo, dct:isFormatOf, dct:hasFormat, dct:isVersionOf, dct:hasVersion, dct:replaces, dct:isReplacedBy, dct:references, dct:isReferencedBy, dct:requires, dct:isRequiredBy) or PROV-O properties (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf).".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/dcat#Relationship".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :record, comment: "A record describing the registration of a single dataset or data service that is part of the catalog.".freeze, definition: "A record describing the registration of a single dataset or data service that is part of the catalog.".freeze, - domain: "dcat:Catalog".freeze, + domain: "http://www.w3.org/ns/dcat#Catalog".freeze, editorialNote: "Status: English, Italian, Spanish and Czech Definitions modified by DCAT revision team, other translations pending.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "record".freeze, - range: "dcat:CatalogRecord".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/dcat#CatalogRecord".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :servesDataset, comment: "A collection of data that this DataService can distribute.".freeze, definition: "A collection of data that this DataService can distribute.".freeze, - domain: "dcat:DataService".freeze, + domain: "http://www.w3.org/ns/dcat#DataService".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property in DCAT 2.0.".freeze, label: "serves dataset".freeze, - range: "dcat:Dataset".freeze, - "skos:changeNote": "New property in DCAT 2.0.".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/dcat#Dataset".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :service, comment: "A site or endpoint that is listed in the catalog.".freeze, definition: "A site or endpoint that is listed in the catalog.".freeze, - domain: "dcat:Catalog".freeze, + domain: "http://www.w3.org/ns/dcat#Catalog".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, label: "service".freeze, - range: "dcat:DataService".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - subPropertyOf: ["dc:hasPart".freeze, "rdfs:member".freeze], - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/dcat#DataService".freeze, + subPropertyOf: ["http://purl.org/dc/terms/hasPart".freeze, "http://www.w3.org/2000/01/rdf-schema#member".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :spatialResolutionInMeters, comment: ["minimum spatial separation resolvable in a dataset, measured in meters.".freeze, "minimum spatial separation resolvable in a dataset, measured in metres.".freeze], definition: ["minimum spatial separation resolvable in a dataset, measured in meters.".freeze, "minimum spatial separation resolvable in a dataset, measured in metres.".freeze], editorialNote: "Might appear in the description of a Dataset or a Distribution, so no domain is specified.".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": ["Alternative spatial resolutions might be provided as different dataset distributions.".freeze, "If the dataset is an image or grid this should correspond to the spacing of items. For other kinds of spatial dataset, this property will usually indicate the smallest distance between items in the dataset.".freeze], label: ["spatial resolution (meters)".freeze, "spatial resolution (metres)".freeze], - range: "xsd:decimal".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": ["Alternative spatial resolutions might be provided as different dataset distributions.".freeze, "If the dataset is an image or grid this should correspond to the spacing of items. For other kinds of spatial dataset, this property will usually indicate the smallest distance between items in the dataset.".freeze], - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :startDate, definition: "The start of the period".freeze, - domain: "dc:PeriodOfTime".freeze, + domain: "http://purl.org/dc/terms/PeriodOfTime".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different level of temporal precision for specifying the start of a period. E.g., it can be expressed with a date (xsd:date), a date and time (xsd:dateTime), or a year (xsd:gYear).".freeze, label: "start date".freeze, - range: "rdfs:Literal".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": "The range of this property is intentionally generic, with the purpose of allowing different level of temporal precision for specifying the start of a period. E.g., it can be expressed with a date (xsd:date), a date and time (xsd:dateTime), or a year (xsd:gYear).".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :temporalResolution, comment: "minimum time period resolvable in a dataset.".freeze, definition: "minimum time period resolvable in a dataset.".freeze, editorialNote: "Might appear in the description of a Dataset or a Distribution, so no domain is specified.".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "New property added in DCAT 2.0.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": ["Alternative temporal resolutions might be provided as different dataset distributions.".freeze, "If the dataset is a time-series this should correspond to the spacing of items in the series. For other kinds of dataset, this property will usually indicate the smallest time difference between items in the dataset.".freeze], label: "temporal resolution".freeze, - range: "xsd:duration".freeze, - "skos:changeNote": "New property added in DCAT 2.0.".freeze, - "skos:scopeNote": ["Alternative temporal resolutions might be provided as different dataset distributions.".freeze, "If the dataset is a time-series this should correspond to the spacing of items in the series. For other kinds of dataset, this property will usually indicate the smallest time difference between items in the dataset.".freeze], - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#duration".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :theme, comment: "A main category of the resource. A resource can have multiple themes.".freeze, definition: "A main category of the resource. A resource can have multiple themes.".freeze, editorialNote: "Status: English Definition text modified by DCAT revision team, all except for Italian and Czech translations are pending.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The set of skos:Concepts used to categorize the resources are organized in a skos:ConceptScheme describing all the categories and their relations in the catalog.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "theme".freeze, - range: "skos:Concept".freeze, - "skos:scopeNote": "The set of skos:Concepts used to categorize the resources are organized in a skos:ConceptScheme describing all the categories and their relations in the catalog.".freeze, - subPropertyOf: "dc:subject".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + subPropertyOf: "http://purl.org/dc/terms/subject".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :themeTaxonomy, comment: "The knowledge organization system (KOS) used to classify catalog's datasets.".freeze, definition: "The knowledge organization system (KOS) used to classify catalog's datasets.".freeze, - domain: "dcat:Catalog".freeze, + domain: "http://www.w3.org/ns/dcat#Catalog".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "It is recommended that the taxonomy is organized in a skos:ConceptScheme, skos:Collection, owl:Ontology or similar, which allows each member to be denoted by an IRI and published as linked-data.".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-dcat/".freeze, label: "theme taxonomy".freeze, - range: "rdfs:Resource".freeze, - rangeIncludes: ["owl:Ontology".freeze, "skos:Collection".freeze, "skos:ConceptScheme".freeze], - "skos:scopeNote": "It is recommended that the taxonomy is organized in a skos:ConceptScheme, skos:Collection, owl:Ontology or similar, which allows each member to be denoted by an IRI and published as linked-data.".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + rangeIncludes: ["http://www.w3.org/2002/07/owl#Ontology".freeze, "http://www.w3.org/2004/02/skos/core#Collection".freeze, "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze], + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] end end diff --git a/lib/rdf/vocab/dcmitype.rb b/lib/rdf/vocab/dcmitype.rb index abd1dd0..62a5d56 100644 --- a/lib/rdf/vocab/dcmitype.rb +++ b/lib/rdf/vocab/dcmitype.rb @@ -3,166 +3,112 @@ # This file generated automatically using rdf vocabulary format from http://purl.org/dc/dcmitype/ require 'rdf' 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 # Ontology definition ontology :"http://purl.org/dc/dcmitype/", - "dc:modified": "2012-06-14".freeze, - "dc:publisher": "http://purl.org/dc/aboutdcmi#DCMI".freeze, - "dc:title": "DCMI Type Vocabulary".freeze + "http://purl.org/dc/terms/modified": "2012-06-14".freeze, + "http://purl.org/dc/terms/publisher": "http://purl.org/dc/aboutdcmi#DCMI".freeze, + "http://purl.org/dc/terms/title": "DCMI Type Vocabulary".freeze # Class definitions term :Collection, comment: "An aggregation of resources.".freeze, - "dc:description": "A collection is described as a group; its parts may also be separately described.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "A collection is described as a group; its parts may also be separately described.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Collection".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Dataset, comment: "Data encoded in a defined structure.".freeze, - "dc:description": "Examples include lists, tables, and databases. A dataset may be useful for direct machine processing.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Examples include lists, tables, and databases. A dataset may be useful for direct machine processing.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Dataset".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Event, comment: "A non-persistent, time-based occurrence.".freeze, - "dc:description": "Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Event".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Image, comment: "A visual representation other than text.".freeze, - "dc:description": "Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. Note that Image may include both electronic and physical representations.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. Note that Image may include both electronic and physical representations.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Image".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InteractiveResource, comment: "A resource requiring interaction from the user to be understood, executed, or experienced.".freeze, - "dc:description": "Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Interactive Resource".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovingImage, comment: "A series of visual representations imparting an impression of motion when shown in succession.".freeze, - "dc:description": "Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. Instances of the type Moving Image must also be describable as instances of the broader type Image.".freeze, - "dc:issued": "2003-11-18".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. Instances of the type Moving Image must also be describable as instances of the broader type Image.".freeze, + "http://purl.org/dc/terms/issued": "2003-11-18".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Moving Image".freeze, - subClassOf: "dcmitype:Image".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/dcmitype/Image".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalObject, comment: "An inanimate, three-dimensional object or substance.".freeze, - "dc:description": "Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types.".freeze, - "dc:issued": "2002-07-13".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types.".freeze, + "http://purl.org/dc/terms/issued": "2002-07-13".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Physical Object".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Service, comment: "A system that provides one or more functions.".freeze, - "dc:description": "Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Service".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Software, comment: "A computer program in source or compiled form.".freeze, - "dc:description": "Examples include a C source file, MS-Windows .exe executable, or Perl script.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Examples include a C source file, MS-Windows .exe executable, or Perl script.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Software".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Sound, comment: "A resource primarily intended to be heard.".freeze, - "dc:description": "Examples include a music playback file format, an audio compact disc, and recorded speech or sounds.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Examples include a music playback file format, an audio compact disc, and recorded speech or sounds.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Sound".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StillImage, comment: "A static visual representation.".freeze, - "dc:description": "Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials. Instances of the type Still Image must also be describable as instances of the broader type Image.".freeze, - "dc:issued": "2003-11-18".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials. Instances of the type Still Image must also be describable as instances of the broader type Image.".freeze, + "http://purl.org/dc/terms/issued": "2003-11-18".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Still Image".freeze, - subClassOf: "dcmitype:Image".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/dcmitype/Image".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Text, comment: "A resource consisting primarily of words for reading.".freeze, - "dc:description": "Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text.".freeze, - "dc:issued": "2000-07-11".freeze, - "http://purl.org/dc/dcam/memberOf": "dc:DCMIType".freeze, - isDefinedBy: "dcmitype:".freeze, + "http://purl.org/dc/dcam/memberOf": "http://purl.org/dc/terms/DCMIType".freeze, + "http://purl.org/dc/terms/description": "Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text.".freeze, + "http://purl.org/dc/terms/issued": "2000-07-11".freeze, + isDefinedBy: "http://purl.org/dc/dcmitype/".freeze, label: "Text".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze end end diff --git a/lib/rdf/vocab/disco.rb b/lib/rdf/vocab/disco.rb index eda9415..ac485bf 100644 --- a/lib/rdf/vocab/disco.rb +++ b/lib/rdf/vocab/disco.rb @@ -3,681 +3,450 @@ # This file generated automatically using rdf vocabulary format from http://rdf-vocabulary.ddialliance.org/discovery# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # DDI-RDF Discovery Vocabulary - # # - # # This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI (Data Documentation Initiative) XML formats. - # # - # # This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI (Data Documentation Initiative) XML formats. - # # @version Version 0.6 - 2013-09-30 - # class DISCO < RDF::StrictVocabulary - # # The process collecting data is focusing on the analysis of a particular type of subject. If, for example, the adult population of Finland is being studied, the AnalysisUnit would be individuals or persons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnalysisUnit - # - # # For CategoryStatistics, frequencies, percentages, and weighted percentages can be defined. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CategoryStatistics - # - # # The class DataFile, which is also a dcmitype:Dataset, represents all the data files containing the microdata datasets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataFile - # - # # SummaryStatistics pointing to variables and CategoryStatistics pointing to categories and codes are both DescriptiveStatistics. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DescriptiveStatistics - # - # # The data for the study are collected by an Instrument. The purpose of an Instrument, i.e. an interview, a questionnaire or another entity used as a means of data collection, is in the case of a survey to record the flow of a questionnaire, its use of questions, and additional component parts. A questionnaire contains a flow of questions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Instrument - # - # # Each study has a set of logical metadata associated with the processing of data, at the time of collection or later during cleaning, and re-coding. LogicalDataSet represents the microdata dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LogicalDataSet - # - # # This class is for representing mappings betwenn DDI-RDF and DDI-XML. See Section 10 in the specification for more details and examples. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mapping - # - # # A Question is designed to get information upon a subject, or sequence of subjects, from a respondent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Question - # - # # A questionnaire contains a flow of questions. Questionnaires must contain 1 to n questions using the object property question. Particular questions may be contained in 0 to n questionnaires. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Questionnaire - # - # # Representation of a variable or question definition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Representation - # - # # RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RepresentedVariable - # - # # A Study represents the process by which a data set was generated or collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Study - # - # # In some cases, where data collection is cyclic or on-going, data sets may be released as a StudyGroup, where each cycle or wave of the data collection activity produces one or more data sets. This is typical for longitudinal studies, panel studies, and other types of series (to use the DDI term). In this case, a number of Study objects would be collected into a single StudyGroup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StudyGroup - # - # # For SummaryStatistics, maximum values, minimum values, and standard deviations can be defined. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SummaryStatistics - # - # # A Universe is the total membership or population of a defined class of people, objects or events. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Universe - # - # # Variables provide a definition of the column in a rectangular data file. Variable is a characteristic of a unit being observed. A variable might be the answer of a question, have an administrative source, or be derived from other variables. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Variable - # - # # This property points to the aggregated data set of a microdata data set. The aggregated data set is a qb:DataSet of the RDF Data Cube Vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :aggregation - # - # # This property links to the analysis unit of a Study, a StudyGroup, or a Variable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :analysisUnit - # - # # This property points to the RepresentedVariable the Variable is based on. - # # @return [RDF::Vocabulary::Term] - # attr_reader :basedOn - # - # # This property is used for representing the case quantity of a DataFile. - # # @return [RDF::Vocabulary::Term] - # attr_reader :caseQuantity - # - # # This property points to the mode of collection of a Questionnaire which is a skos:Concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collectionMode - # - # # computationBase expresses if the cases - which are the basis of the computation of a statistics value - are valid, invalid or the total of both. The usage of computationBase for frequency differs from the usage for the percentage statistics and the summary statistics. A distinction regarding computationBase doesn’t apply to frequency as category statistic. Please find more details in Section 6.3 of the specification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :computationBase - # - # # This property points to the DDI concept of a RepresentedVariable, a Variable, or a Question - # # @return [RDF::Vocabulary::Term] - # attr_reader :concept - # - # # context specifies conditions which have to be fulfilled for particular mappings. Context information can be either a SPARQL query or an informal description as plain literal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :context - # - # # This property is used to describe the cumulative percentages within category statistics. See Sections 6 and 7 more more details and examples. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cumulativePercentage - # - # # This property points to the DataFile of a Study or a LogicalDataSet. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataFile - # - # # This property points from a Study or a StudyGroup to the original DDI file which is a foaf:Document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ddifile - # - # # Defines the end date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endDate - # - # # This property points from an Instrument to a foaf:Document which is the external documentation of the Instrument. - # # @return [RDF::Vocabulary::Term] - # attr_reader :externalDocumentation - # - # # This property is used to describe the frequencies within category statistics. See Sections 6 and 7 more more details and examples. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frequency - # - # # This property points from a Study or a StudyGroup to the funding foaf:Agent which is either a foaf:Person or a org:Organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fundedBy - # - # # This property indicates the role of an Agent, e.g. analyst, data modeler, programmer, co-investigator or others. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadRole - # - # # This property points from a Study to the StudyGroup which contains the Study. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inGroup - # - # # This property indicates the original Variable of an aggregated qb:DataSet. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inputVariable - # - # # This property indicates the Instrument of a Study or a LogicalDataSet. - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrument - # - # # This property is used as a flag indicating if the microdata dataset is publicly available. The value true indicates that the dataset can be accessed (usually downloaded) by anyone. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPublic - # - # # Indicates if the code (represented by skos:Concept) is valid or missing. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isValid - # - # # The general kind of data (e.g. geospatial, register, survey) collected in this study, given either as a skos:Concept, or as a blank node with attached free-text rdfs:label. - # # @return [RDF::Vocabulary::Term] - # attr_reader :kindOfData - # - # # This property is used to describe the percentages within category statistics. See Sections 6 and 7 more more details and examples. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentage - # - # # This property indicates the LogicalDataSets of a Study. - # # @return [RDF::Vocabulary::Term] - # attr_reader :product - # - # # The purpose of a Study of a StudyGroup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :purpose - # - # # This property indicates the Questions associated to Variables or contained in Questionnaires. - # # @return [RDF::Vocabulary::Term] - # attr_reader :question - # - # # This property contains the actual text of a question as string. See Section 8.2 for examples. - # # @return [RDF::Vocabulary::Term] - # attr_reader :questionText - # - # # RepresentedVariables and Variables can have a Representation whose individuals are either of the class rdfs:Datatype (to represent values) or skos:ConceptScheme (to represent code lists). - # # @return [RDF::Vocabulary::Term] - # attr_reader :representation - # - # # The response domain of questions. The response domain has to be an instance of the class Representation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :responseDomain - # - # # Defines the start date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startDate - # - # # This property points to the skos:Concept (representing codes and categories) of a specific CategoryStatistics individual. - # # @return [RDF::Vocabulary::Term] - # attr_reader :statisticsCategory - # - # # This property indicates the DataFile of a specific DesciptiveStatistics individual. DescriptiveStatistics may have statisticsDataFile relations to 0 to n data files (DataFile) and data files (DataFile) may be in 0 to n statisticsDataFile relations to DescriptiveStatistics individuals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :statisticsDataFile - # - # # This property indicates the Variable of a specific SummaryStatistics individual. SummaryStatistics point to 0 to n variables (Variable) using the object property statisticsVariable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :statisticsVariable - # - # # The sub-title of a Study of a StudyGroup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subtitle - # - # # This property points to the summary statistics type of a Questionnaire which is a skos:Concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :summaryStatisticsType - # - # # This property indicates the Universe(s) of Studies, StudyGrous, RepresentedVariables, Variables, Questions, and LogicalDataSets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :universe - # - # # This property indicates the Variable of a Study and points to Variable contained in the LogicalDataSet. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variable - # - # # This property can be used when (1) no variable level information is available and when (2) only a stub of the RDF is requested e.g when returning basic information on a study of file, no information on potentially hundreds or thousands of variables references or metadata has to be returned. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variableQuantity - # - # # SummaryStatistics or CategoryStatistics resources may be weighted by a specific Variable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :weightedBy - # - # end DISCO = Class.new(RDF::StrictVocabulary("http://rdf-vocabulary.ddialliance.org/discovery#")) do # Ontology definition ontology :"http://rdf-vocabulary.ddialliance.org/discovery#", comment: "This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI (Data Documentation Initiative) XML formats.".freeze, - "dc11:contributor": ["Benjamin Zapilko".freeze, "Joachim Wackerow".freeze, "Richard Cyganiak".freeze, "Thomas Bosch".freeze], - "dc11:creator": ["Arofan Gregory".freeze, "Benedikt Kämpgen".freeze, "Benjamin Zapilko".freeze, "Franck Cotton".freeze, "Heiko Paulheim".freeze, "Joachim Wackerow".freeze, "Olof Olsson".freeze, "Richard Cyganiak".freeze, "Sarven Capadisli".freeze, "Thomas Bosch".freeze], - "dc11:description": "This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI (Data Documentation Initiative) XML formats.".freeze, - "dc11:title": "DDI-RDF Discovery Vocabulary".freeze, - "owl:versionInfo": "Version 0.6 - 2013-09-30".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/elements/1.1/contributor": ["Benjamin Zapilko".freeze, "Joachim Wackerow".freeze, "Richard Cyganiak".freeze, "Thomas Bosch".freeze], + "http://purl.org/dc/elements/1.1/creator": ["Arofan Gregory".freeze, "Benedikt Kämpgen".freeze, "Benjamin Zapilko".freeze, "Franck Cotton".freeze, "Heiko Paulheim".freeze, "Joachim Wackerow".freeze, "Olof Olsson".freeze, "Richard Cyganiak".freeze, "Sarven Capadisli".freeze, "Thomas Bosch".freeze], + "http://purl.org/dc/elements/1.1/description": "This specification defines the DDI Discovery Vocabulary, an RDF Schema vocabulary that enables discovery of research and survey data on the Web. It is based on DDI (Data Documentation Initiative) XML formats.".freeze, + "http://purl.org/dc/elements/1.1/title": "DDI-RDF Discovery Vocabulary".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "Version 0.6 - 2013-09-30".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AnalysisUnit, comment: "The process collecting data is focusing on the analysis of a particular type of subject. If, for example, the adult population of Finland is being studied, the AnalysisUnit would be individuals or persons.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Analysis Unit".freeze, - subClassOf: "skos:Concept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :CategoryStatistics, comment: "For CategoryStatistics, frequencies, percentages, and weighted percentages can be defined.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Category statistics".freeze, - subClassOf: "disco:DescriptiveStatistics".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://rdf-vocabulary.ddialliance.org/discovery#DescriptiveStatistics".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :DataFile, comment: "The class DataFile, which is also a dcmitype:Dataset, represents all the data files containing the microdata datasets.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Data file".freeze, - subClassOf: ["dc:DCMITypeDataset".freeze, "dcat:Distribution".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: ["http://purl.org/dc/terms/DCMITypeDataset".freeze, "http://www.w3.org/ns/dcat#Distribution".freeze], + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :DescriptiveStatistics, comment: "SummaryStatistics pointing to variables and CategoryStatistics pointing to categories and codes are both DescriptiveStatistics.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Descriptive statistics".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Instrument, comment: "The data for the study are collected by an Instrument. The purpose of an Instrument, i.e. an interview, a questionnaire or another entity used as a means of data collection, is in the case of a survey to record the flow of a questionnaire, its use of questions, and additional component parts. A questionnaire contains a flow of questions.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Instrument".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :LogicalDataSet, comment: "Each study has a set of logical metadata associated with the processing of data, at the time of collection or later during cleaning, and re-coding. LogicalDataSet represents the microdata dataset.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "LogicalDataSet".freeze, - subClassOf: ["dcat:Dataset".freeze, "skos:Concept".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: ["http://www.w3.org/2004/02/skos/core#Concept".freeze, "http://www.w3.org/ns/dcat#Dataset".freeze], + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Mapping, comment: "This class is for representing mappings betwenn DDI-RDF and DDI-XML. See Section 10 in the specification for more details and examples.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Mapping".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Question, comment: "A Question is designed to get information upon a subject, or sequence of subjects, from a respondent.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Question".freeze, - subClassOf: "skos:Concept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Questionnaire, comment: "A questionnaire contains a flow of questions. Questionnaires must contain 1 to n questions using the object property question. Particular questions may be contained in 0 to n questionnaires.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Questionnaire".freeze, - subClassOf: "disco:Instrument".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://rdf-vocabulary.ddialliance.org/discovery#Instrument".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Representation, comment: "Representation of a variable or question definition.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Representation of a variable or question definition.".freeze, subClassOf: term( - type: "owl:Class".freeze, - unionOf: list("rdfs:Datatype".freeze, "skos:ConceptScheme".freeze, "skos:OrderedCollection".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2000/01/rdf-schema#Datatype".freeze, "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, "http://www.w3.org/2004/02/skos/core#OrderedCollection".freeze) ), - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :RepresentedVariable, comment: "RepresentedVariables encompasse study-independent, re-usable parts of variables like occupation classification.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Data element".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Study, comment: "A Study represents the process by which a data set was generated or collected.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Study".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :StudyGroup, comment: "In some cases, where data collection is cyclic or on-going, data sets may be released as a StudyGroup, where each cycle or wave of the data collection activity produces one or more data sets. This is typical for longitudinal studies, panel studies, and other types of series (to use the DDI term). In this case, a number of Study objects would be collected into a single StudyGroup.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Study Group".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :SummaryStatistics, comment: "For SummaryStatistics, maximum values, minimum values, and standard deviations can be defined.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Summary statistics".freeze, - subClassOf: "disco:DescriptiveStatistics".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://rdf-vocabulary.ddialliance.org/discovery#DescriptiveStatistics".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Universe, comment: "A Universe is the total membership or population of a defined class of people, objects or events.".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Universe".freeze, - subClassOf: "skos:Concept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Variable, comment: "Variables provide a definition of the column in a rectangular data file. Variable is a characteristic of a unit being observed. A variable might be the answer of a question, have an administrative source, or be derived from other variables.".freeze, equivalentClass: "http://semanticscience.org/resource/SIO_000367".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Variable".freeze, - subClassOf: "skos:Concept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :aggregation, comment: "This property points to the aggregated data set of a microdata data set. The aggregated data set is a qb:DataSet of the RDF Data Cube Vocabulary.".freeze, - domain: "disco:LogicalDataSet".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "aggregation".freeze, range: "http://purl.org/linked-data/cube#DataSet".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :analysisUnit, comment: "This property links to the analysis unit of a Study, a StudyGroup, or a Variable.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze, "disco:Variable".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "analysis unit".freeze, - range: "disco:AnalysisUnit".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#AnalysisUnit".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :basedOn, comment: "This property points to the RepresentedVariable the Variable is based on.".freeze, - domain: "disco:Variable".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "based on".freeze, - range: "disco:RepresentedVariable".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :caseQuantity, comment: "This property is used for representing the case quantity of a DataFile.".freeze, - domain: "disco:DataFile".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#DataFile".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "number of cases".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :collectionMode, comment: "This property points to the mode of collection of a Questionnaire which is a skos:Concept.".freeze, - domain: "disco:Questionnaire".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Questionnaire".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "collection mode".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :computationBase, comment: "computationBase expresses if the cases - which are the basis of the computation of a statistics value - are valid, invalid or the total of both. The usage of computationBase for frequency differs from the usage for the percentage statistics and the summary statistics. A distinction regarding computationBase doesn’t apply to frequency as category statistic. Please find more details in Section 6.3 of the specification.".freeze, - domain: "disco:CategoryStatistics".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "computation base".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :concept, comment: "This property points to the DDI concept of a RepresentedVariable, a Variable, or a Question".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:RepresentedVariable".freeze, "disco:Question".freeze, "disco:Variable".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "concept".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :context, comment: "context specifies conditions which have to be fulfilled for particular mappings. Context information can be either a SPARQL query or an informal description as plain literal.".freeze, - domain: "disco:Mapping".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Mapping".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "context specifies conditions which have to be fulfilled for specific mappings".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :cumulativePercentage, comment: "This property is used to describe the cumulative percentages within category statistics. See Sections 6 and 7 more more details and examples.".freeze, - domain: "disco:CategoryStatistics".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "cumulative percentage".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :dataFile, comment: "This property points to the DataFile of a Study or a LogicalDataSet.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:LogicalDataSet".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "data file".freeze, - range: "disco:DataFile".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#DataFile".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :ddifile, comment: "This property points from a Study or a StudyGroup to the original DDI file which is a foaf:Document.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "DDI file".freeze, - range: "foaf:Document".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :endDate, comment: "Defines the end date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.".freeze, - domain: "dc:PeriodOfTime".freeze, + domain: "http://purl.org/dc/terms/PeriodOfTime".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "end date".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#date".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :externalDocumentation, comment: "This property points from an Instrument to a foaf:Document which is the external documentation of the Instrument.".freeze, - domain: "disco:Instrument".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Instrument".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "external documentation".freeze, - range: "foaf:Document".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :frequency, comment: "This property is used to describe the frequencies within category statistics. See Sections 6 and 7 more more details and examples.".freeze, - domain: "disco:CategoryStatistics".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "frequency".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :fundedBy, comment: "This property points from a Study or a StudyGroup to the funding foaf:Agent which is either a foaf:Person or a org:Organization.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "funded by".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "dc:contributor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://purl.org/dc/terms/contributor".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hadRole, comment: "This property indicates the role of an Agent, e.g. analyst, data modeler, programmer, co-investigator or others.".freeze, - domain: "foaf:Agent".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "had role".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :inGroup, comment: "This property points from a Study to the StudyGroup which contains the Study.".freeze, - domain: "disco:Study".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "in group".freeze, - range: "disco:StudyGroup".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :inputVariable, comment: "This property indicates the original Variable of an aggregated qb:DataSet. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.".freeze, domain: "http://purl.org/linked-data/cube#DataSet".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "input variable".freeze, - range: "disco:Variable".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :instrument, comment: "This property indicates the Instrument of a Study or a LogicalDataSet.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:LogicalDataSet".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "instrument".freeze, - range: "disco:Instrument".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#Instrument".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isPublic, comment: "This property is used as a flag indicating if the microdata dataset is publicly available. The value true indicates that the dataset can be accessed (usually downloaded) by anyone.".freeze, - domain: "disco:LogicalDataSet".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "is public".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :isValid, comment: "Indicates if the code (represented by skos:Concept) is valid or missing. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.".freeze, - domain: "skos:Concept".freeze, + domain: "http://www.w3.org/2004/02/skos/core#Concept".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "is valid".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :kindOfData, comment: "The general kind of data (e.g. geospatial, register, survey) collected in this study, given either as a skos:Concept, or as a blank node with attached free-text rdfs:label.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "kind of data".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :"mappingDDI-C", comment: "Mapping from and to DDI-C. See Section 10 in the specification for more details and examples.".freeze, - domain: "disco:Mapping".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Mapping".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Mapping from and to DDI-C".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :"mappingDDI-L", comment: "Mapping from and to DDI-L. See Section 10 in the specification for more details and examples.".freeze, - domain: "disco:Mapping".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Mapping".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "Mapping from and to DDI-L".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :percentage, comment: "This property is used to describe the percentages within category statistics. See Sections 6 and 7 more more details and examples.".freeze, - domain: "disco:CategoryStatistics".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "percentage".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :product, comment: "This property indicates the LogicalDataSets of a Study.".freeze, - domain: "disco:Study".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "product".freeze, range: "http://purl.org/linked-data/cube#LogicalDataSet".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :purpose, comment: "The purpose of a Study of a StudyGroup.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "purpose".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :question, comment: "This property indicates the Questions associated to Variables or contained in Questionnaires.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Variable".freeze, "disco:Questionnaire".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Questionnaire".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "question".freeze, - range: "disco:Question".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :questionText, comment: "This property contains the actual text of a question as string. See Section 8.2 for examples.".freeze, - domain: "disco:Question".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "question text".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :representation, comment: "RepresentedVariables and Variables can have a Representation whose individuals are either of the class rdfs:Datatype (to represent values) or skos:ConceptScheme (to represent code lists).".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:RepresentedVariable".freeze, "disco:Variable".freeze, "disco:Question".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "representation".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("skos:ConceptScheme".freeze, "rdfs:Datatype".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze) ), - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :responseDomain, comment: "The response domain of questions. The response domain has to be an instance of the class Representation.".freeze, - domain: "disco:Question".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "responseDomain".freeze, - range: "disco:Representation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#Representation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :startDate, comment: "Defines the start date of a period of time. Please note that this property is a feature at risk, since the domain is not a class of Disco. Maintainers of the domain ontology may define their own property.".freeze, - domain: "dc:PeriodOfTime".freeze, + domain: "http://purl.org/dc/terms/PeriodOfTime".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "start date".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#date".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :statisticsCategory, comment: "This property points to the skos:Concept (representing codes and categories) of a specific CategoryStatistics individual.".freeze, - domain: "disco:CategoryStatistics".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "statistics category".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :statisticsDataFile, comment: "This property indicates the DataFile of a specific DesciptiveStatistics individual. DescriptiveStatistics may have statisticsDataFile relations to 0 to n data files (DataFile) and data files (DataFile) may be in 0 to n statisticsDataFile relations to DescriptiveStatistics individuals.".freeze, - domain: "disco:DescriptiveStatistics".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#DescriptiveStatistics".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "statistics data file".freeze, - range: "disco:DataFile".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#DataFile".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :statisticsVariable, comment: "This property indicates the Variable of a specific SummaryStatistics individual. SummaryStatistics point to 0 to n variables (Variable) using the object property statisticsVariable.".freeze, - domain: "disco:SummaryStatistics".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#SummaryStatistics".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "statistics variable".freeze, - range: "disco:Variable".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :subtitle, comment: "The sub-title of a Study of a StudyGroup.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "subtitle".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :summaryStatisticsType, comment: "This property points to the summary statistics type of a Questionnaire which is a skos:Concept.".freeze, - domain: "disco:SummaryStatistics".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/discovery#SummaryStatistics".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "summary statistics type".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :universe, comment: "This property indicates the Universe(s) of Studies, StudyGrous, RepresentedVariables, Variables, Questions, and LogicalDataSets.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:StudyGroup".freeze, "disco:RepresentedVariable".freeze, "disco:Variable".freeze, "disco:Question".freeze, "disco:LogicalDataSet".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#StudyGroup".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#RepresentedVariable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#Question".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "universe".freeze, - range: "disco:Universe".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#Universe".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :variable, comment: "This property indicates the Variable of a Study and points to Variable contained in the LogicalDataSet.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:Study".freeze, "disco:LogicalDataSet".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#Study".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "variable".freeze, - range: "disco:Variable".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :variableQuantity, comment: "This property can be used when (1) no variable level information is available and when (2) only a stub of the RDF is requested e.g when returning basic information on a study of file, no information on potentially hundreds or thousands of variables references or metadata has to be returned.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:LogicalDataSet".freeze, "disco:DataFile".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#LogicalDataSet".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#DataFile".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "variable quantity".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :weightedBy, comment: "SummaryStatistics or CategoryStatistics resources may be weighted by a specific Variable.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("disco:SummaryStatistics".freeze, "disco:CategoryStatistics".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf-vocabulary.ddialliance.org/discovery#SummaryStatistics".freeze, "http://rdf-vocabulary.ddialliance.org/discovery#CategoryStatistics".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/discovery".freeze, label: "weighted by".freeze, - range: "disco:Variable".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/discovery#Variable".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] end end diff --git a/lib/rdf/vocab/doap.rb b/lib/rdf/vocab/doap.rb index f0737e3..e9a16c8 100644 --- a/lib/rdf/vocab/doap.rb +++ b/lib/rdf/vocab/doap.rb @@ -3,550 +3,372 @@ # This file generated automatically using rdf vocabulary format from http://usefulinc.com/ns/doap# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Description of a Project (DOAP) vocabulary - # # - # # The Description of a Project (DOAP) vocabulary, described using W3C RDF Schema and the Web Ontology Language. - # class DOAP < RDF::StrictVocabulary - # # GNU Arch source code repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArchRepository - # - # # BitKeeper source code repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BKRepository - # - # # Bazaar source code branch. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BazaarBranch - # - # # CVS source code repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CVSRepository - # - # # darcs source code repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DarcsRepository - # - # # Git source code branch. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GitBranch - # - # # Git source code repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GitRepository - # - # # Mercurial source code repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HgRepository - # - # # A project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Project - # - # # Source code repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Repository - # - # # Subversion source code repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SVNRepository - # - # # A specification of a system's aspects, technical or otherwise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Specification - # - # # Version information of a project release. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Version - # - # # Description of target user base - # # @return [RDF::Vocabulary::Term] - # attr_reader :audience - # - # # URI of a blog related to a project - # # @return [RDF::Vocabulary::Term] - # attr_reader :blog - # - # # Web browser interface to repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :browse - # - # # A category of project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :category - # - # # Date when something was created, in YYYY-MM-DD form. e.g. 2004-04-05 - # # @return [RDF::Vocabulary::Term] - # attr_reader :created - # - # # Plain text description of a project, of 2-4 sentences in length. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # Developer of software for the project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :developer - # - # # Contributor of documentation to the project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :documenter - # - # # Project contributor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :helper - # - # # URL of a project's homepage, associated with exactly one project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :homepage - # - # # A specification that a project implements. Could be a standard, API or legally defined level of conformance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :implements - # - # # ISO language code a project has been translated into - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # The URI of an RDF description of the license the software is distributed under. E.g. a SPDX reference - # # @return [RDF::Vocabulary::Term] - # attr_reader :license - # - # # Location of a repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :location - # - # # Maintainer of a project, a project leader. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maintainer - # - # # Module name of a Subversion, CVS, BitKeeper or Arch repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :module - # - # # A name of something. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # Operating system that a project is limited to. Omit this property if the project is not OS-specific. - # # - # # Sistema operativo a que o projeto está limitado. Omita esta propriedade se o projeto não é condicionado pelo SO usado. - # # @return [RDF::Vocabulary::Term] - # attr_reader :os - # - # # Indicator of software platform (non-OS specific), e.g. Java, Firefox, ECMA CLR - # # @return [RDF::Vocabulary::Term] - # attr_reader :platform - # - # # A project release. - # # @return [RDF::Vocabulary::Term] - # attr_reader :release - # - # # Source code repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :repository - # - # # The project that uses a repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOf - # - # # Revision identifier of a software release. - # # @return [RDF::Vocabulary::Term] - # attr_reader :revision - # - # # Web page with screenshots of project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :screenshots - # - # # Short (8 or 9 words) plain text description of a project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :shortdesc - # - # # A tester or other quality control contributor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tester - # - # # Contributor of translations to the project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :translator - # - # # Vendor organization: commercial, free or otherwise - # # @return [RDF::Vocabulary::Term] - # attr_reader :vendor - # - # # URL of Wiki for collaborative discussion of project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wiki - # - # end DOAP = Class.new(RDF::StrictVocabulary("http://usefulinc.com/ns/doap#")) do # Ontology definition ontology :"http://usefulinc.com/ns/doap#", - "dc11:creator": "Edd Wilder-James".freeze, - "dc11:description": "The Description of a Project (DOAP) vocabulary, described using W3C RDF Schema and the Web Ontology Language.".freeze, - "dc11:format": "application/rdf+xml".freeze, - "dc11:rights": "Copyright © 2004-2018 Edd Dumbill, Edd Wilder-James".freeze, - "dc11:title": "Description of a Project (DOAP) vocabulary".freeze, - "foaf:maker": term( - "foaf:mbox": "mailto:edd@usefulinc.com".freeze, - "foaf:name": "Edd Wilder-James".freeze, - type: "foaf:Person".freeze + "http://purl.org/dc/elements/1.1/creator": "Edd Wilder-James".freeze, + "http://purl.org/dc/elements/1.1/description": "The Description of a Project (DOAP) vocabulary, described using W3C RDF Schema and the Web Ontology Language.".freeze, + "http://purl.org/dc/elements/1.1/format": "application/rdf+xml".freeze, + "http://purl.org/dc/elements/1.1/rights": "Copyright © 2004-2018 Edd Dumbill, Edd Wilder-James".freeze, + "http://purl.org/dc/elements/1.1/title": "Description of a Project (DOAP) vocabulary".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://xmlns.com/foaf/0.1/".freeze, + "http://xmlns.com/foaf/0.1/maker": term( + "http://xmlns.com/foaf/0.1/mbox": "mailto:edd@usefulinc.com".freeze, + "http://xmlns.com/foaf/0.1/name": "Edd Wilder-James".freeze, + type: "http://xmlns.com/foaf/0.1/Person".freeze ), - "owl:imports": "foaf:".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :ArchRepository, comment: "GNU Arch source code repository.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "GNU Arch repository".freeze, - subClassOf: "doap:Repository".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://usefulinc.com/ns/doap#Repository".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :BKRepository, comment: "BitKeeper source code repository.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "BitKeeper Repository".freeze, - subClassOf: "doap:Repository".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://usefulinc.com/ns/doap#Repository".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :BazaarBranch, comment: "Bazaar source code branch.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Bazaar Branch".freeze, - subClassOf: "doap:Repository".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://usefulinc.com/ns/doap#Repository".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CVSRepository, comment: "CVS source code repository.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "CVS Repository".freeze, - subClassOf: "doap:Repository".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://usefulinc.com/ns/doap#Repository".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :DarcsRepository, comment: "darcs source code repository.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "darcs Repository".freeze, - subClassOf: "doap:Repository".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://usefulinc.com/ns/doap#Repository".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GitBranch, comment: "Git source code branch.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Git Branch".freeze, - subClassOf: "doap:Repository".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://usefulinc.com/ns/doap#Repository".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GitRepository, comment: "Git source code repository.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Git Repository".freeze, - subClassOf: "doap:Repository".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://usefulinc.com/ns/doap#Repository".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HgRepository, comment: "Mercurial source code repository.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Mercurial Repository".freeze, - subClassOf: "doap:Repository".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://usefulinc.com/ns/doap#Repository".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Project, comment: "A project.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Project".freeze, - subClassOf: ["foaf:Project".freeze, "http://xmlns.com/wordnet/1.6/Project".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://xmlns.com/foaf/0.1/Project".freeze, "http://xmlns.com/wordnet/1.6/Project".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Repository, comment: "Source code repository.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Repository".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SVNRepository, comment: "Subversion source code repository.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Subversion Repository".freeze, - subClassOf: "doap:Repository".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://usefulinc.com/ns/doap#Repository".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Specification, comment: "A specification of a system's aspects, technical or otherwise.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Specification".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Version, comment: "Version information of a project release.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Version".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :"anon-root", comment: "Repository for anonymous access.".freeze, - domain: "doap:Repository".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Repository".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "anonymous root".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audience, comment: "Description of target user base".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "audience".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :blog, comment: "URI of a blog related to a project".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "blog".freeze, - range: ["rdfs:Resource".freeze, "sioctypes:Weblog".freeze], - type: "rdf:Property".freeze + range: ["http://rdfs.org/sioc/types#Weblog".freeze, "http://www.w3.org/2000/01/rdf-schema#Resource".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :browse, comment: "Web browser interface to repository.".freeze, - domain: "doap:Repository".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Repository".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "browse".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"bug-database", comment: "Bug tracker for a project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "bug database".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :category, comment: "A category of project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "category".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :created, comment: "Date when something was created, in YYYY-MM-DD form. e.g. 2004-04-05".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "created".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, comment: "Plain text description of a project, of 2-4 sentences in length.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "description".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :developer, comment: "Developer of software for the project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "developer".freeze, - range: "foaf:Person".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"developer-forum", comment: "A forum or community for developers of this project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "developer forum".freeze, - range: "sioc:Container".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :documenter, comment: "Contributor of documentation to the project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "documenter".freeze, - range: "foaf:Person".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"download-mirror", comment: "Mirror of software download web page.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "download mirror".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"download-page", comment: "Web page from which the project software can be downloaded.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "download page".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"file-release", comment: "URI of download associated with this release.".freeze, - domain: "doap:Version".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Version".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "file-release".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :helper, comment: "Project contributor.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "helper".freeze, - range: "foaf:Person".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :homepage, comment: "URL of a project's homepage,\n\t\tassociated with exactly one project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "homepage".freeze, - subPropertyOf: "foaf:homepage".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://xmlns.com/foaf/0.1/homepage".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :implements, comment: "A specification that a project implements. Could be a standard, API or legally defined level of conformance.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "Implements specification".freeze, - range: "doap:Specification".freeze, - type: "rdf:Property".freeze + range: "http://usefulinc.com/ns/doap#Specification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :language, comment: "ISO language code a project has been translated into".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "language".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :license, comment: "The URI of an RDF description of the license the software is distributed under. E.g. a SPDX reference".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "license".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :location, comment: "Location of a repository.".freeze, - domain: "doap:Repository".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Repository".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "repository location".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"mailing-list", comment: "Mailing list home page or email address.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "mailing list".freeze, - range: "sioctypes:MailingList".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/sioc/types#MailingList".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maintainer, comment: "Maintainer of a project, a project leader.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "maintainer".freeze, - range: "foaf:Person".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :module, comment: "Module name of a Subversion, CVS, BitKeeper or Arch repository.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("doap:CVSRepository".freeze, "doap:ArchRepository".freeze, "doap:BKRepository".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://usefulinc.com/ns/doap#CVSRepository".freeze, "http://usefulinc.com/ns/doap#ArchRepository".freeze, "http://usefulinc.com/ns/doap#BKRepository".freeze) ), - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "module".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :name, comment: "A name of something.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "name".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "rdfs:label".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"old-homepage", comment: "URL of a project's past homepage,\n\t\tassociated with exactly one project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "old homepage".freeze, - subPropertyOf: "foaf:homepage".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://xmlns.com/foaf/0.1/homepage".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :os, comment: ["Operating system that a project is limited to. Omit this property if the project is not OS-specific.".freeze, "Sistema operativo a que o projeto está limitado. Omita esta propriedade se o projeto não é condicionado pelo SO usado.".freeze], - domain: ["doap:Project".freeze, "doap:Version".freeze], - isDefinedBy: "doap:".freeze, + domain: ["http://usefulinc.com/ns/doap#Project".freeze, "http://usefulinc.com/ns/doap#Version".freeze], + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "operating system".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :platform, comment: "Indicator of software platform (non-OS specific), e.g. Java, Firefox, ECMA CLR".freeze, - domain: ["doap:Project".freeze, "doap:Version".freeze], - isDefinedBy: "doap:".freeze, + domain: ["http://usefulinc.com/ns/doap#Project".freeze, "http://usefulinc.com/ns/doap#Version".freeze], + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "platform".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"programming-language", comment: "Programming language a project is implemented in or intended for use with.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "programming language".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :release, comment: "A project release.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "release".freeze, - range: "doap:Version".freeze, - type: "rdf:Property".freeze + range: "http://usefulinc.com/ns/doap#Version".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :repository, comment: "Source code repository.".freeze, - domain: "doap:Project".freeze, - inverseOf: "doap:repositoryOf".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + inverseOf: "http://usefulinc.com/ns/doap#repositoryOf".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "repository".freeze, - range: "doap:Repository".freeze, - type: "rdf:Property".freeze + range: "http://usefulinc.com/ns/doap#Repository".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :repositoryOf, comment: "The project that uses a repository.".freeze, - domain: "doap:Repository".freeze, - inverseOf: "doap:repository".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Repository".freeze, + inverseOf: "http://usefulinc.com/ns/doap#repository".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "repository of".freeze, - range: "doap:Project".freeze, - type: "rdf:Property".freeze + range: "http://usefulinc.com/ns/doap#Project".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :revision, comment: "Revision identifier of a software release.".freeze, - domain: "doap:Version".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Version".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "revision".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :screenshots, comment: "Web page with screenshots of project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "screenshots".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"service-endpoint", comment: "The URI of a web service endpoint where software as a service may be accessed".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "service endpoint".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shortdesc, comment: "Short (8 or 9 words) plain text description of a project.".freeze, - isDefinedBy: "doap:".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "short description".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"support-forum", comment: "A forum or community that supports this project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "supporting forum".freeze, - range: "sioc:Container".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tester, comment: "A tester or other quality control contributor.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "tester".freeze, - range: "foaf:Person".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :translator, comment: "Contributor of translations to the project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "translator".freeze, - range: "foaf:Person".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vendor, comment: "Vendor organization: commercial, free or otherwise".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "vendor".freeze, - range: "foaf:Organization".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :wiki, comment: "URL of Wiki for collaborative discussion of project.".freeze, - domain: "doap:Project".freeze, - isDefinedBy: "doap:".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://usefulinc.com/ns/doap#".freeze, label: "wiki".freeze, - range: "sioctypes:Wiki".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/sioc/types#Wiki".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/dwc.rb b/lib/rdf/vocab/dwc.rb index 7cb7c15..1b03433 100644 --- a/lib/rdf/vocab/dwc.rb +++ b/lib/rdf/vocab/dwc.rb @@ -3,3198 +3,2442 @@ # This file generated automatically using rdf vocabulary format from http://rs.tdwg.org/dwc/terms/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Darwin Core Recommended Terms - # # - # # This document contains a list of Darwin Core terms that have the dwcattributes:status equal to "recommended". For the full normative RDF document of all Darwin Core terms, see dwctermshistory.rdf. To comment on this schema, please create a new issue in https://github.com/tdwg/dwc/issues - # class DWC < RDF::Vocabulary - # # An action that occurs at some location during some time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # A preserved specimen that is a fossil. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FossilSpecimen - # - # # Geological information, such as stratigraphy, that qualifies a region or place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeologicalContext - # - # # An output of a human observation process. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HumanObservation - # - # # A taxonomic determination (e.g., the assignment to a taxon). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Identification - # - # # A specimen that is alive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LivingSpecimen - # - # # An output of a machine observation process. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MachineObservation - # - # # A physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MaterialSample - # - # # A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MeasurementOrFact - # - # # An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Occurrence - # - # # A particular organism or defined group of organisms considered to be taxonomically homogeneous. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organism - # - # # A specimen that has been preserved. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreservedSpecimen - # - # # A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResourceRelationship - # - # # A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Taxon - # - # # The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedNameUsage - # - # # An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedNameUsageID - # - # # Abstract term to attribute information to a source. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accordingTo - # - # # A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedMedia - # - # # A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedOccurrences - # - # # A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedOrganisms - # - # # A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedReferences - # - # # A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedSequences - # - # # A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedTaxa - # - # # The specific nature of the data record. - # # @return [RDF::Vocabulary::Term] - # attr_reader :basisOfRecord - # - # # The full name of the lithostratigraphic bed from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bed - # - # # A description of the behavior shown by the subject at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :behavior - # - # # An identifier (preferably unique) for the record within the data set or collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :catalogNumber - # - # # The full scientific name of the class in which the taxon is classified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :class - # - # # The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collectionCode - # - # # An identifier for the collection or dataset from which the record was derived. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collectionID - # - # # The name of the continent in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. - # # @return [RDF::Vocabulary::Term] - # attr_reader :continent - # - # # A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coordinatePrecision - # - # # The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the Location. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Zero is not a valid value for this term. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coordinateUncertaintyInMeters - # - # # The name of the country or major administrative unit in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. - # # @return [RDF::Vocabulary::Term] - # attr_reader :country - # - # # The standard code for the country in which the Location occurs. Recommended best practice is to use ISO 3166-1-alpha-2 country codes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryCode - # - # # The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :county - # - # # Actions taken to make the shared data less specific or complete than in its original form. Suggests that alternative data of higher quality may be available on request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataGeneralizations - # - # # An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datasetID - # - # # The name identifying the data set from which the record was derived. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datasetName - # - # # The date on which the subject was identified as representing the Taxon. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E). - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateIdentified - # - # # The integer day of the month on which the Event occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :day - # - # # The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :decimalLatitude - # - # # The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :decimalLongitude - # - # # The current state of a specimen with respect to the collection identified in collectionCode or collectionID. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :disposition - # - # # A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dynamicProperties - # - # # The full name of the earliest possible geochronologic age or lowest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :earliestAgeOrLowestStage - # - # # The full name of the earliest possible geochronologic eon or lowest chrono-stratigraphic eonothem or the informal name ("Precambrian") attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :earliestEonOrLowestEonothem - # - # # The full name of the earliest possible geochronologic epoch or lowest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :earliestEpochOrLowestSeries - # - # # The full name of the earliest possible geochronologic era or lowest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :earliestEraOrLowestErathem - # - # # The full name of the earliest possible geochronologic period or lowest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :earliestPeriodOrLowestSystem - # - # # The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). - # # @return [RDF::Vocabulary::Term] - # attr_reader :endDayOfYear - # - # # The process by which the biological individual(s) represented in the Occurrence became established at the location. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :establishmentMeans - # - # # The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E). - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventDate - # - # # An identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventID - # - # # Comments or notes about the Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventRemarks - # - # # The time or interval during which an Event occurred. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E). - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventTime - # - # # The full scientific name of the family in which the taxon is classified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :family - # - # # One of a) an indicator of the existence of, b) a reference to (publication, URI), or c) the text of notes taken in the field about the Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fieldNotes - # - # # An identifier given to the event in the field. Often serves as a link between field notes and the Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fieldNumber - # - # # A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead. - # # @return [RDF::Vocabulary::Term] - # attr_reader :footprintSRS - # - # # The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1. - # # @return [RDF::Vocabulary::Term] - # attr_reader :footprintSpatialFit - # - # # A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other. - # # @return [RDF::Vocabulary::Term] - # attr_reader :footprintWKT - # - # # The full name of the lithostratigraphic formation from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :formation - # - # # The full scientific name of the genus in which the taxon is classified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :genus - # - # # The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value "unknown". - # # @return [RDF::Vocabulary::Term] - # attr_reader :geodeticDatum - # - # # An identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geologicalContextID - # - # # A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :georeferenceProtocol - # - # # Notes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in georeferenceProtocol. - # # @return [RDF::Vocabulary::Term] - # attr_reader :georeferenceRemarks - # - # # A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :georeferenceSources - # - # # A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :georeferenceVerificationStatus - # - # # A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :georeferencedBy - # - # # The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E). - # # @return [RDF::Vocabulary::Term] - # attr_reader :georeferencedDate - # - # # The full name of the lithostratigraphic group from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :group - # - # # A category or description of the habitat in which the Event occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :habitat - # - # # A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record. - # # @return [RDF::Vocabulary::Term] - # attr_reader :higherClassification - # - # # A list (concatenated and separated) of geographic names less specific than the information captured in the locality term. - # # @return [RDF::Vocabulary::Term] - # attr_reader :higherGeography - # - # # An identifier for the geographic region within which the Location occurred. Recommended best practice is to use an persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names. - # # @return [RDF::Vocabulary::Term] - # attr_reader :higherGeographyID - # - # # The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :highestBiostratigraphicZone - # - # # An identifier for the Identification (the body of information associated with the assignment of a scientific name). May be a global unique identifier or an identifier specific to the data set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identificationID - # - # # A brief phrase or a standard term ("cf.", "aff.") to express the determiner's doubts about the Identification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identificationQualifier - # - # # A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identificationReferences - # - # # Comments or notes about the Identification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identificationRemarks - # - # # A categorical indicator of the extent to which the taxonomic identification has been verified to be correct. Recommended best practice is to use a controlled vocabulary such as that used in HISPID/ABCD. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identificationVerificationStatus - # - # # A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifiedBy - # - # # The number of individuals represented present at the time of the Occurrence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :individualCount - # - # # Additional information that exists, but that has not been shared in the given record. - # # @return [RDF::Vocabulary::Term] - # attr_reader :informationWithheld - # - # # The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :infraspecificEpithet - # - # # The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record. - # # @return [RDF::Vocabulary::Term] - # attr_reader :institutionCode - # - # # An identifier for the institution having custody of the object(s) or information referred to in the record. - # # @return [RDF::Vocabulary::Term] - # attr_reader :institutionID - # - # # The name of the island on or near which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. - # # @return [RDF::Vocabulary::Term] - # attr_reader :island - # - # # The name of the island group in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. - # # @return [RDF::Vocabulary::Term] - # attr_reader :islandGroup - # - # # The full scientific name of the kingdom in which the taxon is classified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :kingdom - # - # # The full name of the latest possible geochronologic age or highest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestAgeOrHighestStage - # - # # The full name of the latest possible geochronologic eon or highest chrono-stratigraphic eonothem or the informal name ("Precambrian") attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestEonOrHighestEonothem - # - # # The full name of the latest possible geochronologic epoch or highest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestEpochOrHighestSeries - # - # # The full name of the latest possible geochronologic era or highest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestEraOrHighestErathem - # - # # The full name of the latest possible geochronologic period or highest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :latestPeriodOrHighestSystem - # - # # The age class or life stage of the biological individual(s) at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lifeStage - # - # # The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lithostratigraphicTerms - # - # # The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locality - # - # # Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationAccordingTo - # - # # An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationID - # - # # Comments or notes about the Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationRemarks - # - # # The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowestBiostratigraphicZone - # - # # An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique. - # # @return [RDF::Vocabulary::Term] - # attr_reader :materialSampleID - # - # # The greater depth of a range of depth below the local surface, in meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumDepthInMeters - # - # # The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumDistanceAboveSurfaceInMeters - # - # # The upper limit of the range of elevation (altitude, usually above sea level), in meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumElevationInMeters - # - # # The description of the potential error associated with the measurementValue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementAccuracy - # - # # A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementDeterminedBy - # - # # The date on which the MeasurementOrFact was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E). - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementDeterminedDate - # - # # An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementID - # - # # A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementMethod - # - # # Comments or notes accompanying the MeasurementOrFact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementRemarks - # - # # The nature of the measurement, fact, characteristic, or assertion. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementType - # - # # The units associated with the measurementValue. Recommended best practice is to use the International System of Units (SI). - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementUnit - # - # # The value of the measurement, fact, characteristic, or assertion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementValue - # - # # The full name of the lithostratigraphic member from which the cataloged item was collected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # The lesser depth of a range of depth below the local surface, in meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumDepthInMeters - # - # # The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumDistanceAboveSurfaceInMeters - # - # # The lower limit of the range of elevation (altitude, usually above sea level), in meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumElevationInMeters - # - # # The ordinal month in which the Event occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :month - # - # # The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :municipality - # - # # The reference to the source in which the specific taxon concept circumscription is defined or implied - traditionally signified by the Latin "sensu" or "sec." (from secundum, meaning "according to"). For taxa that result from identifications, a reference to the keys, monographs, experts and other sources should be given. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameAccordingTo - # - # # An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nameAccordingToID - # - # # A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namePublishedIn - # - # # An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namePublishedInID - # - # # The four-digit year in which the scientificName was published. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namePublishedInYear - # - # # The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nomenclaturalCode - # - # # The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nomenclaturalStatus - # - # # An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occurrenceID - # - # # Comments or notes about the Occurrence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occurrenceRemarks - # - # # A statement about the presence or absence of a Taxon at a Location. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occurrenceStatus - # - # # The full scientific name of the order in which the taxon is classified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :order - # - # # An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organismID - # - # # A textual name or label assigned to an Organism instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organismName - # - # # Comments or notes about the Organism instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organismRemarks - # - # # A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organismScope - # - # # The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names. - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalNameUsage - # - # # An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalNameUsageID - # - # # A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :otherCatalogNumbers - # - # # The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ownerInstitutionCode - # - # # The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentNameUsage - # - # # An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentNameUsageID - # - # # The full scientific name of the phylum or division in which the taxon is classified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :phylum - # - # # The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pointRadiusSpatialFit - # - # # A list (concatenated and separated) of preparations and preservation methods for a specimen. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preparations - # - # # A list (concatenated and separated) of previous assignments of names to the Organism. - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousIdentifications - # - # # An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordNumber - # - # # A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordedBy - # - # # An identifier for a related resource (the object, rather than the subject of the relationship). - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedResourceID - # - # # The source (person, organization, publication, reference) establishing the relationship between the two resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationshipAccordingTo - # - # # The date-time on which the relationship between the two resources was established. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E). - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationshipEstablishedDate - # - # # The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID). Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationshipOfResource - # - # # Comments or notes about the relationship between the two resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationshipRemarks - # - # # The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reproductiveCondition - # - # # An identifier for the resource that is the subject of the relationship. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceID - # - # # An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object). - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceRelationshipID - # - # # The amount of effort expended during an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :samplingEffort - # - # # The name of, reference to, or description of the method or protocol used during an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :samplingProtocol - # - # # The full scientific name, with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined. This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scientificName - # - # # The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scientificNameAuthorship - # - # # An identifier for the nomenclatural (not taxonomic) details of a scientific name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scientificNameID - # - # # The sex of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sex - # - # # The name of the first or species epithet of the scientificName. - # # @return [RDF::Vocabulary::Term] - # attr_reader :specificEpithet - # - # # The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). - # # @return [RDF::Vocabulary::Term] - # attr_reader :startDayOfYear - # - # # The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stateProvince - # - # # The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subgenus - # - # # An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :taxonConceptID - # - # # An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :taxonID - # - # # The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :taxonRank - # - # # Comments or notes about the taxon or name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :taxonRemarks - # - # # The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :taxonomicStatus - # - # # A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeStatus - # - # # The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. Recommended best practice is to use a controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimCoordinateSystem - # - # # The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimCoordinates - # - # # The original description of the depth below the local surface. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimDepth - # - # # The original description of the elevation (altitude, usually above sea level) of the Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimElevation - # - # # The verbatim original representation of the date and time information for an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimEventDate - # - # # The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimLatitude - # - # # The original textual description of the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimLocality - # - # # The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimLongitude - # - # # The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value "unknown". - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimSRS - # - # # The taxonomic rank of the most specific name in the scientificName as it appears in the original record. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verbatimTaxonRank - # - # # A common or vernacular name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vernacularName - # - # # The name of the water body in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. - # # @return [RDF::Vocabulary::Term] - # attr_reader :waterBody - # - # # The four-digit year in which the Event occurred, according to the Common Era Calendar. - # # @return [RDF::Vocabulary::Term] - # attr_reader :year - # - # end DWC = Class.new(RDF::Vocabulary("http://rs.tdwg.org/dwc/terms/")) do # Ontology definition ontology :"http://rs.tdwg.org/dwc/terms/", comment: "This document contains a list of Darwin Core terms that have the dwcattributes:status equal to \"recommended\". For the full normative RDF document of all Darwin Core terms, see dwctermshistory.rdf. To comment on this schema, please create a new issue in https://github.com/tdwg/dwc/issues".freeze, - "dc:modified": "2014-12-05".freeze, - "dc:publisher": "Biodiversity Information Standards (TDWG)".freeze, - "dc:title": "Darwin Core Recommended Terms".freeze + "http://purl.org/dc/terms/modified": "2014-12-05".freeze, + "http://purl.org/dc/terms/publisher": "Biodiversity Information Standards (TDWG)".freeze, + "http://purl.org/dc/terms/title": "Darwin Core Recommended Terms".freeze # Class definitions term :Event, comment: "An action that occurs at some location during some time.".freeze, - "dc:description": "Examples: A specimen collection process. A machine observation.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Event-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:Event-2009-04-29".freeze, + "http://purl.org/dc/terms/description": "Examples: A specimen collection process. A machine observation.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Event-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Event-2009-04-29".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Event".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FossilSpecimen, comment: "A preserved specimen that is a fossil.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#FossilSpecimen-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "http://rs.tdwg.org/dwc/dwctype/FossilSpecimen-2011-10-16".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#FossilSpecimen-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/dwctype/FossilSpecimen-2011-10-16".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "RecordBasisEnum/FossileSpecimen".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Fossil Specimen".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeologicalContext, comment: "Geological information, such as stratigraphy, that qualifies a region or place.".freeze, - "dc:description": "Example: A lithostratigraphic layer.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#GeologicalContext-2014-10-23".freeze, - "dc:issued": "2009-07-06".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:GeologicalContext-2009-07-06".freeze, + "http://purl.org/dc/terms/description": "Example: A lithostratigraphic layer.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#GeologicalContext-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2009-07-06".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/GeologicalContext-2009-07-06".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Stratigraphy".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Geological Context".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HumanObservation, comment: "An output of a human observation process.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#HumanObservation-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "http://rs.tdwg.org/dwc/dwctype/HumanObservation-2011-10-16".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#HumanObservation-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/dwctype/HumanObservation-2011-10-16".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "RecordBasisEnum/HumanObservation".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Human Observation".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Identification, comment: "A taxonomic determination (e.g., the assignment to a taxon).".freeze, - "dc:description": "Example: A subspecies determination of an organism.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Identification-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:Identification-2008-11-19".freeze, + "http://purl.org/dc/terms/description": "Example: A subspecies determination of an organism.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Identification-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Identification-2008-11-19".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Identification".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LivingSpecimen, comment: "A specimen that is alive.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#LivingSpecimen-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "http://rs.tdwg.org/dwc/dwctype/LivingSpecimen-2011-10-16".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#LivingSpecimen-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/dwctype/LivingSpecimen-2011-10-16".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "RecordBasisEnum/LivingSpecimen".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Living Specimen".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MachineObservation, comment: "An output of a machine observation process.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#MachineObservation-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "http://rs.tdwg.org/dwc/dwctype/MachineObservation-2011-10-16".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#MachineObservation-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/dwctype/MachineObservation-2011-10-16".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "RecordBasisEnum/MachineObservation".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Machine Observation".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MaterialSample, comment: "A physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.".freeze, - "dc:description": "Examples: A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#MaterialSample-2014-10-23".freeze, - "dc:issued": "2013-03-28".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:MaterialSample-2013-03-28".freeze, + "http://purl.org/dc/terms/description": "Examples: A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#MaterialSample-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2013-03-28".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/MaterialSample-2013-03-28".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Material Sample".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MeasurementOrFact, comment: "A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).".freeze, - "dc:description": "Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Examples: The weight of an organism in grams. The number of placental scars.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#MeasurementOrFact-2014-10-23".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:MeasurementOrFact-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Examples: The weight of an organism in grams. The number of placental scars.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#MeasurementOrFact-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement or Fact".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Occurrence, comment: "An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.".freeze, - "dc:description": "Examples: A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Occurrence-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:Occurrence-2009-04-29".freeze, + "http://purl.org/dc/terms/description": "Examples: A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Occurrence-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Occurrence-2009-04-29".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Occurrence".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Organism, comment: "A particular organism or defined group of organisms considered to be taxonomically homogeneous.".freeze, - "dc:description": "Instances of the Organism class are intended to facilitate linking of one or more Identification instances to one or more Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Organism-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/description": "Instances of the Organism class are intended to facilitate linking of one or more Identification instances to one or more Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Organism-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_14".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Organism".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PreservedSpecimen, comment: "A specimen that has been preserved.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#PreservedSpecimen-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen-2011-10-16".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#PreservedSpecimen-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen-2011-10-16".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "RecordBasisEnum/PreservedSpecimen".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Preserved Specimen".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ResourceRelationship, comment: "A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.".freeze, - "dc:description": "Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Example: An instance of an Organism is the mother of another instance of an Organism.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#ResourceRelationship-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:ResourceRelationship-2009-01-21".freeze, + "http://purl.org/dc/terms/description": "Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Example: An instance of an Organism is the mother of another instance of an Organism.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#ResourceRelationship-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/ResourceRelationship-2009-01-21".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Associations".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Resource Relationship".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Taxon, comment: "A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.".freeze, - "dc:description": "Example: The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Taxon-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:Taxon-2009-09-21".freeze, + "http://purl.org/dc/terms/description": "Example: The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Taxon-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Taxon-2009-09-21".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "no simple equivalent in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Taxon".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :acceptedNameUsage, comment: "The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.".freeze, - "dc:description": "Example: \"Tamias minimus\" valid name for \"Eutamias minimus\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#acceptedNameUsage-2009-09-21".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:acceptedScientificName-2009-07-06".freeze, + "http://purl.org/dc/terms/description": "Example: \"Tamias minimus\" valid name for \"Eutamias minimus\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#acceptedNameUsage-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/acceptedScientificName-2009-07-06".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Accepted Name Usage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :acceptedNameUsageID, comment: "An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.".freeze, - "dc:description": "Example: \"8fa58e08-08de-4ac1-b69c-1235340b7001\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#acceptedNameUsageID-2009-09-21".freeze, - "dc:issued": "2009-01-21".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:acceptedTaxonID-2009-08-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"8fa58e08-08de-4ac1-b69c-1235340b7001\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#acceptedNameUsageID-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2009-01-21".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/acceptedTaxonID-2009-08-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Accepted Name Usage ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accordingTo, comment: "Abstract term to attribute information to a source.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#accordingTo-2009-01-21".freeze, - "dc:issued": "2009-01-21".freeze, - "dc:modified": "2009-01-21".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#accordingTo-2009-01-21".freeze, + "http://purl.org/dc/terms/issued": "2009-01-21".freeze, + "http://purl.org/dc/terms/modified": "2009-01-21".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "According To".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedMedia, comment: "A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"http://arctos.database.museum/SpecimenImages/UAMObs/Mamm/2/P7291179.JPG\", \"http://204.140.246.24/Fish/Collection%20Pictures/10118-00.jpg | http://204.140.246.24/Fish/Collection%20Pictures/10118-00a.jpg\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedMedia-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:associatedMedia-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"http://arctos.database.museum/SpecimenImages/UAMObs/Mamm/2/P7291179.JPG\", \"http://204.140.246.24/Fish/Collection%20Pictures/10118-00.jpg | http://204.140.246.24/Fish/Collection%20Pictures/10118-00a.jpg\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedMedia-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/associatedMedia-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/MultimediaObjects".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Associated Media".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedOccurrences, comment: "A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | ').".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedOccurrences-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:associatedOccurrences-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | ').".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedOccurrences-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/associatedOccurrences-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Organism".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Organism".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Associated Occurrences".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedOrganisms, comment: "A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"sibling of MXA-232\", \"mother of MXA-231 | mother of MXA-232\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedOrganisms-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"sibling of MXA-232\", \"mother of MXA-231 | mother of MXA-232\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedOrganisms-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_14".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Organism".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Organism".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Associated Organisms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedReferences, comment: "A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"http://www.sciencemag.org/cgi/content/abstract/322/5899/261\", \"Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.\", \"Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedReferences-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:associatedReferences-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"http://www.sciencemag.org/cgi/content/abstract/322/5899/261\", \"Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.\", \"Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedReferences-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/associatedReferences-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/UnitReferences".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Associated References".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedSequences, comment: "A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"http://www.ncbi.nlm.nih.gov/nuccore/U34853.1\", \"http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedSequences-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:associatedSequences-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"http://www.ncbi.nlm.nih.gov/nuccore/U34853.1\", \"http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedSequences-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/associatedSequences-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Associated Sequences".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedTaxa, comment: "A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '), and to separate the relationship from the taxon with a colon (':'). Examples: \"host: Quercus alba\", \"parasitoid of:Cyclocephala signaticollis | predator of Apis mellifera\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedTaxa-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:associatedTaxa-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '), and to separate the relationship from the taxon with a colon (':'). Examples: \"host: Quercus alba\", \"parasitoid of:Cyclocephala signaticollis | predator of Apis mellifera\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedTaxa-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/associatedTaxa-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Associated Taxa".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :basisOfRecord, comment: "The specific nature of the data record.".freeze, - "dc:description": "Recommended best practice is to use a controlled vocabulary such as the list of Darwin Core classes. Examples: \"PreservedSpecimen\", \"FossilSpecimen\", \"LivingSpecimen\", \"HumanObservation\", \"MachineObservation\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#basisOfRecord-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:basisOfRecord-2009-12-07".freeze, + "http://purl.org/dc/terms/description": "Recommended best practice is to use a controlled vocabulary such as the list of Darwin Core classes. Examples: \"PreservedSpecimen\", \"FossilSpecimen\", \"LivingSpecimen\", \"HumanObservation\", \"MachineObservation\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#basisOfRecord-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/basisOfRecord-2009-12-07".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/RecordBasis".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Basis of Record".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bed, comment: "The full name of the lithostratigraphic bed from which the cataloged item was collected.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#bed-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:Bed-2005-07-03".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#bed-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Bed-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Bed".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :behavior, comment: "A description of the behavior shown by the subject at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"roosting\", \"foraging\", \"running\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#behavior-2009-04-24".freeze, - "dc:issued": "2009-03-06".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"roosting\", \"foraging\", \"running\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#behavior-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-03-06".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Behavior".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :catalogNumber, comment: "An identifier (preferably unique) for the record within the data set or collection.".freeze, - "dc:description": "Examples: \"2008.1334\", \"145732a\", \"145732\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#catalogNumber-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:CatalogNumber-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"2008.1334\", \"145732a\", \"145732\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#catalogNumber-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/CatalogNumber-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/UnitID".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Catalog Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :class, comment: "The full scientific name of the class in which the taxon is classified.".freeze, - "dc:description": "Examples: \"Mammalia\", \"Hepaticopsida\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#class-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:class-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Mammalia\", \"Hepaticopsida\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#class-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/class-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Class".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :collectionCode, comment: "The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.".freeze, - "dc:description": "Examples: \"Mammals\", \"Hildebrandt\", \"eBird\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#collectionCode-2009-09-11".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2013-10-04".freeze, - "dc:replaces": "dwc:collectionCode-2009-08-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Mammals\", \"Hildebrandt\", \"eBird\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#collectionCode-2009-09-11".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2013-10-04".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/collectionCode-2009-08-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SourceID".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Collection Code".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :collectionID, comment: "An identifier for the collection or dataset from which the record was derived.".freeze, - "dc:description": "For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: \"http://biocol.org/urn:lsid:biocol.org:col:1001\", \"http://grbio.org/cool/p5fp-c036\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#collectionID-2009-09-11".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/description": "For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: \"http://biocol.org/urn:lsid:biocol.org:col:1001\", \"http://grbio.org/cool/p5fp-c036\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#collectionID-2009-09-11".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SourceID".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Collection ID".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :continent, comment: "The name of the continent in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.".freeze, - "dc:description": "Examples: \"Africa\", \"Antarctica\", \"Asia\", \"Europe\", \"North America\", \"Oceania\", \"South America\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#continent-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2013-10-04".freeze, - "dc:replaces": "dwc:Continent-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Africa\", \"Antarctica\", \"Asia\", \"Europe\", \"North America\", \"Oceania\", \"South America\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#continent-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2013-10-04".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Continent-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Continent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coordinatePrecision, comment: "A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.".freeze, - "dc:description": "Examples: \"0.00001\" (normal GPS limit for decimal degrees), \"0.000278\" (nearest second), \"0.01667\" (nearest minute), \"1.0\" (nearest degree)".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#coordinatePrecision-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:CoordinatePrecision-2003-06-13".freeze, + "http://purl.org/dc/terms/description": "Examples: \"0.00001\" (normal GPS limit for decimal degrees), \"0.000278\" (nearest second), \"0.01667\" (nearest minute), \"1.0\" (nearest degree)".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#coordinatePrecision-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/CoordinatePrecision-2003-06-13".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Coordinate Precision".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coordinateUncertaintyInMeters, comment: "The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the Location. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Zero is not a valid value for this term.".freeze, - "dc:description": "Examples: \"30\" (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time), \"71\" (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#coordinateUncertaintyInMeters-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:CoordinateUncertaintyInMeters-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"30\" (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time), \"71\" (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#coordinateUncertaintyInMeters-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/CoordinateUncertaintyInMeters-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Coordinate Uncertainty In Meters".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :country, comment: "The name of the country or major administrative unit in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.".freeze, - "dc:description": "Examples: \"Denmark\", \"Colombia\", \"España\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#country-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:Country-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Denmark\", \"Colombia\", \"España\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#country-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Country-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Country/Name".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Country".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :countryCode, comment: "The standard code for the country in which the Location occurs. Recommended best practice is to use ISO 3166-1-alpha-2 country codes.".freeze, - "dc:description": "Examples: \"AR\" for Argentina, \"SV\" for El Salvador".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#countryCode-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"AR\" for Argentina, \"SV\" for El Salvador".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#countryCode-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Country Code".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :county, comment: "The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.".freeze, - "dc:description": "Examples: \"Missoula\", \"Los Lagos\", \"Mataró\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#county-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:County-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Missoula\", \"Los Lagos\", \"Mataró\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#county-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/County-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "County".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dataGeneralizations, comment: "Actions taken to make the shared data less specific or complete than in its original form. Suggests that alternative data of higher quality may be available on request.".freeze, - "dc:description": "Example: \"Coordinates generalized from original GPS coordinates to the nearest half degree grid cell\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#dataGeneralizations-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:Generalizations-2008-11-19".freeze, + "http://purl.org/dc/terms/description": "Example: \"Coordinates generalized from original GPS coordinates to the nearest half degree grid cell\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#dataGeneralizations-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Generalizations-2008-11-19".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Data Generalizations".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datasetID, comment: "An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#datasetID-2009-09-11".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-09-11".freeze, - "dc:replaces": "dwc:datasetID-2009-04-24".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#datasetID-2009-09-11".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-09-11".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/datasetID-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/DataSetGUID".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Dataset ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datasetName, comment: "The name identifying the data set from which the record was derived.".freeze, - "dc:description": "Examples: \"Grinnell Resurvey Mammals\", \"Lacey Ctenomys Recaptures\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#datasetName-2009-09-11".freeze, - "dc:issued": "2009-09-11".freeze, - "dc:modified": "2009-09-11".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Grinnell Resurvey Mammals\", \"Lacey Ctenomys Recaptures\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#datasetName-2009-09-11".freeze, + "http://purl.org/dc/terms/issued": "2009-09-11".freeze, + "http://purl.org/dc/terms/modified": "2009-09-11".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SourceID".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Dataset Name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateIdentified, comment: "The date on which the subject was identified as representing the Taxon. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze, - "dc:description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#dateIdentified-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:dateIdentified-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#dateIdentified-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/dateIdentified-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Identification".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Identification".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Date Identified".freeze, - subPropertyOf: "dc:date".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :day, comment: "The integer day of the month on which the Event occurred.".freeze, - "dc:description": "Examples: \"9\", \"28\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#day-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:DayCollected-2003-06-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"9\", \"28\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#day-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/DayCollected-2003-06-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Day".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :decimalLatitude, comment: "The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive.".freeze, - "dc:description": "Example: \"-41.0983423\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#decimalLatitude-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:DecimalLatitude-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"-41.0983423\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#decimalLatitude-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/DecimalLatitude-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Decimal Latitude".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :decimalLongitude, comment: "The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive.".freeze, - "dc:description": "Example: \"-121.1761111\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#decimalLongitude-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:DecimalLongitude-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"-121.1761111\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#decimalLongitude-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/DecimalLongitude-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Decimal Longitude".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :disposition, comment: "The current state of a specimen with respect to the collection identified in collectionCode or collectionID. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"in collection\", \"missing\", \"voucher elsewhere\", \"duplicates elsewhere\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#disposition-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:Disposition-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"in collection\", \"missing\", \"voucher elsewhere\", \"duplicates elsewhere\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#disposition-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Disposition-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Disposition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dynamicProperties, comment: "A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.".freeze, - "dc:description": "The recommended best practice is to use a key:value encoding schema such as JSON. Examples: \"{\"heightInMeters\":1.5}\", \"{\"tragusLengthInMeters\":0.014, \"weightInGrams\":120}\", \"{\"natureOfID\":\"expert identification\", \"identificationEvidence\":\"cytochrome B sequence\"}\", \"{\"relativeHumidity\":28, \"airTemperatureInCelcius\":22, \"sampleSizeInKilograms\":10}\", \"{\"aspectHeading\":277, \"slopeInDegrees\":6}\", \"{\"iucnStatus\":\"vulnerable\", \"taxonDistribution\":\"Neuquén, Argentina\"}\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#dynamicProperties-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:dynamicProperties-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to use a key:value encoding schema such as JSON. Examples: \"{\"heightInMeters\":1.5}\", \"{\"tragusLengthInMeters\":0.014, \"weightInGrams\":120}\", \"{\"natureOfID\":\"expert identification\", \"identificationEvidence\":\"cytochrome B sequence\"}\", \"{\"relativeHumidity\":28, \"airTemperatureInCelcius\":22, \"sampleSizeInKilograms\":10}\", \"{\"aspectHeading\":277, \"slopeInDegrees\":6}\", \"{\"iucnStatus\":\"vulnerable\", \"taxonDistribution\":\"Neuquén, Argentina\"}\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#dynamicProperties-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/dynamicProperties-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Dynamic Properties".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :earliestAgeOrLowestStage, comment: "The full name of the earliest possible geochronologic age or lowest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Atlantic\", \"Boreal\", \"Skullrockian\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestAgeOrLowestStage-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:EarliestAgeOrLowestStage-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Atlantic\", \"Boreal\", \"Skullrockian\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestAgeOrLowestStage-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/EarliestAgeOrLowestStage-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Earliest Age Or Lowest Stage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :earliestEonOrLowestEonothem, comment: "The full name of the earliest possible geochronologic eon or lowest chrono-stratigraphic eonothem or the informal name (\"Precambrian\") attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Phanerozoic\", \"Proterozoic\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestEonOrLowestEonothem-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:EarliestEonOrLowestEonothem-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Phanerozoic\", \"Proterozoic\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestEonOrLowestEonothem-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/EarliestEonOrLowestEonothem-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Earliest Eon Or Lowest Eonothem".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :earliestEpochOrLowestSeries, comment: "The full name of the earliest possible geochronologic epoch or lowest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Holocene\", \"Pleistocene\", \"Ibexian Series\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestEpochOrLowestSeries-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:EarliestEpochOrLowestSeries-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Holocene\", \"Pleistocene\", \"Ibexian Series\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestEpochOrLowestSeries-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/EarliestEpochOrLowestSeries-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Earliest Epoch Or Lowest Series".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :earliestEraOrLowestErathem, comment: "The full name of the earliest possible geochronologic era or lowest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Cenozoic\", \"Mesozoic\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestEraOrLowestErathem-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:EarliestEraOrLowestErathem-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Cenozoic\", \"Mesozoic\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestEraOrLowestErathem-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/EarliestEraOrLowestErathem-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Earliest Era Or Lowest Erathem".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :earliestPeriodOrLowestSystem, comment: "The full name of the earliest possible geochronologic period or lowest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Neogene\", \"Tertiary\", \"Quaternary\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestPeriodOrLowestSystem-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:EarliestPeriodOrLowestSystem-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Neogene\", \"Tertiary\", \"Quaternary\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestPeriodOrLowestSystem-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/EarliestPeriodOrLowestSystem-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Earliest Period Or Lowest System".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endDayOfYear, comment: "The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).".freeze, - "dc:description": "Examples: \"1\" (=1 Jan), \"366\" (=31 Dec), \"365\" (=30 Dec in a leap year, 31 Dec in a non-leap year)".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#endDayOfYear-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:DayOfYear-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"1\" (=1 Jan), \"366\" (=31 Dec), \"365\" (=30 Dec in a leap year, 31 Dec in a non-leap year)".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#endDayOfYear-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/DayOfYear-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "End Day Of Year".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :establishmentMeans, comment: "The process by which the biological individual(s) represented in the Occurrence became established at the location. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"native\", \"introduced\", \"naturalised\", \"invasive\", \"managed\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#establishmentMeans-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"native\", \"introduced\", \"naturalised\", \"invasive\", \"managed\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#establishmentMeans-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Establishment Means".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventDate, comment: "The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze, - "dc:description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventDate-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-01".freeze, - "dc:replaces": ["dwc:EarliestDateCollected-2007-04-17".freeze, "dwc:LatestDateCollected-2007-04-17".freeze], + "http://purl.org/dc/terms/description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventDate-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-01".freeze, + "http://purl.org/dc/terms/replaces": ["http://rs.tdwg.org/dwc/terms/EarliestDateCollected-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/LatestDateCollected-2007-04-17".freeze], "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Event Date".freeze, - subPropertyOf: "dc:date".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventID, comment: "An identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventID-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:SamplingEventID-2008-11-19".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventID-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/SamplingEventID-2008-11-19".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Code".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Event ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventRemarks, comment: "Comments or notes about the Event.".freeze, - "dc:description": "Example: \"after the recent rains the river is nearly at flood stage\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventRemarks-2009-04-24".freeze, - "dc:issued": "2009-01-18".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"after the recent rains the river is nearly at flood stage\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventRemarks-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-01-18".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Notes".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Event Remarks".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventTime, comment: "The time or interval during which an Event occurred. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze, - "dc:description": "Examples: \"14:07-0600\" is 2:07pm in the time zone six hours earlier than UTC, \"08:40:21Z\" is 8:40:21am UTC, \"13:00:00Z/15:30:00Z\" is the interval between 1pm UTC and 3:30pm UTC.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventTime-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": ["dwc:EndTimeOfDay-2005-07-10".freeze, "dwc:StartTimeOfDay-2005-07-10".freeze], + "http://purl.org/dc/terms/description": "Examples: \"14:07-0600\" is 2:07pm in the time zone six hours earlier than UTC, \"08:40:21Z\" is 8:40:21am UTC, \"13:00:00Z/15:30:00Z\" is the interval between 1pm UTC and 3:30pm UTC.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventTime-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": ["http://rs.tdwg.org/dwc/terms/EndTimeOfDay-2005-07-10".freeze, "http://rs.tdwg.org/dwc/terms/StartTimeOfDay-2005-07-10".freeze], "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Event Time".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :family, comment: "The full scientific name of the family in which the taxon is classified.".freeze, - "dc:description": "Examples: \"Felidae\", \"Monocleaceae\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#family-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:family-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Felidae\", \"Monocleaceae\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#family-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/family-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Family".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fieldNotes, comment: "One of a) an indicator of the existence of, b) a reference to (publication, URI), or c) the text of notes taken in the field about the Event.".freeze, - "dc:description": "Example: \"notes available in Grinnell-Miller Library\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#fieldNotes-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:FieldNotes-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"notes available in Grinnell-Miller Library\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#fieldNotes-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/FieldNotes-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/FieldNotes".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Field Notes".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fieldNumber, comment: "An identifier given to the event in the field. Often serves as a link between field notes and the Event.".freeze, - "dc:description": "Example: \"RV Sol 87-03-08\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#fieldNumber-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:FieldNumber-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"RV Sol 87-03-08\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#fieldNumber-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/FieldNumber-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Code".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Field Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :footprintSRS, comment: "A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.".freeze, - "dc:description": "Example: The WKT for the standard WGS84 SRS (EPSG:4326) is \"GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\",6378137,298.257223563]],PRIMEM[\"Greenwich\",0],UNIT[\"Degree\",0.0174532925199433]]\" without the enclosing quotes.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#footprintSRS-2009-07-06".freeze, - "dc:issued": "2009-07-06".freeze, - "dc:modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/description": "Example: The WKT for the standard WGS84 SRS (EPSG:4326) is \"GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\",6378137,298.257223563]],PRIMEM[\"Greenwich\",0],UNIT[\"Degree\",0.0174532925199433]]\" without the enclosing quotes.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#footprintSRS-2009-07-06".freeze, + "http://purl.org/dc/terms/issued": "2009-07-06".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Footprint SRS".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :footprintSpatialFit, comment: "The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.".freeze, - "dc:description": "Detailed explanations with graphical examples can be found in the \"Guide to Best Practices for Georeferencing\", Chapman and Wieczorek, eds. 2006.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#footprintSpatialFit-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:FootprintSpatialFit-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Detailed explanations with graphical examples can be found in the \"Guide to Best Practices for Georeferencing\", Chapman and Wieczorek, eds. 2006.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#footprintSpatialFit-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/FootprintSpatialFit-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b)".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Footprint Spatial Fit".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :footprintWKT, comment: "A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.".freeze, - "dc:description": "Example: the one-degree bounding box with opposite corners at (longitude=10, latitude=20) and (longitude=11, latitude=21) would be expressed in well-known text as POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#footprintWKT-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:FootprintWKT-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: the one-degree bounding box with opposite corners at (longitude=10, latitude=20) and (longitude=11, latitude=21) would be expressed in well-known text as POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#footprintWKT-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/FootprintWKT-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b)".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Footprint WKT".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :formation, comment: "The full name of the lithostratigraphic formation from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Notch Peak Fromation\", \"House Limestone\", \"Fillmore Formation\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#formation-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:Formation-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Notch Peak Fromation\", \"House Limestone\", \"Fillmore Formation\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#formation-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Formation-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Formation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :genus, comment: "The full scientific name of the genus in which the taxon is classified.".freeze, - "dc:description": "Examples: \"Puma\", \"Monoclea\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#genus-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:genus-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Puma\", \"Monoclea\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#genus-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/genus-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Genus".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geodeticDatum, comment: "The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value \"unknown\".".freeze, - "dc:description": "Examples: \"EPSG:4326\", \"WGS84\", \"NAD27\", \"Campo Inchauspe\", \"European 1950\", \"Clarke 1866\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#geodeticDatum-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:GeodeticDatum-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"EPSG:4326\", \"WGS84\", \"NAD27\", \"Campo Inchauspe\", \"European 1950\", \"Clarke 1866\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#geodeticDatum-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/GeodeticDatum-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Geodetic Datum".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geologicalContextID, comment: "An identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#geologicalContextID-2009-07-06".freeze, - "dc:issued": "2009-07-06".freeze, - "dc:modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#geologicalContextID-2009-07-06".freeze, + "http://purl.org/dc/terms/issued": "2009-07-06".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Geological Context ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :georeferenceProtocol, comment: "A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.".freeze, - "dc:description": "Examples: \"Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility.\", \"MaNIS/HerpNet/ORNIS Georeferencing Guidelines\", \"Georeferencing Quick Reference Guide\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceProtocol-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:GeoreferenceProtocol-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility.\", \"MaNIS/HerpNet/ORNIS Georeferencing Guidelines\", \"Georeferencing Quick Reference Guide\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceProtocol-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/GeoreferenceProtocol-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Georeference Protocol".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :georeferenceRemarks, comment: "Notes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in georeferenceProtocol.".freeze, - "dc:description": "Example: \"assumed distance by road (Hwy. 101)\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceRemarks-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:GeoreferenceRemarks-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"assumed distance by road (Hwy. 101)\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceRemarks-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/GeoreferenceRemarks-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Georeference Remarks".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :georeferenceSources, comment: "A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"GeoLocate\", \"USGS 1:24000 Florence Montana Quad | Terrametrics 2008 on Google Earth\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceSources-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:georeferenceSources-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"GeoLocate\", \"USGS 1:24000 Florence Montana Quad | Terrametrics 2008 on Google Earth\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceSources-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/georeferenceSources-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Georeference Sources".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :georeferenceVerificationStatus, comment: "A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"requires verification\", \"verified by collector\", \"verified by curator\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceVerificationStatus-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:GeoreferenceVerificationStatus-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"requires verification\", \"verified by collector\", \"verified by curator\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceVerificationStatus-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/GeoreferenceVerificationStatus-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Georeference Verification Status".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :georeferencedBy, comment: "A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Brad Millen (ROM)\", \"Kristina Yamamoto (MVZ) | Janet Fang (MVZ)\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferencedBy-2014-10-23".freeze, - "dc:issued": "2009-01-21".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:georeferencedBy-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Brad Millen (ROM)\", \"Kristina Yamamoto (MVZ) | Janet Fang (MVZ)\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferencedBy-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2009-01-21".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/georeferencedBy-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Georeferenced By".freeze, - subPropertyOf: "dwc:accordingTo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://rs.tdwg.org/dwc/terms/accordingTo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :georeferencedDate, comment: "The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze, - "dc:description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferencedDate-2011-10-16".freeze, - "dc:issued": "2011-10-16".freeze, - "dc:modified": "2011-10-16".freeze, + "http://purl.org/dc/terms/description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferencedDate-2011-10-16".freeze, + "http://purl.org/dc/terms/issued": "2011-10-16".freeze, + "http://purl.org/dc/terms/modified": "2011-10-16".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2011-10-16_9".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Georeferenced Date".freeze, - subPropertyOf: "dc:date".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :group, comment: "The full name of the lithostratigraphic group from which the cataloged item was collected.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#group-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:Group-2005-07-03".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#group-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Group-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :habitat, comment: "A category or description of the habitat in which the Event occurred.".freeze, - "dc:description": "Examples: \"oak savanna\", \"pre-cordilleran steppe\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#habitat-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-05-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"oak savanna\", \"pre-cordilleran steppe\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#habitat-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-05-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Biotope/Text".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Habitat".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :higherClassification, comment: "A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from the highest taxonomic rank to the lowest. Examples: \"Animalia\", \"Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#higherClassification-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:higherClassification-2009-08-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from the highest taxonomic rank to the lowest. Examples: \"Animalia\", \"Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#higherClassification-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/higherClassification-2009-08-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Higher Classification".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :higherGeography, comment: "A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from least specific to most specific. Examples: \"North Atlantic Ocean\", \"South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos\" with accompanying values \"South America\" in Continent, \"Argentina\" in Country, \"Neuquén\" in StateProvince, and \"Los Lagos\" in County.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#higherGeography-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:higherGeography-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from least specific to most specific. Examples: \"North Atlantic Ocean\", \"South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos\" with accompanying values \"South America\" in Continent, \"Argentina\" in Country, \"Neuquén\" in StateProvince, and \"Los Lagos\" in County.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#higherGeography-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/higherGeography-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Higher Geography".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :higherGeographyID, comment: "An identifier for the geographic region within which the Location occurred. Recommended best practice is to use an persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names.".freeze, - "dc:description": "Example: \"TGN: 1002002\" for Prov. Tierra del Fuego, Argentina".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#higherGeographyID-2009-04-24".freeze, - "dc:issued": "2009-01-21".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"TGN: 1002002\" for Prov. Tierra del Fuego, Argentina".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#higherGeographyID-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-01-21".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Higher Geography ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :highestBiostratigraphicZone, comment: "The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#highestBiostratigraphicZone-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:HighestBiostratigraphicZone-2005-07-03".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#highestBiostratigraphicZone-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/HighestBiostratigraphicZone-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Highest Biostratigraphic Zone".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identificationID, comment: "An identifier for the Identification (the body of information associated with the assignment of a scientific name). May be a global unique identifier or an identifier specific to the data set.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationID-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationID-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Identification".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Identification".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Identification ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identificationQualifier, comment: "A brief phrase or a standard term (\"cf.\", \"aff.\") to express the determiner's doubts about the Identification.".freeze, - "dc:description": "Examples: 1) For the determination \"Quercus aff. agrifolia var. oxyadenia\", identificationQualifier would be \"aff. agrifolia var. oxyadenia\" with accompanying values \"Quercus\" in genus, \"agrifolia\" in specificEpithet, \"oxyadenia\" in infraspecificEpithet, and \"var.\" in rank. 2) For the determination \"Quercus agrifolia cf. var. oxyadenia\", identificationQualifier would be \"cf. var. oxyadenia \" with accompanying values \"Quercus\" in genus, \"agrifolia\" in specificEpithet, \"oxyadenia\" in infraspecificEpithet, and \"var.\" in rank.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationQualifier-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:IdentificationQualifier-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: 1) For the determination \"Quercus aff. agrifolia var. oxyadenia\", identificationQualifier would be \"aff. agrifolia var. oxyadenia\" with accompanying values \"Quercus\" in genus, \"agrifolia\" in specificEpithet, \"oxyadenia\" in infraspecificEpithet, and \"var.\" in rank. 2) For the determination \"Quercus agrifolia cf. var. oxyadenia\", identificationQualifier would be \"cf. var. oxyadenia \" with accompanying values \"Quercus\" in genus, \"agrifolia\" in specificEpithet, \"oxyadenia\" in infraspecificEpithet, and \"var.\" in rank.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationQualifier-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/IdentificationQualifier-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Identification".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Identification".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Identification Qualifier".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identificationReferences, comment: "A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Aves del Noroeste Patagonico. Christie et al. 2004.\", \"Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). ''The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata).'' Herpetologica, 53(1), 30-49.\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationReferences-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:identificationReferences-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Aves del Noroeste Patagonico. Christie et al. 2004.\", \"Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). ''The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata).'' Herpetologica, 53(1), 30-49.\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationReferences-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/identificationReferences-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/References".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Identification".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Identification".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Identification References".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identificationRemarks, comment: "Comments or notes about the Identification.".freeze, - "dc:description": "Example: \"Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationRemarks-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationRemarks-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/Notes".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Identification".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Identification".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Identification Remarks".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identificationVerificationStatus, comment: "A categorical indicator of the extent to which the taxonomic identification has been verified to be correct. Recommended best practice is to use a controlled vocabulary such as that used in HISPID/ABCD.".freeze, - "dc:description": "Examples: \"0\", \"4\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationVerificationStatus-2011-10-16".freeze, - "dc:issued": "2011-10-16".freeze, - "dc:modified": "2011-10-16".freeze, + "http://purl.org/dc/terms/description": "Examples: \"0\", \"4\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationVerificationStatus-2011-10-16".freeze, + "http://purl.org/dc/terms/issued": "2011-10-16".freeze, + "http://purl.org/dc/terms/modified": "2011-10-16".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2011-10-16_10".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Identification".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Identification".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Identification Verification Status".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifiedBy, comment: "A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"James L. Patton\", \"Theodore Pappenfuss | Robert Macey\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identifiedBy-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:identifiedBy-2009-08-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"James L. Patton\", \"Theodore Pappenfuss | Robert Macey\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identifiedBy-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/identifiedBy-2009-08-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Identification".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Identification".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Identified By".freeze, - subPropertyOf: "dwc:accordingTo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://rs.tdwg.org/dwc/terms/accordingTo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :individualCount, comment: "The number of individuals represented present at the time of the Occurrence.".freeze, - "dc:description": "Examples: \"1\", \"25\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#individualCount-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:IndividualCount-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"1\", \"25\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#individualCount-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/IndividualCount-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Individual Count".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :informationWithheld, comment: "Additional information that exists, but that has not been shared in the given record.".freeze, - "dc:description": "Examples: \"location information not given for endangered species\", \"collector identities withheld\", \"ask about tissue samples\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#informationWithheld-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:InformationWithheld-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"location information not given for endangered species\", \"collector identities withheld\", \"ask about tissue samples\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#informationWithheld-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/InformationWithheld-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/InformationWithheld".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Information Withheld".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :infraspecificEpithet, comment: "The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.".freeze, - "dc:description": "Examples: \"concolor\", \"oxyadenia\", \"sayi\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#infraspecificEpithet-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:infraspecificEpithet-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"concolor\", \"oxyadenia\", \"sayi\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#infraspecificEpithet-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/infraspecificEpithet-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Infraspecific Epithet".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :institutionCode, comment: "The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.".freeze, - "dc:description": "Examples: \"MVZ\", \"FMNH\", \"AKN-CLO\", \"University of California Museum of Paleontology (UCMP)\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#institutionCode-2009-09-11".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2013-10-04".freeze, - "dc:replaces": "dwc:institutionCode-2009-08-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"MVZ\", \"FMNH\", \"AKN-CLO\", \"University of California Museum of Paleontology (UCMP)\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#institutionCode-2009-09-11".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2013-10-04".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/institutionCode-2009-08-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SourceInstitutionID".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Institution Code".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :institutionID, comment: "An identifier for the institution having custody of the object(s) or information referred to in the record.".freeze, - "dc:description": "For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: \"http://biocol.org/urn:lsid:biocol.org:col:34777\", \"http://grbio.org/cool/km06-gtbn\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#institutionID-2009-09-11".freeze, - "dc:issued": "2009-09-11".freeze, - "dc:modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/description": "For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: \"http://biocol.org/urn:lsid:biocol.org:col:34777\", \"http://grbio.org/cool/km06-gtbn\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#institutionID-2009-09-11".freeze, + "http://purl.org/dc/terms/issued": "2009-09-11".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SourceInstitutionID".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Institution ID".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :island, comment: "The name of the island on or near which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.".freeze, - "dc:description": "Examples: \"Isla Victoria\", \"Vancouver\", \"Viti Levu\", \"Zanzibar\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#island-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:Island-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Isla Victoria\", \"Vancouver\", \"Viti Levu\", \"Zanzibar\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#island-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Island-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Island".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :islandGroup, comment: "The name of the island group in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.".freeze, - "dc:description": "Examples: \"Alexander Archipelago\", \"Seychelles\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#islandGroup-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:IslandGroup-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Alexander Archipelago\", \"Seychelles\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#islandGroup-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/IslandGroup-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Island Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :kingdom, comment: "The full scientific name of the kingdom in which the taxon is classified.".freeze, - "dc:description": "Examples: \"Animalia\", \"Plantae\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#kingdom-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:kingdom-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Animalia\", \"Plantae\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#kingdom-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/kingdom-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Kingdom".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :latestAgeOrHighestStage, comment: "The full name of the latest possible geochronologic age or highest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Atlantic\", \"Boreal\", \"Skullrockian\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestAgeOrHighestStage-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:LatestAgeOrHighestStage-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Atlantic\", \"Boreal\", \"Skullrockian\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestAgeOrHighestStage-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/LatestAgeOrHighestStage-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Latest AgeOr Highest Stage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :latestEonOrHighestEonothem, comment: "The full name of the latest possible geochronologic eon or highest chrono-stratigraphic eonothem or the informal name (\"Precambrian\") attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Phanerozoic\", \"Proterozoic\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestEonOrHighestEonothem-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:LatestEonOrLowestEonothem-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Phanerozoic\", \"Proterozoic\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestEonOrHighestEonothem-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/LatestEonOrLowestEonothem-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Latest Eon Or Highest Eonothem".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :latestEpochOrHighestSeries, comment: "The full name of the latest possible geochronologic epoch or highest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Holocene\", \"Pleistocene\", \"Ibexian Series\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestEpochOrHighestSeries-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:LatestEpochOrHighestSeries-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Holocene\", \"Pleistocene\", \"Ibexian Series\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestEpochOrHighestSeries-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/LatestEpochOrHighestSeries-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Latest Epoch Or Highest Series".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :latestEraOrHighestErathem, comment: "The full name of the latest possible geochronologic era or highest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Cenozoic\", \"Mesozoic\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestEraOrHighestErathem-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:LatestEraOrHighestErathem-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Cenozoic\", \"Mesozoic\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestEraOrHighestErathem-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/LatestEraOrHighestErathem-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Latest Era Or Highest Erathem".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :latestPeriodOrHighestSystem, comment: "The full name of the latest possible geochronologic period or highest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Neogene\", \"Tertiary\", \"Quaternary\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestPeriodOrHighestSystem-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:LatestPeriodOrHighestSystem-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Neogene\", \"Tertiary\", \"Quaternary\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestPeriodOrHighestSystem-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/LatestPeriodOrHighestSystem-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Latest Period Or Highest System".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lifeStage, comment: "The age class or life stage of the biological individual(s) at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"egg\", \"eft\", \"juvenile\", \"adult\", \"2 adults 4 juveniles\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#lifeStage-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:LifeStage-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"egg\", \"eft\", \"juvenile\", \"adult\", \"2 adults 4 juveniles\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#lifeStage-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/LifeStage-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ”MycologicalLifeStage” or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Life Stage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lithostratigraphicTerms, comment: "The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#lithostratigraphicTerms-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:LithostratigraphicTerms-2005-07-03".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#lithostratigraphicTerms-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/LithostratigraphicTerms-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Stratigraphy/LithostratigraphicTerms".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Lithostratigraphic Terms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locality, comment: "The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.".freeze, - "dc:description": "Example: \"Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locality-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:Locality-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locality-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Locality-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Locality".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationAccordingTo, comment: "Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.".freeze, - "dc:description": "Examples: \"Getty Thesaurus of Geographic Names\", \"GADM\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locationAccordingTo-2009-08-24".freeze, - "dc:issued": "2009-08-24".freeze, - "dc:modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Getty Thesaurus of Geographic Names\", \"GADM\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locationAccordingTo-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2009-08-24".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Location According To".freeze, - subPropertyOf: "dwc:accordingTo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://rs.tdwg.org/dwc/terms/accordingTo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationID, comment: "An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locationID-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:SamplingLocationID-2008-11-19".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locationID-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/SamplingLocationID-2008-11-19".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Location ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationRemarks, comment: "Comments or notes about the Location.".freeze, - "dc:description": "Example: \"under water since 2005\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locationRemarks-2009-04-24".freeze, - "dc:issued": "2009-01-18".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:SamplingLocationRemarks-2009-01-18".freeze, + "http://purl.org/dc/terms/description": "Example: \"under water since 2005\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locationRemarks-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-01-18".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/SamplingLocationRemarks-2009-01-18".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/AreaDetail".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Location Remarks".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lowestBiostratigraphicZone, comment: "The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#lowestBiostratigraphicZone-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:LowestBiostratigraphicZone-2005-07-03".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#lowestBiostratigraphicZone-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/LowestBiostratigraphicZone-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Lowest Biostratigraphic Zone".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :materialSampleID, comment: "An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#materialSampleID-2013-05-25".freeze, - "dc:issued": "2013-03-28".freeze, - "dc:modified": "2013-09-26".freeze, - "dc:replaces": "http://gensc.org/ns/mixs/source_mat_id-2011-01-26".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#materialSampleID-2013-05-25".freeze, + "http://purl.org/dc/terms/issued": "2013-03-28".freeze, + "http://purl.org/dc/terms/modified": "2013-09-26".freeze, + "http://purl.org/dc/terms/replaces": "http://gensc.org/ns/mixs/source_mat_id-2011-01-26".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2013-10-09_13".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MaterialSample".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MaterialSample".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Material Sample ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maximumDepthInMeters, comment: "The greater depth of a range of depth below the local surface, in meters.".freeze, - "dc:description": "Example: \"200\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#maximumDepthInMeters-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:MaximumDepthInMeters-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"200\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#maximumDepthInMeters-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/MaximumDepthInMeters-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Maximum Depth In Meters".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maximumDistanceAboveSurfaceInMeters, comment: "The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.".freeze, - "dc:description": "Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: \"300m\" MinimumElevationInMeters: \"300\", MaximumElevationInMeters: \"300\", VerbatimDepth: \"20m\", MinimumDepthInMeters: \"20\", MaximumDepthInMeters: \"20\", minimumDistanceAboveSurfaceInMeters: \"0\", maximumDistanceAboveSurfaceInMeters: \"-1.5\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#maximumDistanceAboveSurfaceInMeters-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: \"300m\" MinimumElevationInMeters: \"300\", MaximumElevationInMeters: \"300\", VerbatimDepth: \"20m\", MinimumDepthInMeters: \"20\", MaximumDepthInMeters: \"20\", minimumDistanceAboveSurfaceInMeters: \"0\", maximumDistanceAboveSurfaceInMeters: \"-1.5\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#maximumDistanceAboveSurfaceInMeters-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Maximum Distance Above Surface In Meters".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maximumElevationInMeters, comment: "The upper limit of the range of elevation (altitude, usually above sea level), in meters.".freeze, - "dc:description": "Example: \"200\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#maximumElevationInMeters-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:MaximumElevationInMeters-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"200\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#maximumElevationInMeters-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/MaximumElevationInMeters-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Maximum Elevation In Meters".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementAccuracy, comment: "The description of the potential error associated with the measurementValue.".freeze, - "dc:description": "Examples: \"0.01\", \"normal distribution with variation of 2 m\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementAccuracy-2009-04-24".freeze, - "dc:issued": "2009-01-18".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": ["dwc:eventMeasurementAccuracy-2009-04-24".freeze, "dwc:occurrenceMeasurementAccuracy-2009-04-24".freeze], + "http://purl.org/dc/terms/description": "Examples: \"0.01\", \"normal distribution with variation of 2 m\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementAccuracy-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-01-18".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": ["http://rs.tdwg.org/dwc/terms/eventMeasurementAccuracy-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/occurrenceMeasurementAccuracy-2009-04-24".freeze], "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MeasurementOrFact".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement Accuracy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementDeterminedBy, comment: "A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Rob Guralnick\", \"Julie Woodruff | Eileen Lacey\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementDeterminedBy-2014-10-23".freeze, - "dc:issued": "2009-01-23".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:measurementDeterminedBy-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Rob Guralnick\", \"Julie Woodruff | Eileen Lacey\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementDeterminedBy-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2009-01-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/measurementDeterminedBy-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MeasurementOrFact".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement Determined By".freeze, - subPropertyOf: "dwc:accordingTo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://rs.tdwg.org/dwc/terms/accordingTo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementDeterminedDate, comment: "The date on which the MeasurementOrFact was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze, - "dc:description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementDeterminedDate-2009-04-24".freeze, - "dc:issued": "2009-01-23".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": ["dwc:eventMeasurementDeterminedDate-2009-04-24".freeze, "dwc:occurrenceMeasurementDeterminedDate-2009-04-24".freeze], + "http://purl.org/dc/terms/description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementDeterminedDate-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-01-23".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": ["http://rs.tdwg.org/dwc/terms/eventMeasurementDeterminedDate-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/occurrenceMeasurementDeterminedDate-2009-04-24".freeze], "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MeasurementOrFact".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement Determined Date".freeze, - subPropertyOf: "dc:date".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementID, comment: "An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementID-2009-04-24".freeze, - "dc:issued": "2009-03-06".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": ["dwc:eventMeasurementID-2009-04-24".freeze, "dwc:occurrenceMeasurementID-2009-04-24".freeze], + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementID-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-03-06".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": ["http://rs.tdwg.org/dwc/terms/eventMeasurementID-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/occurrenceMeasurementID-2009-04-24".freeze], "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MeasurementOrFact".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementMethod, comment: "A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.".freeze, - "dc:description": "Examples: \"minimum convex polygon around burrow entrances\" for a home range area, \"barometric altimeter\" for an elevation".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementMethod-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"minimum convex polygon around burrow entrances\" for a home range area, \"barometric altimeter\" for an elevation".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementMethod-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MeasurementOrFact".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement Method".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementRemarks, comment: "Comments or notes accompanying the MeasurementOrFact.".freeze, - "dc:description": "Example: \"tip of tail missing\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementRemarks-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": ["dwc:eventMeasurementRemarks-2009-04-24".freeze, "dwc:occurrenceMeasurementRemarks-2009-04-24".freeze], + "http://purl.org/dc/terms/description": "Example: \"tip of tail missing\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementRemarks-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": ["http://rs.tdwg.org/dwc/terms/eventMeasurementRemarks-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/occurrenceMeasurementRemarks-2009-04-24".freeze], "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MeasurementOrFact".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement Remarks".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementType, comment: "The nature of the measurement, fact, characteristic, or assertion. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"tail length\", \"temperature\", \"trap line length\", \"survey area\", \"trap type\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementType-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": ["dwc:eventMeasurementType-2009-04-24".freeze, "dwc:occurrenceMeasurementType-2009-04-24".freeze], + "http://purl.org/dc/terms/description": "Examples: \"tail length\", \"temperature\", \"trap line length\", \"survey area\", \"trap type\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementType-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": ["http://rs.tdwg.org/dwc/terms/eventMeasurementType-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/occurrenceMeasurementType-2009-04-24".freeze], "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MeasurementOrFact".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement Type".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementUnit, comment: "The units associated with the measurementValue. Recommended best practice is to use the International System of Units (SI).".freeze, - "dc:description": "Examples: \"mm\", \"C\", \"km\", \"ha\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementUnit-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": ["dwc:eventMeasurementUnit-2009-04-24".freeze, "dwc:occurrenceMeasurementUnit-2009-04-24".freeze], + "http://purl.org/dc/terms/description": "Examples: \"mm\", \"C\", \"km\", \"ha\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementUnit-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": ["http://rs.tdwg.org/dwc/terms/eventMeasurementUnit-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/occurrenceMeasurementUnit-2009-04-24".freeze], "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MeasurementOrFact".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement Unit".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementValue, comment: "The value of the measurement, fact, characteristic, or assertion.".freeze, - "dc:description": "Examples: \"45\", \"20\", \"1\", \"14.5\", \"UV-light\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementValue-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": ["dwc:eventMeasurementValue-2009-04-24".freeze, "dwc:occurrenceMeasurementValue-2009-04-24".freeze], + "http://purl.org/dc/terms/description": "Examples: \"45\", \"20\", \"1\", \"14.5\", \"UV-light\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementValue-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": ["http://rs.tdwg.org/dwc/terms/eventMeasurementValue-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/occurrenceMeasurementValue-2009-04-24".freeze], "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:MeasurementOrFact".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/MeasurementOrFact".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Measurement Value".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :member, comment: "The full name of the lithostratigraphic member from which the cataloged item was collected.".freeze, - "dc:description": "Examples: \"Lava Dam Member\", \"Hellnmaria Member\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#member-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:Member-2005-07-03".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Lava Dam Member\", \"Hellnmaria Member\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#member-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Member-2005-07-03".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:GeologicalContext".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/GeologicalContext".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Member".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minimumDepthInMeters, comment: "The lesser depth of a range of depth below the local surface, in meters.".freeze, - "dc:description": "Example: \"100\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#minimumDepthInMeters-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:MinimumDepthInMeters-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"100\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#minimumDepthInMeters-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/MinimumDepthInMeters-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Minimum Depth In Meters".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minimumDistanceAboveSurfaceInMeters, comment: "The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.".freeze, - "dc:description": "Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: \"300m\" MinimumElevationInMeters: \"300\", MaximumElevationInMeters: \"300\", VerbatimDepth: \"20m\", MinimumDepthInMeters: \"20\", MaximumDepthInMeters: \"20\", minimumDistanceAboveSurfaceInMeters: \"0\", maximumDistanceAboveSurfaceInMeters: \"-1.5\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#minimumDistanceAboveSurfaceInMeters-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: \"300m\" MinimumElevationInMeters: \"300\", MaximumElevationInMeters: \"300\", VerbatimDepth: \"20m\", MinimumDepthInMeters: \"20\", MaximumDepthInMeters: \"20\", minimumDistanceAboveSurfaceInMeters: \"0\", maximumDistanceAboveSurfaceInMeters: \"-1.5\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#minimumDistanceAboveSurfaceInMeters-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Minimum Distance Above Surface In Meters".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minimumElevationInMeters, comment: "The lower limit of the range of elevation (altitude, usually above sea level), in meters.".freeze, - "dc:description": "Example: \"100\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#minimumElevationInMeters-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:MinimumElevationInMeters-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"100\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#minimumElevationInMeters-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/MinimumElevationInMeters-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Minimum Elevation In Meters".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :month, comment: "The ordinal month in which the Event occurred.".freeze, - "dc:description": "Examples: \"1\" (=January), \"10\" (=October)".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#month-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:MonthCollected-2003-06-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"1\" (=January), \"10\" (=October)".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#month-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/MonthCollected-2003-06-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Month".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :municipality, comment: "The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.".freeze, - "dc:description": "Examples: \"Holzminden\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#municipality-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Holzminden\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#municipality-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Municipality".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nameAccordingTo, comment: "The reference to the source in which the specific taxon concept circumscription is defined or implied - traditionally signified by the Latin \"sensu\" or \"sec.\" (from secundum, meaning \"according to\"). For taxa that result from identifications, a reference to the keys, monographs, experts and other sources should be given.".freeze, - "dc:description": "Example: \"McCranie, J. R., D. B. Wake, and L. D. Wilson. 1996. The taxonomic status of Bolitoglossa schmidti, with comments on the biology of the Mesoamerican salamander Bolitoglossa dofleini (Caudata: Plethodontidae). Carib. J. Sci. 32:395-398.\", \"Werner Greuter 2008\", \"Lilljeborg 1861, Upsala Univ. Arsskrift, Math. Naturvet., pp. 4, 5\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nameAccordingTo-2009-09-21".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:taxonAccordingTo-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"McCranie, J. R., D. B. Wake, and L. D. Wilson. 1996. The taxonomic status of Bolitoglossa schmidti, with comments on the biology of the Mesoamerican salamander Bolitoglossa dofleini (Caudata: Plethodontidae). Carib. J. Sci. 32:395-398.\", \"Werner Greuter 2008\", \"Lilljeborg 1861, Upsala Univ. Arsskrift, Math. Naturvet., pp. 4, 5\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nameAccordingTo-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/taxonAccordingTo-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Name According To".freeze, - subPropertyOf: "dwc:accordingTo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://rs.tdwg.org/dwc/terms/accordingTo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nameAccordingToID, comment: "An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.".freeze, - "dc:description": "Example: \"doi:10.1016/S0269-915X(97)80026-2\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nameAccordingToID-2009-09-21".freeze, - "dc:issued": "2009-08-24".freeze, - "dc:modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/description": "Example: \"doi:10.1016/S0269-915X(97)80026-2\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nameAccordingToID-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2009-08-24".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Name According To ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :namePublishedIn, comment: "A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.".freeze, - "dc:description": "Examples: \"Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388\", \"Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#namePublishedIn-2009-09-21".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:namePublishedIn-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388\", \"Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#namePublishedIn-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/namePublishedIn-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Name Published In".freeze, - subPropertyOf: "dc:bibliographicCitation".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/bibliographicCitation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :namePublishedInID, comment: "An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.".freeze, - "dc:description": "Example: \"http://hdl.handle.net/10199/7\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#namePublishedInID-2009-09-21".freeze, - "dc:issued": "2009-05-18".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:namePublicationID-2009-05-18".freeze, + "http://purl.org/dc/terms/description": "Example: \"http://hdl.handle.net/10199/7\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#namePublishedInID-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2009-05-18".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/namePublicationID-2009-05-18".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Name Published In ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :namePublishedInYear, comment: "The four-digit year in which the scientificName was published.".freeze, - "dc:description": "Examples: \"1915\", \"2008\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#namePublishedInYear-2011-10-16".freeze, - "dc:issued": "2011-10-16".freeze, - "dc:modified": "2011-10-16".freeze, + "http://purl.org/dc/terms/description": "Examples: \"1915\", \"2008\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#namePublishedInYear-2011-10-16".freeze, + "http://purl.org/dc/terms/issued": "2011-10-16".freeze, + "http://purl.org/dc/terms/modified": "2011-10-16".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2011-10-16_8".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Name Published In Year".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nomenclaturalCode, comment: "The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"ICBN\", \"ICZN\", \"BC\", \"ICNCP\", \"BioCode\", \"ICZN; ICBN\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nomenclaturalCode-2009-09-21".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:NomenclaturalCode-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"ICBN\", \"ICZN\", \"BC\", \"ICNCP\", \"BioCode\", \"ICZN; ICBN\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nomenclaturalCode-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/NomenclaturalCode-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Nomenclatural Code".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nomenclaturalStatus, comment: "The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.".freeze, - "dc:description": "Examples: \"nom. ambig.\", \"nom. illeg.\", \"nom. subnud.\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nomenclaturalStatus-2009-04-24".freeze, - "dc:issued": "2009-01-18".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"nom. ambig.\", \"nom. illeg.\", \"nom. subnud.\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nomenclaturalStatus-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-01-18".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation) pro parte".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Nomenclatural Status".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :occurrenceID, comment: "An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.".freeze, - "dc:description": "For a specimen in the absence of a bona fide global unique identifier, for example, use the form: \"urn:catalog:[institutionCode]:[collectionCode]:[catalogNumber]. Examples: \"urn:lsid:nhm.ku.edu:Herps:32\", \"urn:catalog:FMNH:Mammal:145732\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#occurrenceID-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:GlobalUniqueIdentifier-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "For a specimen in the absence of a bona fide global unique identifier, for example, use the form: \"urn:catalog:[institutionCode]:[collectionCode]:[catalogNumber]. Examples: \"urn:lsid:nhm.ku.edu:Herps:32\", \"urn:catalog:FMNH:Mammal:145732\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#occurrenceID-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/GlobalUniqueIdentifier-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/UnitGUID".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Occurrence ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :occurrenceRemarks, comment: "Comments or notes about the Occurrence.".freeze, - "dc:description": "Example: \"found dead on road\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#occurrenceRemarks-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:SampleRemarks-2009-01-18".freeze, + "http://purl.org/dc/terms/description": "Example: \"found dead on road\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#occurrenceRemarks-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/SampleRemarks-2009-01-18".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Notes".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Occurrence Remarks".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :occurrenceStatus, comment: "A statement about the presence or absence of a Taxon at a Location. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"present\", \"absent\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#occurrenceStatus-2009-09-17".freeze, - "dc:issued": "2009-09-17".freeze, - "dc:modified": "2009-09-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"present\", \"absent\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#occurrenceStatus-2009-09-17".freeze, + "http://purl.org/dc/terms/issued": "2009-09-17".freeze, + "http://purl.org/dc/terms/modified": "2009-09-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Occurrence Status".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :order, comment: "The full scientific name of the order in which the taxon is classified.".freeze, - "dc:description": "Examples: \"Carnivora\", \"Monocleales\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#order-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:order-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Carnivora\", \"Monocleales\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#order-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/order-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Order".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organismID, comment: "An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismID-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:individualID-2009-04-24".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismID-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/individualID-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_14".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Organism".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Organism".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Organism ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organismName, comment: "A textual name or label assigned to an Organism instance.".freeze, - "dc:description": "Examples: \"Huberta\", \"Boab Prison Tree\", \"J pod\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismName-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Huberta\", \"Boab Prison Tree\", \"J pod\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismName-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_14".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Organism".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Organism".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Organism Name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organismRemarks, comment: "Comments or notes about the Organism instance.".freeze, - "dc:description": "Example: \"One of a litter of six.\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismRemarks-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/description": "Example: \"One of a litter of six.\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismRemarks-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_14".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Organism".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Organism".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Organism Remarks".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organismScope, comment: "A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "This term is not intended to be used to specify a type of taxon. To describe the kind of Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead. Examples: \"multicellular organism\", \"virus\", \"clone\" \"pack\", \"colony\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismScope-2014-10-23".freeze, - "dc:issued": "2014-10-23".freeze, - "dc:modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/description": "This term is not intended to be used to specify a type of taxon. To describe the kind of Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead. Examples: \"multicellular organism\", \"virus\", \"clone\" \"pack\", \"colony\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismScope-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2014-10-23".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_14".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Organism".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Organism".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Organism Scope".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :originalNameUsage, comment: "The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.".freeze, - "dc:description": "Examples: \"Pinus abies\", \"Gasterosteus saltatrix Linnaeus 1768\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#originalNameUsage-2009-09-21".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:basionym-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Pinus abies\", \"Gasterosteus saltatrix Linnaeus 1768\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#originalNameUsage-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/basionym-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Original Name Usage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :originalNameUsageID, comment: "An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.".freeze, - "dc:description": "Example: \"http://species.gbif.org/abies_alba_1753\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#originalNameUsageID-2009-09-21".freeze, - "dc:issued": "2009-01-21".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:basionymID-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"http://species.gbif.org/abies_alba_1753\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#originalNameUsageID-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2009-01-21".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/basionymID-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Original Name Usage ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :otherCatalogNumbers, comment: "A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"FMNH:Mammal:1234\", \"NPS YELLO6778 | MBG 33424\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#otherCatalogNumbers-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:otherCatalogNumbers-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"FMNH:Mammal:1234\", \"NPS YELLO6778 | MBG 33424\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#otherCatalogNumbers-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/otherCatalogNumbers-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Other Catalog Numbers".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ownerInstitutionCode, comment: "The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.".freeze, - "dc:description": "Examples: \"NPS\", \"APN\", \"InBio\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#ownerInstitutionCode-2009-08-24".freeze, - "dc:issued": "2009-08-24".freeze, - "dc:modified": "2013-10-04".freeze, + "http://purl.org/dc/terms/description": "Examples: \"NPS\", \"APN\", \"InBio\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#ownerInstitutionCode-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2009-08-24".freeze, + "http://purl.org/dc/terms/modified": "2013-10-04".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:all".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/all".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Owner Institution Code".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parentNameUsage, comment: "The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.".freeze, - "dc:description": "Examples: \"Rubiaceae\", \"Gruiformes\", \"Testudinae\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#parentNameUsage-2009-09-21".freeze, - "dc:issued": "2009-08-24".freeze, - "dc:modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Rubiaceae\", \"Gruiformes\", \"Testudinae\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#parentNameUsage-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2009-08-24".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Parent Name Usage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parentNameUsageID, comment: "An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.".freeze, - "dc:description": "Example: \"8fa58e08-08de-4ac1-b69c-1235340b7001\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#parentNameUsageID-2009-09-21".freeze, - "dc:issued": "2009-01-21".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:higherTaxonNameID-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"8fa58e08-08de-4ac1-b69c-1235340b7001\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#parentNameUsageID-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2009-01-21".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/higherTaxonNameID-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Parent Name Usage ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :phylum, comment: "The full scientific name of the phylum or division in which the taxon is classified.".freeze, - "dc:description": "Examples: \"Chordata\" (phylum), \"Bryophyta\" (division)".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#phylum-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:phylum-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Chordata\" (phylum), \"Bryophyta\" (division)".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#phylum-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/phylum-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Phylum".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pointRadiusSpatialFit, comment: "The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.".freeze, - "dc:description": "Detailed explanations with graphical examples can be found in the \"Guide to Best Practices for Georeferencing\", Chapman and Wieczorek, eds. 2006.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#pointRadiusSpatialFit-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:PointRadiusSpatialFit-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Detailed explanations with graphical examples can be found in the \"Guide to Best Practices for Georeferencing\", Chapman and Wieczorek, eds. 2006.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#pointRadiusSpatialFit-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/PointRadiusSpatialFit-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Point Radius Spatial Fit".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :preparations, comment: "A list (concatenated and separated) of preparations and preservation methods for a specimen.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"fossil\", \"cast\", \"photograph\", \"DNA extract\", \"skin | \"skull | skeleton\", \"whole animal (ETOH) | tissue (EDTA)\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#preparations-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:preparations-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"fossil\", \"cast\", \"photograph\", \"DNA extract\", \"skin | \"skull | skeleton\", \"whole animal (ETOH) | tissue (EDTA)\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#preparations-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/preparations-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Preparations".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :previousIdentifications, comment: "A list (concatenated and separated) of previous assignments of names to the Organism.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Chalepidae\", \"Pinus abies\", \"Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#previousIdentifications-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:previousIdentifications-2009-05-18".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Chalepidae\", \"Pinus abies\", \"Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#previousIdentifications-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/previousIdentifications-2009-05-18".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Organism".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Organism".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Previous Identifications".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordNumber, comment: "An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.".freeze, - "dc:description": "Example: \"OPP 7101\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#recordNumber-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-05-18".freeze, - "dc:replaces": "dwc:CollectorNumber-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"OPP 7101\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#recordNumber-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-05-18".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/CollectorNumber-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/CollectorsFieldNumber".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Record Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordedBy, comment: "A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first. Examples: \"José E. Crespo\", \"Oliver P. Pearson | Anita K. Pearson\" where the value in recordNumber \"OPP 7101\" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#recordedBy-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:recordedBy-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first. Examples: \"José E. Crespo\", \"Oliver P. Pearson | Anita K. Pearson\" where the value in recordNumber \"OPP 7101\" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#recordedBy-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/recordedBy-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Recorded By".freeze, - subPropertyOf: "dwc:accordingTo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://rs.tdwg.org/dwc/terms/accordingTo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedResourceID, comment: "An identifier for a related resource (the object, rather than the subject of the relationship).".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relatedResourceID-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relatedResourceID-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:ResourceRelationship".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/ResourceRelationship".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Related Resource ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationshipAccordingTo, comment: "The source (person, organization, publication, reference) establishing the relationship between the two resources.".freeze, - "dc:description": "Example: \"Julie Woodruff\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipAccordingTo-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"Julie Woodruff\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipAccordingTo-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:ResourceRelationship".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/ResourceRelationship".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Relationship According To".freeze, - subPropertyOf: "dwc:accordingTo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://rs.tdwg.org/dwc/terms/accordingTo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationshipEstablishedDate, comment: "The date-time on which the relationship between the two resources was established. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze, - "dc:description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipEstablishedDate-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"1963-03-08T14:07-0600\" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, \"2009-02-20T08:40Z\" is 20 Feb 2009 8:40am UTC, \"1809-02-12\" is 12 Feb 1809, \"1906-06\" is Jun 1906, \"1971\" is just that year, \"2007-03-01T13:00:00Z/2008-05-11T15:30:00Z\" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, \"2007-11-13/15\" is the interval between 13 Nov 2007 and 15 Nov 2007.".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipEstablishedDate-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:ResourceRelationship".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/ResourceRelationship".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Relationship Established Date".freeze, - subPropertyOf: "dc:date".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationshipOfResource, comment: "The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID). Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"duplicate of\", \"mother of\", \"endoparasite of\", \"host to\", \"sibling of\", \"valid synonym of\", \"located within\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipOfResource-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"duplicate of\", \"mother of\", \"endoparasite of\", \"host to\", \"sibling of\", \"valid synonym of\", \"located within\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipOfResource-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:ResourceRelationship".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/ResourceRelationship".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Relationship Of Resource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationshipRemarks, comment: "Comments or notes about the relationship between the two resources.".freeze, - "dc:description": "Examples: \"mother and offspring collected from the same nest\", \"pollinator captured in the act\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipRemarks-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"mother and offspring collected from the same nest\", \"pollinator captured in the act\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipRemarks-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:ResourceRelationship".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/ResourceRelationship".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Relationship Remarks".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reproductiveCondition, comment: "The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples\" \"non-reproductive\", \"pregnant\", \"in bloom\", \"fruit-bearing\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#reproductiveCondition-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples\" \"non-reproductive\", \"pregnant\", \"in bloom\", \"fruit-bearing\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#reproductiveCondition-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Reproductive Condition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceID, comment: "An identifier for the resource that is the subject of the relationship.".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#resourceID-2009-04-24".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#resourceID-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:ResourceRelationship".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/ResourceRelationship".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Resource ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceRelationshipID, comment: "An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#resourceRelationshipID-2009-04-24".freeze, - "dc:issued": "2009-01-26".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#resourceRelationshipID-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2009-01-26".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:ResourceRelationship".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/ResourceRelationship".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Resource Relationship ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :samplingEffort, comment: "The amount of effort expended during an Event.".freeze, - "dc:description": "Examples: \"40 trap-nights\", \"10 observer-hours; 10 km by foot; 30 km by car\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#samplingEffort-2009-08-24".freeze, - "dc:issued": "2009-08-24".freeze, - "dc:modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"40 trap-nights\", \"10 observer-hours; 10 km by foot; 30 km by car\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#samplingEffort-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2009-08-24".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Sampling Effort".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :samplingProtocol, comment: "The name of, reference to, or description of the method or protocol used during an Event.".freeze, - "dc:description": "Examples: \"UV light trap\", \"mist net\", \"bottom trawl\", \"ad hoc observation\", \"point count\", \"Penguins from space: faecal stains reveal the location of emperor penguin colonies, http://dx.doi.org/10.1111/j.1466-8238.2009.00467.x\", \"Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp.\", \"http://www.bsc-eoc.org/download/Owl.pdf\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#samplingProtocol-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:CollectingMethod-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"UV light trap\", \"mist net\", \"bottom trawl\", \"ad hoc observation\", \"point count\", \"Penguins from space: faecal stains reveal the location of emperor penguin colonies, http://dx.doi.org/10.1111/j.1466-8238.2009.00467.x\", \"Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp.\", \"http://www.bsc-eoc.org/download/Owl.pdf\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#samplingProtocol-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/CollectingMethod-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Method".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Sampling Protocol".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :scientificName, comment: "The full scientific name, with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined. This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term.".freeze, - "dc:description": "Examples: \"Coleoptera\" (order), \"Vespertilionidae\" (family), \"Manis\" (genus), \"Ctenomys sociabilis\" (genus + specificEpithet), \"Ambystoma tigrinum diaboli\" (genus + specificEpithet + infraspecificEpithet), \"Roptrocerus typographi (Györfi, 1952)\" (genus + specificEpithet + scientificNameAuthorship), \"Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell\" (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship)".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#scientificName-2009-09-21".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:scientificName-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Coleoptera\" (order), \"Vespertilionidae\" (family), \"Manis\" (genus), \"Ctenomys sociabilis\" (genus + specificEpithet), \"Ambystoma tigrinum diaboli\" (genus + specificEpithet + infraspecificEpithet), \"Roptrocerus typographi (Györfi, 1952)\" (genus + specificEpithet + scientificNameAuthorship), \"Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell\" (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship)".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#scientificName-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/scientificName-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Scientific Name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :scientificNameAuthorship, comment: "The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.".freeze, - "dc:description": "Example: \"(Torr.) J.T. Howell\", \"(Martinovský) Tzvelev\", \"(Györfi, 1952)\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#scientificNameAuthorship-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:AuthorYearOfScientificName-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"(Torr.) J.T. Howell\", \"(Martinovský) Tzvelev\", \"(Györfi, 1952)\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#scientificNameAuthorship-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/AuthorYearOfScientificName-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Scientific Name Authorship".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :scientificNameID, comment: "An identifier for the nomenclatural (not taxonomic) details of a scientific name.".freeze, - "dc:description": "Example: \"urn:lsid:ipni.org:names:37829-1:1.3\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#scientificNameID-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:TaxonNameID-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"urn:lsid:ipni.org:names:37829-1:1.3\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#scientificNameID-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/TaxonNameID-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Scientific Name ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sex, comment: "The sex of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"female\", \"hermaphrodite\", \"8 males, 4 females\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#sex-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:Sex-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"female\", \"hermaphrodite\", \"8 males, 4 females\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#sex-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/Sex-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Sex".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Occurrence".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Occurrence".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Sex".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :specificEpithet, comment: "The name of the first or species epithet of the scientificName.".freeze, - "dc:description": "Examples: \"concolor\", \"gottschei\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#specificEpithet-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:SpecificEpithet-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"concolor\", \"gottschei\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#specificEpithet-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/SpecificEpithet-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet}".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Specific Epithet".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startDayOfYear, comment: "The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).".freeze, - "dc:description": "Examples: \"1\" (=1 Jan), \"366\" (=31 Dec), \"365\" (=30 Dec in a leap year, 31 Dec in a non-leap year)".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#startDayOfYear-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:DayOfYear-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"1\" (=1 Jan), \"366\" (=31 Dec), \"365\" (=30 Dec in a leap year, 31 Dec in a non-leap year)".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#startDayOfYear-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/DayOfYear-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Start Day Of Year".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stateProvince, comment: "The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.".freeze, - "dc:description": "Examples: \"Montana\", \"Minas Gerais\", \"Córdoba\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#stateProvince-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:StateProvince-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Montana\", \"Minas Gerais\", \"Córdoba\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#stateProvince-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/StateProvince-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "State Province".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subgenus, comment: "The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.".freeze, - "dc:description": "Examples: \"Strobus (Pinus)\", \"Puma (Puma)\" \"Loligo (Amerigo)\", \"Hieracium subgen. Pilosella\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#subgenus-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:subgenus-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Strobus (Pinus)\", \"Puma (Puma)\" \"Loligo (Amerigo)\", \"Hieracium subgen. Pilosella\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#subgenus-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/subgenus-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Subgenus".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :taxonConceptID, comment: "An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.".freeze, - "dc:description": "Example: \"8fa58e08-08de-4ac1-b69c-1235340b7001\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonConceptID-2009-09-21".freeze, - "dc:issued": "2009-04-24".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:taxonConceptID-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"8fa58e08-08de-4ac1-b69c-1235340b7001\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonConceptID-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2009-04-24".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/taxonConceptID-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Taxon Concept ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :taxonID, comment: "An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.".freeze, - "dc:description": "Examples: \"8fa58e08-08de-4ac1-b69c-1235340b7001\", \"32567\", \"http://species.gbif.org/abies_alba_1753\", \"urn:lsid:gbif.org:usages:32567\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonID-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:scientificNameID-2009-07-06".freeze, + "http://purl.org/dc/terms/description": "Examples: \"8fa58e08-08de-4ac1-b69c-1235340b7001\", \"32567\", \"http://species.gbif.org/abies_alba_1753\", \"urn:lsid:gbif.org:usages:32567\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonID-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/scientificNameID-2009-07-06".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Taxon ID".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :taxonRank, comment: "The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"subspecies\", \"varietas\", \"forma\", \"species\", \"genus\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonRank-2009-09-21".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:scientificNameRank-2009-07-06".freeze, + "http://purl.org/dc/terms/description": "Examples: \"subspecies\", \"varietas\", \"forma\", \"species\", \"genus\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonRank-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/scientificNameRank-2009-07-06".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Taxon Rank".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :taxonRemarks, comment: "Comments or notes about the taxon or name.".freeze, - "dc:description": "Example: \"this name is a misspelling in common use\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonRemarks-2009-08-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-08-24".freeze, - "dc:replaces": "dwc:taxonRemarks-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"this name is a misspelling in common use\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonRemarks-2009-08-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-08-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/taxonRemarks-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Taxon Remarks".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :taxonomicStatus, comment: "The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"invalid\", \"misapplied\", \"homotypic synonym\", \"accepted\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonomicStatus-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Examples: \"invalid\", \"misapplied\", \"homotypic synonym\", \"accepted\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonomicStatus-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Taxonomic Status".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :typeStatus, comment: "A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.".freeze, - "dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388\", \"holotype of Pinus abies | holotype of Picea abies\".".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#typeStatus-2014-10-23".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2014-10-23".freeze, - "dc:replaces": "dwc:typeStatus-2009-04-24".freeze, + "http://purl.org/dc/terms/description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388\", \"holotype of Pinus abies | holotype of Picea abies\".".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#typeStatus-2014-10-23".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2014-10-23".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/typeStatus-2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText".freeze, "http://rs.tdwg.org/dwc/terms/attributes/decision": "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Identification".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Identification".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Type Status".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimCoordinateSystem, comment: "The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. Recommended best practice is to use a controlled vocabulary.".freeze, - "dc:description": "Examples: \"decimal degrees\", \"degrees decimal minutes\", \"degrees minutes seconds\", \"UTM\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimCoordinateSystem-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:VerbatimCoordinateSystem-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"decimal degrees\", \"degrees decimal minutes\", \"degrees minutes seconds\", \"UTM\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimCoordinateSystem-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/VerbatimCoordinateSystem-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim Coordinate System".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimCoordinates, comment: "The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.".freeze, - "dc:description": "Examples: \"41 05 54S 121 05 34W\", \"17T 630000 4833400\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimCoordinates-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:VerbatimCoordinates-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"41 05 54S 121 05 34W\", \"17T 630000 4833400\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimCoordinates-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/VerbatimCoordinates-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim Coordinates".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimDepth, comment: "The original description of the depth below the local surface.".freeze, - "dc:description": "Example: \"100-200 m\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimDepth-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:VerbatimDepth-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"100-200 m\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimDepth-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/VerbatimDepth-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim Depth".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimElevation, comment: "The original description of the elevation (altitude, usually above sea level) of the Location.".freeze, - "dc:description": "Example: \"100-200 m\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimElevation-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:VerbatimElevation-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"100-200 m\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimElevation-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/VerbatimElevation-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim Elevation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimEventDate, comment: "The verbatim original representation of the date and time information for an Event.".freeze, - "dc:description": "Examples: \"spring 1910\", \"Marzo 2002\", \"1999-03-XX\", \"17IV1934\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimEventDate-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:VerbatimCollectingDate-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"spring 1910\", \"Marzo 2002\", \"1999-03-XX\", \"17IV1934\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimEventDate-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/VerbatimCollectingDate-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim EventDate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimLatitude, comment: "The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.".freeze, - "dc:description": "Example: \"41 05 54.03S\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimLatitude-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:VerbatimLatitude-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"41 05 54.03S\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimLatitude-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/VerbatimLatitude-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim Latitude".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimLocality, comment: "The original textual description of the place.".freeze, - "dc:description": "Example: \"25 km NNE Bariloche por R. Nac. 237\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimLocality-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/description": "Example: \"25 km NNE Bariloche por R. Nac. 237\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimLocality-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim Locality".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimLongitude, comment: "The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.".freeze, - "dc:description": "Example: \"121d 10' 34\" W\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimLongitude-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-07-06".freeze, - "dc:replaces": "dwc:VerbatimLongitude-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"121d 10' 34\" W\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimLongitude-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/VerbatimLongitude-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim Longitude".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimSRS, comment: "The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value \"unknown\".".freeze, - "dc:description": "Examples: \"EPSG:4326\", \"WGS84\", \"NAD27\", \"Campo Inchauspe\", \"European 1950\", \"Clarke 1866\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimSRS-2009-07-06".freeze, - "dc:issued": "2009-07-06".freeze, - "dc:modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/description": "Examples: \"EPSG:4326\", \"WGS84\", \"NAD27\", \"Campo Inchauspe\", \"European 1950\", \"Clarke 1866\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimSRS-2009-07-06".freeze, + "http://purl.org/dc/terms/issued": "2009-07-06".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim SRS".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verbatimTaxonRank, comment: "The taxonomic rank of the most specific name in the scientificName as it appears in the original record.".freeze, - "dc:description": "Examples: \"Agamospecies\", \"sub-lesus\", \"prole\", \"apomict\", \"nothogrex\", \"sp.\", \"subsp.\", \"var.\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimTaxonRank-2009-09-21".freeze, - "dc:issued": "2009-07-06".freeze, - "dc:modified": "2009-09-21".freeze, - "dc:replaces": "dwc:verbatimScientificNameRank-2009-07-06".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Agamospecies\", \"sub-lesus\", \"prole\", \"apomict\", \"nothogrex\", \"sp.\", \"subsp.\", \"var.\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimTaxonRank-2009-09-21".freeze, + "http://purl.org/dc/terms/issued": "2009-07-06".freeze, + "http://purl.org/dc/terms/modified": "2009-09-21".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/verbatimScientificNameRank-2009-07-06".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Verbatim Taxon Rank".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vernacularName, comment: "A common or vernacular name.".freeze, - "dc:description": "Examples: \"Andean Condor\", \"Condor Andino\", \"American Eagle\", \"Gänsegeier\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#vernacularName-2009-07-06".freeze, - "dc:issued": "2009-07-06".freeze, - "dc:modified": "2009-07-06".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Andean Condor\", \"Condor Andino\", \"American Eagle\", \"Gänsegeier\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#vernacularName-2009-07-06".freeze, + "http://purl.org/dc/terms/issued": "2009-07-06".freeze, + "http://purl.org/dc/terms/modified": "2009-07-06".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "not in ABCD".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Taxon".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Taxon".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Vernacular Name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :waterBody, comment: "The name of the water body in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.".freeze, - "dc:description": "Examples: \"Indian Ocean\", \"Baltic Sea\", \"Hudson River\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#waterBody-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:WaterBody-2007-04-17".freeze, + "http://purl.org/dc/terms/description": "Examples: \"Indian Ocean\", \"Baltic Sea\", \"Hudson River\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#waterBody-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/WaterBody-2007-04-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dc:Location".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://purl.org/dc/terms/Location".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Water Body".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :year, comment: "The four-digit year in which the Event occurred, according to the Common Era Calendar.".freeze, - "dc:description": "Example: \"2008\"".freeze, - "dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#year-2009-04-24".freeze, - "dc:issued": "2008-11-19".freeze, - "dc:modified": "2009-04-24".freeze, - "dc:replaces": "dwc:YearCollected-2003-06-17".freeze, + "http://purl.org/dc/terms/description": "Example: \"2008\"".freeze, + "http://purl.org/dc/terms/hasVersion": "http://rs.tdwg.org/dwc/terms/history/#year-2009-04-24".freeze, + "http://purl.org/dc/terms/issued": "2008-11-19".freeze, + "http://purl.org/dc/terms/modified": "2009-04-24".freeze, + "http://purl.org/dc/terms/replaces": "http://rs.tdwg.org/dwc/terms/YearCollected-2003-06-17".freeze, "http://rs.tdwg.org/dwc/terms/attributes/abcdEquivalence": "accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin".freeze, - "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "dwc:Event".freeze, + "http://rs.tdwg.org/dwc/terms/attributes/organizedInClass": "http://rs.tdwg.org/dwc/terms/Event".freeze, "http://rs.tdwg.org/dwc/terms/attributes/status": "recommended".freeze, - isDefinedBy: "dwc:".freeze, + isDefinedBy: "http://rs.tdwg.org/dwc/terms/".freeze, label: "Year".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/earl.rb b/lib/rdf/vocab/earl.rb index 0357693..336c83f 100644 --- a/lib/rdf/vocab/earl.rb +++ b/lib/rdf/vocab/earl.rb @@ -3,322 +3,184 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/earl# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Evaluation and Report Language (EARL) 1.0 Schema - # # - # # Formal schema of the Evaluation and Report Language (EARL) 1.0 - # # @see http://www.w3.org/TR/HTTP-in-RDF/ - # # @see http://www.w3.org/TR/Content-in-RDF/ - # # @see http://www.w3.org/WAI/intro/earl - # # @see http://www.w3.org/TR/Pointers-in-RDF/ - # class EARL < RDF::StrictVocabulary - # # a statement that embodies the results of a test - # # @return [RDF::Vocabulary::Term] - # attr_reader :Assertion - # - # # an entity such as a person, a software tool, an organization, or any other grouping that carries out a test collectively - # # @return [RDF::Vocabulary::Term] - # attr_reader :Assertor - # - # # the class of outcomes to denote an undetermined outcome - # # @return [RDF::Vocabulary::Term] - # attr_reader :CannotTell - # - # # the class of outcomes to denote failing a test - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fail - # - # # the class of outcomes to denote the test is not applicable - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotApplicable - # - # # the class of outcomes to denote the test has not been carried out - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotTested - # - # # a discrete value that describes a resulting condition from carrying out the test - # # @return [RDF::Vocabulary::Term] - # attr_reader :OutcomeValue - # - # # the class of outcomes to denote passing a test - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pass - # - # # any piece of software such as an authoring tool, browser, or evaluation tool - # # @return [RDF::Vocabulary::Term] - # attr_reader :Software - # - # # an atomic test, usually one that is a partial test for a requirement - # # @return [RDF::Vocabulary::Term] - # attr_reader :TestCase - # - # # a testable statement, usually one that can be passed or failed - # # @return [RDF::Vocabulary::Term] - # attr_reader :TestCriterion - # - # # describes how a test was carried out - # # @return [RDF::Vocabulary::Term] - # attr_reader :TestMode - # - # # a higher-level requirement that is tested by executing one or more sub-tests - # # @return [RDF::Vocabulary::Term] - # attr_reader :TestRequirement - # - # # the actual result of performing the test - # # @return [RDF::Vocabulary::Term] - # attr_reader :TestResult - # - # # the class of things that have been tested against some test criterion - # # @return [RDF::Vocabulary::Term] - # attr_reader :TestSubject - # - # # assertor of an assertion - # # @return [RDF::Vocabulary::Term] - # attr_reader :assertedBy - # - # # additional warnings or error messages in a human-readable form - # # @return [RDF::Vocabulary::Term] - # attr_reader :info - # - # # assertor that is primarily responsible for performing the test - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainAssertor - # - # # mode in which the test was performed - # # @return [RDF::Vocabulary::Term] - # attr_reader :mode - # - # # outcome of performing the test - # # @return [RDF::Vocabulary::Term] - # attr_reader :outcome - # - # # location within a test subject that are most relevant to a test result - # # @return [RDF::Vocabulary::Term] - # attr_reader :pointer - # - # # result of an assertion - # # @return [RDF::Vocabulary::Term] - # attr_reader :result - # - # # test subject of an assertion - # # @return [RDF::Vocabulary::Term] - # attr_reader :subject - # - # # test criterion of an assertion - # # @return [RDF::Vocabulary::Term] - # attr_reader :test - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :automatic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cantTell - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :failed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inapplicable - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :manual - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :passed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :semiAuto - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :undisclosed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unknownMode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :untested - # - # end EARL = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/earl#")) do # Ontology definition ontology :"http://www.w3.org/ns/earl#", comment: "Formal schema of the Evaluation and Report Language (EARL) 1.0".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://www.w3.org/TR/Content-in-RDF/".freeze, "http://www.w3.org/TR/HTTP-in-RDF/".freeze, "http://www.w3.org/TR/Pointers-in-RDF/".freeze, "http://www.w3.org/WAI/intro/earl".freeze], "http://www.w3.org/2002/07/owlversionInfo": "Editor's Working Draft 10 June 2009".freeze, isDefinedBy: "http://www.w3.org/TR/EARL10/".freeze, label: "Evaluation and Report Language (EARL) 1.0 Schema".freeze, - "rdfs:seeAlso": ["http://www.w3.org/TR/Content-in-RDF/".freeze, "http://www.w3.org/TR/HTTP-in-RDF/".freeze, "http://www.w3.org/TR/Pointers-in-RDF/".freeze, "http://www.w3.org/WAI/intro/earl".freeze], type: "http://www.w3.org/2002/07/owlOntology".freeze # Class definitions term :Assertion, comment: "a statement that embodies the results of a test".freeze, label: "Assertion".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Assertor, comment: "an entity such as a person, a software tool, an organization, or any other grouping that carries out a test collectively".freeze, label: "Assertor".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :CannotTell, comment: "the class of outcomes to denote an undetermined outcome".freeze, label: "Undetermined".freeze, - subClassOf: "earl:OutcomeValue".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/earl#OutcomeValue".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Fail, comment: "the class of outcomes to denote failing a test".freeze, label: "Fail".freeze, - subClassOf: "earl:OutcomeValue".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/earl#OutcomeValue".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :NotApplicable, comment: "the class of outcomes to denote the test is not applicable".freeze, label: "Not applicable".freeze, - subClassOf: "earl:OutcomeValue".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/earl#OutcomeValue".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :NotTested, comment: "the class of outcomes to denote the test has not been carried out".freeze, label: "Not tested".freeze, - subClassOf: "earl:OutcomeValue".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/earl#OutcomeValue".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OutcomeValue, comment: "a discrete value that describes a resulting condition from carrying out the test".freeze, label: "Outcome Value".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Pass, comment: "the class of outcomes to denote passing a test".freeze, label: "Pass".freeze, - subClassOf: "earl:OutcomeValue".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/earl#OutcomeValue".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Software, comment: "any piece of software such as an authoring tool, browser, or evaluation tool".freeze, label: "Software".freeze, - subClassOf: "doap:Project".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://usefulinc.com/ns/doap#Project".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :TestCase, comment: "an atomic test, usually one that is a partial test for a requirement".freeze, label: "Test Case".freeze, - subClassOf: "earl:TestCriterion".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/earl#TestCriterion".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :TestCriterion, comment: "a testable statement, usually one that can be passed or failed".freeze, label: "Test Criterion".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :TestMode, comment: "describes how a test was carried out".freeze, label: "Test Mode".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :TestRequirement, comment: "a higher-level requirement that is tested by executing one or more sub-tests".freeze, label: "Test Requirement".freeze, - subClassOf: "earl:TestCriterion".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/earl#TestCriterion".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :TestResult, comment: "the actual result of performing the test".freeze, label: "Test Result".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :TestSubject, comment: "the class of things that have been tested against some test criterion".freeze, label: "Test Subject".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :assertedBy, comment: "assertor of an assertion".freeze, - domain: "earl:Assertion".freeze, + domain: "http://www.w3.org/ns/earl#Assertion".freeze, label: "Asserted By".freeze, - range: "earl:Assertor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/earl#Assertor".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :info, comment: "additional warnings or error messages in a human-readable form".freeze, - domain: "earl:TestResult".freeze, + domain: "http://www.w3.org/ns/earl#TestResult".freeze, label: "Info".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :mainAssertor, comment: "assertor that is primarily responsible for performing the test".freeze, - domain: "earl:Assertor".freeze, + domain: "http://www.w3.org/ns/earl#Assertor".freeze, label: "Main Assertor".freeze, - range: "earl:Assertor".freeze, + range: "http://www.w3.org/ns/earl#Assertor".freeze, subPropertyOf: "http://xmlns.com/foaf/spec/#term_member".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :mode, comment: "mode in which the test was performed".freeze, - domain: "earl:Assertion".freeze, + domain: "http://www.w3.org/ns/earl#Assertion".freeze, label: "Mode".freeze, - range: "earl:TestMode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/earl#TestMode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :outcome, comment: "outcome of performing the test".freeze, - domain: "earl:TestResult".freeze, + domain: "http://www.w3.org/ns/earl#TestResult".freeze, label: "Outcome".freeze, - range: "earl:OutcomeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/earl#OutcomeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :pointer, comment: "location within a test subject that are most relevant to a test result".freeze, domain: "http://www.w3.org/ns/TestResult".freeze, label: "Pointer".freeze, - range: "ptr:Pointer".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2009/pointers#Pointer".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :result, comment: "result of an assertion".freeze, - domain: "earl:Assertion".freeze, + domain: "http://www.w3.org/ns/earl#Assertion".freeze, label: "Result".freeze, - range: "earl:TestResult".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/earl#TestResult".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :subject, comment: "test subject of an assertion".freeze, - domain: "earl:Assertion".freeze, + domain: "http://www.w3.org/ns/earl#Assertion".freeze, label: "Subject".freeze, - range: "earl:TestSubject".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/earl#TestSubject".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :test, comment: "test criterion of an assertion".freeze, - domain: "earl:Assertion".freeze, + domain: "http://www.w3.org/ns/earl#Assertion".freeze, label: "Test".freeze, - range: "earl:TestCriterion".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/earl#TestCriterion".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] # Extra definitions term :automatic, - "dc:description": "where the test was carried out automatically by the software tool and without any human intervention".freeze, - "dc:title": "Automatic".freeze, - type: "earl:TestMode".freeze + "http://purl.org/dc/terms/description": "where the test was carried out automatically by the software tool and without any human intervention".freeze, + "http://purl.org/dc/terms/title": "Automatic".freeze, + type: "http://www.w3.org/ns/earl#TestMode".freeze term :cantTell, - "dc:description": "it is unclear if the subject passed or failed the test".freeze, - "dc:title": "Cannot tell".freeze, - type: "earl:CannotTell".freeze + "http://purl.org/dc/terms/description": "it is unclear if the subject passed or failed the test".freeze, + "http://purl.org/dc/terms/title": "Cannot tell".freeze, + type: "http://www.w3.org/ns/earl#CannotTell".freeze term :failed, - "dc:description": "the subject failed the test".freeze, - "dc:title": "Failed".freeze, - type: "earl:Fail".freeze + "http://purl.org/dc/terms/description": "the subject failed the test".freeze, + "http://purl.org/dc/terms/title": "Failed".freeze, + type: "http://www.w3.org/ns/earl#Fail".freeze term :inapplicable, - "dc:description": "the test is not applicable to the subject".freeze, - "dc:title": "Inapplicable".freeze, - type: "earl:NotApplicable".freeze + "http://purl.org/dc/terms/description": "the test is not applicable to the subject".freeze, + "http://purl.org/dc/terms/title": "Inapplicable".freeze, + type: "http://www.w3.org/ns/earl#NotApplicable".freeze term :manual, - "dc:description": "where the test was carried out by human evaluators".freeze, - "dc:title": "Manual".freeze, - type: "earl:TestMode".freeze + "http://purl.org/dc/terms/description": "where the test was carried out by human evaluators".freeze, + "http://purl.org/dc/terms/title": "Manual".freeze, + type: "http://www.w3.org/ns/earl#TestMode".freeze term :passed, - "dc:description": "the subject passed the test".freeze, - "dc:title": "Passed".freeze, - type: "earl:Pass".freeze + "http://purl.org/dc/terms/description": "the subject passed the test".freeze, + "http://purl.org/dc/terms/title": "Passed".freeze, + type: "http://www.w3.org/ns/earl#Pass".freeze term :semiAuto, - "dc:description": "where the test was partially carried out by software tools, but where human input or judgment was still required to decide or help decide the outcome of the test".freeze, - "dc:title": "Semi-Automatic".freeze, - type: "earl:TestMode".freeze + "http://purl.org/dc/terms/description": "where the test was partially carried out by software tools, but where human input or judgment was still required to decide or help decide the outcome of the test".freeze, + "http://purl.org/dc/terms/title": "Semi-Automatic".freeze, + type: "http://www.w3.org/ns/earl#TestMode".freeze term :undisclosed, - "dc:description": "where the exact testing process is undisclosed".freeze, - "dc:title": "Undisclosed".freeze, - type: "earl:TestMode".freeze + "http://purl.org/dc/terms/description": "where the exact testing process is undisclosed".freeze, + "http://purl.org/dc/terms/title": "Undisclosed".freeze, + type: "http://www.w3.org/ns/earl#TestMode".freeze term :unknownMode, - "dc:description": "where the testing process is unknown or undetermined".freeze, - "dc:title": "Unknown".freeze, - type: "earl:TestMode".freeze + "http://purl.org/dc/terms/description": "where the testing process is unknown or undetermined".freeze, + "http://purl.org/dc/terms/title": "Unknown".freeze, + type: "http://www.w3.org/ns/earl#TestMode".freeze term :untested, - "dc:description": "the test has not been carried out".freeze, - "dc:title": "Untested".freeze, - type: "earl:NotTested".freeze + "http://purl.org/dc/terms/description": "the test has not been carried out".freeze, + "http://purl.org/dc/terms/title": "Untested".freeze, + type: "http://www.w3.org/ns/earl#NotTested".freeze end end diff --git a/lib/rdf/vocab/ebucore.rb b/lib/rdf/vocab/ebucore.rb index 9a7d7d4..28ea3c2 100644 --- a/lib/rdf/vocab/ebucore.rb +++ b/lib/rdf/vocab/ebucore.rb @@ -3,10378 +3,5930 @@ # This file generated automatically using rdf vocabulary format from http://www.ebu.ch/metadata/ontologies/ebucore/ebucore# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # EBUCore - the Dublin Core for media - # # - # # The development of the EBUCore ontology is a joint effort of the EBUCore and PBCore communities. - # # - # # 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. - # # @version Add Concept TargetPlatform and property hasTargetPlatform as a subproperty of Type. - # # @version Delete formatName and use skos:prefLabel and skos:definition. - # # @version Add productionSynopsis as subproperty of description. - # # @version Change hierarchy between Resource and MediaResource and provide hasRelatedResource and hasRelatedMediaResource and similar properties. - # # @version Add missing Concepts and propose default types. - # # @version Add Concept Theme and define property hasTheme as subproperty of hasSubject. - # # @version Harmonise multi-range definition of properties, when applicable. - # # @version Correct target of end and start as MediaResource. - # # @version Add formatId to Format. - # # @version Alignment of Concepts and Types with original EBU and new Dwerft SKOS vocabularies - # # @version Add lead as subproperty of description. - # # @version Delete roleDefinition and use skos:definition instead as Role is a subclass of Concept. - # # @version Version 1.10 - # # @version Add property dateProduced and property hasProducer. - # # @version Add hasRatingProvider equivalent to hasRatingSource in specific environments - # # @version Add roleType to define a type of Role. - # # @version Add hasRelationType with domain Relation. - # # @version Add isScheduledOn to associate a PublicationEvent directly with an EditorialObject. - # # @version Correct property actionType into hasActionType of rnage string or ActionType subclass of Concept. - # # @version Separate mutli-domains and multi-ranges to avoid owl:unionOf statements. - # # @version Add abstract as subpropertyOf description. - # # @version Add reverse property isTimelineTrackPartOf. - # # @version Add roleId to identify a Role. - # # @version Change identifier into hasIdentifier. - # # @version Move generic properties from BusinessObject/EditorialObject, Resource and MediaResource at Asset level (e.g. title, etc.). - # # @version Delete hasAssociatedRights has already covered by isCoveredBy. - # # @version Had Review and hasReview. - # # @version Add missing multiple range definitions. - # # @version Create property Asset / hasCopyright with range string or Copyright. Same correction for all Rights subclasses e.g. AccessConditions - # # @version Correct misstyped owl:Classes into rdfs:Classes. - # # @version Add ContentEditorialFormat as subclass of Type + hasContentEditorialFormat property as subpropertyof hastype. - # # @version Changed subclasses to dc: with owl:equivalentClass or owl:equivalentProperty. - # class EBUCore < RDF::StrictVocabulary - # # The conditions under which content can be accessed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AccessConditions - # - # # A class to log Actions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Action - # - # # To define a type of Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Action_Type - # - # # To define an active format code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActiveFormatDescriptorCode - # - # # An Organisation to which a Contact is affiliated (with period of validity). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Affiliation - # - # # A person / contact or organisation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agent - # - # # Any ancillary data provided with the content other than captioning and subtitling. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AncillaryData - # - # # To define the format of AncillaryData such as legacy data used to be carried in vertical blanking intervals. 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 :AncillaryDataFormat - # - # # To identify an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Animal - # - # # To provide a breed code for an animal.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnimalBreedCode - # - # # To provide a colour code for an animal.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnimalColourCode - # - # # A class used to annotate Assets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Annotation - # - # # To define a type of Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Annotation_Type - # - # # To identify and describe artefacts used in a production (on and behind the stage). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Artefact - # - # # To define a type of artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Artefact_Type - # - # # The Class "Asset" is an object to which an identifier will be associated at commissioning. It will serve as a central reference point to manage rights associated to EditorialObjects, Resources, MediaResources or Essences, and PublicationEvents (distribution and exploitation conditions). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Asset - # - # # To define a type of asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Asset_Type - # - # # To describe a feeling summarising the atmosphere. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Atmosphere - # - # # This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme. - # # - # # The target audience (target region, target audience category but also parental guidance recommendation) for which the media resource is intended. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudienceLevel - # - # # The audience by which the Resource can be seen according to ratings like MPAA (http://en.wikipedia.org/wiki/Motion_picture_rating_system) or other organisational / national / local standards. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudienceRating - # - # # To define the technique use to measure an audience score. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudienceScoreRecordingTechnique - # - # # To define the function of an AudioChannel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioChannelFunction - # - # # To define the purpose of an AudioChannel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioChannelPurpose - # - # # To provide information about an audio codec. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioCodec - # - # # An audioContent defines one component of a programme (e.g. background music), its association with an audioGroup (e.g. a 2.0 audioPackFormat of audioChannelFormats for stereo reproduction), its association with an audioStreamFormat, and its set of loudness parameters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioContent - # - # # to define a type of AudioContent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioContent_Type - # - # # A Track containing audio description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioDescription - # - # # The encoding format for the audio. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioEncodingFormat - # - # # To define an AudioFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioFormat - # - # # To define an audio object in reference to the Audio Definition Model (ADM) - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioObject - # - # # A set of one or more audioContent that derive from the same material, i.e. an audioMultiplex, and the definition of its multiplexed audioContents (e.g. foreground and commentary, background music). - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioProgramme - # - # # to define a type of AudioProgramme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioProgramme_Type - # - # # An audioStreamFormat describes a decodable signal - PCM signal or a Dolby E stream for example. It is composed of one or more AudioTracks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioStream - # - # # Represents a physical container or carrier to hold an audio stream. This should be usually defined by many attributes such as ID, format (e.g. 48 kHz/24 bits), linkage information (e.g. odd/even)… - # # - # # An audioTrack is the basic audio data container of a medium. Attribute is an unambiguous reference to this container in a given medium. - # # - # # An audioTrack object defines a component of an audioStream. A single set of samples or data in the storage medium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioTrack - # - # # To describe the purpose of an AudioTrack e.g. dubbing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioTrackPurpose - # - # # To describe an Award and associated information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Award - # - # # To define a type of Award. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Award_Type - # - # # The FIMS BMContent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BMContent - # - # # The FIMS Essence - # # @return [RDF::Vocabulary::Term] - # attr_reader :BMEssence - # - # # A template describe as a BMEssence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BMTemplate - # - # # Documents of various nature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BibliographicalObject - # - # # To record a biography. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Biography - # - # # A group of EditorialObjects having a Brand as a common denominator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brand - # - # # To describe a breaking news. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BreakingNewsItem - # - # # An image, a document, an annotation (descriptive textual metadata or audio/video tag), a tag (time related in audiovisual media resources), or an audiovisual media resource (optionally composed of one or more fragment / part and / or audio, video data tracks). Other types of BusinessObjects may be defined as subclasses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessObject - # - # # To define a type of business object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessObject_Type - # - # # To signal the presence of hard of hearing captioning. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Captioning - # - # # To define the format of captioning. Captioning's main use isfor hard of hearing transcription. 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 :CaptioningFormat - # - # # A member of the cast list (a list of performers/actors and associated fictitious characters). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cast - # - # # E.g. a fictitious contact / person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Character - # - # # To allocate a city code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CityCode - # - # # For use in models where Clip is common. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Clip - # - # # Closed captioning is provided as separate content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClosedCaptions - # - # # Closed subtitles are provided as separate content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClosedSubtitling - # - # # To provide information on a codec. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Codec - # - # # A group of EditorialObjects. There can be many types of collections for which specific sub-classes should be defined. In the worl of archives, A collection corresponds to all items belonging to an individual / collector. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # The CoulourSpace of a VideoResource. A ColourSpace is defined as free text in an annotation label or as an identifier pointing to a term in a classification scheme such as http://www.ebu.ch/metadata/ontologies/skos/ebu_ColourCodeCS.rdf. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ColourSpace - # - # # To identify a type of commercial content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommercialCode - # - # # A component e.g. audio, video, data or else or a MediaResource or Essence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Component - # - # # A physical person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Contact - # - # # To identify an container codec, e.g. MXF - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContainerCodec - # - # # To define the conatiner encoding format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContainerEncodingFormat - # - # # The definition of the container if available as a MIME type. This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme. For more information: http://www.iana.org/assignments/media-types/application/index.html. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContainerMimeType - # - # # To provide information about a particular type of content potentially sensitive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContentAlert - # - # # To define a code of EditorialFormat - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContentEditorialCode - # - # # To define an EditorialFormat - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContentEditorialFormat - # - # # To define a type of contract. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContractType - # - # # To provide a copyright statement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Copyright - # - # # To identify and describe Costumes used in productions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Costume - # - # # To define a costume type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CostumeType - # - # # To identify a country by its ISO code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CountryCode - # - # # To provide information on possible restrictions regarding the temporal and spatial coverage for publication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CoverageRestrictions - # - # # A set of creative commons rights. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreativeCommons - # - # # A member of the Crew. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Crew - # - # # To identify a style of Cuisine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CuisineStyle - # - # # To identify a currency by its ISO code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CurrencyCode - # - # # To provide addtional technical information on the characteristics of data streams in a MediaResource including but not limited to AncillaryData, Subtilting and Captioning. Additional specific data format may be defined as subclasses of DataFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataFormat - # - # # Ancillary data track e.g. ¨captioning" or "subtitling" in addition to video and audio tracks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataTrack - # - # # A department within and organisation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Department - # - # # A DepictedEVent is fictitious or historical or other sort of Event that the content of the BusinessObject or resource relates to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DepictedEvent - # - # # To provide a disclaimer of any form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Disclaimer - # - # # To describe a publication in the form of a document e.g. a html webpage (news item) or a pdf document e.g. a script. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Document - # - # # To provide technical information about the format of a document such as the orientation. 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 :DocumentFormat - # - # # Provides additional information about a NewsItem, e.g. date and place, subject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dopesheet - # - # # In the audiovisual domain, the Class EditorialObject transforms a commissioned concept into an editorial definition of a MediaResource before fabrication (in the Production Domain) and Distribution (in the Distribution Domain). An EditorialObject is a set of descriptive metadata summarising e.g. editing decisions. An EditorialObject can also be a part of an EditorialObject, which is defined by its start time and duration. An EditorialObject can also be a group of EditorialObjects. For example a series composed of episodes is defined as an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EditorialObject - # - # # To define a type of editorial object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EditorialObject_Type - # - # # A class to log Emotions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Emotion - # - # # To define a type of emotion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Emotion_Type - # - # # To provide a definition of the encoding format for audio and video. This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme e.g. http://www.ebu.ch/metadata/ontologies/skos/ebu_AudioCompressionCodeCS.rdf or http://www.ebu.ch/metadata/ontologies/skos/ebu_VideoCompressionCodeCS.rdf. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EncodingFormat - # - # # To describe an episode in a series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Episode - # - # # Essence is content ready for distribution. Essence can become a MediaResource in further production processes. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # To define a type of event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventType - # - # # To define a type of exclusity rights. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExclusivityType - # - # # To highlight potential exploitation issues. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExploitationIssues - # - # # The editorial object for a feature film. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Feature - # - # # To describe a fictional Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FictionalEvent - # - # # To describe a fictional Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FictionalLocation - # - # # To define a fictional Organisation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FictionalOrganisation - # - # # To describe a fictional Person, e.g. a character in a drama. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FictionalPerson - # - # # A file format for Resources other than audiovisual resources. The format is defined as free text or pointing at a term in a classification scheme e.g. http://www.ebu.ch/metadata/ontologies/skos/ebu_FileFormatCS.rdf. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FileFormat - # - # # To describe Food shown or consumed in productions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Food - # - # # To define a style of food. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodStyle - # - # # The format provides technical information on the format of a Resource. A BusinessObject can be instantiated in a variety of Resources each in a particular Format. Other specific data formats may be defined as subclasses of format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Format - # - # # Identifies the generation of a version of a resource, i.e. master, edit master, distribution copy, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Generation - # - # # This class shall be used to provide information on the genre of the BusinessObject or Resource. This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme e.g. http://www.ebu.ch/metadata/ontologies/skos/ebu_ContentGenreCS.rdf or http://www.ebu.ch/metadata/ontologies/skos/ebu_EditorialFormatCodeCS.rdf. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Genre - # - # # To define a collection / group of media resources, for example a series made of episodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Group - # - # # To provide information on intellectual property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IPRRestrictions - # - # # To support the use of structured identifiers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Identifier - # - # # To define a type of identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IdentifierType - # - # # A still image / thumbnail / key frame / logo related to the media resource or being the media resource itself. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Image - # - # # to identify a codec for images - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImageCodec - # - # # To provide technical information about the format of an image such as the orientation. 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 :ImageFormat - # - # # To indicate the purpose for which content was created. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IntentionCode - # - # # An item e.g. newsItem or sportItem - # # @return [RDF::Vocabulary::Term] - # attr_reader :Item - # - # # To describe a key career Event of a Contact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :KeyCareerEvent - # - # # To describe a significant event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :KeyEvent - # - # # A key personal Event of a Contact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :KeyPersonalEvent - # - # # A key frame is a frame extarcted from video, e.g. representative of a part of a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Keyframe - # - # # To proivde keywords and define key concepts illustrating the content of the Resource or EditorialObject. 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 :Keyword - # - # # To provide information on languages present in the BusinessObject and its purpose. This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme.Other language specific types may be added as subclasses of language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Language - # - # # To define the licensing terms associated with an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Licensing - # - # # To define a custom link. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Link - # - # # This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Location - # - # # A code given to a Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LocationCode - # - # # To define a type of time at a location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LocationTimeType - # - # # To define a type of location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LocationType - # - # # To provide information about complex locators. - # # - # # Custom attributes are to be associated by implementers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Locator - # - # # A Logo allows to visually identify an organisation, publicationService, publicationChannel, or ratings / parentalGuidance - # # @return [RDF::Vocabulary::Term] - # attr_reader :Logo - # - # # A MediaFragment is a temporal or spatial segment of a resource identified by a MediaGragment URI (http://www.w3.org/2008/WebVideo/Fragments/WD-media-fragments-spec/). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaFragment - # - # # The use of MediaResource is reserved to audiovisual content. In a production process, several MediaResources can be edited and assembled to realsie an Essence ready for distribution (see IMF package and OPL) - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaResource - # - # # To define a type of MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaResource_Type - # - # # To provide additional information on the type of media. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaType - # - # # To provide information on the medium formats in which the resource is available. 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 :Medium - # - # # A Track on which metadata is embedded (e.g. MXF). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MetadataTrack - # - # # The definition of the container if available as a MIME type. This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme. For more information: http://www.iana.org/assignments/media-types/index.html. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MimeType - # - # # A NewsItem aggregates all information about a particular news event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NewsItem - # - # # To specify the type of BusinessObject e.g. and EditorialObject of type "programme" or clip". This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme e.g. http://www.ebu.ch/metadata/ontologies/skos/ebu_ObjectTypeCodeCS.rdf. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ObjectType - # - # # Open Captions are burned in the image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OpenCaptions - # - # # Open subtitles are burned in the image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OpenSubtitling - # - # # An organisation (business, corporation, federation, etc.) or moral agent (government body). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organisation - # - # # The original language in which the BusinessObject or Resource has been created and released. 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 :OriginalLanguage - # - # # One of more media fragment (audio, video, data) composing an audiovisual media resource. In other ontolgies fragment is often referred to e.g. as a 'part' or 'segment' or 'fragment'. - # # - # # A Fragment is a particular section of a MediaResource identified by a start and end time or duration. Fragment can also be called segment or part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Part - # - # # To define a type or part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Part_Type - # - # # To identify a Party intervening in a transaction or contractual agreement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Party - # - # # To describe a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # To describe a physical resource e.g. a tape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalResource - # - # # A visual / graphical representation of a concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pictogram - # - # # A photography, a logo, a pictogram, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Picture - # - # # To define a picture display format code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PictureDisplayFormat - # - # # A platform like a network or operator platform. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Platform - # - # # An EditorialObject corresponding to a MediaResource ready for publication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Programme - # - # # To identify and describe Props used in productions (e.g. vehicles, objects of various shapes and brand and purpose, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Props - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Provenance - # - # # The name of the channel through which a Resource has been published as a PublicationEvent. A PublicationChannel can use a variety of medias e.g. broadcast or online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationChannel - # - # # To define a type of publication channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationChannel_Type - # - # # To describe any manifestation of a media resource on any media (live, on demand, catch-up TV, etc.) and the appropriate PublciationChannel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationEvent - # - # # To define a type of publication event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationEvent_Type - # - # # A collection of PublicationEvents through which a resource has been published. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationHistory - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationMedium - # - # # A collection of PublicationEvents organised as a PublicationPlanning. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationPlan - # - # # To define a type of publication plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationPlan_Type - # - # # A programme for distribution on radio channels. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rating - # - # # The record the description of an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Record - # - # # To define a region.(@en} - # # @return [RDF::Vocabulary::Term] - # attr_reader :RegionCode - # - # # To define links and relations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Relation - # - # # To specify a type of relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Relation_Type - # - # # To describe a Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resource - # - # # To define a type of resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resource_Type - # - # # To provide a Review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Review - # - # # To provide information on the rights, including intellectual property, related to a BusinessObject or Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rights - # - # # To signal that rights have been cleared (or not) - # # @return [RDF::Vocabulary::Term] - # attr_reader :RightsClearance - # - # # To define a type of Rights. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RightsType - # - # # To define the role / action of an agent. 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 :Role - # - # # A specifc type of Part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Scene - # - # # A series can be composed of one or more seasons clustering a certain number of episodes. Fro this reason, seasons are related to series using the isRelatedTo property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Season - # - # # Series is a particular type of collection. TV or Radio Series are composed of Episodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Series - # - # # A service is the umbrella under which one or more PublicationChannel is operated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Service - # - # # To define a type of service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Service_Type - # - # # A specifc type of Part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Shot - # - # # To identify a sign language by its code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SignLanguageCode - # - # # To signal the presence of Signing for hard of hearing users. The type of Signing (e.g. incursted in or else) or language of Signing can be specified using the appropriate properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Signing - # - # # To provide additional information on the signing format. 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 :SigningFormat - # - # # A SportItem aggregates all information about a sport event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportItem - # - # # A member of Staff. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Staff - # - # # identifies the technical video standard of a resource, i.e. NTSC or PAL. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Standard - # - # # A sticker associated with a Costume. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sticker - # - # # The type of storage used for the repository. 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 :Storage_Type - # - # # A continuous stream of bits. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Stream - # - # # A term describing the topic covered by the BusinessObject or resource. 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 :Subject - # - # # To signal the presence of subtitles for translation in alternative languages. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Subtitling - # - # # To define the format of subtitling. subtitling's main use isfor translation. 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 :SubtitlingFormat - # - # # A programme for distribution on television channels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TVProgramme - # - # # To identify the audience for which the content was created. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TargetAudience - # - # # To specify a target platform. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TargetPlatform - # - # # To define a Team. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Team - # - # # An Essence defined as a Template with all associated technical parameters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Template - # - # # To identify a territory e.g. by its UN code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TerritoryCode - # - # # A class specific to the annotation of a text or portions of text. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextAnnotation - # - # # To provide lines of text extracted from or additional to the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextLine - # - # # To define a TextLine type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextLine_Type - # - # # To specify the usage of a text. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextUsageType - # - # # To define a Theme associated with an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Theme - # - # # A thumbnail is a low resolution picture that can be associated with EditorialObjects or e.g. MediaResources or Contacts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thumbnail - # - # # A track with timecode information e.g. in MXF. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimecodeTrack - # - # # To define a timed text authoring technique. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimedTextAuthoringTechnique - # - # # To define a type of timed text. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimedTextContentType - # - # # To define a timed text subtitle format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimedTextSubtitleTargetFormat - # - # # To define a time sequence of EditorialObjects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimelineTrack - # - # # To specify a type or TimelineTrack. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimelineTrack_Type - # - # # A type subject for use in some contexts. 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 :Topic - # - # # Audiovisual content can be composed of audio, video and data Tracks (including captioning and subtitling). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Track - # - # # To define the prupose of a track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrackPurpose - # - # # To define a type of track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Track_Type - # - # # An expression of type in textual form or as a term from a classification scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Type - # - # # To define a set of UsageRestrictions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsageRestrictions - # - # # Usage rights associated with content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsageRights - # - # # To specifically identify a Version of an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Version - # - # # To provide information about a video codec. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoCodec - # - # # The encoding format of the video. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoEncodingFormat - # - # # To define an VideoFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoFormat - # - # # A decodable video stream of bits. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoStream - # - # # A specialisation of Track for Video to provide a link to specific data properties such as frameRate, etc. Signing is another possible example of video track. Specific VideoTracks such as Signing can be defined as sub VideoTracks.. In advanced systems, different VideoTracks can be used to provide e.g. different viewing angles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoTrack - # - # # To define a type of wrapping. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WrappingType - # - # # The Data Identifier word (along with the SDID, if used), indicates the type of ancillary data that the packet corresponds to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DID - # - # # Secondary data identification word for ancillary data. Send mode identifier. An identifier which indicates the transmission timing for closed caption data. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SDID - # - # # An abridged title. - # # @return [RDF::Vocabulary::Term] - # attr_reader :abrigedTitle - # - # # To provide an abstract. - # # @return [RDF::Vocabulary::Term] - # attr_reader :abstract - # - # # The description of an Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionDescription - # - # # Range: anyURI or string or Identifier - # # - # # An identifier attributed to an Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionId - # - # # The name of an Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionName - # - # # The time when the Action occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionTimestamp - # - # # The edit unit number at which the Action occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionTimestampEditUnits - # - # # The normal play time at which the Action occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionTimestampNormalPlayTime - # - # # The timecode at which the Action occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionTimestampTimecode - # - # # The timecode (dropframe) at which the Action occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionTimestampTimecodeDropFrame - # - # # A type of Action. - # # - # # Range: Action_type or string - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionType - # - # # To provide the end date of activity of an Organisation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activityEndDate - # - # # To provide the start date of activity of an Organisation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activityStartDate - # - # # A flag to indiucate adult content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :adultContent - # - # # The date of end of Affiliation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliationEndDate - # - # # The date of Affiliation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliationStartDate - # - # # The age of a Contact/Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :age - # - # # A link to a DBPedia page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentDbpedia - # - # # To provide a description of an Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentDescription - # - # # To provide an email address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentEmailAddress - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentFacebook - # - # # The fee of an Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentFee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentFlickr - # - # # Range: an Identifier or anyURI or string. - # # - # # An identifier attributed to an Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentId - # - # # A link to an imdb page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentImdb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentInstagram - # - # # To provide a hook to linked data. - # # - # # Range: a URL or URI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentLinkedData - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentLinkedIn - # - # # To provide the mobile telephone number of an Agent (Contact/Person or organisation) - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentMobileTelephoneNumber - # - # # To provide a name of an Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentName - # - # # To provide a nickname of a Contact/Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentNickname - # - # # To provide the previous name of a Contact/Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentPreviousName - # - # # To provide a link to a web resource containing information related to an Agent (Contact/Person or Organisation). - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentRelatedInformationLink - # - # # To provide a link to e.g. a web resource related to an Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentRelatedLink - # - # # To provide a link to a web resource containing information related to an Agent (Contact/Person or Organisation). - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentRelatedPressLink - # - # # Links to an Agent's social media. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentSocialMedia - # - # # To provide the telephone number of an Agent (Contact/Person or Organisation). - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentTelephoneNumber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentTwitter - # - # # Range: string or anyURI or Concept. - # # - # # To define a type of Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentType - # - # # To provide the address of the webpage of an Agent (Contact/Person or Organisation). - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentWebHomepage - # - # # A link to a wikidata page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentWikidata - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentWikipedia - # - # # To provide an alternative title. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternativeTitle - # - # # To year of birth of an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :animalBirthYear - # - # # To associate a fictitious character name with an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :animalCharacterName - # - # # To associate a code with an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :animalCode - # - # # To describe an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :animalDescription - # - # # To give the gender of an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :animalGender - # - # # To associate an Id with an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :animalId - # - # # To name an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :animalName - # - # # To replicate the passport of an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :animalPassport - # - # # To estimate the confidence in an Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationConfidence - # - # # To provide the date and time when an Annotation has been reviewed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationCurationDateTime - # - # # To describe an Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationDescription - # - # # To identify an Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationId - # - # # To name an Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationName - # - # # To estimate the saliency of an Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationSaliency - # - # # Range: string, anyURI or Concept. - # # - # # To define a type of Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationType - # - # # 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 - # - # # To identify the media resource to which the Rating applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appliesTo - # - # # The Asset to which Rights apply. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applyTo - # - # # Range: Agent or string - # # - # # To identify the Agent who approved the EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :approvedBy - # - # # To flag the availability of an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactAvailability - # - # # The height of the box containing the Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactBoxHeight - # - # # The coordinates on a vertical axis of the position of the top left corner of the box containing the Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactBoxTopLeftCornerLineNumber - # - # # The coordinates on an horizontal axis of the position of the top left corner of the box containing the Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactBoxTopLeftCornerPixelNumber - # - # # The width of the box containing the Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactBoxWidth - # - # # To specify the brand of an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactBrand - # - # # To provide the clour(s) of an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactColour - # - # # To provide a contextual comment about an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactComment - # - # # The date when an Artefact was purchased. . - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactDateOfPurchase - # - # # The date when an Artefact was sold. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactDateOfSell - # - # # A description of an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactDescription - # - # # To identify an Artefact. - # # - # # Range: string or Identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactId - # - # # To specify a model of an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactModel - # - # # A name associated with an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactName - # - # # To specify the period associated with an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactPeriod - # - # # To specifythe price of an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactPriceAmount - # - # # To specify a reference of an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactReference - # - # # To specify the style associated with an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactStyle - # - # # To specify the type of an Artefact. - # # - # # Range: string or Artefact_type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactType - # - # # To provide information on the usage history of an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactUsageHistory - # - # # To specify a website where more information can be found on the Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artefactWebsite - # - # # To specify the aspect ratio. - # # @return [RDF::Vocabulary::Term] - # attr_reader :aspectRatio - # - # # To provide a description of an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :assetDescription - # - # # An identifier attributed to an Asset. - # # - # # Range: an Identifier or anyURI or string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :assetId - # - # # To provide a name of an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :assetName - # - # # Range: string or anyURI or Concept. - # # - # # To define a type of an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :assetType - # - # # The audio bitrate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audioBitRate - # - # # The max audio bitrate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audioBitRateMax - # - # # The audio bitrate mode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audioBitRateMode - # - # # The total number of audio channels contained in the MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audioChannelNumber - # - # # The encoding level as defined in specifications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audioEncodingLevel - # - # # The encoding profile as defined in specifications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audioEncodingProfile - # - # # The configuration of audio tracks contained in the MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audioTrackConfiguration - # - # # The total number of audio tracks contained in the MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audioTrackNumber - # - # # To provide an Award ceremony name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardCeremony - # - # # To provide an date when an Award was delivered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardDate - # - # # To provide a description for an Award. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardDescription - # - # # To identify an Award. - # # - # # Range: string or Identifier - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardId - # - # # To provide the name of an Award. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardName - # - # # Range: string or Award_Type - # # - # # To define a type of Award. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardType - # - # # To provide the bitdepth at which the MediaResource has been encoded. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bitDepth - # - # # To provide the bitrate at which the MediaResource can be played in bits/second. Current bitrate if constant, and average bitrate if variable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bitRate - # - # # The maximum bitrate when variable, in bits per second. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bitRateMax - # - # # A flag to indicate if the bit rate is fixed or variable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bitRateMode - # - # # To provide the overall bitrate at which the MediaResource can be played in bits/second. Current bitrate if constant, and average bitrate if variable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bitRateOverall - # - # # To provide a bookmark. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookmark - # - # # To provide a description of an BusinessObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :businessObjectDescription - # - # # An identifier attributed to an BusinessObject. - # # - # # Range: an Identifier or anyURI or string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :businessObjectId - # - # # To provide a name of an BusinessObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :businessObjectName - # - # # Range: string or BusinessObjectType - # # - # # A type attributed to a BusinessObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :businessObjectType - # - # # To provide the description of a Character. - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterDescription - # - # # To identify the end character index of the portion of text to which the Annotation applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterEndIndex - # - # # To specify the name of a Character. - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterName - # - # # To identify the start character index of the portion of text to which the Annotation applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterStartIndex - # - # # Identifies relationship between a digital instantiation of a Resource and its direct copy, with no generational loss. - # # @return [RDF::Vocabulary::Term] - # attr_reader :clonedTo - # - # # To provide information on the product family of the Codec. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codecFamily - # - # # To identify a Codec. - # # - # # Range: string or Identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codecId - # - # # To provide a name for the Codec, e.g. a product name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codecName - # - # # To provide information on the version of the Codec. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codecVersion - # - # # To provide a comment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :comments - # - # # To specify the gender associated with a Costume. - # # @return [RDF::Vocabulary::Term] - # attr_reader :costumeGender - # - # # To collect all information available useful to determine the size of a Costume. - # # @return [RDF::Vocabulary::Term] - # attr_reader :costumeSizeInformation - # - # # To define the texture of a Costume. - # # - # # Range: a string or a Concept code from a vocabulary, e.g. Getty - # # @return [RDF::Vocabulary::Term] - # attr_reader :costumeTexture - # - # # To specify a type of Costume. - # # @return [RDF::Vocabulary::Term] - # attr_reader :costumeType - # - # # A date associated to an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :date - # - # # The date when the Asset was archived. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateArchived - # - # # The date when the Asset was first broadcast publicly on television or radio or via streaming. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateBroadcast - # - # # The date of creation of the Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCreated - # - # # The date when the Resource was deleted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateDeleted - # - # # The date when the Resource was digitised. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateDigitised - # - # # The date when the Resource was first made available to the public for purchase, download, or online access. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateDistributed - # - # # The date when the Resource was ingested/acquired in institutional holdings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateIngested - # - # # The date when the Asset was issued. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateIssued - # - # # The date when the Resource was copied or converted from an obsolete or endangered original format to a more updated format for preservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateMigrated - # - # # To indicate the date at which the Asset has been modified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateModified - # - # # The date when the Resource was converted from its original format into a format pre-selected by the institution for preservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateNormalized - # - # # The date when a Contact/Person is born. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateOfBirth - # - # # The date when a Contact/Person has passed away. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateOfDeath - # - # # The date when a Contact/Person has retired. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateOfRetirement - # - # # The date of production of the Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateProduced - # - # # The date when the Resource was first made available to the public for purchase, download, or online access. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateReleased - # - # # The date when the Asset was moved from one digital or physical location to another. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateTransferred - # - # # The most recent date when the Resource was confirmed to be valid through manual or digital QC. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateValidated - # - # # The date when the licence for the Asset ends. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datelicenseEnd - # - # # The date when the licence for the Asset begins. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datelicensed - # - # # To identify a new version derived from the original. - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivedTo - # - # # This can be specialised by using sub-properties like defined in http://www.ebu.ch/metadata/cs/web/ebu_DescriptionTypeCodeCS_p.xml.htm implemented as examples as e.g. 'summary' or 'script'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # Describes the physical dimensions of a MediaResource, with units of measure concatenated to become part of the value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dimensions - # - # # The description of a Dish. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dishDescription - # - # # The name of a Dish. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dishName - # - # # The aspect ratio when displayed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :displayAspectRatio - # - # # The order in which an Agent appears in a scene. - # # @return [RDF::Vocabulary::Term] - # attr_reader :displayOrder - # - # # Range: string or Language. - # # - # # the Language into which MediaResource is dubbed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dubbedTo - # - # # To provide information on the duration of an EditorialObject or MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # To provide a duration in edit units. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationEditUnits - # - # # To provide a duration as normal time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationNormalPlayTime - # - # # To provide information on the published / announced duration of an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationPublished - # - # # To provide a published duration as normal play time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationPublishedNormalPlayTime - # - # # The duration expressed as a timecode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationTimecode - # - # # The duration expressed as a timecode with drop frames. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationTimecodeDropFrame - # - # # The edit unit is e.g. the inverse of the audio sample rate or video frame rate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editUnit - # - # # To provide a description of an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorialObjectDescription - # - # # An identifier attributed to an EditorialObject. - # # - # # Range: an Identifier or anyURI or string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorialObjectId - # - # # A name attributed to an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorialObjectName - # - # # Range: string or EditorialObjectType/Concept - # # - # # A type attributed to an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorialObjectType - # - # # To provide information on the education. - # # @return [RDF::Vocabulary::Term] - # attr_reader :education - # - # # The description of an Emotion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :emotionDescription - # - # # The edit unit number at which the Emotion occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :emotionEditUnit - # - # # Range: anyURI or string or Identifier - # # - # # An identifier attributed to an Emotion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :emotionId - # - # # A name attributed to an Emotion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :emotionName - # - # # The normal play time at which the Emotion occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :emotionNormalPlayTime - # - # # The timecode at which the Emotion occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :emotionTimecode - # - # # The timecode (dropframe) at which the Emotion occurs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :emotionTimecodeDropFrame - # - # # To identify a timestamp at which an Emotion can be seen. - # # @return [RDF::Vocabulary::Term] - # attr_reader :emotionTimestamp - # - # # A type of Emotion. - # # - # # Range: anyURI or string or Emotion_Type - # # @return [RDF::Vocabulary::Term] - # attr_reader :emotionType - # - # # To define an encoding level. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodingLevel - # - # # The encoding profile as defined in specifications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodingProfile - # - # # To define an end timestamp, e.g. the end point of a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :end - # - # # The end time in edit units. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endEditUnits - # - # # The end time expressed using a time expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endNormalPlayTime - # - # # The offset end time in edit units. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endOffsetEditUnits - # - # # The offset end time in normal play time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endOffsetNormalPlayTime - # - # # The offset end timecode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endOffsetTimecode - # - # # The offset end timecode dropframe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endOffsetTimecodedropframe - # - # # An end time expressed as timecode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endTimecode - # - # # An end time expressed as timecode with drop frames. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endTimecodeDropFrame - # - # # The Episode Number - # # @return [RDF::Vocabulary::Term] - # attr_reader :episodeNumber - # - # # The Episode Number in a season - # # @return [RDF::Vocabulary::Term] - # attr_reader :episodeNumberInSeason - # - # # The Episode Number in a series - # # @return [RDF::Vocabulary::Term] - # attr_reader :episodeNumberInSeries - # - # # To provide a description for an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventDescription - # - # # The duration of an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventDuration - # - # # The end date of an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventEndDate - # - # # The end date and time of an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventEndDateTime - # - # # The end time of an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventEndTime - # - # # Range: identifier or string or anyURI. - # # - # # An identifier attributed to an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventId - # - # # To provide a name for an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventName - # - # # The period of time during which an Event has occured. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventPeriod - # - # # The start date of an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventStartDate - # - # # The start date and time of an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventStartDateTime - # - # # The start time of an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventStartTime - # - # # To define a type of Event. - # # - # # Range: Event or string - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventType - # - # # To provide information on the family of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :familyInformation - # - # # The family name of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :familyName - # - # # Provides the size of a MediaResource in bytes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileSize - # - # # To flag this is a first showing PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstShowing - # - # # To falg this is a first showing PublicationEvent on this service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstShowingThisService - # - # # Provides a user/audience-generated description, tag, or label for resource content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :folksonomy - # - # # A link to an Asset precedinging the current Asset in an ordered sequence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :followsInSequence - # - # # To define a category of Food. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodCategory - # - # # The Food ingredients or Food items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodIngredient - # - # # A version identifier attributed to a Format. - # # - # # Range: string or anyURI or Identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :formatId - # - # # A version identifier attributed to a Format. - # # - # # Range: string or anyURI or identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :formatVersionId - # - # # The height of a video frame. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameHeight - # - # # The unit used to measure the height of a frame. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameHeightUnit - # - # # The unit used to express the frame rate of a MediaResource in frames/second. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameRate - # - # # The unit used to express the frame width or height. The unit by default is 'pixel'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameSizeUnit - # - # # The width of a video frame. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameWidth - # - # # The unit used to measure the width of a frame. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameWidthUnit - # - # # A flag to indicate that the access to the PublicationEvent is 'free'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :free - # - # # The gender of a Person e.g. male or female. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gender - # - # # To identify geographical areas where content cannor be accessed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoBlocking - # - # # The given name of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :givenName - # - # # A textual description of a Group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :groupDescription - # - # # Range: Identifier or string or anyURI. - # # - # # An identifier attributed to a Group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :groupId - # - # # The name attributed to a Group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :groupName - # - # # Range: Concept or string or anyURI. - # # - # # A type attributed to a Group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :groupType - # - # # To express access conditions/restrictions. - # # - # # Range: string or AccessConditions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAccessConditions - # - # # To associate an Action with an Agent (e.g. Person or Character). - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasActionRelatedAgent - # - # # To associate an Action with a Scene. - # # - # # Range: string or Scene. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasActionRelatedScene - # - # # Range: Affiliation or string - # # - # # A property to establish the relation between a Contact/Person and an Organisation. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAgentBiography - # - # # Range: string or CountryCode - # # - # # To indicate the place of residence of an Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAgentCountryOfResidence - # - # # To provide the language(s) of a Contact/person. - # # - # # Range: a string or Language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAgentLanguage - # - # # To associate an Agent to another Agent e.g. a Team. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAgentMember - # - # # To provide the nationality of an Agent. - # # - # # Range: a string or CountryCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAgentNationality - # - # # Range: string or Location - # # - # # To indicate the place of residence of an Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAgentPlaceOfResidence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAgentRelatedPicture - # - # # To identify ancillary data in the media resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAncillaryData - # - # # Range: string or AncillaryDataFormat - # # - # # the format of ancillary data. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAncillaryDataFormat - # - # # To associate a breed code with an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnimalBreedCode - # - # # To associate a colour code with an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnimalColourCode - # - # # To identify the role of an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnimalRole - # - # # To define the Annotation has a string or instance of an EBUCore class. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnnotationBody - # - # # To define the purpose of an Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnnotationPurpose - # - # # To identify an Agent subject of the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnnotationRelatedAgent - # - # # To identify an Artefact subject of the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnnotationRelatedArtefact - # - # # To identify an Event subject of the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnnotationRelatedEvent - # - # # To identify a Location subject of the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnnotationRelatedLocation - # - # # To define the target object to which the Annotation applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnnotationTarget - # - # # Range: string or Agent - # # - # # The Agent who bought the Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactBuyer - # - # # To identify the creator of an Artefact. - # # - # # Range: string or Agent - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactCreator - # - # # Range: string or Location - # # - # # To identify the location of an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactLocation - # - # # To identify the owner of an Artefact. - # # - # # Range: string or Agent - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactOwner - # - # # To specify the currency into which the price of an Artefact is expressed. - # # - # # Range: string or CurrencyCode - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactPriceCurrency - # - # # To associate an Artefact/Prop or else with an Agent. - # # - # # Range: string or Agent - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactRelatedAgent - # - # # To associate an Artefact/Prop or else with an EditorialObject. - # # - # # Range: string or EditorialObject - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactRelatedEditorialObject - # - # # Range: string or Location - # # - # # To associate an Artefact/Prop or else with a Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactRelatedLocation - # - # # Range: string or PhysicalResource - # # - # # To associate an Artefact/Prop or else with a physical resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactRelatedPhysicalResource - # - # # To associate an Artefact/Prop or else with a resource. - # # - # # Range: string or Resource - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactRelatedResource - # - # # To identify the retailer of an Artefact. - # # - # # Range: string or Agent - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactRetailer - # - # # To identify a supplier of an Artefact. - # # - # # Range: string or Agent - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasArtefactSupplier - # - # # To associate a BusinessObject with an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAssetRelatedBusinessObject - # - # # To associate an EditorialObject with an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAssetRelatedEditorialObject - # - # # To identify a related MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAssetRelatedMediaResource - # - # # To identify a related Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAssetRelatedResource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAssociatedArtefact - # - # # To identify an associated asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAssociatedAsset - # - # # To define a Relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAssociatedRelation - # - # # Range: string or AudienceScorerecordingTechnique. - # # - # # To identify the technique used to measure an audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAudienceScoreRecordingTechnique - # - # # To identify the audio Codec - # # - # # Range:string or AudioCodec - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAudioCodec - # - # # Range:string or AudioContent_Type. - # # - # # To define a type of AudioContent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAudioContentType - # - # # To signal the presence of AudioDescription. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAudioDescription - # - # # To specify the audio encoding format. - # # - # # Range: string or AudioEncodingFormat - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAudioEncodingFormat - # - # # Range:string or AudioProgramme_Type - # # - # # To define a type of AudioProgramme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAudioProgrammeType - # - # # To identify AudioTracks in the Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAudioTrack - # - # # To link an Agent to an Award. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAwardRelatedAgent - # - # # To link a BusinessObject to an Award. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAwardRelatedBusinessObject - # - # # An Event e.g. a ceremony, associated to an Award. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAwardRelatedEvent - # - # # The Award gievn to an Agent - # # - # # Range: a string or an Award. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasBeenAwarded - # - # # To signal the presence of Captioning. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCaptioning - # - # # The format of Captioning. - # # - # # Range: string or CaptioningFormat - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCaptioningFormat - # - # # To provide information on the source of Captioning. - # # - # # Range: string or Agent - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCaptioningSource - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCastRole - # - # # The logo of a Publication Channel - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasChannelLogo - # - # # To associate PublicationEvents with PublicationChannels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasChannelPublicationEvent - # - # # Range: a string or a "fictitious" person - Character. - # # - # # To list characters in a fiction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCharacter - # - # # Range: string or Codec - # # - # # To identify a Codec used to create a resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCodec - # - # # To provide a name for the vendor of the Codec. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCodecVendor - # - # # To describe the colour space. - # # - # # Range: string or Concept - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasColourSpace - # - # # 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 - # - # # To identify a container codec. - # # - # # Range: string or ContainerCodec - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContainerCodec - # - # # Range: string or ContainerEncodingFormat - # # - # # To describe the container encoding format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContainerEncodingFormat - # - # # To provide the Mime type of the Resource. - # # - # # Range: string or MimeType - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContainerMimeType - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContributor - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCostumeType - # - # # The country where a person is born. - # # - # # Range: string or CountryCode - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCountryOfBirth - # - # # The country where a person is dead. - # # - # # Range: string or CountryCode - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCountryOfDeath - # - # # To provide coverage information. - # # - # # Range: string or Event or Location - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCoverage - # - # # To express coverage restrictions. - # # - # # Range: string or CoverageRestrictions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCoverageRestrictions - # - # # To identify the location where a media resources was created. - # # - # # Range: string or Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCreationLocation - # - # # Range: string or Creative Commons. - # # - # # To express Creative Commons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCreativeCommons - # - # # To identify an Agent involved in the creation of the Resource or BusinessObject. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCreator - # - # # A member of the crew. - # # - # # Range: a string or a Crew - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCrewRole - # - # # The country/region of origin of the cuisine - # # - # # Range: a string or CountryCode - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCuisineOrigin - # - # # The style of the cuisine - # # - # # Range: a string or CuisineStyle - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCuisineStyle - # - # # Range: string or DataFormat - # # - # # To describe the format of data carried in a resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDataFormat - # - # # To identify DataTracks in the Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDataTrack - # - # # To identify a department in an organisation. - # # - # # Range: string or Department. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDepartment - # - # # Range: string or Disclaimer. - # # - # # To express Disclaimer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDisclaimer - # - # # Range: string or Document format - # # - # # To describe the format of a Document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDocumentFormat - # - # # Range: string or Dopesheet. - # # - # # The dopesheet of a NewsItem. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDopesheet - # - # # Range: string or Language. - # # - # # To identify available dubbed languages. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDubbedLanguage - # - # # Range: string or Identifier. - # # - # # To associate an EIDR Identifier with an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEidrIdentifier - # - # # Range: String or Agent - # # - # # To associate an Emotion with an Agent (e.g. Person or Character). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEmotionRelatedAgent - # - # # To associate an Emotion with a Scene. - # # - # # Range: string or Scene - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEmotionRelatedScene - # - # # Range: string or Encoding format - # # - # # To describe any encoding format use to produce content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEncodingFormat - # - # # To identify Episodes in a Series - # # - # # Range: string or Episode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEpisode - # - # # An Agent relates to an Event. - # # - # # Range: string or Agent - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventRelatedAgent - # - # # An artefact related to an Event. - # # - # # Range: string or Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventRelatedArtefact - # - # # A BusinessObject relates to an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventRelatedBusinessObject - # - # # Range: string or Event - # # - # # An Event relates to an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventRelatedEvent - # - # # Range: a Location or a string - # # - # # To associate a Location with an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventRelatedLocation - # - # # A Resource relates to an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventRelatedResource - # - # # To define a type of Event. - # # - # # Range: string or EventType - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventType - # - # # To express Exploitation Issues. - # # - # # Range: string or Exploitation Issues. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasExploitationIssues - # - # # Range: string or FileFormat. - # # - # # The format of a file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFileFormat - # - # # The style of Food. - # # - # # Range: string or FoodStyle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFoodStyle - # - # # Range: string, Format or any Format-related Concept - # # - # # To identify a Format - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormat - # - # # An identifier attributed to a Format. - # # - # # Range: Identifier or string or anyURI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormatId - # - # # Identifies the generation of a version of a resource, i.e. master, edit master, distribution copy, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasGeneration - # - # # range: string or Genre. - # # - # # To define a Genre/category associated to the BusinesssObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasGenre - # - # # Range: string or Identifier. - # # - # # To associate an IMedia Identifier with an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasIMediaIdentifier - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasIdPicture - # - # # To associate an Identifier with an Asset. - # # - # # Range: string or Identifier. - # # @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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasIdentifierType - # - # # Range: string or Codec - # # - # # To specify the codec of an Image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasImageCodec - # - # # Range: string or ImageFormat - # # - # # To specify the format of an Image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasImageFormat - # - # # To associate an ISAN Identifier with an Asset. - # # - # # Range: string or Identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasIsanIdentifier - # - # # Range: string or KeyCareerEvent - # # - # # To identify the key career events of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasKeyCareerEvent - # - # # Range: string or KeyPersonalEvent - # # - # # To identify the key personal events of a Person. - # # @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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasKeyword - # - # # To associate a Language to an Asset. A controlled vocabulary based on BCP 47 is recommended. This property can also be used to identify the presence of sign language (RFC 5646). By inheritance, the hasLanguage property applies indifferently at the MediaResource / Fragment / Track levels at which the usage is being defined. Best practice recommends to use to best possible level of granularity fo describe the usage of language within a MediaResource including at Fragment and Track levels. - # # - # # Range: string or Language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLanguage - # - # # Range: string or Licensing. - # # - # # To express Licensing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLicensing - # - # # To give the code of a Location. - # # - # # Range: string or LocationCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLocationCode - # - # # A picture associated with a Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLocationPicture - # - # # To associate an Artefact with a Location. - # # - # # Range: a string or an Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLocationRelatedArtefact - # - # # Range: a string or an Event. - # # - # # To associate an Event with a Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLocationRelatedEvent - # - # # To identify a Resource associated with a Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLocationRelatedResource - # - # # Range: string or LocationType. - # # - # # To define the type of a Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLocationType - # - # # 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 - # - # # Logos can be used in a variety of contexts. Logo can be associated with an Organisation or a Service or a PublicationChannel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLogo - # - # # A manifestation is the physical embodiment of work e.g. a tape, a file... - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasManifestation - # - # # To identify the master of a Resource - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMaster - # - # # To define relation to MediaFragments withiin a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMediaFragment - # - # # Range: string or Medium - # # - # # To specify the medium on which the Resource is available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMedium - # - # # To establish group/collection relationship between EditorialObjects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMember - # - # # To identify a PublicationPlan that forms part of another PublicationPlan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMemberPublicationPlan - # - # # To identify MetadataTracks in the Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMetadataTrack - # - # # To specify the Mime type of a Resource. - # # - # # Range: string or MimeType - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMimeType - # - # # Range: string or ObjectType. - # # - # # To define an ObjectType for the BusinessObject (e.g. book, report, programme, clip) if not defined as a subClass of BusinessObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasObjectType - # - # # The logo representing an Organisation - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOrganisationLogo - # - # # To identify Staff members in an Organisation. - # # - # # Range: string or Staff. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOrganisationStaff - # - # # Range: string or Language. - # # - # # To define the original language of an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOriginalLanguage - # - # # To link a EditorialOject to a parent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasParentEditorialObject - # - # # To link a MediaResource to a parent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasParentMediaResource - # - # # To define Parts (segments, fragments, shots, etc.) within an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPart - # - # # Range: a string or Part_Type - # # - # # A type of Part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPartType - # - # # To identify participating Agents. - # # - # # range: Agent or string - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasParticipatingAgent - # - # # To provide a visual representation of a Rating / AufdienceRating / AudienceLevel. - # # - # # Range: a locator/URI or a Picture. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPictogram - # - # # To identify the place of birth. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPlaceOfBirth - # - # # To identify the place of death. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPlaceOfDeath - # - # # To identify an Agent involved in the production of the Resource or BusinessObject. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasProducer - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasProvenance - # - # # The instance of an object sourced by the Provenance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasProvenanceTarget - # - # # To associate PublicationEvents with PublicationChannels or as elements of a PublicationHistory or PublicationPlanning. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPublicationEvent - # - # # To provide the history of publication of an EditorailObject or MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPublicationHistory - # - # # To identify the publication medium. - # # - # # Range: string or PublicationMedium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPublicationMedium - # - # # To identify a subplan of a publication plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPublicationPlanMember - # - # # To define a type of PublicationPlan. - # # - # # Range: string or PublicationPlan_type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPublicationPlanType - # - # # The region where the publication takes place. - # # - # # Range: string or Location - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPublicationRegion - # - # # To identify an Agent involved in the publication of the Resource or BusinessObject. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRating - # - # # To identify an Agent who has provided a Rating. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRatingProvider - # - # # To identify an Agent who has provided a Rating. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRatingSource - # - # # To identify animals associate with an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedAnimal - # - # # To identify and Artefact related to EditorialObject or a resource. - # # - # # Range: string or Artefact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedArtefact - # - # # To identify related Assets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedAsset - # - # # To identify related Audio Content - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedAudioContent - # - # # To identify related Audio Objects - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedAudioObject - # - # # A related audio programme - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedAudioProgramme - # - # # To identify related Audio Tracks - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedAudioTrack - # - # # Range: string or Award. - # # - # # To identify an Award related to EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedAward - # - # # To identify related EditorialObjects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedEditorialObject - # - # # To establish a relation between a MediaResource and an Essence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedEssence - # - # # A property to identify the Events, all real or fictional, covered by the EditorialObject. - # # - # # Range: Sting or Event - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedEvent - # - # # To associate an Image with a BusinessObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedImage - # - # # Range: String or Location - # # - # # A property to identify the Locations, all real or fictional, covered by the EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedLocation - # - # # To associate a Part of an Asset with a MediaFragment within the association MediaResource instantiating the Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedMediaFragment - # - # # To identify a MediaResource associated with an Asset or a BusinessObject or a PublicationEvent or another Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedMediaResource - # - # # To associate a Picture with a BusinessObject or a Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedPicture - # - # # To identify a Publication Channel - # # - # # Range: string or PublicationChannel - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedPublicationChannel - # - # # To identify the PublicationEvent associated with a MediaResource (manifestation of an EditorialObject). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedPublicationEvent - # - # # Range, a string a URI or a Record. - # # - # # To associate a Record with an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedRecord - # - # # To identify a Resource associated with an Asset or a BusinessObject or a PublicationEvent or another Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedResource - # - # # Range: string or Service. - # # - # # To establish a relation between Services. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedService - # - # # Range: string or TextLine. - # # - # # A TextLine or free text related to an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedTextLine - # - # # To define source of a Relation. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelationSource - # - # # 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 - # - # # Range: string or Review. - # # - # # To provide a review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasReview - # - # # Range: string or Rights Clearance. - # # - # # To express Rights Clearance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRightsClearance - # - # # To identify a Contact/person who can provide assistance / guidance regarding the associated Rights. - # # - # # Range: a string or a Contact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRightsContact - # - # # To identify an Agent (Contact/person or Organisation) having/managing Rights. - # # - # # Range: a string or an Agent. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRole - # - # # To identiify Seasons in a Series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSeason - # - # # Range: string or Genre - # # - # # The genre of content associated with the Service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasServiceGenre - # - # # The Logo characterising a Service - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasServiceLogo - # - # # The Location where content has been captured. - # # - # # Range: Location or string - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSigning - # - # # Range: string or SigningFormat. - # # - # # To specify the format used for signing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSigningFormat - # - # # To specify the source of signing. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSigningSource - # - # # To identify the source of a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSource - # - # # Range: string or Staff. - # # - # # To identify members of staff in an organisation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStaffMember - # - # # 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 or hasStaffRole. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStaffRole - # - # # An Agent related to the PublicationPlan. - # # - # # Range: Agent or string - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStakeholder - # - # # Identifies the technical video standard of a MediaResource, i.e. NTSC or PAL. - # # - # # Range: string or Standard - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStandard - # - # # Range: Identifier, anyURI, string - # # - # # To identify storage associated with a locator from which a Resource can be accessed or can be retrieved. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStorageId - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSubject - # - # # To identify existing subtitling. - # # - # # Range: string or Subtitling - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSubtitling - # - # # The format of Subtitling. - # # - # # Range: string or SubtitlingFormat - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSubtitlingFormat - # - # # To identify the source of the Subtitling resource. - # # - # # Range: a string or an Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSubtitlingSource - # - # # Range: string or TargetAudience. - # # - # # To associate a TargetAudience (e.g. for parental guiddance or targeting a particular social group) with a BusinessObject/Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTargetAudience - # - # # Range: string or TargetPlatform. - # # - # # To specify a target platform. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTargetPlatform - # - # # Range: a Person or a string - # # - # # To identify the members of a Team - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTeamMember - # - # # To attribute an identifier to a text line. - # # - # # Range: string or Identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTextLineId - # - # # To identify an Agent/Person/Character related to a TextLine. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTextLineRelatedAgent - # - # # To identify a Character related to a TextLine. - # # - # # Range: string or Character. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTextLineRelatedCharacter - # - # # Range: string or Scene. - # # - # # To identify an scene related to a text line. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTextLineRelatedScene - # - # # To identify the source of a TextLine. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTextLineSource - # - # # To identify the type of a text line. - # # - # # Range: string or TextLine_Type - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTextLineType - # - # # 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 - # - # # To identify a timecode track with a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTimecodeTrack - # - # # To associate a TimelineTrack with an EditorialObject - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTimelineTrack - # - # # To associate an EditorialObject to a TimelineTrackPart - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTimelineTrackPart - # - # # To specify a type of TimelineTrack - # # - # # Range: string or anyURI or TimelineTrack_Type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTimelineTrackType - # - # # This property enables to associate an Asset with a topic which can be a string or a URI pointing to a term from a controlled vocabulary. A typical example is to make use of the IPTC Media Topics defined at http://cv.iptc.org/newscodes/mediatopic/. - # # - # # Range: a Topic, anyURI or a string - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTopic - # - # # To associate audio/data/video tracks with a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTrack - # - # # An element to identify a part of a track by a title, a start time and an end time in both the media source and media destinationn. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTrackPart - # - # # Range: string or TrackPurpose. - # # - # # The purpose for which the Track is provided. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTrackPurpose - # - # # Range: string or Type. - # # - # # An type of Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasType - # - # # Range: string or UsageRestrictions. - # # - # # To express usage restrictions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasUsageRestrictions - # - # # To express usage rights. - # # - # # Range: string or UsageRights. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasUsageRights - # - # # To identify another version of an Asset, BusinessObject or Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVersion - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVideoEncodingFormat - # - # # To identify VideoTracks in the Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVideoTrack - # - # # To specify the type of wrapping. - # # - # # Range: string or WrappingType. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasWrappingType - # - # # The hash value associated to a Resource. There are different methods / algorithms to calculate hash values, which can be defined as subproperties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hashValue - # - # # The height of e.g. a video frame typically expressed as a number of lines or the height of a picture/image expressed in millimeters or else. - # # @return [RDF::Vocabulary::Term] - # attr_reader :height - # - # # To specify a unit to express height. - # # @return [RDF::Vocabulary::Term] - # attr_reader :heightUnit - # - # # To provide highlights. - # # @return [RDF::Vocabulary::Term] - # attr_reader :highlights - # - # # The hobbies of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hobbies - # - # # The distance between 2 I-frames also known as the gop size. - # # @return [RDF::Vocabulary::Term] - # attr_reader :iFrameSize - # - # # The date when the identifier was generated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :idDateOfCreation - # - # # To provide the value attribued to an Identifier. - # # - # # Range: string or anyURI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifierValue - # - # # Identifies the inches per second at which an analog audio tape should be played back for human consumption. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inchesPerSecond - # - # # To link a particular manifestation of a BusinessObject to the corresponding Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :instantiates - # - # # To identify a related Agent. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAgent - # - # # To identify the groom / care taker of an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAnimalGroom - # - # # To identify the owner of an animal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAnimalOwner - # - # # To link an Annotation to a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAnnotatedMediaResource - # - # # To link an Annotation to an Agent who created it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAnnotationBy - # - # # Tassociate an Agent with a Provenance instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAttributedTo - # - # # To identify a Brand. - # # - # # Range: a string or Brand - # # @return [RDF::Vocabulary::Term] - # attr_reader :isBrand - # - # # To identify a character. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isCharacter - # - # # To link a BusinessOject or Resource to a parent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isChildOf - # - # # To identify the source of a clone Editorial Object or Resource - # # @return [RDF::Vocabulary::Term] - # attr_reader :isClonedFrom - # - # # To identify mediaResources used to compose an Essence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isComposedOf - # - # # Range: a link to Rights or open text (string). - # # - # # The Rights or policy applicable to the BusinessObject, Asset, Resource or PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isCoveredBy - # - # # Identifies a content-based relationship between two resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isDerivedFrom - # - # # To identify the platform on which content is distributed. - # # - # # Range: Service or string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isDistributedOn - # - # # the origin of a dubbed MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isDubbedFrom - # - # # To identify an Editorial Object based on the same Editorial format - # # @return [RDF::Vocabulary::Term] - # attr_reader :isEditorialFormatOf - # - # # The Episode of a Series or a Season. - # # - # # Range: Series or string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isEpisodeOf - # - # # Range: string or Season. - # # - # # The Episode of a Series or a Season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isEpisodeOfSeason - # - # # Range: string or Series. - # # - # # The Episode of a Series or a Season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isEpisodeOfSeries - # - # # To identify a Contact/Person being fictitious. - # # - # # Range: a string or a FictitiousPerson. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isFictitiousPerson - # - # # To identify a MediaResource instantiating an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isInstantiatedBy - # - # # To identify the issuer of an identifier. - # # - # # Range: Agent or String - # # @return [RDF::Vocabulary::Term] - # attr_reader :isIssuedBy - # - # # To identify the master of a derived media resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isMasterOf - # - # # To identify the Media Resource to which a Media Fragment belongs to - # # @return [RDF::Vocabulary::Term] - # attr_reader :isMediaFragmentOf - # - # # Range: string or Group. - # # - # # To identify a Group to which an EditorialObject is a member of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isMemberOf - # - # # To identify a parent Publication Plan - # # @return [RDF::Vocabulary::Term] - # attr_reader :isMemberOfPublicationPlan - # - # # A link to an Asset following the current Asset in an ordered sequence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isNextInSequence - # - # # To identify the Service that operates the PublicationChannel. - # # - # # Range: string or Service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isOperatedBy - # - # # To identify the Agent (Contact/person or Organisation) who owns a Service operating a PublicationChannel. - # # - # # Range: string or Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isOwnedBy - # - # # To link a Asset to a parent Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isParentOf - # - # # To identify the editorial object to which belongs a part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPartOf - # - # # Range: e.g. a string, URL or Locator. - # # - # # The location from where a Person identification picture can be accessed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPictureIdLocator - # - # # To identify the BusinessObject associated with a Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRatingRelatedToBusinessObject - # - # # To identify the resource associated with a Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRatingRelatedToResource - # - # # To described references between assets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isReferencedBy - # - # # Range: Service or string - # # - # # To identify a Service assocoated to a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isReleasedBy - # - # # To identify substitutions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isReplacedBy - # - # # To express strong relations between Assets, BusinessObjects or Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRequiredBy - # - # # To associatre a PublicationEvent with an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isScheduledOn - # - # # To assoicate a Season with a Series. - # # - # # Range: Series or string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSeasonOf - # - # # To associate a Series with a Brand. - # # - # # Range: Brand or string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSeriesOf - # - # # To associate an EditorialObject with a part of the TimelineTrack. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isTimelineTrackPartOf - # - # # An element to identify a part of a track by a title, a start time and an end time in both the media source and media destination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isTrackPartOf - # - # # To identify related versions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isVersionOf - # - # # To provide the number of the line on which ancillary data is being carried and the equivalent in the digital domain. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lineNumber - # - # # To provide a link to a Logo - # # - # # Range: string or Logo - # # @return [RDF::Vocabulary::Term] - # attr_reader :linkToLogo - # - # # Range: anyURI or Sticker. - # # - # # To provide a link to a Sticker - # # @return [RDF::Vocabulary::Term] - # attr_reader :linkToSticker - # - # # A flag to signal that content is live - # # @return [RDF::Vocabulary::Term] - # attr_reader :live - # - # # To provide a family name in its local expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :localFamiliyName - # - # # To provide a given name in its local expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :localGivenName - # - # # To provide the address of a Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationAddress - # - # # To provide the Area part of an Adrress. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationAddressArea - # - # # To provide the country name and or country code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationAddressCountry - # - # # To provide an address line. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationAddressLine - # - # # To provide the name of a city, village, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationAddressLocality - # - # # To provide an address postal code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationAddressPostalCode - # - # # To define the altitude of a Location in meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationAltitude - # - # # To specify the name of the gps coordinate system used for the Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCoordinateSystemName - # - # # To provide a description of a particular Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationDescription - # - # # An identifier attributed to a Location. - # # - # # Range: Identifier, anyURI or string - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationId - # - # # The latitude of the Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationLatitude - # - # # To define the longitude of the Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationLongitude - # - # # To provide a namefor a particular Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationName - # - # # Range: string or RegionCode - # # - # # To provide a description of a particular region assocoated to the Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationRegion - # - # # Range: string or LocationTimeType or anyURI. - # # - # # A type of time at a Location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationTimeType - # - # # A type of Location. - # # - # # Range: string or anyURI or LocationType - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationType - # - # # Information on the locator target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locatorTargetInformation - # - # # To log everything in the content following predefined rules and criterias, as a neutral sequence of (possibly timed) textual descriptions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :log - # - # # The value for integrated loudness measured at AudioProgramme or AudioContent level. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loudnessIntegratedLoudness - # - # # The value for maximum momentary loudness measured at AudioProgramme or AudioContent level. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loudnessMaxMomentary - # - # # The value for maximum max short term loudness measured at AudioProgramme or AudioContent level. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loudnessMaxShortTerm - # - # # The value for maximum true peak loudness measured at AudioProgramme or AudioContent level. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loudnessMaxTruepeak - # - # # The method for loudness measurement at AudioProgramme or AudioContent level. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loudnessMethod - # - # # To provide loudness parameters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loudnessParameters - # - # # The loudness range measured at AudioProgramme or AudioContent level. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loudnessRange - # - # # Specifies the main title or name given to the EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainTitle - # - # # To identify the marital status of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maritalStatus - # - # # A description of a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaResourceDescription - # - # # Range: Identifier or string - # # - # # To identify a type of MediaResource, e.g. a template'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaResourceId - # - # # Range: MediaResource_Type or string - # # - # # To identify a type of MediaResource, e.g. a template'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaResourceType - # - # # A flag to indicate whether it is allowed to insert ad breaks in mid-roll. - # # @return [RDF::Vocabulary::Term] - # attr_reader :midRollAdAllowed - # - # # To provide one or more middle names for a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :middleName - # - # # The nickname of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nickName - # - # # A flag to signal that a noise filter has been used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :noiseFilter - # - # # A flag to indicate that the EditorialObejct has not been rated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :notRated - # - # # To provide the number of audio tracks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAudioTracks - # - # # The number of Tracks composing the MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfTracks - # - # # To provide the number of video tracks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfVideoTracks - # - # # The job / occupation name of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupation - # - # # To identify the PublicationEvents provided through a Service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offers - # - # # To provide the professional/office email address of an Agent (Contact/Person or Organisation). - # # @return [RDF::Vocabulary::Term] - # attr_reader :officeEmailAddress - # - # # To provide the office mobile telephone number of an Agent (Contact/Person). - # # @return [RDF::Vocabulary::Term] - # attr_reader :officeMobileTelephoneNumber - # - # # To provide the office telephone number of an Agent (Contact/Person). - # # @return [RDF::Vocabulary::Term] - # attr_reader :officeTelephoneNumber - # - # # A flag to indicate that a EditorialObject is member of an ordered group or is an ordered group (e.g. Series) - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderedFlag - # - # # To provide a description of an Organisation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organisationDescription - # - # # The identifier attributed to an Organisation - # # - # # Range: string or Identifier - # # @return [RDF::Vocabulary::Term] - # attr_reader :organisationId - # - # # To provide the full name of an Organisation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organisationName - # - # # Range: string or anyURI or Concept. - # # - # # To define a type of an Organisation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organisationType - # - # # The orientation of a Document or an Image i.e. landscape or portrait. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orientation - # - # # The original title used to identify the work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalTitle - # - # # The size of a media package in Bytes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packageByteSize - # - # # The name of a media package in Bytes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packageName - # - # # A definition associated with the Part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partDefinition - # - # # A description associated with the Part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partDescription - # - # # Range: a string or Identifier - # # - # # The identifier of a Part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partId - # - # # A name associated with the Part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partName - # - # # The number associated to a Part as one among many. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partNumber - # - # # The total number of Parts associated with an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partTotalNumber - # - # # To provide a description of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :personDescription - # - # # To indicate the height of a person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :personHeight - # - # # An identifier attributed to a Person. - # # - # # Range: an Identifier or anyURI or string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :personId - # - # # To provide e.g. compound names. - # # @return [RDF::Vocabulary::Term] - # attr_reader :personName - # - # # A type attributed to a Person. - # # - # # Range: a Concept or anyURI or string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :personType - # - # # To indicate the weight of a person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :personWeight - # - # # Identifies the rate of units against time at which the resource should be played back for human consumption. If the unit of measure is known, use sub-properties framesPerSecond or inchesPerSecond. - # # @return [RDF::Vocabulary::Term] - # attr_reader :playbackSpeed - # - # # To provide a playlist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :playlist - # - # # To identify the Essence used in a PublicationEvent - # # @return [RDF::Vocabulary::Term] - # attr_reader :playsOut - # - # # To indicate the position of an EditorialObject in an ordered group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :position - # - # # To provide the private email address of an Agent (Contact/Person) - # # @return [RDF::Vocabulary::Term] - # attr_reader :privateEmailAddress - # - # # To provide an private web homepage of an Agent (Contact/Person). - # # @return [RDF::Vocabulary::Term] - # attr_reader :privateHomepage - # - # # To provide the private mobile telephone number of an Agent (Contact/Person). - # # @return [RDF::Vocabulary::Term] - # attr_reader :privateMobileTelephoneNumber - # - # # To provide the private telephone number of an Agent (Contact/Person). - # # @return [RDF::Vocabulary::Term] - # attr_reader :privateTelephoneNumber - # - # # A synopsis or summary provided by the producer at the time of production. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionSynopsis - # - # # To provide textual promotional information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :promotionalInformation - # - # # The date of creation of a Provenance instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provenanceDateCreated - # - # # The date of modification of a Provenance instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provenanceDateModified - # - # # To describe a Provenance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provenanceDescription - # - # # To identify a Provenance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provenanceId - # - # # To name a Provenance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provenanceName - # - # # Range: string, anyURI or Concept. - # # - # # To define a type of Provenance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provenanceType - # - # # To indicate a publication status. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pubStatus - # - # # To provide a description of a PublicationChannel e.g. a TV channel or website. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationChannelDescription - # - # # An identifier attributed to a PublicationChannel. - # # - # # Range: Identifier, anyURI, string - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationChannelId - # - # # To provide a name to a PublicationChannel e.g. a TV channel or website. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationChannelName - # - # # Range: string or PublicationChannel_Type. - # # - # # To define a type of PublicationChannel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationChannelType - # - # # The actual duration of a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationDuration - # - # # The actual end date and time of a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationEndDateTime - # - # # To provide an abstract for a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationEventAbstract - # - # # To provide the description of a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationEventDescription - # - # # Range: Identifier, anyURI, string - # # - # # An identifier attributed to a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationEventId - # - # # To provide a name to a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationEventName - # - # # To provide a title for a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationEventTitle - # - # # A type of PublicationEvent. - # # - # # Range: a string or PublicationEvent_Type - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationEventType - # - # # A description of a PublicationPlan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationPlanDescription - # - # # The end date of a PublicationPlan - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationPlanEndDate - # - # # An identifier attributed to a PublicationPlan. - # # - # # Range: Identifier, anyURI, string - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationPlanId - # - # # A name attributed to a PublicationPlan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationPlanName - # - # # The start date of a PublicationPlan - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationPlanStartDate - # - # # To provide a status regarding the PublicationPlan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationPlanStatus - # - # # To express specifically the schedule date to which a PublicationEvent is related in particular if the broacdast time is after midnight. For example, the schedule date would be May 29th and the programme is published at 1 am on May 30th, while still associated in the schedule with the night of May 29th. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationScheduleDate - # - # # The actual start date and time of a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationStartDateTime - # - # # The end date and time of a PublicationEvent as scheduled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishedEndDateTime - # - # # The start date and time of a PublicationEvent as scheduled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishedStartDateTime - # - # # The title used to identify the work at publication time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishedTitle - # - # # The editorial object associated to a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishes - # - # # To associate a description with a Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingDescription - # - # # To associate an id with a Rating. - # # - # # Range: string or anyURI or Identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingId - # - # # To associate a name with a Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingName - # - # # The maximum value of the scale used for the Rating of a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingScaleMax - # - # # The minimum value of the scale used for rating a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingScaleMin - # - # # To identify the environment in which rating applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingSystemEnvironment - # - # # To identify a Rating system by its name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingSystemName - # - # # To define a type of Rating. - # # - # # Range: string or anyURI or Concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingType - # - # # To express a free text Rating value defined in a rating classification scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingValue - # - # # A flag to indicate that the Essence is ready for publication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :readyForPublication - # - # # A reason given for a rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reason - # - # # To express a reference between Assets, BusinessObjects or Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :references - # - # # To define the top left corner of a zone on the x-axis. If present with regionDelimy, the zone definition is complemented by the associated values of the height and width. - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionDelimX - # - # # To define the bottom right corner of a zone on the y-axis. If present with regionDelimX, the zone definition is complemented by the associated values of the height and width. - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionDelimY - # - # # To identify a Relation. - # # - # # Range: string or Identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationIdentifier - # - # # To define a link in a Relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationLink - # - # # A note to provide additional information about a Relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationNote - # - # # A boolean to define if a Relation is defined within and ordered group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationOrderedGroupFlag - # - # # The order number in a list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationRunningOrderNumber - # - # # Total number of group members in a Relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationTotalNumberOfGroupMembers - # - # # To define a type of Relation. - # # - # # Range: string or Relation_Type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relationType - # - # # To identify substitution. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replaces - # - # # To establish a relation between a BusinessObject and an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :represents - # - # # To express dependency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :requires - # - # # To define the resolution of an Asset e.g. video, image... - # # @return [RDF::Vocabulary::Term] - # attr_reader :resolution - # - # # A desciprtion of a Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceDescription - # - # # Provides the size of a Resource in bytes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceFileSize - # - # # The name of the file containing the Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceFilename - # - # # Range: Identifier or anyURI or string - # # - # # An identifier associated to a Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceId - # - # # To define a type of Resource. - # # - # # Range: Resource_type or anyURI or string - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceIdType - # - # # Information on the Resource locator target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceLocatorTargetInformation - # - # # The name given to a Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceName - # - # # The start offset within a Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceOffset - # - # # The resource offset in normal play time - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceOffsetNormalPlaytime - # - # # The resource offset in edit units - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceOffsetNumberEditUnit - # - # # The resource offset in timecode - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceOffsetTimecode - # - # # The resource offset in timecode dropframe - # # @return [RDF::Vocabulary::Term] - # attr_reader :resourceOffsetTimecodedropframe - # - # # A flag to indicate that righst have been cleared - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsClearanceFlag - # - # # To define the duration of the period when Rights are applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsDuration - # - # # To define the end time until when Rights are applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsEndDateTime - # - # # To express an expression of Rights. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsExpression - # - # # Range: Identifier, anyURI, string - # # - # # An identifier attributed to a set of Rights. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsId - # - # # A link to e.g. a webpage where an expression of the rights can be found and consulted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsLink - # - # # To define the start time since when Rights are applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsStartDateTime - # - # # A list of country or region codes to which Rights do not apply. - # # - # # Range: string or CountryCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsTerritoryExcludes - # - # # A list of country or region codes to which Rights apply. - # # - # # Range: string or CountryCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsTerritoryIncludes - # - # # To identify a type of Rights. - # # - # # Range: a string or a Rights_Type or a ContractType. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightsType - # - # # Range: string or anyURI. - # # - # # To identify a Role. - # # @return [RDF::Vocabulary::Term] - # attr_reader :roleId - # - # # To define a type of Role (not the Role itself). - # # @return [RDF::Vocabulary::Term] - # attr_reader :roleType - # - # # To provide a salutation title e.g M. Ms, Dr, Pr. - # # @return [RDF::Vocabulary::Term] - # attr_reader :salutationTitle - # - # # The frequency at which audio is sampled per second. Also called sampling rate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampleRate - # - # # The size of an audio sample in bits. Also called bit depth. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampleSize - # - # # The type of audio sample. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampleType - # - # # To define the scanning format for a MediaResource. For video, the two main values are "interlaced" or "progressive". - # # @return [RDF::Vocabulary::Term] - # attr_reader :scanningFormat - # - # # To provide a script. - # # @return [RDF::Vocabulary::Term] - # attr_reader :script - # - # # To provide a Season number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasonNumber - # - # # A description of the Service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceDescription - # - # # To attribute an identifiier to a Service. - # # - # # Range: string or Identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceId - # - # # The name of the Service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceName - # - # # Range: string or Service_type - # # - # # The type of a Service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceType - # - # # Provides a shot-by-shot description of a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :shotLog - # - # # Start timestamp e.g. the start time for a MediaResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :start - # - # # A start time expressed as a number of edit units. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startEditUnits - # - # # A start time expressed as a normal play time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startNormalPlayTime - # - # # A start offset time expressed as a number of edit units. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startOffsetEditUnit - # - # # A start offset time expressed as normal play time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startOffsetNormalPlayTime - # - # # A start offset time expressed as timecode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startOffsetTimecode - # - # # A start offset time expressed as timecode with drop frames. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startOffsetTimecodeDropFrame - # - # # A start time expressed as timecode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startTimecode - # - # # A start time expressed as timecode with drop frames. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startTimecodeDropFrame - # - # # A complementary subtitle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subtitle - # - # # To provide a suffix associated with a Person name e.g. Jr. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suffix - # - # # To provide a summary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :summary - # - # # To provide a summary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :synopsis - # - # # to provide a table of content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tableOfContent - # - # # To provide a list of tags. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tag - # - # # To define the system used to provide a TargetAudience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetAudienceSystem - # - # # The height of the text box containing the TextLine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineBoxHeight - # - # # The coordinates on a vertical axis of the position of the top left corner of the text box containing the TextLine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineBoxTopLeftCornerLineNumber - # - # # The coordinates on an horizontal axis of the position of the top left corner of the text box containing the TextLine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineBoxTopLeftCornerPixelNumber - # - # # The width of the text box containing the TextLine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineBoxWidth - # - # # To provide the content of a text line. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineContent - # - # # The end time of a TextLine expressed as a number of edit units. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineEndEditUnits - # - # # The end time of a TextLine expressed as a normal play time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineEndNormalPlayTime - # - # # The end time point of a TextLine in a Scene. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineEndTime - # - # # The end time of a TextLine expressed as timecode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineEndTimecode - # - # # The end time of a TextLine expressed as timecode with drop frames. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineEndTimecodeDropFrame - # - # # The order in which a text line can be found e.g. in a scene. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineOrder - # - # # The start time of a TextLine expressed as a number of edit units. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineStartEditUnits - # - # # The start time of a TextLine expressed as a normal play time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineStartNormalPlayTime - # - # # The start time point of a TextLine in a Scene. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineStartTime - # - # # The start time of a TextLine expressed as timecode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineStartTimecode - # - # # The start time of a TextLine expressed as timecode with drop frames. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textLineStartTimecodeDropFrame - # - # # the tie of creation of an Asset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeCreated - # - # # To express the duration of a TimelineTrack. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timelineTrackDuration - # - # # To provide a duration as a number of edit units. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timelineTrackDurationEditUnits - # - # # To provide a duration as normal time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timelineTrackDurationNormalPlayTime - # - # # The duration expressed as a timecode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timelineTrackDurationTimecode - # - # # The duration expressed as a timecode with drop frames. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timelineTrackDurationTimecodeDropFrame - # - # # 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 - # - # # To provide the total number of episodes in a Series or a Season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalNumberOfEpisodes - # - # # To provide the total number of members in a Group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalNumberOfGroupMembers - # - # # To provide a definition associated to a Track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackDefinition - # - # # Range: Identifier, anyURI, string - # # - # # An Identifier attributed to a Track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackId - # - # # To provide name of a Track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackName - # - # # The type attributed to a Track. - # # - # # Range: string or Track_Type - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackType - # - # # A translated version of the title. - # # @return [RDF::Vocabulary::Term] - # attr_reader :translationTitle - # - # # The username by which a Person is known e.g. when attributing a rating value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :username - # - # # To provide information on the current version of an EditorialObject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # # An alternative title specific to a verison of content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :versionTitle - # - # # The video bitrate. To provide the bitrate at which the MediaResource can be played in bits/second. Current bitrate if constant, and average bitrate if variable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoBitRate - # - # # The maximum video bitrate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoBitRateMax - # - # # The video bitrate mode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoBitRateMode - # - # # The encoding level as defined in specifications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoEncodingLevel - # - # # The encoding level as defined in specifications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoEncodingProfile - # - # # The width of e.g. a video frame typically expressed as a number of pixels, or picture/image in millimeters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :width - # - # # The unit used to measure a width e.g. in pixels or number of lines or millimeters or else. - # # @return [RDF::Vocabulary::Term] - # attr_reader :widthUnit - # - # # The number of words contained in a document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wordCount - # - # # A title used while content is not complete. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workingTitle - # - # end EBUCore = Class.new(RDF::StrictVocabulary("http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#")) do # Ontology definition ontology :"http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#", - "cc:licence": "http://creativecommons.org/licenses/by-sa/3.0/".freeze, - "dc11:contributor": ["Adam Wead, Penn State University".freeze, "Casey Davis, WGBH".freeze, "Chuck McCallum, WGBH".freeze, "Cliff Ingham, City of Bloomington".freeze, "Dalia R. Levine, HBO".freeze, "Drew Myers, WGBH".freeze, "Glenn Clatworthy, PBS".freeze, "Jack Brighton, WILL Public Media".freeze, "Julie Hardesty, Indian University Library".freeze, "Kara van Malssen, AV Preserve".freeze, "Karen Cariani, WGBH".freeze, "Laurence Cook, metaCirque".freeze, "Michael J. Giarlo, Penn State University".freeze, "Peggy Griesinger, George Mason University Libraries".freeze, "Rebecca Fraimow, WGBH".freeze, "Rebecca Guenther, Rebecca Guenther Consulting".freeze, "Sadie Roosa, WGBH".freeze, "Valerie J. Miller, PBS".freeze], - "dc11:description": ["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).".freeze, "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.".freeze, "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.".freeze, "The development of the EBUCore ontology is a joint effort of the EBUCore and PBCore communities.".freeze], - "dc11:rights": "Copyright 2020 EBU".freeze, - "dc11:title": "EBUCore - the Dublin Core for media".freeze, + "http://creativecommons.org/ns#licence": "http://creativecommons.org/licenses/by-sa/3.0/".freeze, + "http://purl.org/dc/elements/1.1/contributor": ["Adam Wead, Penn State University".freeze, "Casey Davis, WGBH".freeze, "Chuck McCallum, WGBH".freeze, "Cliff Ingham, City of Bloomington".freeze, "Dalia R. Levine, HBO".freeze, "Drew Myers, WGBH".freeze, "Glenn Clatworthy, PBS".freeze, "Jack Brighton, WILL Public Media".freeze, "Julie Hardesty, Indian University Library".freeze, "Kara van Malssen, AV Preserve".freeze, "Karen Cariani, WGBH".freeze, "Laurence Cook, metaCirque".freeze, "Michael J. Giarlo, Penn State University".freeze, "Peggy Griesinger, George Mason University Libraries".freeze, "Rebecca Fraimow, WGBH".freeze, "Rebecca Guenther, Rebecca Guenther Consulting".freeze, "Sadie Roosa, WGBH".freeze, "Valerie J. Miller, PBS".freeze], + "http://purl.org/dc/elements/1.1/description": ["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).".freeze, "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.".freeze, "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.".freeze, "The development of the EBUCore ontology is a joint effort of the EBUCore and PBCore communities.".freeze], + "http://purl.org/dc/elements/1.1/rights": "Copyright 2020 EBU".freeze, + "http://purl.org/dc/elements/1.1/title": "EBUCore - the Dublin Core for media".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#".freeze, "http://spinrdf.org/spin#imports": "http://topbraid.org/spin/owlrl-all".freeze, - "owl:backwardCompatibleWith": "http://www.ebu.ch/metadata/ontologies/ebucore/20182011/ebucore.rdf".freeze, - "owl:imports": "http://www.w3.org/2004/02/skos/core".freeze, - "owl:priorVersion": "http://www.ebu.ch/metadata/ontologies/ebucore/20182011/ebucore.rdf".freeze, - "owl:versionInfo": ["Add Concept TargetPlatform and property hasTargetPlatform as a subproperty of Type.".freeze, "Add Concept Theme and define property hasTheme as subproperty of hasSubject.".freeze, "Add ContentEditorialFormat as subclass of Type + hasContentEditorialFormat property as subpropertyof hastype.".freeze, "Add abstract as subpropertyOf description.".freeze, "Add formatId to Format.".freeze, "Add hasRatingProvider equivalent to hasRatingSource in specific environments".freeze, "Add hasRelationType with domain Relation.".freeze, "Add isScheduledOn to associate a PublicationEvent directly with an EditorialObject.".freeze, "Add lead as subproperty of description.".freeze, "Add missing Concepts and propose default types.".freeze, "Add missing multiple range definitions.".freeze, "Add productionSynopsis as subproperty of description.".freeze, "Add property dateProduced and property hasProducer.".freeze, "Add reverse property isTimelineTrackPartOf.".freeze, "Add roleId to identify a Role.".freeze, "Add roleType to define a type of Role.".freeze, "Alignment of Concepts and Types with original EBU and new Dwerft SKOS vocabularies".freeze, "Change hierarchy between Resource and MediaResource and provide hasRelatedResource and hasRelatedMediaResource and similar properties.".freeze, "Change identifier into hasIdentifier.".freeze, "Changed subclasses to dc: with owl:equivalentClass or owl:equivalentProperty.".freeze, "Correct misstyped owl:Classes into rdfs:Classes.".freeze, "Correct property actionType into hasActionType of rnage string or ActionType subclass of Concept.".freeze, "Correct target of end and start as MediaResource.".freeze, "Create property Asset / hasCopyright with range string or Copyright. Same correction for all Rights subclasses e.g. AccessConditions".freeze, "Delete formatName and use skos:prefLabel and skos:definition.".freeze, "Delete hasAssociatedRights has already covered by isCoveredBy.".freeze, "Delete roleDefinition and use skos:definition instead as Role is a subclass of Concept.".freeze, "Had Review and hasReview.".freeze, "Harmonise multi-range definition of properties, when applicable.".freeze, "Move generic properties from BusinessObject/EditorialObject, Resource and MediaResource at Asset level (e.g. title, etc.).".freeze, "Separate mutli-domains and multi-ranges to avoid owl:unionOf statements.".freeze, "Version 1.10".freeze], - type: "owl:Ontology".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2002/07/owl#backwardCompatibleWith": "http://www.ebu.ch/metadata/ontologies/ebucore/20182011/ebucore.rdf".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://www.w3.org/2004/02/skos/core".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://www.ebu.ch/metadata/ontologies/ebucore/20182011/ebucore.rdf".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": ["Add Concept TargetPlatform and property hasTargetPlatform as a subproperty of Type.".freeze, "Add Concept Theme and define property hasTheme as subproperty of hasSubject.".freeze, "Add ContentEditorialFormat as subclass of Type + hasContentEditorialFormat property as subpropertyof hastype.".freeze, "Add abstract as subpropertyOf description.".freeze, "Add formatId to Format.".freeze, "Add hasRatingProvider equivalent to hasRatingSource in specific environments".freeze, "Add hasRelationType with domain Relation.".freeze, "Add isScheduledOn to associate a PublicationEvent directly with an EditorialObject.".freeze, "Add lead as subproperty of description.".freeze, "Add missing Concepts and propose default types.".freeze, "Add missing multiple range definitions.".freeze, "Add productionSynopsis as subproperty of description.".freeze, "Add property dateProduced and property hasProducer.".freeze, "Add reverse property isTimelineTrackPartOf.".freeze, "Add roleId to identify a Role.".freeze, "Add roleType to define a type of Role.".freeze, "Alignment of Concepts and Types with original EBU and new Dwerft SKOS vocabularies".freeze, "Change hierarchy between Resource and MediaResource and provide hasRelatedResource and hasRelatedMediaResource and similar properties.".freeze, "Change identifier into hasIdentifier.".freeze, "Changed subclasses to dc: with owl:equivalentClass or owl:equivalentProperty.".freeze, "Correct misstyped owl:Classes into rdfs:Classes.".freeze, "Correct property actionType into hasActionType of rnage string or ActionType subclass of Concept.".freeze, "Correct target of end and start as MediaResource.".freeze, "Create property Asset / hasCopyright with range string or Copyright. Same correction for all Rights subclasses e.g. AccessConditions".freeze, "Delete formatName and use skos:prefLabel and skos:definition.".freeze, "Delete hasAssociatedRights has already covered by isCoveredBy.".freeze, "Delete roleDefinition and use skos:definition instead as Role is a subclass of Concept.".freeze, "Had Review and hasReview.".freeze, "Harmonise multi-range definition of properties, when applicable.".freeze, "Move generic properties from BusinessObject/EditorialObject, Resource and MediaResource at Asset level (e.g. title, etc.).".freeze, "Separate mutli-domains and multi-ranges to avoid owl:unionOf statements.".freeze, "Version 1.10".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AccessConditions, comment: "The conditions under which content can be accessed.".freeze, label: "Access conditions".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Action, comment: "A class to log Actions.".freeze, label: "Action".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Action_Type, comment: "To define a type of Action.".freeze, label: "Action type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ActiveFormatDescriptorCode, comment: "To define an active format code.".freeze, label: "Active format descriptor code".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Affiliation, comment: "An Organisation to which a Contact is affiliated (with period of validity).".freeze, label: "Affiliation".freeze, - subClassOf: "ebucore:Organisation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Agent, comment: "A person / contact or organisation.".freeze, - equivalentClass: ["dc11:Agent".freeze, "foaf:Agent".freeze], + equivalentClass: ["http://purl.org/dc/elements/1.1/Agent".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze], label: "Agent".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AncillaryData, comment: "Any ancillary data provided with the content\n other than captioning and subtitling.".freeze, label: "Ancillary data".freeze, - subClassOf: "ebucore:DataTrack".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataTrack".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AncillaryDataFormat, comment: "To define the format of AncillaryData such as\n legacy data used to be carried in vertical blanking intervals. This is provided as free\n text in an annotation label or as an identifier pointing to a term in a classification\n scheme.".freeze, label: "Ancillary data format".freeze, - subClassOf: "ebucore:DataFormat".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataFormat".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Animal, comment: "To identify an animal.".freeze, label: "Animal".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AnimalBreedCode, comment: "To provide a breed code for an animal..".freeze, label: "Animal breed code".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AnimalColourCode, comment: "To provide a colour code for an animal..".freeze, label: "Animal colour code".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Annotation, comment: "A class used to annotate Assets.".freeze, label: "Annotation".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Annotation_Type, comment: "To define a type of Annotation.".freeze, label: "Annotation type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Artefact, comment: "To identify and describe artefacts used in a production (on and behind the stage).".freeze, label: "Artefact".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Artefact_Type, comment: "To define a type of artefact.".freeze, label: "Artefact type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Asset, comment: "The Class \"Asset\" is an\n object to which an identifier will be associated at commissioning. It will serve as a\n central reference point to manage rights associated to EditorialObjects, Resources,\n MediaResources or Essences, and PublicationEvents (distribution and exploitation\n conditions).".freeze, label: "Asset".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Asset_Type, comment: "To define a type of asset.".freeze, label: "Asset type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Atmosphere, comment: "To describe a feeling summarising the atmosphere.".freeze, label: "Atmosphere".freeze, - subClassOf: "ebucore:Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudienceLevel, comment: ["The target audience (target region, target\n audience category but also parental guidance recommendation) for which the media\n resource is intended.".freeze, "This is provided as free text in an annotation\n label or as an identifier pointing to a term in a classification scheme.".freeze], label: "Target audience".freeze, - subClassOf: "ebucore:Rating".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudienceRating, comment: "The audience by which the Resource can be\n seen according to ratings like MPAA (http://en.wikipedia.org/wiki/Motion_picture_rating_system) or other organisational / national / local standards.".freeze, label: "Audience rating".freeze, - subClassOf: "ebucore:Rating".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudienceScoreRecordingTechnique, comment: "To define the technique use to measure an audience score.".freeze, label: "Audience score recording technique".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioChannelFunction, comment: "To define the function of an AudioChannel.".freeze, label: "Audio channel function".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioChannelPurpose, comment: "To define the purpose of an AudioChannel.".freeze, label: "Audio channel purpose".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioCodec, comment: "To provide information about an audio codec.".freeze, label: "Audio codec".freeze, - subClassOf: "ebucore:Codec".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioContent, comment: "An audioContent defines one component of a programme (e.g. background\r\n\t\t\t\tmusic), its association with an audioGroup (e.g. a 2.0 audioPackFormat of\r\n\t\t\t\taudioChannelFormats for stereo reproduction), its association with an\r\n\t\t\t\taudioStreamFormat, and its set of loudness parameters.".freeze, label: "Audio content".freeze, - subClassOf: "ebucore:Programme".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Programme".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioContent_Type, comment: "to define a type of AudioContent.".freeze, label: "Audio content type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioDescription, comment: "A Track containing audio description.".freeze, label: "Audio description".freeze, - subClassOf: "ebucore:AudioTrack".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioTrack".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioEncodingFormat, comment: "The encoding format for the audio.".freeze, label: "Audio encoding format".freeze, - subClassOf: "ebucore:EncodingFormat".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EncodingFormat".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioFormat, comment: "To define an AudioFormat.".freeze, label: "Audio format".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioObject, comment: "To define an audio object in reference to the Audio Definition Model (ADM)".freeze, label: "Audio object".freeze, - subClassOf: "ebucore:MediaResource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioProgramme, comment: "A set of one or more audioContent that derive from the same material,\r\n\t\t\t\ti.e. an audioMultiplex, and the definition of its multiplexed audioContents (e.g.\r\n\t\t\t\tforeground and commentary, background music).".freeze, label: "Audio programme".freeze, - subClassOf: "ebucore:Programme".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Programme".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioProgramme_Type, comment: "to define a type of AudioProgramme.".freeze, label: "Audio programme type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioStream, comment: "An audioStreamFormat describes a decodable signal - PCM signal or a Dolby E stream for example. It is composed of one or more AudioTracks.".freeze, label: "Audio stream".freeze, - subClassOf: "ebucore:Stream".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Stream".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioTrack, comment: ["An audioTrack is the basic audio data container of a medium. Attribute is\r\n\t\t\t\tan unambiguous reference to this container in a given medium.".freeze, "An audioTrack object defines a component of an audioStream.\r\n\t\t\t\tA single set of samples or data in the storage medium.".freeze, "Represents a physical container or carrier to hold an audio stream. This\r\n\t\t\t\tshould be usually defined by many attributes such as ID, format (e.g. 48 kHz/24\r\n\t\t\t\tbits), linkage information (e.g. odd/even)…".freeze], label: "Audio track".freeze, - subClassOf: "ebucore:Track".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioTrackPurpose, comment: "To describe the purpose of an AudioTrack e.g. dubbing.".freeze, label: "Audio track purpose".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Award, comment: "To describe an Award and associated information.".freeze, label: "Award".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Award_Type, comment: "To define a type of Award.".freeze, label: "Award type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BMContent, comment: "The FIMS BMContent.".freeze, label: "BMContent".freeze, - subClassOf: "ebucore:EditorialObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BMEssence, comment: "The FIMS Essence".freeze, label: "BMEssence".freeze, - subClassOf: "ebucore:Essence".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Essence".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BMTemplate, comment: "A template describe as a BMEssence.".freeze, label: "BMTemplate".freeze, - subClassOf: "ebucore:Template".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Template".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BibliographicalObject, comment: "Documents of various nature.".freeze, label: "Bibliographical object".freeze, - subClassOf: "ebucore:BusinessObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Biography, comment: "To record a biography.".freeze, label: "Biography".freeze, - subClassOf: "ebucore:BibliographicalObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BibliographicalObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Brand, comment: "A group of EditorialObjects having a Brand as a\n common denominator.".freeze, label: "Brand".freeze, - subClassOf: "ebucore:Group".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BreakingNewsItem, comment: "To describe a breaking news.".freeze, label: "Breaking news item".freeze, - subClassOf: "ebucore:Item".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Item".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessObject, comment: "An image, a document, an annotation\n (descriptive textual metadata or audio/video tag), a tag (time related in audiovisual\n media resources), or an audiovisual media resource (optionally composed of one or more\n fragment / part and / or audio, video data tracks). Other types of BusinessObjects may\n be defined as subclasses.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Business Object".freeze, - "owl:disjointWith": "ebucore:MediaResource".freeze, - subClassOf: "ebucore:Asset".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessObject_Type, comment: "To define a type of business object.".freeze, label: "Business object type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Captioning, comment: "To signal the presence of hard of hearing\n captioning.".freeze, label: "Captioning".freeze, - subClassOf: "ebucore:Track".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CaptioningFormat, comment: "To define the format of captioning.\n Captioning's main use isfor hard of hearing transcription. This is provided as\n free text in an annotation label or as an identifier pointing to a term in a\n classification scheme.".freeze, label: "Captioning format".freeze, - subClassOf: "ebucore:DataFormat".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataFormat".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Cast, comment: "A member of the cast list (a list of performers/actors and associated fictitious\n characters).".freeze, label: "Cast member".freeze, - subClassOf: "ebucore:Agent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Character, comment: "E.g. a fictitious contact / person.".freeze, label: "Character".freeze, - subClassOf: "ebucore:Person".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CityCode, comment: "To allocate a city code.".freeze, label: "City code".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Clip, comment: "For use in models where Clip is common.".freeze, label: "Clip".freeze, - subClassOf: "ebucore:EditorialObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ClosedCaptions, comment: "Closed captioning is provided as separate\n content.".freeze, label: "Closed caption".freeze, - subClassOf: "ebucore:Captioning".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Captioning".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ClosedSubtitling, comment: "Closed subtitles are provided as separate\n content.".freeze, label: "Closed subtitling".freeze, - subClassOf: "ebucore:Subtitling".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subtitling".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Codec, comment: "To provide information on a codec.".freeze, label: "Codec".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Collection, comment: "A group of EditorialObjects. There can be many\n types of collections for which specific sub-classes should be defined. In the worl of\n archives, A collection corresponds to all items belonging to an individual /\n collector.".freeze, label: "Collection".freeze, - subClassOf: "ebucore:Group".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ColourSpace, comment: "The CoulourSpace of a VideoResource. A\n ColourSpace is defined as free text in an annotation label or as an identifier pointing\n to a term in a classification scheme such as\n http://www.ebu.ch/metadata/ontologies/skos/ebu_ColourCodeCS.rdf.".freeze, label: "Colour space".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CommercialCode, comment: "To identify a type of commercial content.".freeze, label: "Commercial code".freeze, - subClassOf: "ebucore:Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Component, comment: "A component e.g. audio, video, data or else or a MediaResource or Essence.".freeze, label: "Component".freeze, - subClassOf: "ebucore:MediaResource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Contact, comment: "A physical person.".freeze, label: "Contact".freeze, - subClassOf: "ebucore:Person".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContainerCodec, comment: "To identify an container codec, e.g. MXF".freeze, label: "Container codec".freeze, - subClassOf: "ebucore:Codec".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContainerEncodingFormat, comment: "To define the conatiner encoding format.".freeze, label: "Container encoding format".freeze, - subClassOf: "ebucore:EncodingFormat".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EncodingFormat".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContainerMimeType, comment: "The definition of the container if available as\n a MIME type. This is provided as free text in an annotation label or as an identifier\n pointing to a term in a classification scheme. For more information:\n http://www.iana.org/assignments/media-types/application/index.html.".freeze, label: "Container Mime type".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContentAlert, comment: "To provide information about a particular type of content potentially sensitive.".freeze, label: "Content alert".freeze, - subClassOf: "ebucore:Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContentEditorialCode, comment: "To define a code of EditorialFormat".freeze, label: "Editorial code".freeze, - subClassOf: "ebucore:Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContentEditorialFormat, comment: "To define an EditorialFormat".freeze, label: "Editorial format".freeze, - subClassOf: "ebucore:Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContractType, comment: "To define a type of contract.".freeze, label: "Contract type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Copyright, comment: "To provide a copyright\n statement.".freeze, label: "Copyright".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Costume, comment: "To identify and describe Costumes used in productions.".freeze, label: "Costume".freeze, - subClassOf: "ebucore:Artefact".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CostumeType, comment: "To define a costume type.".freeze, label: "Costume type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CountryCode, comment: "To identify a country by its ISO code.".freeze, label: "Country code".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CoverageRestrictions, comment: "To provide information on possible restrictions\n regarding the temporal and spatial coverage for publication.".freeze, label: "Coverage restrictions".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreativeCommons, comment: "A set of creative commons rights.".freeze, label: "Creative commons".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Crew, comment: "A member of the Crew.".freeze, label: "Crew member".freeze, - subClassOf: "ebucore:Agent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CuisineStyle, comment: "To identify a style of Cuisine.".freeze, label: "Cuisine style".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CurrencyCode, comment: "To identify a currency by its ISO code.".freeze, label: "Currency code".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataFormat, comment: "To provide addtional technical information on\n the characteristics of data streams in a MediaResource including but not limited to\n AncillaryData, Subtilting and Captioning. Additional specific data format may be defined\n as subclasses of DataFormat.".freeze, label: "Data format".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataTrack, comment: "Ancillary data track e.g. ¨captioning\"\n or \"subtitling\" in addition to video and audio tracks.".freeze, label: "Data track".freeze, - subClassOf: "ebucore:Track".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Department, comment: "A department within and\n organisation.".freeze, label: "Department".freeze, - subClassOf: "ebucore:Organisation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DepictedEvent, comment: "A DepictedEVent is fictitious or historical or\n other sort of Event that the content of the BusinessObject or resource relates\n to.".freeze, label: "Depicted Event".freeze, - subClassOf: "ebucore:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Disclaimer, comment: "To provide a disclaimer of any\n form.".freeze, label: "Disclaimer".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Document, comment: "To describe a publication in the form of a\n document e.g. a html webpage (news item) or a pdf document e.g. a script.".freeze, label: "Document".freeze, - subClassOf: "ebucore:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DocumentFormat, comment: "To provide technical information about the\n format of a document such as the orientation. This is provided as free text in an\n annotation label or as an identifier pointing to a term in a classification\n scheme.".freeze, label: "Document format".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Dopesheet, comment: "Provides additional information about a NewsItem, e.g. date and place, subject.".freeze, label: "Dopesheet".freeze, - subClassOf: "ebucore:Document".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Document".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EditorialObject, comment: "In the audiovisual domain, the Class\n EditorialObject transforms a commissioned concept into an editorial definition of a\n MediaResource before fabrication (in the Production Domain) and Distribution (in the\n Distribution Domain). An EditorialObject is a set of descriptive metadata summarising\n e.g. editing decisions. An EditorialObject can also be a part of an EditorialObject,\n which is defined by its start time and duration. An EditorialObject can also be a group\n of EditorialObjects. For example a series composed of episodes is defined as an\n EditorialObject.".freeze, label: "Editorial Object".freeze, - subClassOf: "ebucore:BusinessObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EditorialObject_Type, comment: "To define a type of editorial object.".freeze, label: "Editorial object type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Emotion, comment: "A class to log Emotions.".freeze, label: "Emotion".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Emotion_Type, comment: "To define a type of emotion.".freeze, label: "Emotion type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EncodingFormat, comment: "To provide a definition of the encoding format\n for audio and video. This is provided as free text in an annotation label or as an\n identifier pointing to a term in a classification scheme e.g.\n http://www.ebu.ch/metadata/ontologies/skos/ebu_AudioCompressionCodeCS.rdf or\n http://www.ebu.ch/metadata/ontologies/skos/ebu_VideoCompressionCodeCS.rdf.".freeze, label: "Encoding".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Episode, comment: "To describe an episode in a series.".freeze, label: "Episode".freeze, - subClassOf: "ebucore:EditorialObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Essence, comment: "Essence is content ready for distribution. Essence can become a MediaResource in further production processes.".freeze, label: "Essence".freeze, - subClassOf: "ebucore:MediaResource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Event, comment: ["Additional types of event shall be defined as\n new sub-classes of event.".freeze, "An event related to the media resource, e.g.\n depicted in the resource (possibly fictional), etc.".freeze], equivalentClass: "http://www.bbc.co.uk/ontologies/coreconcepts/Event".freeze, label: "Event".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EventType, comment: "To define a type of event.".freeze, label: "Event type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExclusivityType, comment: "To define a type of exclusity rights.".freeze, label: "Exclusivity type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExploitationIssues, comment: "To highlight potential exploitation\n issues.".freeze, label: "Exploitation issues".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Feature, comment: "The editorial object for a feature film.".freeze, label: "Feature".freeze, - subClassOf: "ebucore:EditorialObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FictionalEvent, comment: "To describe a fictional Event.".freeze, label: "Fictional event".freeze, - subClassOf: "ebucore:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FictionalLocation, comment: "To describe a fictional Location.".freeze, label: "Fictional location".freeze, - subClassOf: "ebucore:Location".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FictionalOrganisation, comment: "To define a fictional Organisation.".freeze, label: "Fictional organisation".freeze, - subClassOf: "ebucore:Organisation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FictionalPerson, comment: "To describe a fictional Person, e.g. a character in a drama.".freeze, label: "Fictional person".freeze, - subClassOf: "ebucore:Person".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FileFormat, comment: "A file format for Resources other than\n audiovisual resources. The format is defined as free text or pointing at a term in a\n classification scheme e.g.\n http://www.ebu.ch/metadata/ontologies/skos/ebu_FileFormatCS.rdf.".freeze, label: "File format".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Food, comment: "To describe Food shown or consumed in productions.".freeze, label: "Food".freeze, - subClassOf: "ebucore:Artefact".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FoodStyle, comment: "To define a style of food.".freeze, label: "Food style".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Format, comment: "The format provides technical information on\n the format of a Resource. A BusinessObject can be instantiated in a variety of Resources\n each in a particular Format. Other specific data formats may be defined as subclasses of\n format.".freeze, label: "Format".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Generation, comment: "Identifies the generation of a version of a resource, i.e. master, edit master, distribution copy, etc.".freeze, label: "Generation".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Genre, comment: "This class shall be used to provide information\n on the genre of the BusinessObject or Resource. This is provided as free text in an\n annotation label or as an identifier pointing to a term in a classification scheme e.g.\n http://www.ebu.ch/metadata/ontologies/skos/ebu_ContentGenreCS.rdf or\n http://www.ebu.ch/metadata/ontologies/skos/ebu_EditorialFormatCodeCS.rdf.".freeze, label: "Genre".freeze, - subClassOf: "ebucore:Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Group, comment: "To define a collection / group of media\n resources, for example a series made of episodes.".freeze, label: "Group".freeze, - subClassOf: "ebucore:Asset".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IPRRestrictions, comment: "To provide information on intellectual\n property.".freeze, label: "IPR restrictions".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Identifier, comment: "To support the use of structured identifiers.".freeze, label: "Identifier".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IdentifierType, comment: "To define a type of identifier.".freeze, label: "Identifier type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Image, comment: "A still image / thumbnail / key frame / logo\n related to the media resource or being the media resource itself.".freeze, label: "Image".freeze, - subClassOf: "ebucore:BusinessObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ImageCodec, comment: "to identify a codec for images".freeze, label: "Image codec".freeze, - subClassOf: "ebucore:Codec".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ImageFormat, comment: "To provide technical information about the\n format of an image such as the orientation. This is provided as free text in an\n annotation label or as an identifier pointing to a term in a classification\n scheme.".freeze, label: "Image format".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IntentionCode, comment: "To indicate the purpose for which content was created.".freeze, label: "Intention code".freeze, - subClassOf: "ebucore:Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Item, comment: "An item e.g. newsItem or sportItem".freeze, label: "Item".freeze, - subClassOf: "ebucore:EditorialObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :KeyCareerEvent, comment: "To describe a key career Event of a Contact.".freeze, label: "Key career event".freeze, - subClassOf: "ebucore:KeyEvent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#KeyEvent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :KeyEvent, comment: "To describe a significant event.".freeze, label: "Key event".freeze, - subClassOf: "ebucore:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :KeyPersonalEvent, comment: "A key personal Event of a Contact.".freeze, label: "Key personal event".freeze, - subClassOf: "ebucore:KeyEvent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#KeyEvent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Keyframe, comment: "A key frame is a frame extarcted from video,\n e.g. representative of a part of a MediaResource.".freeze, label: "key frame".freeze, - subClassOf: "ebucore:Picture".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Keyword, comment: "To proivde keywords and define key concepts\n illustrating the content of the Resource or EditorialObject. This is provided as free\n text in an annotation label or as an identifier pointing to a term in a classification\n scheme.".freeze, equivalentClass: "http://www.bbc.co.uk/ontologies/coreconcepts/Theme".freeze, label: "Keyword".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Language, comment: "To provide information on languages present in\n the BusinessObject and its purpose. This is provided as free text in an annotation label\n or as an identifier pointing to a term in a classification scheme.Other language\n specific types may be added as subclasses of language.".freeze, label: "Language".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Licensing, comment: "To define the licensing terms associated with an Asset.".freeze, label: "Licensing".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Link, comment: "To define a custom link.".freeze, label: "Link".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Location, comment: ["A location related to the media resource, e.g.\n depicted in the resource (possibly fictional) or where the resource was created\n (shooting location), etc.".freeze, "A type of location is defined as a sub-class of \n location.".freeze, "This is provided as free text in an annotation\n label or as an identifier pointing to a term in a classification scheme.".freeze], equivalentClass: "http://www.bbc.co.uk/ontologies/coreconcepts/Place".freeze, label: "Location".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LocationCode, comment: "A code given to a Location.".freeze, label: "Location code.".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LocationTimeType, comment: "To define a type of time at a location.".freeze, label: "Location time type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LocationType, comment: "To define a type of location.".freeze, label: "Location type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Locator, comment: ["Custom attributes are to be associated by implementers.".freeze, "To provide information about complex locators.".freeze], label: "Locator".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Logo, comment: "A Logo allows to visually identify an\n organisation, publicationService, publicationChannel, or ratings /\n parentalGuidance".freeze, label: "Logo".freeze, - subClassOf: "ebucore:Picture".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaFragment, comment: "A MediaFragment is a temporal or spatial segment of a resource identified by a MediaGragment URI (http://www.w3.org/2008/WebVideo/Fragments/WD-media-fragments-spec/).".freeze, label: "Media Fragment".freeze, - subClassOf: "ebucore:MediaResource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaResource, comment: "The use of MediaResource is reserved to\n audiovisual content. In a production process, several MediaResources can be edited and assembled to realsie an Essence ready for distribution (see IMF package and OPL)".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, label: "Media Resource".freeze, - "owl:disjointWith": "ebucore:BusinessObject".freeze, - subClassOf: "ebucore:Asset".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaResource_Type, comment: "To define a type of MediaResource.".freeze, label: "Media resource type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaType, comment: "To provide additional information on the type of media.".freeze, label: "Media type".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Medium, comment: "To provide information on the medium formats in\n which the resource is available. This is provided as free text in an annotation label or\n as an identifier pointing to a term in a classification scheme.".freeze, label: "Medium".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MetadataTrack, comment: "A Track on which metadata is embedded (e.g. MXF).".freeze, label: "Metadata track".freeze, - subClassOf: "ebucore:Track".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MimeType, comment: "The definition of the container if available as\n a MIME type. This is provided as free text in an annotation label or as an identifier\n pointing to a term in a classification scheme. For more information:\n http://www.iana.org/assignments/media-types/index.html.".freeze, label: "Mime type".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NewsItem, comment: "A NewsItem aggregates all information about a particular news event.".freeze, label: "News Item".freeze, - subClassOf: "ebucore:Item".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Item".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ObjectType, comment: "To specify the type of BusinessObject e.g. and\n EditorialObject of type \"programme\" or clip\". This is\n provided as free text in an annotation label or as an identifier pointing to a term in a\n classification scheme e.g.\n http://www.ebu.ch/metadata/ontologies/skos/ebu_ObjectTypeCodeCS.rdf.".freeze, label: "Object type".freeze, - subClassOf: "ebucore:Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OpenCaptions, comment: "Open Captions are burned in the\n image.".freeze, label: "Open captions".freeze, - subClassOf: "ebucore:Captioning".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Captioning".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OpenSubtitling, comment: "Open subtitles are burned in the\n image.".freeze, label: "Open subtitling".freeze, - subClassOf: "ebucore:Subtitling".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subtitling".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Organisation, comment: "An organisation (business, corporation, federation, etc.) or moral agent (government body).".freeze, - equivalentClass: ["foaf:Organization".freeze, "http://www.bbc.co.uk/ontologies/coreconcepts/Organisation".freeze], + equivalentClass: ["http://www.bbc.co.uk/ontologies/coreconcepts/Organisation".freeze, "http://xmlns.com/foaf/0.1/Organization".freeze], label: "Organisation".freeze, - subClassOf: "ebucore:Agent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OriginalLanguage, comment: "The original language in which the\n BusinessObject or Resource has been created and released. This is provided as free text\n in an annotation label or as an identifier pointing to a term in a classification\n scheme.".freeze, label: "Language".freeze, - subClassOf: "ebucore:Language".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Language".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Part, comment: ["A Fragment is a particular section of a\n MediaResource identified by a start and end time or duration. Fragment can also be\n called segment or part.".freeze, "One of more media fragment (audio, video, data)\n composing an audiovisual media resource. In other ontolgies fragment is often referred\n to e.g. as a 'part' or 'segment' or\n 'fragment'.".freeze], label: "Part, Fragment, Segment".freeze, - subClassOf: "ebucore:EditorialObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Part_Type, comment: "To define a type or part.".freeze, label: "Part type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Party, comment: "To identify a Party intervening in a transaction or contractual agreement.".freeze, label: "Party".freeze, - subClassOf: "ebucore:Agent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Person, comment: "To describe a Person.".freeze, - equivalentClass: ["foaf:Person".freeze, "http://www.bbc.co.uk/ontologies/coreconcepts/Person".freeze], + equivalentClass: ["http://www.bbc.co.uk/ontologies/coreconcepts/Person".freeze, "http://xmlns.com/foaf/0.1/Person".freeze], label: "Person".freeze, - subClassOf: "ebucore:Agent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalResource, comment: "To describe a physical resource e.g. a tape.".freeze, label: "Physical resource".freeze, - subClassOf: "ebucore:MediaResource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Pictogram, comment: "A visual / graphical representation of a concept.".freeze, label: "Pictogram".freeze, - subClassOf: "ebucore:Picture".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Picture, comment: "A photography, a logo, a pictogram, etc.".freeze, - equivalentClass: "foaf:img".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/img".freeze, label: "Picture".freeze, - subClassOf: "ebucore:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PictureDisplayFormat, comment: "To define a picture display format code.".freeze, label: "Picture display format code".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Platform, comment: "A platform like a network or operator platform.".freeze, label: "Platform".freeze, - subClassOf: "ebucore:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Programme, comment: "An EditorialObject corresponding to a\n MediaResource ready for publication.".freeze, label: "Programme".freeze, - subClassOf: "ebucore:EditorialObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Props, comment: "To identify and describe Props used in productions (e.g. vehicles, objects of various shapes and brand and purpose, etc.).".freeze, - equivalentClass: "foaf:Agent".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Agent".freeze, label: "Props".freeze, - subClassOf: "ebucore:Artefact".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Provenance, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationChannel, comment: "The name of the channel through which a\n Resource has been published as a PublicationEvent. A PublicationChannel can use a\n variety of medias e.g. broadcast or online.".freeze, label: "Publication Channel".freeze, - subClassOf: "ebucore:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationChannel_Type, comment: "To define a type of publication channel.".freeze, label: "Publication channel type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationEvent, comment: "To describe any manifestation of a media\n resource on any media (live, on demand, catch-up TV, etc.) and the appropriate\n PublciationChannel.".freeze, label: "Publication Event".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationEvent_Type, comment: "To define a type of publication event.".freeze, label: "Publication event type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationHistory, comment: "A collection of PublicationEvents through which\n a resource has been published.".freeze, label: "Publication History".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationMedium, label: "Publication medium".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationPlan, comment: "A collection of PublicationEvents organised as a PublicationPlanning.".freeze, label: "Publication History".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationPlan_Type, comment: "To define a type of publication plan.".freeze, label: "Publication plan type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioProgramme, comment: "A programme for distribution on radio\n channels.".freeze, label: "Radio Programme".freeze, - subClassOf: "ebucore:Programme".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Programme".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Rating, comment: ["All the information about the rating/evaluation\n given to a media resource by an Agent i.e. a person/Contact or\n Organisation.".freeze, "This is provided as free text in an annotation\n label or as an identifier pointing to a term in a classification scheme.".freeze], + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze], label: "Rating".freeze, - "owl:disjointWith": ["ebucore:Asset".freeze, "ebucore:BusinessObject".freeze, "ebucore:MediaResource".freeze, "ebucore:PublicationEvent".freeze], - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Record, comment: "The record the description of an Asset.".freeze, label: "Record".freeze, - subClassOf: "ebucore:BibliographicalObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BibliographicalObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RegionCode, comment: "To define a region.(@en}".freeze, label: "Region code".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Relation, comment: "To define links and relations.".freeze, label: "Relation".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Relation_Type, comment: "To specify a type of relation.".freeze, label: "Relation type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Resource, comment: "To describe a Resource.".freeze, label: "Resource".freeze, - subClassOf: "ebucore:Asset".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Resource_Type, comment: "To define a type of resource.".freeze, label: "Resource type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Review, comment: "To provide a Review.".freeze, label: "Review".freeze, - subClassOf: "ebucore:Item".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Item".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Rights, comment: "To provide information on the rights, including\n intellectual property, related to a BusinessObject or Resource.".freeze, label: "Rights".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RightsClearance, comment: "To signal that rights have been cleared (or\n not)".freeze, label: "Rights Clearance".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RightsType, comment: "To define a type of Rights.".freeze, label: "Rights type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Role, comment: "To define the role / action of an agent. This\n is provided as free text in an annotation label or as an identifier pointing to a term\n in a classification scheme.".freeze, label: "Role".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Scene, comment: "A specifc type of Part.".freeze, label: "Scene".freeze, - subClassOf: "ebucore:Part".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Season, comment: "A series can be composed of one or more seasons\n clustering a certain number of episodes. Fro this reason, seasons are related to series\n using the isRelatedTo property.".freeze, label: "Season".freeze, - subClassOf: "ebucore:Group".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Series, comment: "Series is a particular type of collection. TV\n or Radio Series are composed of Episodes.".freeze, label: "Series".freeze, - subClassOf: "ebucore:Group".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Service, comment: "A service is the umbrella under which one or\n more PublicationChannel is operated.".freeze, label: "Service".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Service_Type, comment: "To define a type of service.".freeze, label: "Service type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Shot, comment: "A specifc type of Part.".freeze, label: "Shot".freeze, - subClassOf: "ebucore:Part".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SignLanguageCode, comment: "To identify a sign language by its code.".freeze, label: "Sign language code".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Signing, comment: "To signal the presence of Signing for hard of\n hearing users. The type of Signing (e.g. incursted in or else) or language of Signing\n can be specified using the appropriate properties.".freeze, label: "Signing".freeze, - subClassOf: "ebucore:VideoTrack".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoTrack".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SigningFormat, comment: "To provide additional information on the\n signing format. This is provided as free text in an annotation label or as an identifier\n pointing to a term in a classification scheme.".freeze, label: "Signing format".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportItem, comment: "A SportItem aggregates all information about a sport event.".freeze, label: "Sport item".freeze, - subClassOf: "ebucore:Item".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Item".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Staff, comment: "A member of Staff.".freeze, label: "Staff member.".freeze, - subClassOf: "ebucore:Person".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Standard, comment: "identifies the technical video standard of a resource, i.e. NTSC or PAL.".freeze, label: "Standard".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Sticker, comment: "A sticker associated with a Costume.".freeze, label: "Sticker".freeze, - subClassOf: "ebucore:Picture".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Storage_Type, comment: "The type of storage used for the repository.\n This is provided as free text in an annotation label or as an identifier pointing to a\n term in a classification scheme.".freeze, label: "Storage type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Stream, comment: "A continuous stream of bits.".freeze, label: "Stream".freeze, - subClassOf: "ebucore:Component".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Component".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Subject, comment: "A term describing the topic covered by the\n BusinessObject or resource. This is provided as free text in an annotation label or as\n an identifier pointing to a term in a classification scheme.".freeze, label: "Subject".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Subtitling, comment: "To signal the presence of subtitles for\n translation in alternative languages.".freeze, label: "Subtitling".freeze, - subClassOf: "ebucore:Track".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SubtitlingFormat, comment: "To define the format of subtitling.\n subtitling's main use isfor translation. This is provided as free text in an\n annotation label or as an identifier pointing to a term in a classification\n scheme.".freeze, label: "Subtitling format".freeze, - subClassOf: "ebucore:DataFormat".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataFormat".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TVProgramme, comment: "A programme for distribution on television\n channels.".freeze, label: "TV Programme".freeze, - subClassOf: "ebucore:Programme".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Programme".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TargetAudience, comment: "To identify the audience for which the content was created.".freeze, label: "Target audience".freeze, - subClassOf: "ebucore:Type".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TargetPlatform, comment: "To specify a target platform.".freeze, label: "Target Platform".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Team, comment: "To define a Team.".freeze, - equivalentClass: "foaf:Group".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Group".freeze, label: "Team".freeze, - subClassOf: "ebucore:Agent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Template, comment: "An Essence defined as a Template with all associated technical parameters.".freeze, label: "Template".freeze, - subClassOf: "ebucore:MediaResource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TerritoryCode, comment: "To identify a territory e.g. by its UN code.".freeze, label: "Territory code".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TextAnnotation, comment: "A class specific to the annotation of a text or portions of text.".freeze, label: "Text Annotation".freeze, - subClassOf: "ebucore:Annotation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TextLine, comment: "To provide lines of text extracted from or additional to the resource.".freeze, label: "Text line".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TextLine_Type, comment: "To define a TextLine type.".freeze, label: "Text line type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TextUsageType, comment: "To specify the usage of a text.".freeze, label: "Text usage type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Theme, comment: "To define a Theme associated with an Asset.".freeze, label: "Theme".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Thumbnail, comment: "A thumbnail is a low resolution picture that\n can be associated with EditorialObjects or e.g. MediaResources or\n Contacts.".freeze, label: "Thumbnail".freeze, - subClassOf: "ebucore:Picture".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TimecodeTrack, comment: "A track with timecode information e.g. in MXF.".freeze, label: "Timecode track".freeze, - subClassOf: "ebucore:Track".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TimedTextAuthoringTechnique, comment: "To define a timed text authoring technique.".freeze, label: "Timed text authoring technique".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TimedTextContentType, comment: "To define a type of timed text.".freeze, label: "Timed text content type".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TimedTextSubtitleTargetFormat, comment: "To define a timed text subtitle format.".freeze, label: "Timed text subtitle target format".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TimelineTrack, comment: "To define a time sequence of EditorialObjects.".freeze, label: "Timeline track".freeze, - subClassOf: "owl:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TimelineTrack_Type, comment: "To specify a type or TimelineTrack.".freeze, label: "Timeline track type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Topic, comment: "A type subject for use in some contexts. This\n is provided as free text in an annotation label or as an identifier pointing to a term\n in a classification scheme.".freeze, label: "Topic".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Track, comment: "Audiovisual content can be composed of audio,\n video and data Tracks (including captioning and subtitling).".freeze, label: "Track".freeze, - subClassOf: "ebucore:MediaResource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TrackPurpose, comment: "To define the prupose of a track.".freeze, label: "Track purpose".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Track_Type, comment: "To define a type of track.".freeze, label: "Track type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Type, comment: "An expression of type in textual form or as a term from a classification scheme.".freeze, label: "Type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UsageRestrictions, comment: "To define a set of UsageRestrictions.".freeze, label: "Usage restrictions".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UsageRights, comment: "Usage rights associated with content.".freeze, label: "Usage rights".freeze, - subClassOf: "ebucore:Rights".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Version, comment: "To specifically identify a Version of an EditorialObject.".freeze, label: "Version".freeze, - subClassOf: "ebucore:EditorialObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoCodec, comment: "To provide information about a video codec.".freeze, label: "Video codec".freeze, - subClassOf: "ebucore:Codec".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoEncodingFormat, comment: "The encoding format of the video.".freeze, label: "Video encoding format".freeze, - subClassOf: "ebucore:EncodingFormat".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EncodingFormat".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoFormat, comment: "To define an VideoFormat.".freeze, label: "Video format".freeze, - subClassOf: "ebucore:Format".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoStream, comment: "A decodable video stream of bits.".freeze, label: "Video stream".freeze, - subClassOf: "ebucore:Stream".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Stream".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoTrack, comment: "A specialisation of Track for Video to provide\n a link to specific data properties such as frameRate, etc. Signing is another possible\n example of video track. Specific VideoTracks such as Signing can be defined as sub\n VideoTracks.. In advanced systems, different VideoTracks can be used to provide e.g.\n different viewing angles.".freeze, label: "Video track".freeze, - subClassOf: "ebucore:Track".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WrappingType, comment: "To define a type of wrapping.".freeze, label: "Wrapping type".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :DID, comment: "The Data Identifier word (along with the SDID,\n if used), indicates the type of ancillary data that the packet corresponds\n to.".freeze, - domain: "ebucore:AncillaryData".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze, label: "DID".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :SDID, comment: "Secondary data identification word for\n ancillary data. Send mode identifier. An identifier which indicates the transmission\n timing for closed caption data.".freeze, - domain: "ebucore:AncillaryData".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze, label: "SDID".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :abrigedTitle, comment: "An abridged title.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Abridged title".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:alternativeTitle".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :abstract, comment: "To provide an abstract.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Abstract".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionDescription, comment: "The description of an Action.".freeze, - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionId, comment: ["An identifier attributed to an Action.".freeze, "Range: anyURI or string or Identifier".freeze], - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionName, comment: "The name of an Action.".freeze, - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionTimestamp, comment: "The time when the Action occurs.".freeze, - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action timestamp".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionTimestampEditUnits, comment: "The edit unit number at which the Action occurs.".freeze, - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action edit unit number".freeze, - range: "xsd:long".freeze, - subPropertyOf: "ebucore:actionTimestamp".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#long".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#actionTimestamp".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionTimestampNormalPlayTime, comment: "The normal play time at which the Action occurs.".freeze, - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action normal play time".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:actionTimestamp".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#actionTimestamp".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionTimestampTimecode, comment: "The timecode at which the Action occurs.".freeze, - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action timecode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:actionTimestamp".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#actionTimestamp".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionTimestampTimecodeDropFrame, comment: "The timecode (dropframe) at which the Action occurs.".freeze, - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action timecode (dropframe)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:actionTimestamp".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#actionTimestamp".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionType, comment: ["A type of Action.".freeze, "Range: Action_type or string".freeze], - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action type".freeze, - range: ["ebucore:Action_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :activityEndDate, comment: "To provide the end date of activity of an Organisation.".freeze, - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "Activity end date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :activityStartDate, comment: "To provide the start date of activity of an Organisation.".freeze, - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "Activity start date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :adultContent, comment: "A flag to indiucate adult content.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Adult content flag".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :affiliationEndDate, comment: "The date of end of Affiliation.".freeze, - domain: "ebucore:Affiliation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Affiliation".freeze, label: "Affiliation end date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :affiliationStartDate, comment: "The date of Affiliation.".freeze, - domain: "ebucore:Affiliation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Affiliation".freeze, label: "Affiliation start date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :age, comment: "The age of a Contact/Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Age".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentDbpedia, comment: "A link to a DBPedia page.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "DBPedia".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentLinkedData".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentLinkedData".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentDescription, comment: "To provide a description of an Agent.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentEmailAddress, comment: "To provide an email address.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "email".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentFacebook, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Facebook".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentSocialMedia".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentSocialMedia".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentFee, comment: "The fee of an Agent.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Agent fee".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentFlickr, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Flickr".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentSocialMedia".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentSocialMedia".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentId, comment: ["An identifier attributed to an Agent.".freeze, "Range: an Identifier or anyURI or string.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Agent identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentImdb, comment: "A link to an imdb page.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Wikidata".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentLinkedData".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentLinkedData".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentInstagram, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Instagram".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentSocialMedia".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentSocialMedia".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentLinkedData, comment: ["Range: a URL or URI.".freeze, "To provide a hook to linked data.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Agent linked data".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentLinkedIn, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "LinkedIn".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentSocialMedia".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentSocialMedia".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentMobileTelephoneNumber, comment: "To provide the mobile telephone number of an\n Agent (Contact/Person or organisation)".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Mobile".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:agentTelephoneNumber".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentTelephoneNumber".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentName, comment: "To provide a name of an Agent.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentNickname, comment: "To provide a nickname of a Contact/Person.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Nickname".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentPreviousName, comment: "To provide the previous name of a Contact/Person.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Previous name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentRelatedInformationLink, comment: "To provide a link to a web resource containing\n information related to an Agent (Contact/Person or Organisation).".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Related information link".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentRelatedLink".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentRelatedLink".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentRelatedLink, comment: "To provide a link to e.g. a web resource related to an Agent.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Related link".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentRelatedPressLink, comment: "To provide a link to a web resource containing\n information related to an Agent (Contact/Person or Organisation).".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Related press link".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentRelatedLink".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentRelatedLink".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentSocialMedia, comment: "Links to an Agent's social media.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Socail media".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentTelephoneNumber, comment: "To provide the telephone number of an Agent\n (Contact/Person or Organisation).".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Telephone".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentTwitter, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Twitter".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentSocialMedia".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentSocialMedia".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentType, comment: ["Range: string or anyURI or Concept.".freeze, "To define a type of Agent.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Agent type".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentWebHomepage, comment: "To provide the address of the webpage of an\n Agent (Contact/Person or Organisation).".freeze, - domain: "ebucore:Agent".freeze, - equivalentProperty: "foaf:homepage".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + equivalentProperty: "http://xmlns.com/foaf/0.1/homepage".freeze, label: "Homepage".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentWikidata, comment: "A link to a wikidata page.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Wikidata".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentLinkedData".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentLinkedData".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agentWikipedia, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Wikipedia".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentSocialMedia".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentSocialMedia".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alternativeTitle, comment: "To provide an alternative title.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Alternative title.".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :animalBirthYear, comment: "To year of birth of an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal birth year".freeze, - range: "xsd:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :animalCharacterName, comment: "To associate a fictitious character name with an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal character name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :animalCode, comment: "To associate a code with an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal code".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :animalDescription, comment: "To describe an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :animalGender, comment: "To give the gender of an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal gender".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :animalId, comment: "To associate an Id with an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal Id".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :animalName, comment: "To name an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :animalPassport, comment: "To replicate the passport of an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal passport".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationConfidence, comment: "To estimate the confidence in an Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation confidence".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationCurationDateTime, comment: "To provide the date and time when an Annotation has been reviewed.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation curation date & time".freeze, - range: "xsd:dateTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationDescription, comment: "To describe an Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationId, comment: "To identify an Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation Id".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationName, comment: "To name an Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationSaliency, comment: "To estimate the saliency of an Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation saliency".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationType, comment: ["Range: string, anyURI or Concept.".freeze, "To define a type of Annotation.".freeze], - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation type".freeze, - range: ["ebucore:Annotation_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appliesOutOf, comment: ["Range: string or CountryCode.".freeze, "To define the Location (e.g. country, region) to which Rating and TargetAudience do NOT apply.".freeze], - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Exclusion area".freeze, - range: "ebucore:CountryCode".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CountryCode".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appliesTo, comment: "To identify the media resource to which the Rating applies.".freeze, - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Media resource".freeze, - range: "ebucore:Asset".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applyTo, comment: "The Asset to which Rights apply.".freeze, - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Asset".freeze, - range: "ebucore:Asset".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :approvedBy, comment: ["Range: Agent or string".freeze, "To identify the Agent who approved the EditorialObject.".freeze], - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Agent".freeze, - range: "ebucore:Agent".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactAvailability, comment: "To flag the availability of an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact availability flag".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactBoxHeight, comment: "The height of the box containing the Artefact.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Artefact box height.".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactBoxTopLeftCornerLineNumber, comment: "The coordinates on a vertical axis of the position of the top left corner of the box containing the Artefact.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Artefact box top left corner Y position.".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactBoxTopLeftCornerPixelNumber, comment: "The coordinates on an horizontal axis of the position of the top left corner of the box containing the Artefact.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Artefact box top left corner X position.".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactBoxWidth, comment: "The width of the box containing the Artefact.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Artefact box width.".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactBrand, comment: "To specify the brand of an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact brand".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactColour, comment: "To provide the clour(s) of an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact colour(s)".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactComment, comment: "To provide a contextual comment about an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact comment".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactDateOfPurchase, comment: "The date when an Artefact was purchased. .".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact date of purchase".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactDateOfSell, comment: "The date when an Artefact was sold.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact date of sell".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactDescription, comment: "A description of an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactId, comment: ["Range: string or Identifier.".freeze, "To identify an Artefact.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact Identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactModel, comment: "To specify a model of an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact model".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactName, comment: "A name associated with an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactPeriod, comment: "To specify the period associated with an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact period".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactPriceAmount, comment: "To specifythe price of an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact price".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactReference, comment: "To specify a reference of an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact reference".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactStyle, comment: "To specify the style associated with an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact style".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactType, comment: ["Range: string or Artefact_type.".freeze, "To specify the type of an Artefact.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact type".freeze, - range: ["ebucore:Artefact_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactUsageHistory, comment: "To provide information on the usage history of an Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact usage history".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artefactWebsite, comment: "To specify a website where more \tinformation can be found on the Artefact.".freeze, - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact website".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :aspectRatio, comment: "To specify the aspect ratio.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Aspect ratio".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assetDescription, comment: "To provide a description of an Asset.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assetId, comment: ["An identifier attributed to an Asset.".freeze, "Range: an Identifier or anyURI or string.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Asset identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assetName, comment: "To provide a name of an Asset.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assetType, comment: ["Range: string or anyURI or Concept.".freeze, "To define a type of an Asset.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Asset type".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audioBitRate, comment: "The audio bitrate.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio bitrate".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "ebucore:bitRate".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#bitRate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audioBitRateMax, comment: "The max audio bitrate.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio bitrate".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "ebucore:bitRateMax".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#bitRateMax".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audioBitRateMode, comment: "The audio bitrate mode.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio bitrate mode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:bitRateMode".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#bitRateMode".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audioChannelNumber, comment: "The total number of audio channels contained in\n the MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio channel number".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audioEncodingLevel, comment: "The encoding level as defined in specifications.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio encoding level".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:encodingLevel".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#encodingLevel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audioEncodingProfile, comment: "The encoding profile as defined in specifications.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio encoding profile".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:encodingProfile".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#encodingProfile".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audioTrackConfiguration, comment: "The configuration of audio tracks contained in\n the MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio track configuration".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audioTrackNumber, comment: "The total number of audio tracks contained in\n the MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio track number".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awardCeremony, comment: "To provide an Award ceremony name.".freeze, - domain: "ebucore:Award".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, label: "Award ceremony".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awardDate, comment: "To provide an date when an Award was delivered.".freeze, - domain: "ebucore:Award".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, label: "Award date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awardDescription, comment: "To provide a description for an Award.".freeze, - domain: "ebucore:Award".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, label: "Award description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awardId, comment: ["Range: string or Identifier".freeze, "To identify an Award.".freeze], - domain: "ebucore:Award".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, label: "Award identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awardName, comment: "To provide the name of an Award.".freeze, - domain: "ebucore:Award".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, label: "Award name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awardType, comment: ["Range: string or Award_Type".freeze, "To define a type of Award.".freeze], - domain: "ebucore:Award".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, label: "Award type".freeze, - range: ["ebucore:Award_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitDepth, comment: "To provide the bitdepth at which the\n MediaResource has been encoded.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:averageBitRate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#averageBitRate".freeze, label: "Bit depth".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitRate, comment: "To provide the bitrate at which the\n MediaResource can be played in bits/second. Current bitrate if constant, and average bitrate if variable.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:averageBitRate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#averageBitRate".freeze, label: "Bitrate".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitRateMax, comment: "The maximum bitrate when variable, in bits per second.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Maximum bitrate".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitRateMode, comment: "A flag to indicate if the bit rate is fixed or\n variable.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Bitrate mode".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitRateOverall, comment: "To provide the overall bitrate at which the\n MediaResource can be played in bits/second. Current bitrate if constant, and average bitrate if variable.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:averageBitRate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#averageBitRate".freeze, label: "Overall bitrate".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookmark, comment: "To provide a bookmark.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Bookmark".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :businessObjectDescription, comment: "To provide a description of an BusinessObject.".freeze, - domain: "ebucore:BusinessObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, label: "Description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :businessObjectId, comment: ["An identifier attributed to an BusinessObject.".freeze, "Range: an Identifier or anyURI or string.".freeze], - domain: "ebucore:BusinessObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, label: "BusinessObject identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :businessObjectName, comment: "To provide a name of an BusinessObject.".freeze, - domain: "ebucore:BusinessObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, label: "Name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :businessObjectType, comment: ["A type attributed to a BusinessObject.".freeze, "Range: string or BusinessObjectType".freeze], - domain: "ebucore:BusinessObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, label: "Business Object type".freeze, - range: ["ebucore:BusinessObject_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterDescription, comment: "To provide the description of a Character.".freeze, - domain: "ebucore:Character".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Character".freeze, label: "Character description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterEndIndex, comment: "To identify the end character index of the portion of text to which the Annotation applies.".freeze, - domain: "ebucore:TextAnnotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextAnnotation".freeze, label: "Annotation character start index".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterName, comment: "To specify the name of a Character.".freeze, - domain: "ebucore:Character".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Character".freeze, label: "Character name.".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterStartIndex, comment: "To identify the start character index of the portion of text to which the Annotation applies.".freeze, - domain: "ebucore:TextAnnotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextAnnotation".freeze, label: "Annotation text character start index".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :clonedTo, comment: "Identifies relationship between a digital instantiation of a Resource and its direct copy, with no generational loss.".freeze, - domain: "ebucore:MediaResource".freeze, - inverseOf: "ebucore:isClonedFrom".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isClonedFrom".freeze, label: "Cloned to".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codecFamily, comment: "To provide information on the product family of the Codec.".freeze, - domain: "ebucore:Codec".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, label: "Codec family".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codecId, comment: ["Range: string or Identifier.".freeze, "To identify a Codec.".freeze], - domain: "ebucore:Codec".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, label: "Codec Identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codecName, comment: "To provide a name for the Codec, e.g. a product name.".freeze, - domain: "ebucore:Codec".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, label: "Codec name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codecVersion, comment: "To provide information on the version of the Codec.".freeze, - domain: "ebucore:Codec".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, label: "Codec version".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :comments, comment: "To provide a comment.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Comments".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costumeGender, comment: "To specify the gender associated with a Costume.".freeze, - domain: "ebucore:Costume".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Costume".freeze, label: "Costume gender".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costumeSizeInformation, comment: "To collect all information available useful to determine the size of a Costume.".freeze, - domain: "ebucore:Costume".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Costume".freeze, label: "Costume size information".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costumeTexture, comment: ["Range: a string or a Concept code from a vocabulary, e.g. Getty".freeze, "To define the texture of a Costume.".freeze], - domain: "ebucore:Costume".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Costume".freeze, label: "Costume texture".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costumeType, comment: "To specify a type of Costume.".freeze, - domain: "ebucore:Costume".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Costume".freeze, label: "Costume type".freeze, - range: ["ebucore:CostumeType".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CostumeType".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :date, comment: "A date associated to an Asset.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "dc11:date".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://purl.org/dc/elements/1.1/date".freeze, label: "Date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateArchived, comment: "The date when the Asset was archived.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Archiving date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateBroadcast, comment: "The date when the Asset was first broadcast publicly on television or radio or via streaming.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Broadcast date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateCreated, comment: "The date of creation of the Asset.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Creation date/time".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateDeleted, comment: "The date when the Resource was deleted.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Deletion date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateDigitised, comment: "The date when the Resource was digitised.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Digitisation date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateDistributed, comment: "The date when the Resource was first made available to the public for purchase, download, or online access.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Distribution date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateIngested, comment: "The date when the Resource was ingested/acquired in institutional holdings.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Ingest date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateIssued, comment: "The date when the Asset was issued.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Archiving date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateMigrated, comment: "The date when the Resource was copied or converted from an obsolete or endangered original format to a more updated format for preservation.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Migration date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateModified, comment: "To indicate the date at which the Asset has been modified.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Modification date/time".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateNormalized, comment: "The date when the Resource was converted from its original format into a format pre-selected by the institution for preservation.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Normalization date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateOfBirth, comment: "The date when a Contact/Person is born.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, equivalentProperty: "http://www.bbc.co.uk/ontologies/coreconcepts/dateOfBirth".freeze, label: "Date of birth".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateOfDeath, comment: "The date when a Contact/Person has passed away.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, equivalentProperty: "http://www.bbc.co.uk/ontologies/coreconcepts/dateOfDeath".freeze, label: "Date of death".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateOfRetirement, comment: "The date when a Contact/Person has retired.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Date of retirement".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateProduced, comment: "The date of production of the Asset.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "production date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateReleased, comment: "The date when the Resource was first made available to the public for purchase, download, or online access.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Release date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateTransferred, comment: "The date when the Asset was moved from one digital or physical location to another.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Transfer date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateValidated, comment: "The most recent date when the Resource was confirmed to be valid through manual or digital QC.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Validation date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datelicenseEnd, comment: "The date when the licence for the Asset ends.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Licence end date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datelicensed, comment: "The date when the licence for the Asset begins.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:creationDate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#creationDate".freeze, label: "Licence start date".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:date".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :derivedTo, comment: "To identify a new version derived from the original.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Derivation target".freeze, - range: "ebucore:Asset".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, comment: "This can be specialised by using sub-properties\n like defined in http://www.ebu.ch/metadata/cs/web/ebu_DescriptionTypeCodeCS_p.xml.htm\n implemented as examples as e.g. 'summary' or\n 'script'.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: ["dc11:description".freeze, "ma:description".freeze], + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: ["http://purl.org/dc/elements/1.1/description".freeze, "http://www.w3.org/ns/ma-ont#description".freeze], label: "Description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dimensions, comment: "Describes the physical dimensions of a MediaResource, with units of measure concatenated to become part of the value.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Dimensions".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dishDescription, comment: "The description of a Dish.".freeze, - domain: "ebucore:Food".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Food".freeze, label: "Dish description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dishName, comment: "The name of a Dish.".freeze, - domain: "ebucore:Food".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Food".freeze, label: "Dish name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :displayAspectRatio, comment: "The aspect ratio when displayed.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Display aspect ratio".freeze, - range: ["ebucore:ActiveFormatDescriptorCode".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:aspectRatio".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ActiveFormatDescriptorCode".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#aspectRatio".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :displayOrder, comment: "The order in which an Agent appears in a scene.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Display order".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dubbedTo, comment: ["Range: string or Language.".freeze, "the Language into which MediaResource is dubbed.".freeze], - domain: "ebucore:MediaResource".freeze, - inverseOf: "ebucore:isDubbedFrom".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isDubbedFrom".freeze, label: "Dubbed to".freeze, - range: "ebucore:Language".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Language".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duration, comment: "To provide information on the duration of an EditorialObject or MediaResource.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:duration".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#duration".freeze, label: "Duration".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :durationEditUnits, comment: "To provide a duration in edit units.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Duration (edit units)".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "ebucore:duration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :durationNormalPlayTime, comment: "To provide a duration as normal\n time.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Duration (time)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:duration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :durationPublished, comment: "To provide information on the published / announced duration of an EditorialObject.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Published Duration".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :durationPublishedNormalPlayTime, comment: "To provide a published duration as normal play time.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Published duration (play time)".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:durationPublished".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#durationPublished".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :durationTimecode, comment: "The duration expressed as a\n timecode.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Duration (timecode)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:duration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :durationTimecodeDropFrame, comment: "The duration expressed as a\n timecode with drop frames.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Duration (timecode, drop frame)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:duration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :editUnit, comment: "The edit unit is e.g. the inverse of the audio\n sample rate or video frame rate.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Edit unit".freeze, - range: "xsd:float".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :editorialObjectDescription, comment: "To provide a description of an EditorialObject.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :editorialObjectId, comment: ["An identifier attributed to an EditorialObject.".freeze, "Range: an Identifier or anyURI or string.".freeze], - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Editorial object identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :editorialObjectName, comment: "A name attributed to an EditorialObject.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: ["Editorial Object name".freeze, "Name".freeze], - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :editorialObjectType, comment: ["A type attributed to an EditorialObject.".freeze, "Range: string or EditorialObjectType/Concept".freeze], - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Editorial Object type".freeze, - range: ["ebucore:EditorialObject_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :education, comment: "To provide information on the education.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Education".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :emotionDescription, comment: "The description of an Emotion.".freeze, - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :emotionEditUnit, comment: "The edit unit number at which the Emotion occurs.".freeze, - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion edit unit number".freeze, - range: "xsd:long".freeze, - subPropertyOf: "ebucore:emotionTimestamp".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#long".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#emotionTimestamp".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :emotionId, comment: ["An identifier attributed to an Emotion.".freeze, "Range: anyURI or string or Identifier".freeze], - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :emotionName, comment: "A name attributed to an Emotion.".freeze, - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :emotionNormalPlayTime, comment: "The normal play time at which the Emotion occurs.".freeze, - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion normal play time".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:emotionTimestamp".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#emotionTimestamp".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :emotionTimecode, comment: "The timecode at which the Emotion occurs.".freeze, - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion timecode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:emotionTimestamp".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#emotionTimestamp".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :emotionTimecodeDropFrame, comment: "The timecode (dropframe) at which the Emotion occurs.".freeze, - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion timecode (dropframe)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:emotionTimestamp".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#emotionTimestamp".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :emotionTimestamp, comment: "To identify a timestamp at which an Emotion can be seen.".freeze, - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion timestamp".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :emotionType, comment: ["A type of Emotion.".freeze, "Range: anyURI or string or Emotion_Type".freeze], - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion type".freeze, - range: ["ebucore:Emotion_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodingLevel, comment: "To define an encoding level.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Encoding level".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodingProfile, comment: "The encoding profile as defined in specifications.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Encoding profile".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :end, comment: "To define an end timestamp, e.g. the end point of a MediaResource.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "End".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endEditUnits, comment: "The end time in edit units.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "End time (edit units)".freeze, - range: "xsd:double".freeze, - subPropertyOf: "ebucore:end".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endNormalPlayTime, comment: "The end time expressed using a time\n expression.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "End time (time)".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:end".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endOffsetEditUnits, comment: "The offset end time in edit units.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Offset end time (edit units)".freeze, - range: "xsd:double".freeze, - subPropertyOf: "ebucore:end".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endOffsetNormalPlayTime, comment: "The offset end time in normal play time.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Offset end time (normal play time)".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:end".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endOffsetTimecode, comment: "The offset end timecode.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Offset end timecode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:end".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endOffsetTimecodedropframe, comment: "The offset end timecode dropframe.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Offset end timecode (dropframe)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:end".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endTimecode, comment: "An end time expressed as\n timecode.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "End time (timecode)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:end".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endTimecodeDropFrame, comment: "An end time expressed as\n timecode with drop frames.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "End time (timecode dropframe)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:end".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :episodeNumber, comment: "The Episode Number".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Episode number".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :episodeNumberInSeason, comment: "The Episode Number in a season".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Episode number in season".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :episodeNumberInSeries, comment: "The Episode Number in a series".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Episode number in series".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventDescription, comment: "To provide a description for an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventDuration, comment: "The duration of an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Duration".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventEndDate, comment: "The end date of an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event end date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventEndDateTime, comment: "The end date and time of an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event end date & time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventEndTime, comment: "The end time of an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event end time".freeze, - range: "xsd:time".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventId, comment: ["An identifier attributed to an Event.".freeze, "Range: identifier or string or anyURI.".freeze], - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventName, comment: "To provide a name for an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventPeriod, comment: "The period of time during which an Event has occured.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event period".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventStartDate, comment: "The start date of an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event start date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventStartDateTime, comment: "The start date and time of an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event start date & time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventStartTime, comment: "The start time of an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event start time".freeze, - range: "xsd:time".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventType, comment: ["Range: Event or string".freeze, "To define a type of Event.".freeze], - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event type".freeze, - range: ["ebucore:EventType".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EventType".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :familyInformation, comment: "To provide information on the family of a Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Family information".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :familyName, comment: "The family name of a Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Family name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileSize, comment: "Provides the size of a MediaResource in bytes.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "File size".freeze, - range: "xsd:double".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :firstShowing, comment: "To flag this is a first showing PublicationEvent.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "First showing flag".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :firstShowingThisService, comment: "To falg this is a first showing PublicationEvent on this service.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "First showing on service flag".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :folksonomy, comment: "Provides a user/audience-generated description, tag, or label for resource content.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Folksonomy".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :followsInSequence, comment: "A link to an Asset precedinging the current Asset in an ordered sequence.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Preceding".freeze, - range: "ebucore:Asset".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foodCategory, comment: "To define a category of Food.".freeze, - domain: "ebucore:Food".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Food".freeze, label: "Food category".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foodIngredient, comment: "The Food ingredients or Food items.".freeze, - domain: "ebucore:Food".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Food".freeze, label: "Food ingredient".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :formatId, comment: ["A version identifier attributed to a Format.".freeze, "Range: string or anyURI or Identifier.".freeze], - domain: "ebucore:Format".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, label: "Format version identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :formatVersionId, comment: ["A version identifier attributed to a Format.".freeze, "Range: string or anyURI or identifier.".freeze], - domain: "ebucore:Format".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, label: "Format version identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frameHeight, comment: "The height of a video frame.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Frame height".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "ebucore:height".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#height".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frameHeightUnit, comment: "The unit used to measure the height of a frame.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Frame height unit".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:heightUnit".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#heightUnit".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frameRate, comment: "The unit used to express the frame rate of a MediaResource in frames/second.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:frameSizeUnit".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#frameSizeUnit".freeze, label: "Frame rate".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frameSizeUnit, comment: "The unit used to express the frame width or\n height. The unit by default is 'pixel'.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:frameSizeUnit".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#frameSizeUnit".freeze, label: "Frame size unit".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frameWidth, comment: "The width of a video frame.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Frame width".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "ebucore:width".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#width".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frameWidthUnit, comment: "The unit used to measure the width of a frame.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Frame width unit".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:widthUnit".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#widthUnit".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :free, comment: "A flag to indicate that the access to the PublicationEvent is 'free'.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Free access".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gender, comment: "The gender of a Person e.g. male or female.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, equivalentProperty: "http://www.bbc.co.uk/ontologies/coreconcepts/gender".freeze, label: "Gender".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoBlocking, comment: "To identify geographical areas where content cannor be accessed.".freeze, - domain: "ebucore:AccessConditions".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AccessConditions".freeze, label: "Geographical blocking".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :givenName, comment: "The given name of a Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Given name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :groupDescription, comment: "A textual description of a\n Group.".freeze, - domain: "ebucore:Group".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, label: "Group description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :groupId, comment: ["An identifier attributed to a Group.".freeze, "Range: Identifier or string or anyURI.".freeze], - domain: ["ebucore:Group".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], label: "Group identifier".freeze, - range: "ebucore:Identifier".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :groupName, comment: "The name attributed to a Group.".freeze, - domain: "ebucore:Group".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, label: "Group name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :groupType, comment: ["A type attributed to a Group.".freeze, "Range: Concept or string or anyURI.".freeze], - domain: ["ebucore:Group".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], label: "Group identifier".freeze, - range: "ebucore:Identifier".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAccessConditions, comment: ["Range: string or AccessConditions.".freeze, "To express access conditions/restrictions.".freeze], - domain: ["ebucore:Asset".freeze, "ebucore:PublicationEvent".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze], label: "Access conditions".freeze, - range: ["ebucore:AccessConditions".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AccessConditions".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasActionRelatedAgent, comment: ["Range: string or Agent.".freeze, "To associate an Action with an Agent (e.g. Person or Character).".freeze], - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action related agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasActionRelatedScene, comment: ["Range: string or Scene.".freeze, "To associate an Action with a Scene.".freeze], - domain: "ebucore:Action".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Action".freeze, label: "Action related scene".freeze, - range: "ebucore:Scene".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Scene".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAffiliation, comment: ["A property to establish the relation between a\n Contact/Person and an Organisation.".freeze, "Range: Affiliation or string".freeze], - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Affiliation".freeze, - range: ["ebucore:Affiliation".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Affiliation".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAgentBiography, comment: ["Range: a string or an anyURI (e,g, a URL to a webpage) or a Biography.".freeze, "To provide a biography of an Agent.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Biography".freeze, - range: ["ebucore:Biography".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Biography".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAgentCountryOfResidence, comment: ["Range: string or CountryCode".freeze, "To indicate the place of residence of an Agent.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Country of residence".freeze, - range: ["ebucore:CountryCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CountryCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAgentLanguage, comment: ["Range: a string or Language.".freeze, "To provide the language(s) of a Contact/person.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Language".freeze, - range: ["ebucore:Language".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Language".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAgentMember, comment: ["Range: string or Agent.".freeze, "To associate an Agent to another Agent e.g. a Team.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Agent member".freeze, - range: "ebucore:Agent".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAgentNationality, comment: ["Range: a string or CountryCode.".freeze, "To provide the nationality of an Agent.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Nationality".freeze, - range: ["ebucore:CountryCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CountryCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAgentPlaceOfResidence, comment: ["Range: string or Location".freeze, "To indicate the place of residence of an Agent.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Place of residence".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAgentRelatedPicture, - "dc11:description": "A link/locator to a picture related to an Agent.".freeze, - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + "http://purl.org/dc/elements/1.1/description": "A link/locator to a picture related to an Agent.".freeze, label: "Related picture".freeze, - range: "ebucore:Picture".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAncillaryData, comment: "To identify ancillary data in the media resource.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Ancillary data".freeze, - range: "ebucore:AncillaryData".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAncillaryDataFormat, comment: ["Range: string or AncillaryDataFormat".freeze, "the format of ancillary data.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Ancillary data format".freeze, - range: "ebucore:AncillaryDataFormat".freeze, - subPropertyOf: ["ebucore:hasFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryDataFormat".freeze, + subPropertyOf: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnimalBreedCode, comment: "To associate a breed code with an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal breed code".freeze, - range: ["ebucore:AnimalBreedCode".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AnimalBreedCode".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnimalColourCode, comment: "To associate a colour code with an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal colour code".freeze, - range: ["ebucore:AnimalColourCode".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AnimalColourCode".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnimalRole, comment: "To identify the role of an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal role".freeze, - range: ["ebucore:Role".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Role".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnnotationBody, comment: "To define the Annotation has a string or instance of an EBUCore class.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation body".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnnotationPurpose, comment: "To define the purpose of an Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation confidence".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnnotationRelatedAgent, comment: "To identify an Agent subject of the Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation related agent".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasAnnotationPurpose".freeze, - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasAnnotationPurpose".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnnotationRelatedArtefact, comment: "To identify an Artefact subject of the Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation related artefact".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasAnnotationPurpose".freeze, - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasAnnotationPurpose".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnnotationRelatedEvent, comment: "To identify an Event subject of the Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation related event".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasAnnotationPurpose".freeze, - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasAnnotationPurpose".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnnotationRelatedLocation, comment: "To identify a Location subject of the Annotation.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation related location".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasAnnotationPurpose".freeze, - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasAnnotationPurpose".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnnotationTarget, comment: "To define the target object to which the Annotation applies.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Annotation target".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactBuyer, comment: ["Range: string or Agent".freeze, "The Agent who bought the Artefact.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Buyer".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactCreator, comment: ["Range: string or Agent".freeze, "To identify the creator of an Artefact.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Creator".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactLocation, comment: ["Range: string or Location".freeze, "To identify the location of an Artefact.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Location".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactOwner, comment: ["Range: string or Agent".freeze, "To identify the owner of an Artefact.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Owner".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactPriceCurrency, comment: ["Range: string or CurrencyCode".freeze, "To specify the currency into which the price of an Artefact is expressed.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Artefact price currency".freeze, - range: ["ebucore:CurrencyCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CurrencyCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactRelatedAgent, comment: ["Range: string or Agent".freeze, "To associate an Artefact/Prop or else with an Agent.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Associated agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactRelatedEditorialObject, comment: ["Range: string or EditorialObject".freeze, "To associate an Artefact/Prop or else with an EditorialObject.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Associated editorial object".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactRelatedLocation, comment: ["Range: string or Location".freeze, "To associate an Artefact/Prop or else with a Location.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Associated location".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactRelatedPhysicalResource, comment: ["Range: string or PhysicalResource".freeze, "To associate an Artefact/Prop or else with a physical resource.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Associated physical resource".freeze, - range: "ebucore:PhysicalResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PhysicalResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactRelatedResource, comment: ["Range: string or Resource".freeze, "To associate an Artefact/Prop or else with a resource.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Associated resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactRetailer, comment: ["Range: string or Agent".freeze, "To identify the retailer of an Artefact.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Retailer".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasArtefactSupplier, comment: ["Range: string or Agent".freeze, "To identify a supplier of an Artefact.".freeze], - domain: "ebucore:Artefact".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, label: "Supplier".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAssetRelatedBusinessObject, comment: "To associate a BusinessObject with an Asset.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Related business object".freeze, - range: "ebucore:BusinessObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAssetRelatedEditorialObject, comment: "To associate an EditorialObject with an Asset.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Related editorial object".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAssetRelatedMediaResource, comment: "To identify a related MediaResource.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Asset related media resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAssetRelatedResource, comment: "To identify a related Resource.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Asset related resource".freeze, - range: "ebucore:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAssociatedArtefact, - "dc11:description": ["An Artefact related to an Agent.".freeze, "Range: string or Artefact".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + "http://purl.org/dc/elements/1.1/description": ["An Artefact related to an Agent.".freeze, "Range: string or Artefact".freeze], label: "Related Artefact".freeze, - range: ["ebucore:Artefact".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAssociatedAsset, comment: "To identify an associated asset.".freeze, - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "Associated asset".freeze, - range: "ebucore:Asset".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAssociatedRelation, comment: "To define a Relation.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Relation".freeze, - range: "ebucore:Relation".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAudienceScoreRecordingTechnique, comment: ["Range: string or AudienceScorerecordingTechnique.".freeze, "To identify the technique used to measure an audience.".freeze], - domain: "ebucore:AudienceRating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudienceRating".freeze, label: "Audience score recording technique".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAudioCodec, comment: ["Range:string or AudioCodec".freeze, "To identify the audio Codec".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio codec".freeze, - range: "ebucore:AudioCodec".freeze, - subPropertyOf: "ebucore:hasCodec".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioCodec".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasCodec".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAudioContentType, comment: ["Range:string or AudioContent_Type.".freeze, "To define a type of AudioContent.".freeze], - domain: "ebucore:AudioContent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze, label: "Audio content type".freeze, - range: ["ebucore:AudioContent_Type".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent_Type".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAudioDescription, comment: "To signal the presence of\n AudioDescription.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Audio description".freeze, - range: "ebucore:AudioDescription".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioDescription".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAudioEncodingFormat, comment: ["Range: string or AudioEncodingFormat".freeze, "To specify the audio encoding format.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio encoding format".freeze, - range: "ebucore:AudioEncodingFormat".freeze, - subPropertyOf: ["ebucore:hasFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioEncodingFormat".freeze, + subPropertyOf: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAudioProgrammeType, comment: ["Range:string or AudioProgramme_Type".freeze, "To define a type of AudioProgramme.".freeze], - domain: "ebucore:AudioProgramme".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze, label: "Audio programme type.".freeze, - range: ["ebucore:AudioProgramme_Type".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme_Type".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAudioTrack, comment: "To identify AudioTracks in the Resource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio track".freeze, - range: "ebucore:AudioTrack".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioTrack".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAwardRelatedAgent, comment: ["Range: string or Agent.".freeze, "To link an Agent to an Award.".freeze], - domain: "ebucore:Award".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, label: "Agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAwardRelatedBusinessObject, comment: "To link a BusinessObject to an Award.".freeze, - domain: "ebucore:Award".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, label: "Business object".freeze, - range: "ebucore:BusinessObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAwardRelatedEvent, comment: "An Event e.g. a ceremony, associated to an Award.".freeze, - domain: "ebucore:Award".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, label: "Event".freeze, - range: ["ebucore:Event".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasBeenAwarded, comment: ["Range: a string or an Award.".freeze, "The Award gievn to an Agent".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Agent".freeze, - range: ["ebucore:Award".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCaptioning, comment: "To signal the presence of\n Captioning.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Captioning".freeze, - range: "ebucore:Captioning".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Captioning".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCaptioningFormat, comment: ["Range: string or CaptioningFormat".freeze, "The format of Captioning.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Captioning format".freeze, - range: "ebucore:CaptioningFormat".freeze, - subPropertyOf: ["ebucore:hasFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CaptioningFormat".freeze, + subPropertyOf: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCaptioningSource, comment: ["Range: string or Agent".freeze, "To provide information on the source of\n Captioning.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Captioning source".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCastMember, comment: ["A member of the cast.".freeze, "Range: a string or a Cast".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Cast member".freeze, - range: ["ebucore:Cast".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Cast".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCastRole, comment: ["Range: a string or a Role/Concept from a controlled vocabulary.".freeze, "To define the role of an Agent (Contact/person\n or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Cast role".freeze, - range: ["ebucore:Role".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Role".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasChannelLogo, comment: "The logo of a Publication Channel".freeze, - domain: "ebucore:PublicationChannel".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze, label: "Channel logo".freeze, - range: "ebucore:Logo".freeze, - subPropertyOf: "ebucore:hasLogo".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Logo".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasLogo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasChannelPublicationEvent, comment: "To associate PublicationEvents with\n PublicationChannels.".freeze, - domain: "ebucore:PublicationChannel".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze, label: "Publication event".freeze, - range: "ebucore:PublicationEvent".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCharacter, comment: ["Range: a string or a \"fictitious\" person - Character.".freeze, "To list characters in a fiction.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Character".freeze, - range: ["ebucore:Character".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Character".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCodec, comment: ["Range: string or Codec".freeze, "To identify a Codec used to create a resource.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Codec".freeze, - range: ["ebucore:Codec".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCodecVendor, comment: ["Range: string or Agent.".freeze, "To provide a name for the vendor of the Codec.".freeze], - domain: "ebucore:Codec".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze, label: "Codec vendor".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasColourSpace, comment: ["Range: string or Concept".freeze, "To describe the colour space.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Colour space".freeze, - range: "ebucore:ColourSpace".freeze, - subPropertyOf: ["ebucore:hasFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ColourSpace".freeze, + subPropertyOf: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasContact, comment: ["Range: a link to a Contact or a string.".freeze, "To provide information on a Contact for an\n Organisation or a physical person (e.g. the agent of an actor).".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Contact".freeze, - range: ["ebucore:Contact".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasContainerCodec, comment: ["Range: string or ContainerCodec".freeze, "To identify a container codec.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Container codec".freeze, - range: "ebucore:ContainerCodec".freeze, - subPropertyOf: "ebucore:hasCodec".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ContainerCodec".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasCodec".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasContainerEncodingFormat, comment: ["Range: string or ContainerEncodingFormat".freeze, "To describe the container encoding format.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Container encoding format".freeze, - range: "ebucore:ContainerEncodingFormat".freeze, - subPropertyOf: ["ebucore:hasFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ContainerEncodingFormat".freeze, + subPropertyOf: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasContainerMimeType, comment: ["Range: string or MimeType".freeze, "To provide the Mime type of the Resource.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Mime type".freeze, - range: "ebucore:MimeType".freeze, - subPropertyOf: ["ebucore:hasFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MimeType".freeze, + subPropertyOf: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasContentEditorialFormat, comment: ["Range: string or ContentEditorialFormat.".freeze, "To define a content editorial format e.g. magazine.".freeze], - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Editorial format".freeze, - range: ["ebucore:ContentEditorialFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ContentEditorialFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasContributor, comment: ["Range: string or Agent".freeze, "To identify a contributor to a Resource, a Business Object, an Event...".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "dc11:contributor".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://purl.org/dc/elements/1.1/contributor".freeze, label: "Contributor".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCopyright, comment: ["Range: string or Copyright.".freeze, "To express copyright.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Copyright".freeze, - range: ["ebucore:Copyright".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Copyright".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCostumeType, comment: ["Range: a string or Costume_type e.g. a Concept code from a vocabulary, e.g. Getty.".freeze, "To define a type of Costume.".freeze], - domain: "ebucore:Costume".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Costume".freeze, label: "Costume type".freeze, - range: ["ebucore:CostumeType".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CostumeType".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCountryOfBirth, comment: ["Range: string or CountryCode".freeze, "The country where a person is born.".freeze], - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, equivalentProperty: "http://www.bbc.co.uk/ontologies/coreconcepts/placeOfBirth".freeze, label: "Country of birth".freeze, - range: ["ebucore:CountryCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CountryCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCountryOfDeath, comment: ["Range: string or CountryCode".freeze, "The country where a person is dead.".freeze], - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, equivalentProperty: "http://www.bbc.co.uk/ontologies/coreconcepts/placeOfBirth".freeze, label: "Country of death".freeze, - range: ["ebucore:CountryCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CountryCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCoverage, comment: ["Range: string or Event or Location".freeze, "To provide coverage information.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Coverage".freeze, - range: ["ebucore:Event".freeze, "ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCoverageRestrictions, comment: ["Range: string or CoverageRestrictions.".freeze, "To express coverage restrictions.".freeze], - domain: ["ebucore:Asset".freeze, "ebucore:PublicationEvent".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze], label: "Coverage restrictions".freeze, - range: ["ebucore:CoverageRestrictions".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CoverageRestrictions".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCreationLocation, comment: ["Range: string or Location.".freeze, "To identify the location where a media resources was created.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Creation location".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCreativeCommons, comment: ["Range: string or Creative Commons.".freeze, "To express Creative Commons.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Creative Commons".freeze, - range: ["ebucore:CreativeCommons".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CreativeCommons".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCreator, comment: ["Range: string or Agent.".freeze, "To identify an Agent involved in the creation of the Resource or BusinessObject.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: ["dc11:creator".freeze, "ma:hasCreator".freeze], + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: ["http://purl.org/dc/elements/1.1/creator".freeze, "http://www.w3.org/ns/ma-ont#hasCreator".freeze], label: "Creator".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCrewMember, comment: ["A member of the crew.".freeze, "Range: a string or a Crew".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Crew member".freeze, - range: ["ebucore:Cast".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Cast".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCrewRole, comment: ["Range: a string or a Role/Concept from a controlled vocabulary.".freeze, "To define the role of an Agent (Contact/person\n or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Crew role".freeze, - range: ["ebucore:Role".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Role".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCuisineOrigin, comment: ["Range: a string or CountryCode".freeze, "The country/region of origin of the cuisine".freeze], - domain: "ebucore:Food".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Food".freeze, label: "Cuisine origin".freeze, - range: ["ebucore:CountryCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CountryCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCuisineStyle, comment: ["Range: a string or CuisineStyle".freeze, "The style of the cuisine".freeze], - domain: "ebucore:Food".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Food".freeze, label: "Cuisine style".freeze, - range: ["ebucore:CuisineStyle".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CuisineStyle".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDataFormat, comment: ["Range: string or DataFormat".freeze, "To describe the format of data carried in a resource.".freeze], - domain: "ebucore:DataTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataTrack".freeze, label: "Data format".freeze, - range: "ebucore:DataFormat".freeze, - subPropertyOf: ["ebucore:hasFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataFormat".freeze, + subPropertyOf: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDataTrack, comment: "To identify DataTracks in the Resource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Data track".freeze, - range: "ebucore:DataTrack".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataTrack".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDepartment, comment: ["Range: string or Department.".freeze, "To identify a department in an organisation.".freeze], - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "Department".freeze, - range: ["ebucore:Department".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Department".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDisclaimer, comment: ["Range: string or Disclaimer.".freeze, "To express Disclaimer.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Disclaimer".freeze, - range: ["ebucore:Disclaimer".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Disclaimer".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDocumentFormat, comment: ["Range: string or Document format".freeze, "To describe the format of a Document.".freeze], - domain: "ebucore:Document".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Document".freeze, label: "Document format".freeze, - range: "ebucore:DocumentFormat".freeze, - subPropertyOf: ["ebucore:hasFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DocumentFormat".freeze, + subPropertyOf: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDopesheet, comment: ["Range: string or Dopesheet.".freeze, "The dopesheet of a NewsItem.".freeze], - domain: "ebucore:NewsItem".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#NewsItem".freeze, label: "Dopesheet".freeze, - range: ["ebucore:Dopesheet".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Dopesheet".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDubbedLanguage, comment: ["Range: string or Language.".freeze, "To identify available dubbed languages.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Dubbed language".freeze, - range: ["ebucore:Language".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasLanguage".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Language".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasLanguage".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEidrIdentifier, comment: ["Range: string or Identifier.".freeze, "To associate an EIDR Identifier with an Asset.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "dc11:identifier".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://purl.org/dc/elements/1.1/identifier".freeze, label: "EIDR".freeze, - range: ["ebucore:Identifier".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasIdentifier".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasIdentifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEmotionRelatedAgent, comment: ["Range: String or Agent".freeze, "To associate an Emotion with an Agent (e.g. Person or Character).".freeze], - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion related agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEmotionRelatedScene, comment: ["Range: string or Scene".freeze, "To associate an Emotion with a Scene.".freeze], - domain: "ebucore:Emotion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Emotion".freeze, label: "Emotion related scene".freeze, - range: ["ebucore:Scene".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Scene".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEncodingFormat, comment: ["Range: string or Encoding format".freeze, "To describe any encoding format use to produce content.".freeze], - domain: ["ebucore:Document".freeze, "ebucore:MediaResource".freeze, "ebucore:Picture".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Document".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze], label: "Encoding format".freeze, - range: ["ebucore:EncodingFormat".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasFormat".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EncodingFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEpisode, comment: ["Range: string or Episode.".freeze, "To identify Episodes in a Series".freeze], - domain: ["ebucore:Season".freeze, "ebucore:Series".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Season".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series".freeze], label: "Episode".freeze, - range: ["ebucore:Episode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Episode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEventRelatedAgent, comment: ["An Agent relates to an Event.".freeze, "Range: string or Agent".freeze], - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEventRelatedArtefact, comment: ["An artefact related to an Event.".freeze, "Range: string or Artefact.".freeze], - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Artefact".freeze, - range: ["ebucore:Artefact".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEventRelatedBusinessObject, comment: "A BusinessObject relates to an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Business object".freeze, - range: "ebucore:BusinessObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEventRelatedEvent, comment: ["An Event relates to an Event.".freeze, "Range: string or Event".freeze], - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Event".freeze, - range: ["ebucore:Event".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEventRelatedLocation, comment: ["Range: a Location or a string".freeze, "To associate a Location with an Event.".freeze], - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Location".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEventRelatedResource, comment: "A Resource relates to an Event.".freeze, - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEventType, comment: ["Range: string or EventType".freeze, "To define a type of Event.".freeze], - domain: "ebucore:Event".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, label: "Agent".freeze, - range: ["ebucore:EventType".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EventType".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasExploitationIssues, comment: ["Range: string or Exploitation Issues.".freeze, "To express Exploitation Issues.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Exploitation Issues".freeze, - range: ["ebucore:ExploitationIssues".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ExploitationIssues".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasFileFormat, comment: ["Range: string or FileFormat.".freeze, "The format of a file.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "File format".freeze, - range: ["ebucore:FileFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#FileFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasFoodStyle, comment: ["Range: string or FoodStyle.".freeze, "The style of Food.".freeze], - domain: "ebucore:Food".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Food".freeze, label: "Food style".freeze, - range: ["ebucore:FoodStyle".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#FoodStyle".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasFormat, comment: ["Range: string, Format or any Format-related Concept".freeze, "To identify a Format".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Format".freeze, - range: ["ebucore:Format".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasFormatId, comment: ["An identifier attributed to a Format.".freeze, "Range: Identifier or string or anyURI.".freeze], - domain: "ebucore:Format".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze, label: "Format identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasGeneration, comment: "Identifies the generation of a version of a resource, i.e. master,\r\n edit master, distribution copy, etc.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Generation".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasGenre, comment: ["To define a Genre/category associated to the\n BusinesssObject.".freeze, "range: string or Genre.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasGenre".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasGenre".freeze, label: "Genre".freeze, - range: ["ebucore:Genre".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Genre".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasIMediaIdentifier, comment: ["Range: string or Identifier.".freeze, "To associate an IMedia Identifier with an Asset.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "dc11:identifier".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://purl.org/dc/elements/1.1/identifier".freeze, label: "IMedia Id".freeze, - range: ["ebucore:Identifier".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasIdentifier".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasIdentifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasIPRRestrictions, comment: ["Range: string or IPR Restrictions.".freeze, "To express IPR Restrictions.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "IPR restrictions".freeze, - range: ["ebucore:IPRRestrictions".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#IPRRestrictions".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasIdPicture, comment: ["A locator / URI or a Picture.".freeze, "To provide a link to an identification picture.".freeze], - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Identification picture".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasIdentifier, comment: ["Range: string or Identifier.".freeze, "To associate an Identifier with an Asset.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "dc11:identifier".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://purl.org/dc/elements/1.1/identifier".freeze, label: "Identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasIdentifierType, comment: ["Range: Concept or string".freeze, "To define a type of Identifer (e.g. UUID, ISAN, EIDR, in-house production Id).".freeze], - domain: "ebucore:Identifier".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, label: "Identifier type".freeze, - range: ["ebucore:IdentifierType".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#IdentifierType".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasImageCodec, comment: ["Range: string or Codec".freeze, "To specify the codec of an Image.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Image codec".freeze, - range: ["ebucore:ImageCodec".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ImageCodec".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasImageFormat, comment: ["Range: string or ImageFormat".freeze, "To specify the format of an Image.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Image format".freeze, - range: ["ebucore:ImageFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ImageFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasIsanIdentifier, comment: ["Range: string or Identifier.".freeze, "To associate an ISAN Identifier with an Asset.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "dc11:identifier".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://purl.org/dc/elements/1.1/identifier".freeze, label: "ISAN".freeze, - range: ["ebucore:Identifier".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasIdentifier".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasIdentifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasKeyCareerEvent, comment: ["Range: string or KeyCareerEvent".freeze, "To identify the key career events of a Person.".freeze], - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Career event".freeze, - range: ["ebucore:KeyCareerEvent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#KeyCareerEvent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasKeyPersonalEvent, comment: ["Range: string or KeyPersonalEvent".freeze, "To identify the key personal events of a Person.".freeze], - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Personal event".freeze, - range: ["ebucore:KeyPersonalEvent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#KeyPersonalEvent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasKeyword, comment: ["Range: Keyword or string or any URI from a controlled vocabulary".freeze, "To associate a concept, descriptive phrase or Keyword that specifies the topic of the EditorialObject.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasKeyword".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasKeyword".freeze, label: "Keyword".freeze, - range: ["ebucore:Keyword".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasSubject".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Keyword".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasSubject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLanguage, comment: ["Range: string or Language.".freeze, "To associate a Language to an Asset. A controlled vocabulary based on BCP 47 is recommended. This\n property can also be used to identify the presence of sign language (RFC 5646). By\n inheritance, the hasLanguage property applies indifferently at the MediaResource /\n Fragment / Track levels at which the usage is being defined. Best practice recommends to\n use to best possible level of granularity fo describe the usage of language within a\n MediaResource including at Fragment and Track levels.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: ["dc11:language".freeze, "ma:hasLanguage".freeze], + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: ["http://purl.org/dc/elements/1.1/language".freeze, "http://www.w3.org/ns/ma-ont#hasLanguage".freeze], label: "Language".freeze, - range: ["ebucore:Language".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Language".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLicensing, comment: ["Range: string or Licensing.".freeze, "To express Licensing.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Licensing".freeze, - range: ["ebucore:Licensing".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Licensing".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLocationCode, comment: ["Range: string or LocationCode.".freeze, "To give the code of a Location.".freeze], - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Locationcode".freeze, - range: ["ebucore:LocationCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#LocationCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLocationPicture, comment: "A picture associated with a Location.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Picture".freeze, - range: "ebucore:Picture".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLocationRelatedArtefact, comment: ["Range: a string or an Artefact.".freeze, "To associate an Artefact with a\n Location.".freeze], - domain: ["ebucore:Location".freeze, "xsd:string".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], label: "Artefact".freeze, - range: "ebucore:Artefact".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLocationRelatedEvent, comment: ["Range: a string or an Event.".freeze, "To associate an Event with a\n Location.".freeze], - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Event".freeze, - range: ["ebucore:Event".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLocationRelatedResource, comment: "To identify a Resource associated with a Location.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Related resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLocationType, comment: ["Range: string or LocationType.".freeze, "To define the type of a Location.".freeze], - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Locationcode".freeze, - range: ["ebucore:LocationType".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#LocationType".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLocator, comment: ["A locator from where the MediaResource can be accessed.".freeze, "Range: a locator e.g. a URI or a Locator or a string.".freeze], - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:locator".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#locator".freeze, label: "Locator".freeze, - range: ["ebucore:Locator".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Locator".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLogo, comment: "Logos can be used in a variety of contexts.\n Logo can be associated with an Organisation or a Service or a PublicationChannel.".freeze, - domain: ["ebucore:Award".freeze, "ebucore:Organisation".freeze, "ebucore:Rating".freeze, "ebucore:Service".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze], label: "Logo".freeze, - range: "ebucore:Logo".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Logo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasManifestation, comment: "A manifestation is the physical embodiment of work e.g. a tape, a file...".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Manifestation".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMaster, comment: "To identify the master of a Resource".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Master".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMediaFragment, comment: "To define relation to MediaFragments\n withiin a MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:hasFragment".freeze, - inverseOf: "ebucore:isMediaFragmentOf".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasFragment".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isMediaFragmentOf".freeze, label: "Fragment".freeze, - range: "ebucore:MediaFragment".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaFragment".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMedium, comment: ["Range: string or Medium".freeze, "To specify the medium on which the Resource is available.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Medium".freeze, - range: ["ebucore:Medium".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasFormat".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Medium".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMember, comment: "To establish group/collection relationship between EditorialObjects.".freeze, - domain: "ebucore:Group".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, label: "Member.".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMemberPublicationPlan, comment: "To identify a PublicationPlan that forms part of another PublicationPlan.".freeze, - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "Publication plan member".freeze, - range: "ebucore:PublicationPlan".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMetadataTrack, comment: "To identify MetadataTracks in the Resource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Metadata track".freeze, - range: "ebucore:MetadataTrack".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MetadataTrack".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMimeType, comment: ["Range: string or MimeType".freeze, "To specify the Mime type of a Resource.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Mime type".freeze, - range: ["ebucore:MimeType".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasFormat".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MimeType".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasObjectType, comment: ["Range: string or ObjectType.".freeze, "To define an ObjectType for the BusinessObject\n (e.g. book, report, programme, clip) if not defined as a subClass of BusinessObject.".freeze], - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Object/asset type".freeze, - range: ["ebucore:ObjectType".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ObjectType".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasOrganisationLogo, comment: "The logo representing an Organisation".freeze, - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "Organisation logo".freeze, - range: "ebucore:Logo".freeze, - subPropertyOf: "ebucore:hasLogo".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Logo".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasLogo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasOrganisationStaff, comment: ["Range: string or Staff.".freeze, "To identify Staff members in an Organisation.".freeze], - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "Staff".freeze, - range: ["ebucore:Staff".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Staff".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasOriginalLanguage, comment: ["Range: string or Language.".freeze, "To define the original language of an Asset.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Original language".freeze, - range: ["ebucore:Language".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasLanguage".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Language".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasLanguage".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasParentEditorialObject, comment: "To link a EditorialOject to a parent.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Parent editorial object".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasParentMediaResource, comment: "To link a MediaResource to a parent.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Parent resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPart, comment: "To define Parts (segments, fragments, shots, etc.)\n within an EditorialObject.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Part".freeze, - range: "ebucore:Part".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPartType, comment: ["A type of Part.".freeze, "Range: a string or Part_Type".freeze], - domain: "ebucore:Part".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, label: "Part type".freeze, - range: ["ebucore:Part_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasParticipatingAgent, comment: ["To identify participating Agents.".freeze, "range: Agent or string".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Participating agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPictogram, comment: ["Range: a locator/URI or a Picture.".freeze, "To provide a visual representation of a Rating / AufdienceRating / AudienceLevel.".freeze], - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Pictogram".freeze, - range: "ebucore:Picture".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPlaceOfBirth, comment: "To identify the place of birth.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Birth place".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPlaceOfDeath, comment: "To identify the place of death.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Death place".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasProducer, comment: ["Range: string or Agent.".freeze, "To identify an Agent involved in the production of the Resource or BusinessObject.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasCreator".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasCreator".freeze, label: "Producer".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasProductionLocation, comment: ["Range: a Location or string".freeze, "To identify the Location of a production".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Production location".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasProvenance, comment: ["Range: string, anyURI or Concept.".freeze, "To associate information on Provenance to an EBUCore class.".freeze], - domain: "owl:Thing".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, label: "Provenance".freeze, - range: ["ebucore:Provenance".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Provenance".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasProvenanceTarget, comment: "The instance of an object sourced by the Provenance.".freeze, - domain: "ebucore:Provenance".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Provenance".freeze, label: "Provenance target".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPublicationEvent, comment: "To associate PublicationEvents with\n PublicationChannels or as elements of a PublicationHistory or PublicationPlanning.".freeze, - domain: ["ebucore:PublicationChannel".freeze, "ebucore:PublicationHistory".freeze, "ebucore:PublicationPlan".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationHistory".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze], label: "Publication event".freeze, - range: "ebucore:PublicationEvent".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPublicationHistory, comment: "To provide the history of publication of an EditorailObject or MediaResource.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Publication history".freeze, - range: "ebucore:PublicationHistory".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationHistory".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPublicationMedium, comment: ["Range: string or PublicationMedium.".freeze, "To identify the publication medium.".freeze], - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Publication medium".freeze, - range: ["ebucore:PublicationMedium".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationMedium".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPublicationPlanMember, comment: "To identify a subplan of a publication plan.".freeze, - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "Publication plan member.".freeze, - range: "ebucore:PublicationPlan".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPublicationPlanType, comment: ["Range: string or PublicationPlan_type.".freeze, "To define a type of PublicationPlan.".freeze], - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "Publication plan type".freeze, - range: ["ebucore:PublicationPlan_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPublicationRegion, comment: ["Range: string or Location".freeze, "The region where the publication takes place.".freeze], - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Publication region".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPublisher, comment: "To identify an Agent involved in the publication of the Resource or BusinessObject.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: ["dc11:publisher".freeze, "ma:hasPublisher".freeze], + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: ["http://purl.org/dc/elements/1.1/publisher".freeze, "http://www.w3.org/ns/ma-ont#hasPublisher".freeze], label: "Publisher".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRating, comment: ["Range: a string or a Rating.".freeze, "To identify the presence of Rating attributed\n to a Resource or BusinessObject.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasRating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasRating".freeze, label: "Rating".freeze, - range: ["ebucore:Rating".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRatingProvider, comment: ["Range: string or Agent.".freeze, "To identify an Agent who has provided a Rating.".freeze], - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Rating source / agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRatingSource, comment: ["Range: string or Agent.".freeze, "To identify an Agent who has provided a Rating.".freeze], - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Rating source / agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedAnimal, comment: "To identify animals associate with an Asset.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Related animal".freeze, - range: ["ebucore:Animal".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedArtefact, comment: ["Range: string or Artefact.".freeze, "To identify and Artefact related to EditorialObject or a resource.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Related artefact".freeze, - range: ["ebucore:Artefact".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Artefact".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedAsset, comment: "To identify related Assets.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Related asset".freeze, - range: "ebucore:Asset".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedAudioContent, comment: "To identify related Audio Content".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Audio content".freeze, - range: "ebucore:AudioContent".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedAudioObject, comment: "To identify related Audio Objects".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio object".freeze, - range: "ebucore:AudioObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedAudioProgramme, comment: "A related audio programme".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Audio programme".freeze, - range: "ebucore:AudioProgramme".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedAudioTrack, comment: "To identify related Audio Tracks".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio track".freeze, - range: "ebucore:AudioTrack".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioTrack".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedAward, comment: ["Range: string or Award.".freeze, "To identify an Award related to EditorialObject.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Related award".freeze, - range: ["ebucore:Award".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Award".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedEditorialObject, comment: "To identify related EditorialObjects.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Related editorial object".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedEssence, comment: "To establish a relation between a MediaResource and an Essence.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Related essence".freeze, - range: "ebucore:Essence".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Essence".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedEvent, comment: ["A property to identify the \r\n Events, all real or fictional, covered by the \r\n EditorialObject.".freeze, "Range: Sting or Event".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Event".freeze, - range: ["ebucore:Event".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasCoverage".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasCoverage".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedImage, comment: "To associate an Image with a BusinessObject.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Image".freeze, - range: "ebucore:Image".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Image".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedLocation, comment: ["A property to identify the \n Locations, all real or fictional, covered by the \n EditorialObject.".freeze, "Range: String or Location".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasRelatedLocation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasRelatedLocation".freeze, label: "Location".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasCoverage".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasCoverage".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedMediaFragment, comment: "To associate a Part of an Asset with a MediaFragment within the association MediaResource instantiating the Asset.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Media fragment".freeze, - range: "ebucore:MediaFragment".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaFragment".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedMediaResource, comment: "To identify a MediaResource associated with an Asset or a BusinessObject or a PublicationEvent or another Resource.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasRelatedResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasRelatedResource".freeze, label: "Related media resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedPicture, comment: "To associate a Picture with a BusinessObject or a Resource.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasRelatedImage".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasRelatedImage".freeze, label: "Picture".freeze, - range: "ebucore:Picture".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedPublicationChannel, comment: ["Range: string or PublicationChannel".freeze, "To identify a Publication Channel".freeze], - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Publication channel".freeze, - range: ["ebucore:PublicationChannel".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedPublicationEvent, comment: "To identify the PublicationEvent associated with a MediaResource (manifestation of an EditorialObject).".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Publication event".freeze, - range: "ebucore:PublicationEvent".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedRecord, comment: ["Range, a string a URI or a Record.".freeze, "To associate a Record with an Asset.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Related record".freeze, - range: ["ebucore:Record".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Record".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedResource, comment: "To identify a Resource associated with an Asset or a BusinessObject or a PublicationEvent or another Resource.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasRelatedResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasRelatedResource".freeze, label: "Related resource".freeze, - range: "ebucore:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedService, comment: ["Range: string or Service.".freeze, "To establish a relation between Services.".freeze], - domain: "ebucore:Service".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, label: "Related Service".freeze, - range: ["ebucore:Service".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedTextLine, comment: ["A TextLine or free text related to an EditorialObject.".freeze, "Range: string or TextLine.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Related text line".freeze, - range: ["ebucore:TextLine".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelationSource, comment: ["Range: string or Agent.".freeze, "To define source of a Relation.".freeze], - domain: "ebucore:Relation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation".freeze, label: "Relation source".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasResourceLocator, comment: ["A locator from where the Resource can be accessed.".freeze, "Range: a locator e.g. a URI or a Locator.".freeze], - domain: "ebucore:Resource".freeze, - equivalentProperty: "ma:locator".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#locator".freeze, label: "Locator".freeze, - range: ["ebucore:Locator".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Locator".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasReview, comment: ["Range: string or Review.".freeze, "To provide a review.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Review".freeze, - range: ["ebucore:Review".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Review".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRightsClearance, comment: ["Range: string or Rights Clearance.".freeze, "To express Rights Clearance.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Rights clearance".freeze, - range: ["ebucore:RightsClearance".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#RightsClearance".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRightsContact, comment: ["Range: a string or a Contact.".freeze, "To identify a Contact/person who can provide\n assistance / guidance regarding the associated Rights.".freeze], - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Contact".freeze, - range: ["ebucore:Contact".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRightsHolder, comment: ["Range: a string or an Agent.".freeze, "To identify an Agent (Contact/person or\n Organisation) having/managing Rights.".freeze], - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Rights holder".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRole, comment: ["Range: a string or a Role/Concept from a controlled vocabulary.".freeze, "To define the role of an Agent (Contact/person\n or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Role".freeze, - range: ["ebucore:Role".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Role".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSeason, comment: "To identiify Seasons in a Series.".freeze, - domain: "ebucore:Series".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series".freeze, label: "Season".freeze, - range: "ebucore:Season".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Season".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasServiceGenre, comment: ["Range: string or Genre".freeze, "The genre of content associated with the Service.".freeze], - domain: "ebucore:Service".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, label: "Service genre".freeze, - range: ["ebucore:Genre".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Genre".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasServiceLogo, comment: "The Logo characterising a Service".freeze, - domain: "ebucore:Service".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, label: "Service logo".freeze, - range: "ebucore:Logo".freeze, - subPropertyOf: "ebucore:hasLogo".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Logo".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasLogo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasShootingLocation, comment: ["Range: Location or string".freeze, "The Location where content has been captured.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Shooting location".freeze, - range: ["ebucore:Location".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSigning, comment: ["A locator/URI to a resource or a Signing resource.".freeze, "To identify the presence of Signing associated\n to the BusinessObject/Resource.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasSigning".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasSigning".freeze, label: "Accessibility - signing".freeze, - range: "ebucore:Signing".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Signing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSigningFormat, comment: ["Range: string or SigningFormat.".freeze, "To specify the format used for signing.".freeze], - domain: "ebucore:Signing".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Signing".freeze, label: "Signing format".freeze, - range: ["ebucore:SigningFormat".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#SigningFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSigningSource, comment: ["Range: string or Agent.".freeze, "To specify the source of signing.".freeze], - domain: "ebucore:Signing".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Signing".freeze, label: "Signing source".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSource, comment: "To identify the source of a MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Source".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasStaffMember, comment: ["Range: string or Staff.".freeze, "To identify members of staff in an organisation.".freeze], - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "member of Staff".freeze, - range: ["ebucore:Staff".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Staff".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasStaffRole, comment: ["Range: a string or a Role/Concept from a controlled vocabulary.".freeze, "To define the role of an Agent (Contact/person\n or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole or hasStaffRole.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Staff role".freeze, - range: ["ebucore:Role".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Role".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasStakeholder, comment: ["An Agent related to the PublicationPlan.".freeze, "Range: Agent or string".freeze], - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "Publication plan stakeholder".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasStandard, comment: ["Identifies the technical video standard of a MediaResource, i.e. NTSC or PAL.".freeze, "Range: string or Standard".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Standard".freeze, - range: ["ebucore:Standard".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasFormat".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Standard".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasStorageId, comment: ["Range: Identifier, anyURI, string".freeze, "To identify storage associated with a locator from which a Resource can be accessed or can be retrieved.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Storage identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasStorageType, comment: ["Range:; string or Storage_Type".freeze, "To define a type of storage associated with a locator from which a Resource can be accessed or can be retrieved.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Storage type".freeze, - range: ["ebucore:Storage_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Storage_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSubject, comment: ["Range: string, anyURI or Subject".freeze, "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.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "dc11:subject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://purl.org/dc/elements/1.1/subject".freeze, label: "Subject".freeze, - range: ["ebucore:Subject".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subject".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSubtitling, comment: ["Range: string or Subtitling".freeze, "To identify existing subtitling.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Subtitling".freeze, - range: ["ebucore:Subtitling".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subtitling".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSubtitlingFormat, comment: ["Range: string or SubtitlingFormat".freeze, "The format of Subtitling.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Subtitling format".freeze, - range: ["ebucore:SubtitlingFormat".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasFormat".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#SubtitlingFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSubtitlingSource, comment: ["Range: a string or an Agent.".freeze, "To identify the source of the Subtitling\n resource.".freeze], - domain: "ebucore:Subtitling".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subtitling".freeze, label: "Subtitling source".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTargetAudience, comment: ["Range: string or TargetAudience.".freeze, "To associate a TargetAudience (e.g. for\n parental guiddance or targeting a particular social group) with a\n BusinessObject/Resource.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "ma:hasTargetAudience".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasTargetAudience".freeze, label: "Target audience".freeze, - range: ["ebucore:TargetAudience".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TargetAudience".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTargetPlatform, comment: ["Range: string or TargetPlatform.".freeze, "To specify a target platform.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Target platform".freeze, - range: ["ebucore:TargetPlatform".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TargetPlatform".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTeamMember, comment: ["Range: a Person or a string".freeze, "To identify the members of a Team".freeze], - domain: "ebucore:Team".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Team".freeze, label: "Team member".freeze, - range: ["ebucore:Person".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTextLineId, comment: ["Range: string or Identifier.".freeze, "To attribute an identifier to a text line.".freeze], - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line identifier.".freeze, - range: ["ebucore:TextLine_Type".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine_Type".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTextLineRelatedAgent, comment: ["Range: string or Agent.".freeze, "To identify an Agent/Person/Character related to a TextLine.".freeze], - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line related agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTextLineRelatedCharacter, comment: ["Range: string or Character.".freeze, "To identify a Character related to a TextLine.".freeze], - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line related character".freeze, - range: ["ebucore:Character".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Character".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTextLineRelatedScene, comment: ["Range: string or Scene.".freeze, "To identify an scene related to a text line.".freeze], - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line related scene".freeze, - range: ["ebucore:Scene".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Scene".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTextLineSource, comment: ["Range: string or Agent.".freeze, "To identify the source of a TextLine.".freeze], - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line source".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTextLineType, comment: ["Range: string or TextLine_Type".freeze, "To identify the type of a text line.".freeze], - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line type".freeze, - range: ["ebucore:TextLine_Type".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine_Type".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTheme, comment: ["Range: a Concept, anyURI or a string".freeze, "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.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Theme".freeze, - range: ["ebucore:Theme".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasSubject".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Theme".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasSubject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTimecodeTrack, comment: "To identify a timecode track with a MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:hasTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasTrack".freeze, label: "Timecode track".freeze, - range: "ebucore:TimecodeTrack".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimecodeTrack".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTimelineTrack, comment: "To associate a TimelineTrack with an EditorialObject".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Timeline track".freeze, - range: "ebucore:TimelineTrack".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTimelineTrackPart, comment: "To associate an EditorialObject to a TimelineTrackPart".freeze, - domain: "ebucore:TimelineTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack".freeze, label: "Timeline track part".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTimelineTrackType, comment: ["Range: string or anyURI or TimelineTrack_Type.".freeze, "To specify a type of TimelineTrack".freeze], - domain: "ebucore:TimelineTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack".freeze, label: "Timeline track type".freeze, - range: ["ebucore:TimelineTrack_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTopic, comment: ["Range: a Topic, anyURI or a string".freeze, "This property enables to associate an Asset with a topic which can be a string or a URI pointing to a term from a controlled vocabulary. A typical example is to make use of the IPTC Media Topics defined at http://cv.iptc.org/newscodes/mediatopic/.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Topic".freeze, - range: ["ebucore:Topic".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasSubject".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Topic".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasSubject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTrack, comment: "To associate audio/data/video tracks with a MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:hasTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasTrack".freeze, label: "Track".freeze, - range: "ebucore:Track".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTrackPart, comment: "An element to identify a part of a track by a title, a start time and an end time in both the media source and media destinationn.".freeze, - domain: "ebucore:Track".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, label: "Track part source".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTrackPurpose, comment: ["Range: string or TrackPurpose.".freeze, "The purpose for which the Track is provided.".freeze], - domain: "ebucore:Track".freeze, - equivalentProperty: "ma:trackName".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#trackName".freeze, label: "Track purpose".freeze, - range: ["ebucore:TrackPurpose".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TrackPurpose".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasType, comment: ["An type of Asset.".freeze, "Range: string or Type.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: "dc11:type".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: "http://purl.org/dc/elements/1.1/type".freeze, label: ["Asset type".freeze, "Type".freeze], - range: ["ebucore:Type".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasUsageRestrictions, comment: ["Range: string or UsageRestrictions.".freeze, "To express usage restrictions.".freeze], - domain: ["ebucore:Asset".freeze, "ebucore:PublicationEvent".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze], label: "Usage restrictions".freeze, - range: ["ebucore:UsageRestrictions".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#UsageRestrictions".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasUsageRights, comment: ["Range: string or UsageRights.".freeze, "To express usage rights.".freeze], - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Usage rights".freeze, - range: ["ebucore:UsageRights".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:isCoveredBy".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#UsageRights".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isCoveredBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasVersion, comment: "To identify another version of an Asset, BusinessObject or Resource.".freeze, - domain: "ebucore:MediaResource".freeze, - inverseOf: "ebucore:isVersionOf".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isVersionOf".freeze, label: "Version".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasVideoCodec, comment: ["Range: string or VideoCodec".freeze, "To identify a video codec".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Video codec".freeze, - range: "ebucore:VideoCodec".freeze, - subPropertyOf: "ebucore:hasCodec".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoCodec".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasCodec".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasVideoEncodingFormat, comment: ["Range: string or VideoEncodingFormat".freeze, "To specify the video encoding format.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Audio encoding format".freeze, - range: ["ebucore:VideoEncodingFormat".freeze, "xsd:string".freeze], - subPropertyOf: "ebucore:hasFormat".freeze, - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoEncodingFormat".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasVideoTrack, comment: "To identify VideoTracks in the Resource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Video track".freeze, - range: "ebucore:VideoTrack".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoTrack".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasWrappingType, comment: ["Range: string or WrappingType.".freeze, "To specify the type of wrapping.".freeze], - domain: "ebucore:AncillaryData".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze, label: "Wrapping type".freeze, - range: ["ebucore:WrappingType".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#WrappingType".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hashValue, comment: "The hash value associated to a Resource. There\n are different methods / algorithms to calculate hash values, which can be defined as\n subproperties.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Hash code".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :height, comment: "The height of e.g. a video frame typically\n expressed as a number of lines or the height of a picture/image expressed in millimeters\n or else.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:frameHeight".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#frameHeight".freeze, label: "Height".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :heightUnit, comment: "To specify a unit to express height.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Height unit".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :highlights, comment: "To provide highlights.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Highlights".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hobbies, comment: "The hobbies of a Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Hobbies".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :iFrameSize, comment: "The distance between 2 I-frames also known as the gop size.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "I-frame/Gop size".freeze, - range: "xsd:int".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :idDateOfCreation, comment: "The date when the identifier was generated.".freeze, - domain: "ebucore:Identifier".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, label: "Date of creation".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifierValue, comment: ["Range: string or anyURI.".freeze, "To provide the value attribued to an Identifier.".freeze], - domain: "ebucore:Identifier".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, label: "Identifier value".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inchesPerSecond, comment: "Identifies the inches per second at which an analog audio tape should be played back for human consumption.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:frameRate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#frameRate".freeze, label: "Inches per second".freeze, - range: "xsd:double".freeze, - subPropertyOf: "ebucore:playbackSpeed".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#playbackSpeed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instantiates, comment: "To link a particular manifestation of a\n BusinessObject to the corresponding Resource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Business object".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAgent, comment: ["Range: string or Agent.".freeze, "To identify a related Agent.".freeze], - domain: "ebucore:Agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAnimalGroom, comment: "To identify the groom / care taker of an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal groom".freeze, - range: ["ebucore:Agent".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAnimalOwner, comment: "To identify the owner of an animal.".freeze, - domain: "ebucore:Animal".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Animal".freeze, label: "Animal owner".freeze, - range: ["ebucore:Agent".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAnnotatedMediaResource, comment: "To link an Annotation to a MediaResource.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Media resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAnnotationBy, comment: "To link an Annotation to an Agent who created it.".freeze, - domain: "ebucore:Annotation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze, label: "Agent".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAttributedTo, comment: "Tassociate an Agent with a Provenance instance.".freeze, - domain: "ebucore:Provenance".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Provenance".freeze, label: "Provenance target".freeze, - range: ["ebucore:Agent".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isBrand, comment: ["Range: a string or Brand".freeze, "To identify a Brand.".freeze], - domain: "ebucore:EditorialObject".freeze, - inverseOf: "ebucore:hasEpisode".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasEpisode".freeze, label: "Brand".freeze, - range: ["ebucore:Brand".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Brand".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isCharacter, comment: ["Range: string or Agent.".freeze, "To identify a character.".freeze], - domain: "ebucore:Agent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, label: "Fictional character.".freeze, - range: ["ebucore:Character".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Character".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isChildOf, comment: "To link a BusinessOject or Resource to a parent.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Parent".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isClonedFrom, comment: "To identify the source of a clone Editorial Object or Resource".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Clone source".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isComposedOf, comment: "To identify mediaResources used to compose an Essence.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Media Resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isCoveredBy, comment: ["Range: a link to Rights or open text (string).".freeze, "The Rights or policy applicable to the\n BusinessObject, Asset, Resource or PublicationEvent.".freeze], - domain: ["ebucore:Asset".freeze, "ebucore:PublicationEvent".freeze], - equivalentProperty: ["dc11:rights".freeze, "ma:hasPermissions".freeze, "ma:hasPolicy".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze], + equivalentProperty: ["http://purl.org/dc/elements/1.1/rights".freeze, "http://www.w3.org/ns/ma-ont#hasPermissions".freeze, "http://www.w3.org/ns/ma-ont#hasPolicy".freeze], label: "Rights".freeze, - range: ["ebucore:Rights".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isDerivedFrom, comment: "Identifies a content-based relationship between two resources.".freeze, - domain: "ebucore:MediaResource".freeze, - inverseOf: "ebucore:derivedTo".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#derivedTo".freeze, label: "Derived from".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isDistributedOn, comment: ["Range: Service or string.".freeze, "To identify the platform on which content is distributed.".freeze], - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: ["Platform/Service/PublicationChannel".freeze, "Range: string or Service and subclasses".freeze], - range: ["ebucore:Service".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isDubbedFrom, comment: "the origin of a dubbed MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, - inverseOf: "ebucore:dubbedTo".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#dubbedTo".freeze, label: "Dubbed from".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isEditorialFormatOf, comment: "To identify an Editorial Object based on the same Editorial format".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Same editorial format".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isEpisodeOf, comment: ["Range: Series or string.".freeze, "The Episode of a Series or a Season.".freeze], - domain: "ebucore:Asset".freeze, - inverseOf: "ebucore:hasEpisode".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasEpisode".freeze, label: "Parent season / series".freeze, - range: ["ebucore:Series".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isEpisodeOfSeason, comment: ["Range: string or Season.".freeze, "The Episode of a Series or a Season.".freeze], - domain: "ebucore:Asset".freeze, - inverseOf: "ebucore:hasEpisode".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasEpisode".freeze, label: "Parent season / series".freeze, - range: ["ebucore:Season".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Season".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isEpisodeOfSeries, comment: ["Range: string or Series.".freeze, "The Episode of a Series or a Season.".freeze], - domain: "ebucore:Asset".freeze, - inverseOf: "ebucore:hasEpisode".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasEpisode".freeze, label: "Parent season / series".freeze, - range: ["ebucore:Series".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isFictitiousPerson, comment: ["Range: a string or a FictitiousPerson.".freeze, "To identify a Contact/Person being fictitious.".freeze], - domain: "ebucore:Character".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Character".freeze, label: "Fictitious contact".freeze, - range: ["ebucore:Person".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isInstantiatedBy, comment: "To identify a MediaResource instantiating an EditorialObject.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Media Resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isIssuedBy, comment: ["Range: Agent or String".freeze, "To identify the issuer of an identifier.".freeze], - domain: "ebucore:Identifier".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, label: "Issuer".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isMasterOf, comment: "To identify the master of a derived media resource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Derived media resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isMediaFragmentOf, comment: "To identify the Media Resource to which a Media Fragment belongs to".freeze, - domain: "ebucore:MediaFragment".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaFragment".freeze, label: "Media fragment source".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isMemberOf, comment: ["Range: string or Group.".freeze, "To identify a Group to which an EditorialObject is a member of.".freeze], - domain: "ebucore:Asset".freeze, - inverseOf: "ebucore:hasMember".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasMember".freeze, label: "Member of".freeze, - range: "ebucore:Group".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isMemberOfPublicationPlan, comment: "To identify a parent Publication Plan".freeze, - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "Parent publication plan".freeze, - range: "ebucore:PublicationPlan".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isNextInSequence, comment: "A link to an Asset following the current Asset in an ordered sequence.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Next".freeze, - range: "ebucore:Asset".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isOperatedBy, comment: ["Range: string or Service.".freeze, "To identify the Service that operates the\n PublicationChannel.".freeze], - domain: "ebucore:PublicationChannel".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze, label: "Operator, owner".freeze, - range: ["ebucore:Service".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isOwnedBy, comment: ["Range: string or Agent.".freeze, "To identify the Agent (Contact/person or\n Organisation) who owns a Service operating a PublicationChannel.".freeze], - domain: "ebucore:Service".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, label: "Owner".freeze, - range: ["ebucore:Agent".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isParentOf, comment: "To link a Asset to a parent Asset.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Child".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isPartOf, comment: "To identify the editorial object to which belongs a part.".freeze, - domain: "ebucore:Part".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, label: "Editorial object".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isPictureIdLocator, comment: ["Range: e.g. a string, URL or Locator.".freeze, "The location from where a Person identification picture can be accessed.".freeze], - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Identification picture locator".freeze, - range: ["ebucore:Locator".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Locator".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isRatingRelatedToBusinessObject, comment: "To identify the BusinessObject associated with a Rating.".freeze, - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Rated business object".freeze, - range: "ebucore:BusinessObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isRatingRelatedToResource, comment: "To identify the resource associated with a Rating.".freeze, - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Rated Resource".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isReferencedBy, comment: "To described references between assets.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Reference source".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isReleasedBy, comment: ["Range: Service or string".freeze, "To identify a Service assocoated to a PublicationEvent.".freeze], - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Service".freeze, - range: ["ebucore:Service".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isReplacedBy, comment: "To identify substitutions.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Replacement".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isRequiredBy, comment: "To express strong relations between Assets, BusinessObjects or Resources.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Required".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isScheduledOn, comment: "To associatre a PublicationEvent with an EditorialObject.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Publication event".freeze, - range: "ebucore:PublicationEvent".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isSeasonOf, comment: ["Range: Series or string.".freeze, "To assoicate a Season with a Series.".freeze], - domain: "ebucore:Season".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Season".freeze, label: "Series".freeze, - range: ["ebucore:Series".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isSeriesOf, comment: ["Range: Brand or string.".freeze, "To associate a Series with a Brand.".freeze], - domain: "ebucore:Series".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series".freeze, label: "Brand".freeze, - range: ["ebucore:Brand".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Brand".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isTimelineTrackPartOf, comment: "To associate an EditorialObject with a part of the TimelineTrack.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Editorial Object".freeze, - range: "ebucore:TimelineTrack".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isTrackPartOf, comment: "An element to identify a part of a track by a title, a start time and an end time in both the media source and media destination.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Track part source".freeze, - range: "ebucore:Track".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isVersionOf, comment: "To identify related versions.".freeze, - domain: "ebucore:MediaResource".freeze, - inverseOf: "ebucore:hasVersion".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + inverseOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasVersion".freeze, label: "Version of".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lineNumber, comment: "To provide the number of the line on which\n ancillary data is being carried and the equivalent in the digital domain.".freeze, - domain: "ebucore:AncillaryData".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze, label: "Line number".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :linkToLogo, comment: ["Range: string or Logo".freeze, "To provide a link to a Logo".freeze], - domain: "ebucore:Costume".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Costume".freeze, label: "Link to logo".freeze, - range: "ebucore:Logo".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Logo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :linkToSticker, comment: ["Range: anyURI or Sticker.".freeze, "To provide a link to a Sticker".freeze], - domain: "ebucore:Costume".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Costume".freeze, label: "Link to Sticker".freeze, - range: "ebucore:Sticker".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Sticker".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :live, comment: "A flag to signal that content is live".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "live".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :localFamiliyName, comment: "To provide a family name in its local expression.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Local familiy name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :localGivenName, comment: "To provide a given name in its local expression.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Local given name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationAddress, comment: "To provide the address of a\n Location.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Address".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationAddressArea, comment: "To provide the Area part of an\n Adrress.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Area".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:locationAddress".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationAddressCountry, comment: "To provide the country name and or country\n code.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Country".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:locationAddress".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationAddressLine, comment: "To provide an address line.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Adress line".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:locationAddress".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationAddressLocality, comment: "To provide the name of a city, village,\n etc.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Locality".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:locationAddress".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationAddressPostalCode, comment: "To provide an address postal\n code.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Postal code".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:locationAddress".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationAltitude, comment: "To define the altitude of a Location in\n meters.".freeze, - domain: "ebucore:Location".freeze, - equivalentProperty: "ma:locationAltitude".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#locationAltitude".freeze, label: "Altitude".freeze, - range: "xsd:float".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationCoordinateSystemName, comment: "To specify the name of the gps coordinate\n system used for the Location.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Coordinate system".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationDescription, comment: "To provide a description of a particular Location.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Location description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationId, comment: ["An identifier attributed to a Location.".freeze, "Range: Identifier, anyURI or string".freeze], - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Location identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationLatitude, comment: "The latitude of the Location.".freeze, - domain: "ebucore:Location".freeze, - equivalentProperty: ["geo:lat".freeze, "ma:locationLatitude".freeze], + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, + equivalentProperty: ["http://www.w3.org/2003/01/geo/wgs84_pos#lat".freeze, "http://www.w3.org/ns/ma-ont#locationLatitude".freeze], label: "Latitude".freeze, - range: "xsd:float".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationLongitude, comment: "To define the longitude of the\n Location.".freeze, - domain: "ebucore:Location".freeze, - equivalentProperty: ["geo:long".freeze, "ma:locationLongitude".freeze], + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, + equivalentProperty: ["http://www.w3.org/2003/01/geo/wgs84_pos#long".freeze, "http://www.w3.org/ns/ma-ont#locationLongitude".freeze], label: "Longitude".freeze, - range: "xsd:float".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationName, comment: "To provide a namefor a particular Location.".freeze, - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Location name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationRegion, comment: ["Range: string or RegionCode".freeze, "To provide a description of a particular region assocoated to the Location.".freeze], - domain: "ebucore:Location".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, label: "Region".freeze, - range: ["ebucore:RegionCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#RegionCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationTimeType, comment: ["A type of time at a Location.".freeze, "Range: string or LocationTimeType or anyURI.".freeze], - domain: "ebucore:Location".freeze, - equivalentProperty: "ma:locationName".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#locationName".freeze, label: "Location type".freeze, - range: ["ebucore:LocationTimeType".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#LocationTimeType".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationType, comment: ["A type of Location.".freeze, "Range: string or anyURI or LocationType".freeze], - domain: "ebucore:Location".freeze, - equivalentProperty: "ma:locationName".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#locationName".freeze, label: "Location type".freeze, - range: ["ebucore:LocationType".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#LocationType".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locatorTargetInformation, comment: "Information on the locator target.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:locator".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#locator".freeze, label: "Locator target information".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :log, comment: "To log everything in the content following predefined rules and criterias, as a neutral sequence of (possibly timed) textual descriptions.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Log".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loudnessIntegratedLoudness, comment: "The value for integrated loudness measured at AudioProgramme or AudioContent level.".freeze, - domain: ["ebucore:AudioContent".freeze, "ebucore:AudioProgramme".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze], label: "Integrated loudness".freeze, - range: "xsd:float".freeze, - subPropertyOf: "ebucore:loudnessParameters".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loudnessMaxMomentary, comment: "The value for maximum momentary loudness measured at AudioProgramme or AudioContent level.".freeze, - domain: ["ebucore:AudioContent".freeze, "ebucore:AudioProgramme".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze], label: "Max momentary loudness".freeze, - range: "xsd:float".freeze, - subPropertyOf: "ebucore:loudnessParameters".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loudnessMaxShortTerm, comment: "The value for maximum max short term loudness measured at AudioProgramme or AudioContent level.".freeze, - domain: ["ebucore:AudioContent".freeze, "ebucore:AudioProgramme".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze], label: "Max short term loudness".freeze, - range: "xsd:float".freeze, - subPropertyOf: "ebucore:loudnessParameters".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loudnessMaxTruepeak, comment: "The value for maximum true peak loudness measured at AudioProgramme or AudioContent level.".freeze, - domain: ["ebucore:AudioContent".freeze, "ebucore:AudioProgramme".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze], label: "Max true peak loudness".freeze, - range: "xsd:float".freeze, - subPropertyOf: "ebucore:loudnessParameters".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loudnessMethod, comment: "The method for loudness measurement at AudioProgramme or AudioContent level.".freeze, - domain: ["ebucore:AudioContent".freeze, "ebucore:AudioProgramme".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze], label: "Loudness method".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:loudnessParameters".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loudnessParameters, comment: "To provide loudness parameters.".freeze, - domain: ["ebucore:AudioContent".freeze, "ebucore:AudioProgramme".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze], label: "Loudness parameters".freeze, - range: "xsd:float".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loudnessRange, comment: "The loudness range measured at AudioProgramme or AudioContent level.".freeze, - domain: ["ebucore:AudioContent".freeze, "ebucore:AudioProgramme".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze], label: "Loudness range".freeze, - range: "xsd:float".freeze, - subPropertyOf: "ebucore:loudnessParameters".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mainTitle, comment: "Specifies the main title or name given to the\n EditorialObject.".freeze, - domain: "ebucore:Asset".freeze, - equivalentProperty: ["dc11:title".freeze, "ma:title".freeze], + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: ["http://purl.org/dc/elements/1.1/title".freeze, "http://www.w3.org/ns/ma-ont#title".freeze], label: "Main title".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:title".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#title".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maritalStatus, comment: "To identify the marital status of a Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Marital Status".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mediaResourceDescription, comment: "A description of a MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "MediaResource description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mediaResourceId, comment: ["Range: Identifier or string".freeze, "To identify a type of MediaResource, e.g. a template'.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Media resource Id".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mediaResourceType, comment: ["Range: MediaResource_Type or string".freeze, "To identify a type of MediaResource, e.g. a template'.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Media resource type".freeze, - range: ["ebucore:MediaResource_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :midRollAdAllowed, comment: "A flag to indicate whether it is allowed to insert ad breaks in mid-roll.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Midroll ad allowed".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :middleName, comment: "To provide one or more middle names for a Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Middle name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nickName, comment: "The nickname of a Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Nickname".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :noiseFilter, comment: "A flag to signal that a noise filter has been\n used.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Noise filter".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :notRated, comment: "A flag to indicate that the EditorialObejct has not been rated.".freeze, - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Not rated".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfAudioTracks, comment: "To provide the number of audio tracks.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Number of audio tracks".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "ebucore:numberOfTracks".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#numberOfTracks".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfTracks, comment: "The number of Tracks composing the MediaResource.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:numberOfTracks".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#numberOfTracks".freeze, label: "Number of tracks".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfVideoTracks, comment: "To provide the number of video tracks.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Number of video tracks".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "ebucore:numberOfTracks".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#numberOfTracks".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :occupation, comment: "The job / occupation name of a Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Occupation".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offers, comment: "To identify the PublicationEvents provided through a Service.".freeze, - domain: "ebucore:Service".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, label: "PublicationEvent".freeze, - range: "ebucore:PublicationEvent".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :officeEmailAddress, comment: "To provide the professional/office email\n address of an Agent (Contact/Person or Organisation).".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Office email".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:agentEmailAddress".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentEmailAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :officeMobileTelephoneNumber, comment: "To provide the office mobile telephone number of an\n Agent (Contact/Person).".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Telephone (private)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:agentTelephoneNumber".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentTelephoneNumber".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :officeTelephoneNumber, comment: "To provide the office telephone number of an\n Agent (Contact/Person).".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Telephone (private)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:agentTelephoneNumber".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentTelephoneNumber".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderedFlag, comment: "A flag to indicate that a EditorialObject is member of an ordered group or is an ordered group (e.g. Series)".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Ordered flag".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organisationDescription, comment: "To provide a description of an Organisation.".freeze, - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "Organisation description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organisationId, comment: ["Range: string or Identifier".freeze, "The identifier attributed to an Organisation".freeze], - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "Organisation identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organisationName, comment: "To provide the full name of an Organisation.".freeze, - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "Organisation name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organisationType, comment: ["Range: string or anyURI or Concept.".freeze, "To define a type of an Organisation.".freeze], - domain: "ebucore:Organisation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze, label: "Asset type".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orientation, comment: "The orientation of a Document or an Image i.e. landscape or\n portrait.".freeze, - domain: "ebucore:BusinessObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, label: "Orientation".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :originalTitle, comment: "The original title used to identify the work.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Original title.".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:title".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#title".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :packageByteSize, comment: "The size of a media package in\n Bytes.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Package size (in bytes)".freeze, - range: "xsd:long".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#long".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :packageName, comment: "The name of a media package in\n Bytes.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Package name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partDefinition, comment: "A definition associated with the Part.".freeze, - domain: "ebucore:Part".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, label: "Part definition".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partDescription, comment: "A description associated with the Part.".freeze, - domain: "ebucore:Part".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, label: "Part definition".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partId, comment: ["Range: a string or Identifier".freeze, "The identifier of a Part.".freeze], - domain: "ebucore:Part".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, label: "Part identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partName, comment: "A name associated with the Part.".freeze, - domain: "ebucore:Part".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, label: "Part name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partNumber, comment: "The number associated to a Part as one among\n many.".freeze, - domain: "ebucore:Part".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze, label: "Part number".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partTotalNumber, comment: "The total number of Parts associated with an EditorialObject.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Part total number".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :personDescription, comment: "To provide a description of a Person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :personHeight, comment: "To indicate the height of a person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Person height".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :personId, comment: ["An identifier attributed to a Person.".freeze, "Range: an Identifier or anyURI or string.".freeze], - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Person identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :personName, comment: "To provide e.g. compound names.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Person name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :personType, comment: ["A type attributed to a Person.".freeze, "Range: a Concept or anyURI or string.".freeze], - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Person type".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :personWeight, comment: "To indicate the weight of a person.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Person weight".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :playbackSpeed, comment: "Identifies the rate of units against time at which the resource should be played back for human consumption. If the unit of measure is known, use sub-properties framesPerSecond or inchesPerSecond.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:frameRate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#frameRate".freeze, label: "Playback speed".freeze, - range: "xsd:double".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :playlist, comment: "To provide a playlist.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Playlist".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :playsOut, comment: "To identify the Essence used in a PublicationEvent".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Essence".freeze, - range: "ebucore:Essence".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Essence".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :position, comment: "To indicate the position of an EditorialObject in an ordered\r\n group.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Position".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :privateEmailAddress, comment: "To provide the private email address of an\n Agent (Contact/Person)".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Private email".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:agentEmailAddress".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentEmailAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :privateHomepage, comment: "To provide an private web homepage of an Agent\n (Contact/Person).".freeze, - domain: "ebucore:Person".freeze, - equivalentProperty: "foaf:homepage".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, + equivalentProperty: "http://xmlns.com/foaf/0.1/homepage".freeze, label: "Homepage (private)".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "ebucore:agentWebHomepage".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentWebHomepage".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :privateMobileTelephoneNumber, comment: "To provide the private mobile telephone number of an\n Agent (Contact/Person).".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Telephone (private)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:agentTelephoneNumber".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentTelephoneNumber".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :privateTelephoneNumber, comment: "To provide the private telephone number of an\n Agent (Contact/Person).".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Telephone (private)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:agentTelephoneNumber".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentTelephoneNumber".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productionSynopsis, comment: "A synopsis or summary provided by the producer at the time of production.".freeze, label: "Production synopsis".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :promotionalInformation, comment: "To provide textual promotional information.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Promotional information".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :provenanceDateCreated, comment: "The date of creation of a Provenance instance.".freeze, - domain: "ebucore:Provenance".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Provenance".freeze, label: "Provenance creation date & time".freeze, - range: "xsd:dateTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :provenanceDateModified, comment: "The date of modification of a Provenance instance.".freeze, - domain: "ebucore:Provenance".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Provenance".freeze, label: "Provenance modification date & time".freeze, - range: "xsd:dateTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :provenanceDescription, comment: "To describe a Provenance.".freeze, - domain: "ebucore:Provenance".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Provenance".freeze, label: "Provenance description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :provenanceId, comment: "To identify a Provenance.".freeze, - domain: "ebucore:Provenance".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Provenance".freeze, label: "Provenance Id".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :provenanceName, comment: "To name a Provenance.".freeze, - domain: "ebucore:Provenance".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Provenance".freeze, label: "Provenance name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :provenanceType, comment: ["Range: string, anyURI or Concept.".freeze, "To define a type of Provenance.".freeze], - domain: "ebucore:Provenance".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Provenance".freeze, label: "Provenance type".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pubStatus, comment: "To indicate a publication status.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Publication status".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationChannelDescription, comment: "To provide a description of a PublicationChannel e.g. a TV channel or website.".freeze, - domain: "ebucore:PublicationChannel".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze, label: "PublicationChannel description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationChannelId, comment: ["An identifier attributed to a PublicationChannel.".freeze, "Range: Identifier, anyURI, string".freeze], - domain: "ebucore:PublicationChannel".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze, label: "Publication channel identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationChannelName, comment: "To provide a name to a PublicationChannel e.g. a TV channel or website.".freeze, - domain: "ebucore:PublicationChannel".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze, label: "PublicationChannel name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationChannelType, comment: ["Range: string or PublicationChannel_Type.".freeze, "To define a type of PublicationChannel.".freeze], - domain: "ebucore:PublicationChannel".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze, label: "Publication Channel type".freeze, - range: ["skos:Concept".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationDuration, comment: "The actual duration of a PublicationEvent.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "PublicationEvent duration".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationEndDateTime, comment: "The actual end date and time of a PublicationEvent.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "PublicationEvent end date & time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationEventAbstract, comment: "To provide an abstract for a PublicationEvent.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "PublicationEvent abstract".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationEventDescription, comment: "To provide the description of a PublicationEvent.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "PublicationEvent description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationEventId, comment: ["An identifier attributed to a PublicationEvent.".freeze, "Range: Identifier, anyURI, string".freeze], - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Publication event identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationEventName, comment: "To provide a name to a PublicationEvent.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "PublicationEvent name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationEventTitle, comment: "To provide a title for a PublicationEvent.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "PublicationEvent title".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationEventType, comment: ["A type of PublicationEvent.".freeze, "Range: a string or PublicationEvent_Type".freeze], - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Publication event type".freeze, - range: ["ebucore:PublicationEvent_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationPlanDescription, comment: "A description of a PublicationPlan.".freeze, - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "PublicationPlan description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationPlanEndDate, comment: "The end date of a PublicationPlan".freeze, - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "PublicationPlan end date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationPlanId, comment: ["An identifier attributed to a PublicationPlan.".freeze, "Range: Identifier, anyURI, string".freeze], - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "Publication plan identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationPlanName, comment: "A name attributed to a PublicationPlan.".freeze, - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "Publication plan name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationPlanStartDate, comment: "The start date of a PublicationPlan".freeze, - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "PublicationPlan start date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationPlanStatus, comment: "To provide a status regarding the PublicationPlan.".freeze, - domain: "ebucore:PublicationPlan".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationPlan".freeze, label: "PublicationPlan status".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationScheduleDate, comment: "To express specifically the schedule date to which a PublicationEvent is related in particular if the broacdast time is after midnight. For example, the schedule date would be May 29th and the programme is published at 1 am on May 30th, while still associated in the schedule with the night of May 29th.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Schedule date".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationStartDateTime, comment: "The actual start date and time of a PublicationEvent.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Publication start date & time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishedEndDateTime, comment: "The end date and time of a PublicationEvent as\n scheduled.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Publication end date & time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishedStartDateTime, comment: "The start date and time of a PublicationEvent\n as scheduled.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Publication start date & time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishedTitle, comment: "The title used to identify the work at publication time.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Published title.".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:title".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#title".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishes, comment: "The editorial object associated to a PublicationEvent.".freeze, - domain: "ebucore:PublicationEvent".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze, label: "Editorial object".freeze, - range: "ebucore:EditorialObject".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingDescription, comment: "To associate a description with a Rating.".freeze, - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Rating name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingId, comment: ["Range: string or anyURI or Identifier.".freeze, "To associate an id with a Rating.".freeze], - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Rating Id".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingName, comment: "To associate a name with a Rating.".freeze, - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Rating name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingScaleMax, comment: "The maximum value of the scale used for the Rating\n of a MediaResource.".freeze, - domain: "ebucore:Rating".freeze, - equivalentProperty: "ma:ratingScaleMax".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#ratingScaleMax".freeze, label: "Rating scale (top value)".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingScaleMin, comment: "The minimum value of the scale used for rating\n a MediaResource.".freeze, - domain: "ebucore:Rating".freeze, - equivalentProperty: "ma:ratingScaleMin".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#ratingScaleMin".freeze, label: "Rating scale (min. value)".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingSystemEnvironment, comment: "To identify the environment in which rating applies.".freeze, - domain: "ebucore:Rating".freeze, - equivalentProperty: "ma:hasRatingSystem".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasRatingSystem".freeze, label: "Rating environment".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingSystemName, comment: "To identify a Rating system by its name.".freeze, - domain: "ebucore:Rating".freeze, - equivalentProperty: "ma:hasRatingSystem".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#hasRatingSystem".freeze, label: "Rating system".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingType, comment: ["Range: string or anyURI or Concept.".freeze, "To define a type of Rating.".freeze], - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Rating type".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingValue, comment: "To express a free text Rating value defined in\n a rating classification scheme.".freeze, - domain: "ebucore:Rating".freeze, - equivalentProperty: "ma:ratingValue".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#ratingValue".freeze, label: "Rating".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :readyForPublication, comment: "A flag to indicate that the Essence is ready for publication.".freeze, - domain: "ebucore:Essence".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Essence".freeze, label: "Ready for publication".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reason, comment: "A reason given for a rating.".freeze, - domain: "ebucore:Rating".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze, label: "Reason".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :references, comment: "To express a reference between Assets, BusinessObjects or Resources.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "References".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :regionDelimX, comment: "To define the top left corner of a zone on\n the x-axis. If present with regionDelimy, the zone definition is complemented by the\n associated values of the height and width.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Region delimiter (x-axis)".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :regionDelimY, comment: "To define the bottom right corner of a zone on\n the y-axis. If present with regionDelimX, the zone definition is complemented by the\n associated values of the height and width.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Region delimiter (y-axis)".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationIdentifier, comment: ["Range: string or Identifier.".freeze, "To identify a Relation.".freeze], - domain: "ebucore:Relation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation".freeze, label: "Relation Type".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationLink, comment: "To define a link in a Relation.".freeze, - domain: "ebucore:Relation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation".freeze, label: "Link".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationNote, comment: "A note to provide additional information about a Relation.".freeze, - domain: "ebucore:Relation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation".freeze, label: "Relation Note".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationOrderedGroupFlag, comment: "A boolean to define if a Relation is defined within and ordered group.".freeze, - domain: "ebucore:Relation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation".freeze, label: "Relation Ordered group flag".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationRunningOrderNumber, comment: "The order number in a list.".freeze, - domain: "ebucore:Relation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation".freeze, label: "Relation Running Order Number".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationTotalNumberOfGroupMembers, comment: "Total number of group members in a Relation.".freeze, - domain: "ebucore:Relation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation".freeze, label: "Total number of group members.".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relationType, comment: ["Range: string or Relation_Type.".freeze, "To define a type of Relation.".freeze], - domain: "ebucore:Relation".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation".freeze, label: "Relation Type".freeze, - range: ["ebucore:Relation_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Relation_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :replaces, comment: "To identify substitution.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Replaces".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :represents, comment: "To establish a relation between a BusinessObject and an Asset.".freeze, - domain: "ebucore:EditorialObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, label: "Related asset".freeze, - range: "ebucore:Asset".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requires, comment: "To express dependency.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Requires".freeze, - range: "ebucore:MediaResource".freeze, - type: "rdf:Property".freeze + range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resolution, comment: "To define the resolution of an Asset e.g. video, image...".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Resolution".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceDescription, comment: "A desciprtion of a Resource.".freeze, - domain: "ebucore:Resource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, label: "Resource description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceFileSize, comment: "Provides the size of a Resource in bytes.".freeze, - domain: "ebucore:Resource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, label: "File size".freeze, - range: "xsd:double".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceFilename, comment: "The name of the file containing the\n Resource.".freeze, - domain: "ebucore:Resource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, label: "File name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceId, comment: ["An identifier associated to a Resource.".freeze, "Range: Identifier or anyURI or string".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Resource id".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceIdType, comment: ["Range: Resource_type or anyURI or string".freeze, "To define a type of Resource.".freeze], - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Resource id".freeze, - range: ["ebucore:Resource_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceLocatorTargetInformation, comment: "Information on the Resource locator target.".freeze, - domain: "ebucore:Resource".freeze, - equivalentProperty: "ma:locator".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#locator".freeze, label: "Locator target information".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceName, comment: "The name given to a Resource.".freeze, - domain: "ebucore:Resource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze, label: "Resource name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceOffset, comment: "The start offset within a Resource.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Resource offset".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceOffsetNormalPlaytime, comment: "The resource offset in normal play time".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Resource offset normal playtime".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:resourceOffset".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#resourceOffset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceOffsetNumberEditUnit, comment: "The resource offset in edit units".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Resource offset number edit units".freeze, - range: "xsd:long".freeze, - subPropertyOf: "ebucore:resourceOffset".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#long".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#resourceOffset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceOffsetTimecode, comment: "The resource offset in timecode".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Resource offset timecode.".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:resourceOffset".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#resourceOffset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resourceOffsetTimecodedropframe, comment: "The resource offset in timecode dropframe".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Resource offset timecode (dropframe).".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:resourceOffset".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#resourceOffset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsClearanceFlag, comment: "A flag to indicate that righst have been cleared".freeze, - domain: "ebucore:BusinessObject".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze, label: "Rights clearance flag".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsDuration, comment: "To define the duration of the period when Rights are applicable.".freeze, - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Rights duration".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsEndDateTime, comment: "To define the end time until when Rights are applicable.".freeze, - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Rights end date time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsExpression, comment: "To express an expression of Rights.".freeze, - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Rights".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsId, comment: ["An identifier attributed to a set of Rights.".freeze, "Range: Identifier, anyURI, string".freeze], - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Rights identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsLink, comment: "A link to e.g. a webpage where an expression of\n the rights can be found and consulted.".freeze, - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Rights web resource".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsStartDateTime, comment: "To define the start time since when Rights are applicable.".freeze, - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Rights start date time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsTerritoryExcludes, comment: ["A list of country or region codes to which Rights do not apply.".freeze, "Range: string or CountryCode.".freeze], - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Excluded territories".freeze, - range: ["ebucore:CountryCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CountryCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsTerritoryIncludes, comment: ["A list of country or region codes to which Rights apply.".freeze, "Range: string or CountryCode.".freeze], - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Included territories".freeze, - range: ["ebucore:CountryCode".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#CountryCode".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rightsType, comment: ["Range: a string or a Rights_Type or a ContractType.".freeze, "To identify a type of Rights.".freeze], - domain: "ebucore:Rights".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze, label: "Rights type".freeze, - range: ["ebucore:ContractType".freeze, "ebucore:ExclusivityType".freeze, "ebucore:RightsType".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ContractType".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ExclusivityType".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#RightsType".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :roleId, comment: ["Range: string or anyURI.".freeze, "To identify a Role.".freeze], - domain: "ebucore:Role".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Role".freeze, label: "role Id".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :roleType, comment: "To define a type of Role (not the Role itself).".freeze, - domain: "ebucore:Role".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Role".freeze, label: "Role type".freeze, - range: ["xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :salutationTitle, comment: "To provide a salutation title e.g M. Ms, Dr, Pr.".freeze, - domain: "ebucore:Person".freeze, - equivalentProperty: "foaf:title".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, + equivalentProperty: "http://xmlns.com/foaf/0.1/title".freeze, label: "Salutation title".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sampleRate, comment: "The frequency at which audio is sampled per second. Also called sampling rate.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:samplingRate".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#samplingRate".freeze, label: "Sample Rate".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sampleSize, comment: "The size of an audio sample in\n bits. Also called bit depth.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Sample size".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sampleType, comment: "The type of audio sample.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Sample type".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :scanningFormat, comment: "To define the scanning format for a\n MediaResource. For video, the two main values are \"interlaced\" or\n \"progressive\".".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Scanning format".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :script, comment: "To provide a script.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Script".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seasonNumber, comment: "To provide a Season number.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Season number".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceDescription, comment: "A description of the Service.".freeze, - domain: "ebucore:Service".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, label: "Service description".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceId, comment: ["Range: string or Identifier.".freeze, "To attribute an identifiier to a Service.".freeze], - domain: "ebucore:Service".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, label: "Service identiifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceName, comment: "The name of the Service.".freeze, - domain: "ebucore:Service".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, label: "Service name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceType, comment: ["Range: string or Service_type".freeze, "The type of a Service.".freeze], - domain: "ebucore:Service".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze, label: "Service type".freeze, - range: ["ebucore:Service_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shotLog, comment: "Provides a shot-by-shot description of a MediaResource.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Shot log".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :start, comment: "Start timestamp e.g. the start time for a MediaResource.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Start time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startEditUnits, comment: "A start time expressed as a number of edit\n units.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Start time (edit units)".freeze, - range: "xsd:double".freeze, - subPropertyOf: "ebucore:start".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startNormalPlayTime, comment: "A start time expressed as a normal play time.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Start time (normal play time)".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:start".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startOffsetEditUnit, comment: "A start offset time expressed as a number of edit\n units.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Startoffset time (edit units)".freeze, - range: "xsd:double".freeze, - subPropertyOf: "ebucore:start".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startOffsetNormalPlayTime, comment: "A start offset time expressed as normal play time.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Startoffset time (edit units)".freeze, - range: "xsd:double".freeze, - subPropertyOf: "ebucore:start".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#double".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startOffsetTimecode, comment: "A start offset time expressed as\n timecode.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Start offset time (timecode)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:start".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startOffsetTimecodeDropFrame, comment: "A start offset time expressed as\n timecode with drop frames.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Start offset time (timecode, drop frames)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:start".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startTimecode, comment: "A start time expressed as\n timecode.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Start time (timecode)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:start".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startTimecodeDropFrame, comment: "A start time expressed as\n timecode with drop frames.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Start time (timecode, drop frames)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:start".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subtitle, comment: "A complementary subtitle.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Subtitle".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:alternativeTitle".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suffix, comment: "To provide a suffix associated with a Person name e.g. Jr.".freeze, - domain: "ebucore:Person".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, label: "Suffix".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :summary, comment: "To provide a summary.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Summary".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :synopsis, comment: "To provide a summary.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Synopsis".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tableOfContent, comment: "to provide a table of content.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Table of content".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tag, comment: "To provide a list of tags.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Tag".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:description".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetAudienceSystem, comment: "To define the system used to provide a TargetAudience.".freeze, - domain: "ebucore:AudienceLevel".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudienceLevel".freeze, label: "Target audience system".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineBoxHeight, comment: "The height of the text box containing the TextLine.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line box height.".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineBoxTopLeftCornerLineNumber, comment: "The coordinates on a vertical axis of the position of the top left corner of the text box containing the TextLine.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line box top left corner Y position.".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineBoxTopLeftCornerPixelNumber, comment: "The coordinates on an horizontal axis of the position of the top left corner of the text box containing the TextLine.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line box top left Coner X position.".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineBoxWidth, comment: "The width of the text box containing the TextLine.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line box width.".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineContent, comment: "To provide the content of a text line.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineEndEditUnits, comment: "The end time of a TextLine expressed as a number of edit units.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line end in edit units".freeze, - range: "xsd:long".freeze, - subPropertyOf: "ebucore:textLineEndTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#long".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#textLineEndTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineEndNormalPlayTime, comment: "The end time of a TextLine expressed as a normal play time.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line end in normal play time".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:textLineEndTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#textLineEndTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineEndTime, comment: "The end time point of a TextLine in a Scene.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line end time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineEndTimecode, comment: "The end time of a TextLine expressed as timecode.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line end timecode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:textLineEndTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#textLineEndTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineEndTimecodeDropFrame, comment: "The end time of a TextLine expressed as timecode with drop frames.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line end timecode drop frames".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:textLineEndTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#textLineEndTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineOrder, comment: "The order in which a text line can be found e.g. in a scene.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line order".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineStartEditUnits, comment: "The start time of a TextLine expressed as a number of edit units.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line start in edit units".freeze, - range: "xsd:long".freeze, - subPropertyOf: "ebucore:textLineStartTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#long".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#textLineStartTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineStartNormalPlayTime, comment: "The start time of a TextLine expressed as a normal play time.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line start in normal play time".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:textLineStartTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#textLineStartTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineStartTime, comment: "The start time point of a TextLine in a Scene.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line start time".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineStartTimecode, comment: "The start time of a TextLine expressed as timecode.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line start timecode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:textLineStartTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#textLineStartTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textLineStartTimecodeDropFrame, comment: "The start time of a TextLine expressed as timecode with drop frames.".freeze, - domain: "ebucore:TextLine".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TextLine".freeze, label: "Text line start timecode drop frames".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:textLineStartTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#textLineStartTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timeCreated, comment: "the tie of creation of an Asset.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Time created.".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timelineTrackDuration, comment: "To express the duration of a TimelineTrack.".freeze, - domain: "ebucore:TimelineTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack".freeze, label: "TimelineTrack duration".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timelineTrackDurationEditUnits, comment: "To provide a duration as a number of edit units.".freeze, - domain: "ebucore:TimelineTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack".freeze, label: "Duration (edit unit)".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:timelineTrackDuration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#timelineTrackDuration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timelineTrackDurationNormalPlayTime, comment: "To provide a duration as normal\n time.".freeze, - domain: "ebucore:TimelineTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack".freeze, label: "Duration (time)".freeze, - range: "xsd:time".freeze, - subPropertyOf: "ebucore:timelineTrackDuration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#timelineTrackDuration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timelineTrackDurationTimecode, comment: "The duration expressed as a\n timecode.".freeze, - domain: "ebucore:TimelineTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack".freeze, label: "Duration (timecode)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:timelineTrackDuration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#timelineTrackDuration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timelineTrackDurationTimecodeDropFrame, comment: "The duration expressed as a\n timecode with drop frames.".freeze, - domain: "ebucore:TimelineTrack".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#TimelineTrack".freeze, label: "Duration (timecode, drop frame)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:timelineTrackDuration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#timelineTrackDuration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, comment: ["All value of the EBU title status\n classification scheme\n (http://www.ebu.ch/metadata/cs/web/ebu_TitleStatusCodeCS_p.xml.htm) are candidates\n subproperties of the title property as implemented for an example with\n alternativeTitle.".freeze, "Specifies the title or name given to the\n 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\n the title.".freeze], - domain: "ebucore:Asset".freeze, - equivalentProperty: ["dc11:title".freeze, "ma:title".freeze], + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, + equivalentProperty: ["http://purl.org/dc/elements/1.1/title".freeze, "http://www.w3.org/ns/ma-ont#title".freeze], label: "Title".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalNumberOfEpisodes, comment: "To provide the total number of episodes in a Series or a Season.".freeze, - domain: "ebucore:Group".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, label: "Total number of episodes".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalNumberOfGroupMembers, comment: "To provide the total number of members in a Group.".freeze, - domain: "ebucore:Group".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze, label: "Total number of Group members".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trackDefinition, comment: "To provide a definition associated to a\n Track.".freeze, - domain: "ebucore:Track".freeze, - equivalentProperty: "ma:trackName".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#trackName".freeze, label: "Definition".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trackId, comment: ["An Identifier attributed to a Track.".freeze, "Range: Identifier, anyURI, string".freeze], - domain: "ebucore:Track".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, label: "Track identifier".freeze, - range: ["ebucore:Identifier".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Identifier".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trackName, comment: "To provide name of a\n Track.".freeze, - domain: "ebucore:Track".freeze, - equivalentProperty: "ma:trackName".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#trackName".freeze, label: "Track name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trackType, comment: ["Range: string or Track_Type".freeze, "The type attributed to a Track.".freeze], - domain: "ebucore:Track".freeze, - equivalentProperty: "ma:trackName".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#trackName".freeze, label: "Track name".freeze, - range: ["ebucore:Track_Type".freeze, "xsd:anyURI".freeze, "xsd:string".freeze], - type: "rdf:Property".freeze + range: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track_Type".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :translationTitle, comment: "A translated version of the title.".freeze, - domain: ["ebucore:EditorialObject".freeze, "ebucore:MediaResource".freeze], + domain: ["http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze, "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze], label: "Translation title".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:alternativeTitle".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :username, comment: "The username by which a Person is\n known e.g. when attributing a rating value.".freeze, - domain: "ebucore:Person".freeze, - equivalentProperty: "foaf:nick".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Person".freeze, + equivalentProperty: "http://xmlns.com/foaf/0.1/nick".freeze, label: "Username".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :version, comment: "To provide information on the current version of an EditorialObject.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Version".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :versionTitle, comment: "An alternative title specific to a verison of content.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Version title".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:alternativeTitle".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoBitRate, comment: "The video bitrate. To provide the bitrate at which the MediaResource can be played\r\n in bits/second. Current bitrate if constant, and average bitrate if\r\n variable.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Video bitrate".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "ebucore:bitRate".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#bitRate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoBitRateMax, comment: "The maximum video bitrate.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Video bitrate max".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "ebucore:bitRateMax".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#bitRateMax".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoBitRateMode, comment: "The video bitrate mode.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Video bitrate mode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:bitRateMode".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#bitRateMode".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoEncodingLevel, comment: "The encoding level as defined in specifications.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Video encoding level".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:encodingLevel".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#encodingLevel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoEncodingProfile, comment: "The encoding level as defined in specifications.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Video encoding profile".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:encodingProfile".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#encodingProfile".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :width, comment: "The width of e.g. a video frame typically\n expressed as a number of pixels, or picture/image in millimeters.".freeze, - domain: "ebucore:MediaResource".freeze, - equivalentProperty: "ma:frameWidth".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, + equivalentProperty: "http://www.w3.org/ns/ma-ont#frameWidth".freeze, label: "Width".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :widthUnit, comment: "The unit used to measure a width e.g. in pixels\n or number of lines or millimeters or else.".freeze, - domain: "ebucore:MediaResource".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze, label: "Width unit".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :wordCount, comment: "The number of words contained in a\n document.".freeze, - domain: "ebucore:Document".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Document".freeze, label: "Word count".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workingTitle, comment: "A title used while content is not complete.".freeze, - domain: "ebucore:Asset".freeze, + domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset".freeze, label: "Working title".freeze, - range: "xsd:string".freeze, - subPropertyOf: "ebucore:alternativeTitle".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/edm.rb b/lib/rdf/vocab/edm.rb index ee7febb..c60da29 100644 --- a/lib/rdf/vocab/edm.rb +++ b/lib/rdf/vocab/edm.rb @@ -3,566 +3,374 @@ # This file generated automatically using rdf vocabulary format from http://www.europeana.eu/schemas/edm/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Europeana Data Model (EDM) vocabulary - # # - # # The Europeana Data Model (EDM) is aimed at being an integration medium for collecting, connecting and enriching the descriptions provided by Europeana data providers. The RDF vocabulary for http://www.europeana.eu/schemas/edm/ defines the elements introduced by EDM (as opposed to the ones EDM re-uses from other namespaces). - # # @version 5.2.4 - # class EDM < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EuropeanaAggregation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EuropeanaObject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :InformationResource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NonInformationResource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalThing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Place - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProvidedCHO - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimeSpan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebResource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aggregatedCHO - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :begin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :collectionName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :country - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentLocation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataProvider - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :end - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :europeanaProxy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :happenedAt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMet - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasView - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :incorporates - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAnnotationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isDerivativeOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isNextInSequence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRelatedTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRepresentationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isShownAt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isShownBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSimilarTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSuccessorOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :landingPage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :object - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :occurredAt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :preview - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provider - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :realizes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rights - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :type - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ugc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unstored - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :uri - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :userTag - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasPresentAt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :year - # - # end EDM = Class.new(RDF::StrictVocabulary("http://www.europeana.eu/schemas/edm/")) do # Ontology definition ontology :"http://www.europeana.eu/schemas/edm/", - "dc11:contributor": ["http://www.ibi.hu-berlin.de/institut/personen/iwanowa".freeze, "http://www.ics.forth.gr/isl/people/people_individual.jsp?Person_ID=2".freeze, "http://www.image.ece.ntua.gr/~ndroso/".freeze, "http://www.image.ntua.gr/~tzouvaras/".freeze, term( - "foaf:name": "Hugo Manguinhas".freeze, - type: "foaf:Person".freeze + "http://purl.org/dc/elements/1.1/contributor": ["http://www.ibi.hu-berlin.de/institut/personen/iwanowa".freeze, "http://www.ics.forth.gr/isl/people/people_individual.jsp?Person_ID=2".freeze, "http://www.image.ece.ntua.gr/~ndroso/".freeze, "http://www.image.ntua.gr/~tzouvaras/".freeze, term( + "http://xmlns.com/foaf/0.1/name": "Hugo Manguinhas".freeze, + type: "http://xmlns.com/foaf/0.1/Person".freeze ), term( - "foaf:name": "Participants of Europeana Version 1.0 Work Package on Further Specification of Functionality and Interoperability aspects of Europeana (WP3)".freeze, - type: "foaf:Organization".freeze + "http://xmlns.com/foaf/0.1/name": "Participants of Europeana Version 1.0 Work Package on Further Specification of Functionality and Interoperability aspects of Europeana (WP3)".freeze, + type: "http://xmlns.com/foaf/0.1/Organization".freeze )], - "dc11:creator": "http://data.semanticweb.org/person/antoine-isaac".freeze, - "dc11:description": "The Europeana Data Model (EDM) is aimed at being an integration medium for collecting, connecting and enriching the descriptions provided by Europeana data providers. The RDF vocabulary for http://www.europeana.eu/schemas/edm/ defines the elements introduced by EDM (as opposed to the ones EDM re-uses from other namespaces).".freeze, - "dc11:modified": "2013-05-20".freeze, - "dc11:publisher": "http://europeana.eu".freeze, - "dc11:title": "Europeana Data Model (EDM) vocabulary".freeze, - "dc:issued": "2010-03-25".freeze, - "foaf:homepage": "http://pro.europeana.eu/edm-documentation".freeze, + "http://purl.org/dc/elements/1.1/creator": "http://data.semanticweb.org/person/antoine-isaac".freeze, + "http://purl.org/dc/elements/1.1/description": "The Europeana Data Model (EDM) is aimed at being an integration medium for collecting, connecting and enriching the descriptions provided by Europeana data providers. The RDF vocabulary for http://www.europeana.eu/schemas/edm/ defines the elements introduced by EDM (as opposed to the ones EDM re-uses from other namespaces).".freeze, + "http://purl.org/dc/elements/1.1/modified": "2013-05-20".freeze, + "http://purl.org/dc/elements/1.1/publisher": "http://europeana.eu".freeze, + "http://purl.org/dc/elements/1.1/title": "Europeana Data Model (EDM) vocabulary".freeze, + "http://purl.org/dc/terms/issued": "2010-03-25".freeze, "http://purl.org/vocab/vann/changes": "\n=======\nChanges between ontology file EDM version 5.2.4 (edm, was once EDM-v524-120820)\nand ontology file EDM version 5.2.3 (EDM-v523-120123)\n=======\n1. edm:isShownAt made a sub-property of edm:hasView\n2. added edm:begin and edm:end and their mappings to CRM\n3. added owl:Class declarations added for compatibility with some OWL-DL reasoners (feedback from Pedro Szekely, ISI)\n4. added \"of\" at the end of the label for edm:isNextInSequence\n5. added vocabulary metadata to follow Linked Open Vocabularies (http://lov.okfn.org/) and ADMS (https://joinup.ec.europa.eu/asset/adms/release/100) guidelines\n6. removed a domain axiom on edm:hasMet\n7. added edm:collectionName and edm:europeanaProxy\n8. removed version number from file name\n9. generalisation of Country, DataProvider and Provider\n10. updated CRM namespace and CRM class and property identifiers\n11. added FRBRoo mappings\n ".freeze, "http://purl.org/vocab/vann/example": ["http://data.europeana.eu".freeze, "http://pro.europeana.eu/case-studies-edm".freeze], "http://purl.org/vocab/vann/preferredNamespacePrefix": "edm".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://www.europeana.eu/schemas/edm/".freeze, "http://purl.org/vocommons/voaf#toDoList": "\n=======\nRemaining TODOs for ontology file EDM version 5.2.4\n=======\n- finish and check FRBRoo mappings according to the recommendations of the EDM-FRBRoo task force. Also include implicit mappings and mappings for elements outside the EDM namespace?\n- try to capture formal cardinality constraints resulting from \"Obligation and Occurrence\" documentation, which should be attached to non-EDM constructs (esp. ore:Aggregation)\n- continue adding documentation values (skos:scopeNote, skos:example, etc, according to 1.), starting from edm:InformationResource. Add all Europeana examples and rationale notes for non-EDM constructs\n- use specific EDM-doc properties for \"rationale\" and \"obligation and occurrence\". Use skos:definition for \"Europeana definition\", skos:example for \"Example\", skos:note for \"Europeana note\"\n ".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "5.2.4".freeze, "http://www.w3.org/ns/adms#relatedWebPage": "http://europeanalabs.eu/wiki/EDMPrototypingTask11".freeze, "http://www.w3.org/ns/radion#versionNotes": "The present specification is based on the document \"Definition of the Europeana Data Model elements\", originally edited by Carlo Meghini. It is aligned with the version 5.2.4 of these EDM Definitions.".freeze, - "owl:versionInfo": "5.2.4".freeze, - type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze] + "http://xmlns.com/foaf/0.1/homepage": "http://pro.europeana.eu/edm-documentation".freeze, + type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze] # Class definitions term :Agent, definition: "This class comprises people, either individually or in groups, who have the\npotential to perform intentional actions for which they can be held responsible.".freeze, equivalentClass: "http://www.cidoc-crm.org/rdfs/cidoc-crm#E39_Actor".freeze, + "http://www.w3.org/2004/02/skos/core#example": "Leonardo da Vinci, the British Museum, W3C".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Rationale: This class is a domain of edm:wasPresentAt".freeze, label: "Agent".freeze, - "skos:example": "Leonardo da Vinci, the British Museum, W3C".freeze, - "skos:scopeNote": "Rationale: This class is a domain of edm:wasPresentAt".freeze, - subClassOf: "edm:NonInformationResource".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.europeana.eu/schemas/edm/NonInformationResource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EuropeanaAggregation, definition: "The set of resources related to a single Cultural Heritage Object that\ncollectively represent that object in Europeana. Such set consists of: all\ndescriptions about the object that Europeana collects from (possibly different) content providers, including thumbnails and other forms of abstractions, as well as of the description of the object Europeana builds.".freeze, equivalentClass: term( cardinality: "1".freeze, - onProperty: "edm:aggregatedCHO".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.europeana.eu/schemas/edm/aggregatedCHO".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), + "http://www.w3.org/2004/02/skos/core#example": ["The 56th issue of \"Le Temps\" is a (different) Cultural Heritage Object represented in Europeana by another EuropeanaAggregation instance".freeze, "The journal \"Le Temps\" is a Cultural Heritage Object represented in Europeana by one EuropeanaAggregation instance".freeze, "The painting Mona Lisa is a Cultural Heritage Object represented in Europeana by one EuropeanaAggregation instance".freeze], + "http://www.w3.org/2004/02/skos/core#scopeNote": ["Obligation and Occurence: The relation between the Cultural Heritage Objects represented in Europeana and the instances of the class EuropeanaAggregation is one-to-one, in the data maintained by Europeana: every Cultural Heritage Object is represented by an instance of EuropeanaAggregation, and every instance of EuropeanaAggregation represent a Cultural Heritage Object.".freeze, "Rationale: This class is used in Europeana to gather in a single conceptual unit all the information about a Cultural Heritage Object, necessary for all operations on these objects.".freeze], label: "Europeana Aggregation".freeze, note: "An instance of EuropeanaAggregation is created at ingestion time for each different Cultural Heritage Object recognized by Europeana. Such instance is associated to the Cultural Heritage Object that it is about, by the property edm:aggregatedCHO".freeze, - "skos:example": ["The 56th issue of \"Le Temps\" is a (different) Cultural Heritage Object represented in Europeana by another EuropeanaAggregation instance".freeze, "The journal \"Le Temps\" is a Cultural Heritage Object represented in Europeana by one EuropeanaAggregation instance".freeze, "The painting Mona Lisa is a Cultural Heritage Object represented in Europeana by one EuropeanaAggregation instance".freeze], - "skos:scopeNote": ["Obligation and Occurence: The relation between the Cultural Heritage Objects represented in Europeana and the instances of the class EuropeanaAggregation is one-to-one, in the data maintained by Europeana: every Cultural Heritage Object is represented by an instance of EuropeanaAggregation, and every instance of EuropeanaAggregation represent a Cultural Heritage Object.".freeze, "Rationale: This class is used in Europeana to gather in a single conceptual unit all the information about a Cultural Heritage Object, necessary for all operations on these objects.".freeze], - subClassOf: ["edm:EuropeanaObject".freeze, "ore:Aggregation".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.europeana.eu/schemas/edm/EuropeanaObject".freeze, "http://www.openarchives.org/ore/terms/Aggregation".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EuropeanaObject, definition: "Any object that is the result of Europeana’s activities".freeze, + "http://www.w3.org/2004/02/skos/core#example": ["An annotation created by a user through the Europeana portal".freeze, "Any content created by the users through the service made available by Europeana for that purpose".freeze, "Any instance of the class EuropeanaAggregation".freeze], + "http://www.w3.org/2004/02/skos/core#scopeNote": "Rationale: This class is used to tag objects that are the result of activity of Europeana, and, as such, objects on which Europeana holds rights".freeze, label: "Europeana Object".freeze, - "skos:example": ["An annotation created by a user through the Europeana portal".freeze, "Any content created by the users through the service made available by Europeana for that purpose".freeze, "Any instance of the class EuropeanaAggregation".freeze], - "skos:scopeNote": "Rationale: This class is used to tag objects that are the result of activity of Europeana, and, as such, objects on which Europeana holds rights".freeze, - subClassOf: "edm:WebResource".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.europeana.eu/schemas/edm/WebResource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Event, definition: "An event is a change \"of states in cultural, social or physical systems,\n regardless of scale, brought about by a series or group of coherent physical,\ncultural, technological or legal phenomena\" (E5 Event in CIDOC CRM) or a \"set of coherent phenomena or cultural manifestations bounded in time and space\" (E4 Period in CIDOC CRM)\n".freeze, equivalentClass: ["http://iflastandards.info/ns/fr/frbr/frbroo/F8_Event".freeze, "http://metadata.net/harmony/abc#Temporality".freeze, "http://purl.org/vocab/frbr/core#Event".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#E4_Period".freeze], + "http://www.w3.org/2004/02/skos/core#example": ["the 2nd World War".freeze, "the act of painting Mona Lisa".freeze, "the change of custody of Mona Lisa".freeze], + "http://www.w3.org/2004/02/skos/core#scopeNote": "Rationale:This class is a domain of edm:happenedAt and the domain of edm:occurredAt".freeze, label: "Event".freeze, note: "Events are identified either by the content provider or by Europeana enrichment at ingestion time".freeze, - "skos:example": ["the 2nd World War".freeze, "the act of painting Mona Lisa".freeze, "the change of custody of Mona Lisa".freeze], - "skos:scopeNote": "Rationale:This class is a domain of edm:happenedAt and the domain of edm:occurredAt".freeze, - subClassOf: ["edm:NonInformationResource".freeze, term( + subClassOf: ["http://www.europeana.eu/schemas/edm/NonInformationResource".freeze, term( cardinality: "1".freeze, - onProperty: "edm:happenedAt".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.europeana.eu/schemas/edm/happenedAt".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InformationResource, definition: "An information resource is a resource whose essential characteristics can be conveyed in a single message. It can be associated with a URI, it can have a representation, for example: a text is an InformationResource.".freeze, equivalentClass: ["http://www.cidoc-crm.org/rdfs/cidoc-crm#E89_Propositional_Object".freeze, term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list("http://iflastandards.info/ns/fr/frbr/frbroo/F1_Work".freeze, "http://iflastandards.info/ns/fr/frbr/frbroo/F2_Expression".freeze, "http://iflastandards.info/ns/fr/frbr/frbroo/F3_Manifestation_Product_Type".freeze, "http://iflastandards.info/ns/fr/frbr/frbroo/F4_Manifestation_Singleton".freeze) ), term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze) )], label: "Information Resource".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NonInformationResource, definition: "All resources that are not information resources.".freeze, + "http://www.w3.org/2002/07/owl#complementOf": "http://www.europeana.eu/schemas/edm/InformationResource".freeze, label: "Non-Information Resource".freeze, - "owl:complementOf": "edm:InformationResource".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PhysicalThing, definition: "A persistent physical item such as a painting, a building, a book or a stone.\nPersons are not items. This class represents Cultural Heritage Objects known to Europeana to be physical things (such as Mona Lisa) as well as all physical things Europeana refers to in the descriptions of Cultural Heritage Objects (such as the Rosetta Stone).".freeze, equivalentClass: "http://www.cidoc-crm.org/rdfs/cidoc-crm#E18_Physical_Thing".freeze, label: "Physical Thing".freeze, - subClassOf: "edm:NonInformationResource".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.europeana.eu/schemas/edm/NonInformationResource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Place, definition: "An \"extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter\" (CIDOC CRM)".freeze, equivalentClass: ["http://iflastandards.info/ns/fr/frbr/frbroo/F9_Place".freeze, "http://metadata.net/harmony/abc#Place".freeze, "http://purl.org/vocab/frbr/core#Place".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#E53_Place".freeze, "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#space-region".freeze], label: "Place".freeze, - subClassOf: "edm:NonInformationResource".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.europeana.eu/schemas/edm/NonInformationResource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProvidedCHO, definition: "This class comprises the Cultural Heritage objects that Europeana collects descriptions about.".freeze, + "http://www.w3.org/2004/02/skos/core#example": "Mona Lisa, Winged Victory of Samothrace".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Rationale: This class is the range of edm:aggregatedCHO. A resource of type ProvidedCHO can be the subject of statements using edm:isRelatedTo or any more specific property.".freeze, label: "Provided CHO".freeze, note: "This class has been mostly motivated by the need to assign a type to the “central node” in the EDM pattern, during the ingestion process, related to the XML expression of EDM at that stage. It was especially intended to fit the cases where edm:PhysicalThing cannot be used as the type of the resource standing for the real-world object (independently of any specific data contributor perspective).".freeze, - "skos:example": "Mona Lisa, Winged Victory of Samothrace".freeze, - "skos:scopeNote": "Rationale: This class is the range of edm:aggregatedCHO. A resource of type ProvidedCHO can be the subject of statements using edm:isRelatedTo or any more specific property.".freeze, subClassOf: term( cardinality: "1".freeze, - onProperty: term( - inverseOf: "edm:aggregatedCHO".freeze, - type: "rdf:Property".freeze - ), - type: "owl:Restriction".freeze + onProperty: "_:g11900".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TimeSpan, definition: "The class of \"abstract temporal extents, in the sense of Galilean physics,\n having a beginning, an end and a duration\" (CIDOC CRM)".freeze, equivalentClass: ["http://metadata.net/harmony/abc#Time".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#E52_Time-Span".freeze, "http://www.loa-cnr.it/ontologies/DOLCE-Lite.owl#time-interval".freeze], label: "Time Span".freeze, - subClassOf: ["dc:PeriodOfTime".freeze, "edm:NonInformationResource".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/dc/terms/PeriodOfTime".freeze, "http://www.europeana.eu/schemas/edm/NonInformationResource".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WebResource, definition: "Information Resources that have at least one Web Representation and at least\na URI.".freeze, label: "Web Resource".freeze, - subClassOf: "edm:InformationResource".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.europeana.eu/schemas/edm/InformationResource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :aggregatedCHO, definition: "This property associates an ORE aggregation with the cultural heritage object(s) (CHO for short) it is about.".freeze, - domain: "ore:Aggregation".freeze, + domain: "http://www.openarchives.org/ore/terms/Aggregation".freeze, label: "Aggregated Cultural Heritage Object".freeze, - range: "edm:ProvidedCHO".freeze, - subPropertyOf: ["dc11:subject".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#P129_is_about".freeze, "ore:aggregates".freeze], - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/ProvidedCHO".freeze, + subPropertyOf: ["http://purl.org/dc/elements/1.1/subject".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#P129_is_about".freeze, "http://www.openarchives.org/ore/terms/aggregates".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :begin, definition: "This property denotes the start date of a period of time.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("edm:Agent".freeze, "edm:TimeSpan".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.europeana.eu/schemas/edm/Agent".freeze, "http://www.europeana.eu/schemas/edm/TimeSpan".freeze) ), label: "Begin".freeze, - subPropertyOf: "edm:isRelatedTo".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.europeana.eu/schemas/edm/isRelatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :collectionName, definition: "This property holds the collection identifier given to the dataset in Europeana.".freeze, label: "Collection Name".freeze, note: "The value of this property is provided by Europeana as part of the ingestion process.".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :country, label: "Country".freeze, subPropertyOf: "http://www.cidoc-crm.org/rdfs/cidoc-crm#P12_occurred_in_the_presence_of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :currentLocation, definition: "The geographic location and/or name of the repository, building, site, or other entity whose boundaries presently include the resource.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("edm:ProvidedCHO".freeze, term( - intersectionOf: list(term( - type: "owl:Class".freeze - ), term( - onProperty: "ore:proxyFor".freeze, - someValuesFrom: "edm:ProvidedCHO".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.europeana.eu/schemas/edm/ProvidedCHO".freeze, "_:g12720".freeze) ), - equivalentProperty: ["geo:location".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#P55_has_current_location".freeze], + equivalentProperty: ["http://www.cidoc-crm.org/rdfs/cidoc-crm#P55_has_current_location".freeze, "http://www.w3.org/2003/01/geo/wgs84_pos#location".freeze], label: "Current Location".freeze, - range: "edm:Place".freeze, - subPropertyOf: "dc:spatial".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/Place".freeze, + subPropertyOf: "http://purl.org/dc/terms/spatial".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :dataProvider, definition: "The name or identifier of the organisation who contributes data indirectly to an aggregation service (e.g. Europeana).".freeze, - domain: "ore:Aggregation".freeze, + domain: "http://www.openarchives.org/ore/terms/Aggregation".freeze, label: "Data Provider".freeze, - range: "edm:Agent".freeze, - subPropertyOf: "dc:provenance".freeze, - type: "rdf:Property".freeze + range: "http://www.europeana.eu/schemas/edm/Agent".freeze, + subPropertyOf: "http://purl.org/dc/terms/provenance".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :end, definition: "This property denotes the end date of a period of time.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("edm:Agent".freeze, "edm:TimeSpan".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.europeana.eu/schemas/edm/Agent".freeze, "http://www.europeana.eu/schemas/edm/TimeSpan".freeze) ), label: "End".freeze, - subPropertyOf: "edm:isRelatedTo".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.europeana.eu/schemas/edm/isRelatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :europeanaProxy, definition: "This property serves only as a flag to indicate that a proxy is a Europeana proxy (as opposed to a provider proxy). It is for internal use only.".freeze, label: "Europeana Proxy".freeze, note: "By default, any proxy without this flag can be interpreted as having the value false and is a provider proxy.".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :happenedAt, definition: "This property associates an event with the place at which the event\nhappened.".freeze, - domain: "edm:Event".freeze, + domain: "http://www.europeana.eu/schemas/edm/Event".freeze, equivalentProperty: "http://www.cidoc-crm.org/rdfs/cidoc-crm#P7_took_place_at".freeze, label: "Happened At".freeze, - range: "edm:Place".freeze, - subPropertyOf: "dc11:relation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/Place".freeze, + subPropertyOf: "http://purl.org/dc/elements/1.1/relation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMet, definition: "edm:hasMet relates a resource with the objects or phenomena that have happened to or have happened together with the resource under consideration. We can abstractly think of history and the present as a series of “meetings” between people and other things in space-time. Therefore we name this relationship as the things the object “has met” in the course of its existence. These meetings are events in the proper sense, in which other people and things participate in any role.".freeze, label: "Has Met".freeze, - subPropertyOf: "dc11:relation".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/relation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasType, definition: "This property relates a resource with the concepts it belongs to in a suitable\ntype system such as MIME or any thesaurus that captures categories of objects in a given field (e.g., the “Objects” facet in Getty’s Art and Architecture Thesaurus). It does not capture aboutness.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("edm:ProvidedCHO".freeze, term( - intersectionOf: list(term( - type: "owl:Class".freeze - ), term( - onProperty: "ore:proxyFor".freeze, - someValuesFrom: "edm:ProvidedCHO".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.europeana.eu/schemas/edm/ProvidedCHO".freeze, "_:g12820".freeze) ), equivalentProperty: "http://www.cidoc-crm.org/rdfs/cidoc-crm#P2_has_type".freeze, label: "Has Type".freeze, - range: "edm:NonInformationResource".freeze, - subPropertyOf: "edm:isRelatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/NonInformationResource".freeze, + subPropertyOf: "http://www.europeana.eu/schemas/edm/isRelatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasView, definition: "This property relates a ORE aggregation about a CHO with a web resource\nproviding a view of that CHO. Examples of view are: a thumbnail, a textual\nabstract and a table of contents. The ORE aggregation may be a Europeana\nAggregation, in which case the view is an object owned by Europeana (i.e., an instance of edm:EuropeanaObject) or an aggregation contributed by a content provider. In order to capture both these cases, the domain of edm:hasView is ore:Aggregation and its range is edm:WebResource".freeze, - domain: "ore:Aggregation".freeze, + domain: "http://www.openarchives.org/ore/terms/Aggregation".freeze, label: "Has View".freeze, - range: "edm:WebResource".freeze, - subPropertyOf: "ore:aggregates".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/WebResource".freeze, + subPropertyOf: "http://www.openarchives.org/ore/terms/aggregates".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :incorporates, definition: "This property captures the use of some resource to add value to another\nresource. Such resources may be nested, such as performing a theater play text, and then recording the performance, or creating an artful edition of a collection of poems or just aggregating various poems in an anthology. There may be no single part that contains ultimately the incorporated object, which may be dispersed in the presentation. Therefore, incorporated resources do in general not form proper parts. Incorporated resources are not part of the same resource, but are taken from other resources, and have an independent history. Therefore edm:incorporates is not a sub-property of dcterm:hasPart.".freeze, equivalentProperty: "http://iflastandards.info/ns/fr/frbr/frbroo/R14_incorporates".freeze, label: "Incorporates".freeze, - subPropertyOf: "edm:isSimilarTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.europeana.eu/schemas/edm/isSimilarTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isAnnotationOf, definition: "This property relates an annotation (a Europeana object) with the resource\nthat it annotates.".freeze, - domain: "edm:EuropeanaObject".freeze, + domain: "http://www.europeana.eu/schemas/edm/EuropeanaObject".freeze, label: "Is Annotation Of".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("edm:ProvidedCHO".freeze, term( - intersectionOf: list(term( - type: "owl:Class".freeze - ), term( - onProperty: "ore:proxyFor".freeze, - someValuesFrom: "edm:ProvidedCHO".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.europeana.eu/schemas/edm/ProvidedCHO".freeze, "_:g12260".freeze) ), - subPropertyOf: ["dc11:subject".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#P67_refers_to".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/subject".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#P67_refers_to".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isDerivativeOf, definition: "This property captures a narrower notion of derivation than edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by reworking, reducing, expanding, parts or the whole contents of the former, and possibly adding some minor parts. Versions have an even narrower meaning, in that it requires common identity between the related resources. Translations, summaries, abstractions etc. do not qualify as versions, but do qualify as derivatives.".freeze, equivalentProperty: "http://iflastandards.info/ns/fr/frbr/frbroo/R2_is_derivative_of".freeze, label: "Is Derivative Of".freeze, - subPropertyOf: "edm:isSimilarTo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.europeana.eu/schemas/edm/isSimilarTo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isNextInSequence, definition: "edm:isNextInSequence relates two resources S and R that are ordered parts of the same resource A, and such that S comes immediately after R in the order created by their being parts of A.".freeze, label: "Is Next In Sequence Of".freeze, - subPropertyOf: "dc11:relation".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/relation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isRelatedTo, definition: "edm:isRelatedTo is the most general contextual property in EDM. Contextual\nproperties have typically to do either with the things that have happened to or together with the object under consideration, or what the object refers to by its shape, form or features in a figural or encoded form. For sake of simplicity, we include in the contextual relationships also the scholarly classification, which may have either to do with the role and cultural connections of the object in the past, or its kind of structure, substance or contents as it can be verified at present.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("edm:ProvidedCHO".freeze, term( - intersectionOf: list(term( - type: "owl:Class".freeze - ), term( - onProperty: "ore:proxyFor".freeze, - someValuesFrom: "edm:ProvidedCHO".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.europeana.eu/schemas/edm/ProvidedCHO".freeze, "_:g12880".freeze) ), label: "Is Related To".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isRepresentationOf, definition: "This property associates an information resource to the resource (if any) that it represents".freeze, - domain: "edm:InformationResource".freeze, + domain: "http://www.europeana.eu/schemas/edm/InformationResource".freeze, label: "Is Representation Of".freeze, - subPropertyOf: ["dc11:subject".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#P138_represents".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/subject".freeze, "http://www.cidoc-crm.org/rdfs/cidoc-crm#P138_represents".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isShownAt, definition: "An unambiguous URL reference to the digital object on the provider’s web site in its full information context.".freeze, label: "Is Shown At".freeze, - range: "edm:WebResource".freeze, - subPropertyOf: "edm:hasView".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/WebResource".freeze, + subPropertyOf: "http://www.europeana.eu/schemas/edm/hasView".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isShownBy, definition: "An unambiguous URL reference to the digital object on the provider’s web site in the best available resolution/quality.".freeze, label: "Is Shown By".freeze, - range: "edm:WebResource".freeze, - subPropertyOf: "edm:hasView".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/WebResource".freeze, + subPropertyOf: "http://www.europeana.eu/schemas/edm/hasView".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isSimilarTo, definition: "The most generic derivation property, covering also the case of questionable derivation. Is Similar To asserts that parts of the contents of one resource exhibit common features with respect to ideas, shapes, structures, colors, words, plots, topics with the contents of the related resource. Those common features may be attributed to a common origin or influence (in particular for derivation), but also to more generic cultural or psychological factors.".freeze, equivalentProperty: "http://www.cidoc-crm.org/rdfs/cidoc-crm#P130_shows_features_of".freeze, label: "Is Similar To".freeze, - subPropertyOf: "dc11:relation".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/relation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isSuccessorOf, definition: "This property captures the relation between the continuation of a resource and that resource. This applies to a story, a serial, a journal etc. No content of the successor resource is identical or has a similar form with that of the precursor. The similarity is only in the context, subjects and figures of a plot. Successors typically form part of a common whole – such as a trilogy, a journal, etc.".freeze, label: "Is Successor Of".freeze, - subPropertyOf: "edm:isSimilarTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.europeana.eu/schemas/edm/isSimilarTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :landingPage, definition: "This property captures the relation between a Europeana aggregation representing a cultural heritage object and a (reference) Web resource giving access to that object. Europeana provides the value for this property.".freeze, label: "Landing Page".freeze, - range: "edm:WebResource".freeze, - subPropertyOf: "ore:aggregates".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/WebResource".freeze, + subPropertyOf: "http://www.openarchives.org/ore/terms/aggregates".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :language, definition: "The value for this element is added by the Data Ingestion Team as part of the ingestion process, based on the language of the data provider.".freeze, label: "Europeana Language".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :object, definition: "The URL of a thumbnail representing the digital object or, if there is no such\nthumbnail, the URL of the digital object in the best resolution available on the\nweb site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy.".freeze, label: "Object".freeze, - range: "edm:WebResource".freeze, - subPropertyOf: "edm:hasView".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/WebResource".freeze, + subPropertyOf: "http://www.europeana.eu/schemas/edm/hasView".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :occurredAt, definition: "This property associates an event to the smallest known time span that\noverlaps with the occurrence of that event".freeze, - domain: "edm:Event".freeze, + domain: "http://www.europeana.eu/schemas/edm/Event".freeze, equivalentProperty: "http://www.cidoc-crm.org/rdfs/cidoc-crm#P4_has_time-span".freeze, label: "Occured At".freeze, - range: "edm:TimeSpan".freeze, - subPropertyOf: "dc11:relation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/TimeSpan".freeze, + subPropertyOf: "http://purl.org/dc/elements/1.1/relation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :preview, definition: "The URL of a thumbnail representing the digital object, generated by Europeana.".freeze, label: "Preview".freeze, - range: "edm:WebResource".freeze, - subPropertyOf: "edm:hasView".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/WebResource".freeze, + subPropertyOf: "http://www.europeana.eu/schemas/edm/hasView".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :provider, definition: "The name or identifier of the organization who delivers data directly to an aggregation service (e.g. Europeana)".freeze, label: "Provider".freeze, - range: "edm:Agent".freeze, - subPropertyOf: "edm:hasMet".freeze, - type: "rdf:Property".freeze + range: "http://www.europeana.eu/schemas/edm/Agent".freeze, + subPropertyOf: "http://www.europeana.eu/schemas/edm/hasMet".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :realizes, definition: "This property describes a relation between a physical thing and the information resource that is contained in it, visible at it or otherwise carried by it, if applicable.".freeze, - domain: "edm:PhysicalThing".freeze, + domain: "http://www.europeana.eu/schemas/edm/PhysicalThing".freeze, equivalentProperty: "http://www.cidoc-crm.org/rdfs/cidoc-crm#P128_carries".freeze, label: "Realizes".freeze, - range: "edm:InformationResource".freeze, - subPropertyOf: "edm:isRelatedTo".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/InformationResource".freeze, + subPropertyOf: "http://www.europeana.eu/schemas/edm/isRelatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :rights, definition: "Information about copyright of the digital object as specified by isShownBy\nand isShownAt".freeze, label: "Europeana Rights".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :type, definition: "The Europeana material type of the resource".freeze, label: "Europeana Type".freeze, range: term( - "owl:oneOf": list("TEXT".freeze, "IMAGE".freeze, "SOUND".freeze, "VIDEO".freeze, "3D".freeze), - type: "rdfs:Datatype".freeze + "http://www.w3.org/2002/07/owl#oneOf": list("TEXT".freeze, "IMAGE".freeze, "SOUND".freeze, "VIDEO".freeze, "3D".freeze), + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze ), - subPropertyOf: "dc11:type".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/type".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :ugc, definition: "This element is used to identify user generated content (also called user created content). It should be applied to all digitised or born digital content contributed by the general public and collected by Europeana through a crowdsourcing initiative or project.".freeze, label: "UGC".freeze, range: term( - "owl:oneOf": list("TRUE".freeze), - type: "rdfs:Datatype".freeze + "http://www.w3.org/2002/07/owl#oneOf": list("TRUE".freeze), + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze ), - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :unstored, definition: "This is a container element which includes all relevant information that\notherwise cannot be mapped to another element in the ESE.".freeze, label: "Unstored".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :uri, definition: "This is a tag created by a user through the Europeana interface.".freeze, label: "Europeana URI".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :userTag, definition: "This is a tag created by a user through the Europeana interface.".freeze, label: "User Tag".freeze, - subPropertyOf: "dc11:description".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :wasPresentAt, definition: "This property associates the people, things or information resources with an event at which they were present".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("edm:Agent".freeze, "edm:InformationResource".freeze, "edm:PhysicalThing".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.europeana.eu/schemas/edm/Agent".freeze, "http://www.europeana.eu/schemas/edm/InformationResource".freeze, "http://www.europeana.eu/schemas/edm/PhysicalThing".freeze) ), equivalentProperty: "http://www.cidoc-crm.org/rdfs/cidoc-crm#P12i_was_present_at".freeze, label: "Was Present At".freeze, - range: "edm:Event".freeze, - subPropertyOf: "dc11:relation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.europeana.eu/schemas/edm/Event".freeze, + subPropertyOf: "http://purl.org/dc/elements/1.1/relation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :year, definition: "A point of time associated with an event in the life of the original analog or\nborn digital object.".freeze, label: "Europeana Year".freeze, - subPropertyOf: "dc:temporal".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/temporal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/exif.rb b/lib/rdf/vocab/exif.rb index 70d67a3..38e97b5 100644 --- a/lib/rdf/vocab/exif.rb +++ b/lib/rdf/vocab/exif.rb @@ -3,1602 +3,949 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2003/12/exif/ns# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Exif data description vocabulary - # # - # # Vocabulary to describe an Exif format picture data. All Exif 2.2 tags are defined as RDF properties, as well as several terms to help this schema. - # # @version Experimental version. - # class EXIF < RDF::StrictVocabulary - # # An Image File Directory - # # @return [RDF::Vocabulary::Term] - # attr_reader :IFD - # - # # An Exif tag whose meaning is not known - # # @return [RDF::Vocabulary::Term] - # attr_reader :_unknown - # - # # The lens aperture. The unit is the APEX value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :apertureValue - # - # # Person who created the image - # # @return [RDF::Vocabulary::Term] - # attr_reader :artist - # - # # The number of bits per image component. In this standard each component of the image is 8 bits, so the value for this tag is 8. See also SamplesPerPixel. In JPEG compressed data a JPEG marker is used instead of this tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bitsPerSample - # - # # The value of brightness. The unit is the APEX value. Ordinarily it is given in the range of -99.99 to 99.99. Note that if the numerator of the recorded value is FFFFFFFF.H, Unknown shall be indicated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :brightnessValue - # - # # The color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used. It does not apply to all sensing methods. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cfaPattern - # - # # The color space information tag (ColorSpace) is always recorded as the color space specifier. Normally sRGB (=1) is used to define the color space based on the PC monitor conditions and environment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colorSpace - # - # # Information specific to compressed data. The channels of each component are arranged in order from the 1st component to the 4th. For uncompressed data the data arrangement is given in the PhotometricInterpretation tag. However, since PhotometricInterpretation can only express the order of Y,Cb and Cr, this tag is provided for cases when compressed data uses components other than Y, Cb, and Cr and to enable support of other sequences. - # # @return [RDF::Vocabulary::Term] - # attr_reader :componentsConfiguration - # - # # Information specific to compressed data. The compression mode used for a compressed image is indicated in unit bits per pixel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :compressedBitsPerPixel - # - # # The compression scheme used for the image data. When a primary image is JPEG compressed, this designation is not necessary and is omitted. When thumbnails use JPEG compression, this tag value is set to 6. - # # @return [RDF::Vocabulary::Term] - # attr_reader :compression - # - # # The direction of contrast processing applied by the camera when the image was shot. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contrast - # - # # Copyright information. In this standard the tag is used to indicate both the photographer and editor copyrights. It is the copyright notice of the person or organization claiming rights to the image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyright - # - # # The use of special processing on image data, such as rendering geared to output. When special processing is performed, the reader is expected to disable or minimize any further processing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :customRendered - # - # # The Exif field data type, such as ascii, byte, short etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datatype - # - # # a date information. Usually saved as YYYY:MM:DD (HH:MM:SS) format in Exif data, but represented here as W3C-DTF format - # # @return [RDF::Vocabulary::Term] - # attr_reader :date - # - # # An attribute relating to Date and/or Time - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateAndOrTime - # - # # The date and time of image creation. In this standard it is the date and time the file was changed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateTime - # - # # The date and time when the image was stored as digital data. If, for example, an image was captured by DSC and at the same time the file was recorded, then the DateTimeOriginal and DateTimeDigitized will have the same contents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateTimeDigitized - # - # # The date and time when the original image data was generated. For a DSC the date and time the picture was taken are recorded. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateTimeOriginal - # - # # Information on the picture-taking conditions of a particular camera model. The tag is used only to indicate the picture-taking conditions in the reader. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deviceSettingDescription - # - # # The digital zoom ratio when the image was shot. If the numerator of the recorded value is 0, this indicates that digital zoom was not used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :digitalZoomRatio - # - # # A property that connects an IFD to one of its entries. Super property which integrates all Exif tags. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exifAttribute - # - # # Exif Version - # # @return [RDF::Vocabulary::Term] - # attr_reader :exifVersion - # - # # A pointer to the Exif IFD, which is a set of tags for recording Exif-specific attribute information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exif_IFD_Pointer - # - # # An Exif IFD data entry - # # @return [RDF::Vocabulary::Term] - # attr_reader :exifdata - # - # # The exposure bias. The unit is the APEX value. Ordinarily it is given in the range of -99.99 to 99.99. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exposureBiasValue - # - # # The exposure index selected on the camera or input device at the time the image is captured. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exposureIndex - # - # # the exposure mode set when the image was shot. In auto-bracketing mode, the camera shoots a series of frames of the same scene at different exposure settings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exposureMode - # - # # The class of the program used by the camera to set exposure when the picture is taken. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exposureProgram - # - # # Exposure time, given in seconds (sec). - # # @return [RDF::Vocabulary::Term] - # attr_reader :exposureTime - # - # # F number - # # @return [RDF::Vocabulary::Term] - # attr_reader :fNumber - # - # # The image source. If a DSC recorded the image, this tag value of this tag always be set to 3, indicating that the image was recorded on a DSC. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileSource - # - # # The status of flash when the image was shot. - # # @return [RDF::Vocabulary::Term] - # attr_reader :flash - # - # # The strobe energy at the time the image is captured, as measured in Beam Candle Power Seconds (BCPS). - # # @return [RDF::Vocabulary::Term] - # attr_reader :flashEnergy - # - # # The Flashpix format version supported by a FPXR file. If the FPXR function supports Flashpix format Ver. 1.0, this is indicated similarly to ExifVersion by recording "0100" as 4-byte ASCII. - # # @return [RDF::Vocabulary::Term] - # attr_reader :flashpixVersion - # - # # The actual focal length of the lens, in mm. Conversion is not made to the focal length of a 35 mm film camera. - # # @return [RDF::Vocabulary::Term] - # attr_reader :focalLength - # - # # The equivalent focal length assuming a 35mm film camera, in mm. A value of 0 means the focal length is unknown. Note that this tag differs from the FocalLength tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :focalLengthIn35mmFilm - # - # # The unit for measuring FocalPlaneXResolution and FocalPlaneYResolution. This value is the same as the ResolutionUnit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :focalPlaneResolutionUnit - # - # # The number of pixels in the image width (X) direction per FocalPlaneResolutionUnit on the camera focal plane. - # # @return [RDF::Vocabulary::Term] - # attr_reader :focalPlaneXResolution - # - # # The number of pixels in the image height (Y) direction per FocalPlaneResolutionUnit on the camera focal plane. - # # @return [RDF::Vocabulary::Term] - # attr_reader :focalPlaneYResolution - # - # # The degree of overall image gain adjustment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gainControl - # - # # Geometric data such as latitude, longitude and altitude. Usually saved as rational number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geo - # - # # The altitude based on the reference in GPSAltitudeRef. Altitude is expressed as one RATIONAL value. The reference unit is meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsAltitude - # - # # Indicates the altitude used as the reference altitude. If the reference is sea level and the altitude is above sea level, 0 is given. If the altitude is below sea level, a value of 1 is given and the altitude is indicated as an absolute value in the GPSAltitude tag. The reference unit is meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsAltitudeRef - # - # # A character string recording the name of the GPS area. The first byte indicates the character code used, and this is followed by the name of the GPS area. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsAreaInformation - # - # # The GPS DOP (data degree of precision). An HDOP value is written during two-dimensional measurement, and PDOP during three-dimensional measurement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDOP - # - # # date and time information relative to UTC (Coordinated Universal Time). The record format is "YYYY:MM:DD" while converted to W3C-DTF to use in RDF - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDateStamp - # - # # The bearing to the destination point. The range of values is from 0.00 to 359.99. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDestBearing - # - # # Indicates the reference used for giving the bearing to the destination point. 'T' denotes true direction and 'M' is magnetic direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDestBearingRef - # - # # The distance to the destination point. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDestDistance - # - # # Indicates the unit used to express the distance to the destination point. 'K', 'M' and 'N' represent kilometers, miles and knots. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDestDistanceRef - # - # # Latitude of destination, expressed as three values giving the degrees, minutes, and seconds, respectively. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDestLatitude - # - # # Reference for latitude of destination - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDestLatitudeRef - # - # # Longitude of destination, expressed as three values giving the degrees, minutes, and seconds, respectively. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDestLongitude - # - # # Reference for longitude of destination - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDestLongitudeRef - # - # # Indicates whether differential correction is applied to the GPS receiver. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsDifferential - # - # # The direction of the image when it was captured. The range of values is from 0.00 to 359.99. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsImgDirection - # - # # The reference for giving the direction of the image when it is captured. 'T' denotes true direction and 'M' is magnetic direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsImgDirectionRef - # - # # An attribute relating to GPS information - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsInfo - # - # # A pointer to the GPS IFD, which is a set of tags for recording GPS information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsInfo_IFD_Pointer - # - # # The latitude, expressed as three values giving the degrees, minutes, and seconds, respectively. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsLatitude - # - # # Indicates whether the latitude is north or south latitude. The ASCII value 'N' indicates north latitude, and 'S' is south latitude. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsLatitudeRef - # - # # The longitude, expressed as three values giving the degrees, minutes, and seconds, respectively. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsLongitude - # - # # Indicates whether the longitude is east or west longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsLongitudeRef - # - # # The geodetic survey data used by the GPS receiver. If the survey data is restricted to Japan, the value of this tag is 'TOKYO' or 'WGS-84'. If a GPS Info tag is recorded, it is strongly recommended that this tag be recorded. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsMapDatum - # - # # The GPS measurement mode. '2' means two-dimensional measurement and '3' means three-dimensional measurement is in progress. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsMeasureMode - # - # # A character string recording the name of the method used for location finding. The first byte indicates the character code used, and this is followed by the name of the method. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsProcessingMethod - # - # # The GPS satellites used for measurements. This tag can be used to describe the number of satellites, their ID number, angle of elevation, azimuth, SNR and other information in ASCII notation. The format is not specified. If the GPS receiver is incapable of taking measurements, value of the tag shall be set to NULL. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsSatellites - # - # # The speed of GPS receiver movement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsSpeed - # - # # The unit used to express the GPS receiver speed of movement. 'K' 'M' and 'N' represents kilometers per hour, miles per hour, and knots. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsSpeedRef - # - # # The status of the GPS receiver when the image is recorded. 'A' means measurement is in progress, and 'V' means the measurement is Interoperability. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsStatus - # - # # The time as UTC (Coordinated Universal Time). TimeStamp is expressed as three RATIONAL values giving the hour, minute, and second. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsTimeStamp - # - # # The direction of GPS receiver movement. The range of values is from 0.00 to 359.99. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsTrack - # - # # The reference for giving the direction of GPS receiver movement. 'T' denotes true direction and 'M' is magnetic direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsTrackRef - # - # # The version of GPSInfoIFD. The version is given as 2.2.0.0. This tag is mandatory when GPSInfo tag is present. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpsVersionID - # - # # Height of an object - # # @return [RDF::Vocabulary::Term] - # attr_reader :height - # - # # A tag that refers a child IFD - # # @return [RDF::Vocabulary::Term] - # attr_reader :ifdPointer - # - # # An attribute relating to Image Configuration - # # @return [RDF::Vocabulary::Term] - # attr_reader :imageConfig - # - # # An attribute relating to image data characteristics - # # @return [RDF::Vocabulary::Term] - # attr_reader :imageDataCharacter - # - # # An attribute relating to image data structure - # # @return [RDF::Vocabulary::Term] - # attr_reader :imageDataStruct - # - # # A character string giving the title of the image. It may be a comment such as "1988 company picnic" or the like. Two-byte character codes cannot be used. When a 2-byte code is necessary, the Exif Private tag UserComment is to be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :imageDescription - # - # # Image height. The number of rows of image data. In JPEG compressed data a JPEG marker is used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :imageLength - # - # # An identifier assigned uniquely to each image. It is recorded as an ASCII string equivalent to hexadecimal notation and 128-bit fixed length. - # # @return [RDF::Vocabulary::Term] - # attr_reader :imageUniqueID - # - # # Image width. The number of columns of image data, equal to the number of pixels per row. In JPEG compressed data a JPEG marker is used instead of this tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :imageWidth - # - # # An attribute relating to Interoperability. Tags stored in Interoperability IFD may be defined dependently to each Interoperability rule. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interopInfo - # - # # Indicates the identification of the Interoperability rule. 'R98' = conforming to R98 file specification of Recommended Exif Interoperability Rules (ExifR98) or to DCF basic file stipulated by Design Rule for Camera File System. 'THM' = conforming to DCF thumbnail file stipulated by Design rule for Camera File System. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interoperabilityIndex - # - # # Interoperability Version - # # @return [RDF::Vocabulary::Term] - # attr_reader :interoperabilityVersion - # - # # A pointer to the Interoperability IFD, which is composed of tags storing the information to ensure the Interoperability - # # @return [RDF::Vocabulary::Term] - # attr_reader :interoperability_IFD_Pointer - # - # # Indicates the ISO Speed and ISO Latitude of the camera or input device as specified in ISO 12232. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isoSpeedRatings - # - # # The offset to the start byte (SOI) of JPEG compressed thumbnail data. This is not used for primary image JPEG data. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jpegInterchangeFormat - # - # # The number of bytes of JPEG compressed thumbnail data. This is not used for primary image JPEG data. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jpegInterchangeFormatLength - # - # # Length of an object. Could be a subProperty of other general schema. - # # @return [RDF::Vocabulary::Term] - # attr_reader :length - # - # # Light source such as Daylight, Tungsten, Flash etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lightSource - # - # # Manufacturer of image input equipment - # # @return [RDF::Vocabulary::Term] - # attr_reader :make - # - # # Manufacturer notes - # # @return [RDF::Vocabulary::Term] - # attr_reader :makerNote - # - # # The smallest F number of the lens. The unit is the APEX value. Ordinarily it is given in the range of 00.00 to 99.99, but it is not limited to this range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxApertureValue - # - # # A length with unit of meter - # # @return [RDF::Vocabulary::Term] - # attr_reader :meter - # - # # Metering mode, such as CenterWeightedAverage, Spot, MultiSpot,Pattern, Partial etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :meteringMode - # - # # A length with unit of mm - # # @return [RDF::Vocabulary::Term] - # attr_reader :mm - # - # # Model of image input equipment - # # @return [RDF::Vocabulary::Term] - # attr_reader :model - # - # # Indicates the Opto-Electric Conversion Function (OECF) specified in ISO 14524. OECF is the relationship between the camera optical input and the image values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :oecf - # - # # The image orientation viewed in terms of rows and columns. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orientation - # - # # Pixel composition. In JPEG compressed data a JPEG marker is used instead of this tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :photometricInterpretation - # - # # An attribute relating to Picture-Taking Conditions - # # @return [RDF::Vocabulary::Term] - # attr_reader :pictTaking - # - # # Brightness info for print image matching - # # @return [RDF::Vocabulary::Term] - # attr_reader :pimBrightness - # - # # ColorBalance info for print image matching - # # @return [RDF::Vocabulary::Term] - # attr_reader :pimColorBalance - # - # # Contrast info for print image matching - # # @return [RDF::Vocabulary::Term] - # attr_reader :pimContrast - # - # # An attribute relating to print image matching - # # @return [RDF::Vocabulary::Term] - # attr_reader :pimInfo - # - # # Saturation info for print image matching - # # @return [RDF::Vocabulary::Term] - # attr_reader :pimSaturation - # - # # Sharpness info for print image matching - # # @return [RDF::Vocabulary::Term] - # attr_reader :pimSharpness - # - # # Information specific to compressed data. When a compressed file is recorded, the valid width of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker. This tag should not exist in an uncompressed file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pixelXDimension - # - # # Information specific to compressed data. When a compressed file is recorded, the valid height of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker. This tag should not exist in an uncompressed file. Since data padding is unnecessary in the vertical direction, the number of lines recorded in this valid image height tag will in fact be the same as that recorded in the SOF. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pixelYDimension - # - # # Indicates whether pixel components are recorded in chunky or planar format. In JPEG compressed files a JPEG marker is used instead of this tag. If this field does not exist, the TIFF default of 1 (chunky) is assumed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :planarConfiguration - # - # # The chromaticity of the three primary colors of the image. Normally this tag is not necessary, since color space is specified in the color space information tag (ColorSpace). - # # @return [RDF::Vocabulary::Term] - # attr_reader :primaryChromaticities - # - # # A pointer to the print image matching IFD - # # @return [RDF::Vocabulary::Term] - # attr_reader :printImageMatching_IFD_Pointer - # - # # An attribute relating to recording offset - # # @return [RDF::Vocabulary::Term] - # attr_reader :recOffset - # - # # The reference black point value and reference white point value. The color space is declared in a color space information tag, with the default being the value that gives the optimal image characteristics Interoperability these conditions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referenceBlackWhite - # - # # Tag Relating to Related File Information - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedFile - # - # # Related image file format - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedImageFileFormat - # - # # Related image length - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedImageLength - # - # # Related image width - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedImageWidth - # - # # Related audio file - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedSoundFile - # - # # a rational number representing a resolution. Could be a subProperty of other general schema. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resolution - # - # # The unit for measuring XResolution and YResolution. The same unit is used for both XResolution and YResolution. If the image resolution in unknown, 2 (inches) is designated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resolutionUnit - # - # # The number of rows per strip. This is the number of rows in the image of one strip when an image is divided into strips. With JPEG compressed data this designation is not needed and is omitted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rowsPerStrip - # - # # The number of components per pixel. Since this standard applies to RGB and YCbCr images, the value set for this tag is 3. In JPEG compressed data a JPEG marker is used instead of this tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :samplesPerPixel - # - # # The direction of saturation processing applied by the camera when the image was shot. - # # @return [RDF::Vocabulary::Term] - # attr_reader :saturation - # - # # The type of scene that was shot. It can also be used to record the mode in which the image was shot, such as Landscape, Portrait etc. Note that this differs from the scene type (SceneType) tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sceneCaptureType - # - # # The type of scene. If a DSC recorded the image, this tag value shall always be set to 1, indicating that the image was directly photographed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sceneType - # - # # a mesurement of time length with unit of second - # # @return [RDF::Vocabulary::Term] - # attr_reader :seconds - # - # # The image sensor type on the camera or input device, such as One-chip color area sensor etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sensingMethod - # - # # The direction of sharpness processing applied by the camera when the image was shot. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sharpness - # - # # Shutter speed. The unit is the APEX (Additive System of Photographic Exposure) setting - # # @return [RDF::Vocabulary::Term] - # attr_reader :shutterSpeedValue - # - # # The name and version of the software or firmware of the camera or image input device used to generate the image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :software - # - # # This tag records the camera or input device spatial frequency table and SFR values in the direction of image width, image height, and diagonal direction, as specified in ISO 12233. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spatialFrequencyResponse - # - # # Indicates the spectral sensitivity of each channel of the camera used. The tag value is an ASCII string compatible with the standard developed by the ASTM Technical committee. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spectralSensitivity - # - # # The total number of bytes in each strip. With JPEG compressed data this designation is not needed and is omitted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stripByteCounts - # - # # For each strip, the byte offset of that strip. With JPEG compressed data this designation is not needed and is omitted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stripOffsets - # - # # DateTime subseconds - # # @return [RDF::Vocabulary::Term] - # attr_reader :subSecTime - # - # # DateTimeDigitized subseconds - # # @return [RDF::Vocabulary::Term] - # attr_reader :subSecTimeDigitized - # - # # DateTimeOriginal subseconds - # # @return [RDF::Vocabulary::Term] - # attr_reader :subSecTimeOriginal - # - # # The location and area of the main subject in the overall scene. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectArea - # - # # The distance to the subject, given in meters. Note that if the numerator of the recorded value is FFFFFFFF.H, Infinity shall be indicated; and if the numerator is 0, Distance unknown shall be indicated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectDistance - # - # # The distance to the subject, such as Macro, Close View or Distant View. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectDistanceRange - # - # # The location of the main subject in the scene. The value of this tag represents the pixel at the center of the main subject relative to the left edge, prior to rotation processing as per the Rotation tag. The first value indicates the X column number and second indicates the Y row number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectLocation - # - # # A tag used to record fractions of seconds for a date property - # # @return [RDF::Vocabulary::Term] - # attr_reader :subseconds - # - # # The Exif tag number - # # @return [RDF::Vocabulary::Term] - # attr_reader :tag_number - # - # # The Exif tag number with context prefix, such as IFD type or maker name - # # @return [RDF::Vocabulary::Term] - # attr_reader :tagid - # - # # A transfer function for the image, described in tabular style. Normally this tag is not necessary, since color space is specified in the color space information tag (ColorSpace). - # # @return [RDF::Vocabulary::Term] - # attr_reader :transferFunction - # - # # A tag for Exif users to write keywords or comments on the image besides those in ImageDescription, and without the character code limitations of the ImageDescription tag. The character code used in the UserComment tag is identified based on an ID code in a fixed 8-byte area at the start of the tag data area. - # # @return [RDF::Vocabulary::Term] - # attr_reader :userComment - # - # # An attribute relating to User Information - # # @return [RDF::Vocabulary::Term] - # attr_reader :userInfo - # - # # An attribute relating to Version - # # @return [RDF::Vocabulary::Term] - # attr_reader :versionInfo - # - # # The white balance mode set when the image was shot. - # # @return [RDF::Vocabulary::Term] - # attr_reader :whiteBalance - # - # # The chromaticity of the white point of the image. Normally this tag is not necessary, since color space is specified in the color space information tag (ColorSpace). - # # @return [RDF::Vocabulary::Term] - # attr_reader :whitePoint - # - # # Width of an object - # # @return [RDF::Vocabulary::Term] - # attr_reader :width - # - # # The number of pixels per ResolutionUnit in the ImageWidth direction. When the image resolution is unknown, 72 [dpi] is designated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :xResolution - # - # # The matrix coefficients for transformation from RGB to YCbCr image data. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yCbCrCoefficients - # - # # The position of chrominance components in relation to the luminance component. This field is designated only for JPEG compressed data or uncompressed YCbCr data. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yCbCrPositioning - # - # # The sampling ratio of chrominance components in relation to the luminance component. In JPEG compressed data a JPEG marker is used instead of this tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yCbCrSubSampling - # - # # The number of pixels per ResolutionUnit in the ImageLength direction. The same value as XResolution is designated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yResolution - # - # end EXIF = Class.new(RDF::StrictVocabulary("http://www.w3.org/2003/12/exif/ns#")) do # Ontology definition ontology :"http://www.w3.org/2003/12/exif/ns#", - "dc11:description": "Vocabulary to describe an Exif format picture data. All Exif 2.2 tags are defined as RDF properties, as well as several terms to help this schema.".freeze, - "dc11:source": "http://tsc.jeita.or.jp/avs/data/cp3451.pdf".freeze, - "dc11:title": "Exif data description vocabulary".freeze, - "dc:created": "2003-07-18".freeze, - "dc:modified": "2003-08-19".freeze, - "foaf:maker": "urn:pin:MK705".freeze, - "owl:versionInfo": "Experimental version.".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/elements/1.1/description": "Vocabulary to describe an Exif format picture data. All Exif 2.2 tags are defined as RDF properties, as well as several terms to help this schema.".freeze, + "http://purl.org/dc/elements/1.1/source": "http://tsc.jeita.or.jp/avs/data/cp3451.pdf".freeze, + "http://purl.org/dc/elements/1.1/title": "Exif data description vocabulary".freeze, + "http://purl.org/dc/terms/created": "2003-07-18".freeze, + "http://purl.org/dc/terms/modified": "2003-08-19".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "Experimental version.".freeze, + "http://xmlns.com/foaf/0.1/maker": "urn:pin:MK705".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :IFD, comment: "An Image File Directory".freeze, label: "IFD".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :_unknown, comment: "An Exif tag whose meaning is not known".freeze, label: "Unknown tag".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :apertureValue, comment: "The lens aperture. The unit is the APEX value.".freeze, - "exif:tagNumber": "37378".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37378".freeze, label: "ApertureValue".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artist, comment: "Person who created the image".freeze, - "exif:tagNumber": "315".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "315".freeze, label: "Artist".freeze, - subPropertyOf: ["dc11:creator".freeze, "exif:exifAttribute".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/creator".freeze, "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitsPerSample, comment: "The number of bits per image component. In this standard each component of the image is 8 bits, so the value for this tag is 8. See also SamplesPerPixel. In JPEG compressed data a JPEG marker is used instead of this tag.".freeze, - "exif:tagNumber": "258".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "258".freeze, label: "BitsPerSample".freeze, - subPropertyOf: ["exif:imageDataStruct".freeze, "exif:resolution".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, "http://www.w3.org/2003/12/exif/ns#resolution".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :brightnessValue, comment: "The value of brightness. The unit is the APEX value. Ordinarily it is given in the range of -99.99 to 99.99. Note that if the numerator of the recorded value is FFFFFFFF.H, Unknown shall be indicated.".freeze, - "exif:tagNumber": "37379".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37379".freeze, label: "BrightnessValue".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cfaPattern, comment: "The color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used. It does not apply to all sensing methods.".freeze, - "exif:tagNumber": "41730".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41730".freeze, label: "CFAPattern".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colorSpace, comment: "The color space information tag (ColorSpace) is always recorded as the color space specifier. Normally sRGB (=1) is used to define the color space based on the PC monitor conditions and environment.".freeze, - "exif:tagNumber": "40961".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "40961".freeze, label: "ColorSpace".freeze, - subPropertyOf: "exif:imageDataCharacter".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataCharacter".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :componentsConfiguration, comment: "Information specific to compressed data. The channels of each component are arranged in order from the 1st component to the 4th. For uncompressed data the data arrangement is given in the PhotometricInterpretation tag. However, since PhotometricInterpretation can only express the order of Y,Cb and Cr, this tag is provided for cases when compressed data uses components other than Y, Cb, and Cr and to enable support of other sequences.".freeze, - "exif:tagNumber": "37121".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37121".freeze, label: "ComponentsConfiguration".freeze, - subPropertyOf: "exif:imageConfig".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageConfig".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :compressedBitsPerPixel, comment: "Information specific to compressed data. The compression mode used for a compressed image is indicated in unit bits per pixel.".freeze, - "exif:tagNumber": "37122".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37122".freeze, label: "CompressedBitsPerPixel".freeze, - subPropertyOf: "exif:imageConfig".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageConfig".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :compression, comment: "The compression scheme used for the image data. When a primary image is JPEG compressed, this designation is not necessary and is omitted. When thumbnails use JPEG compression, this tag value is set to 6.".freeze, - "exif:tagNumber": "259".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "259".freeze, label: "Compression".freeze, - subPropertyOf: "exif:imageDataStruct".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contrast, comment: "The direction of contrast processing applied by the camera when the image was shot.".freeze, - "exif:tagNumber": "41992".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41992".freeze, label: "Contrast".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :copyright, comment: "Copyright information. In this standard the tag is used to indicate both the photographer and editor copyrights. It is the copyright notice of the person or organization claiming rights to the image.".freeze, - "exif:tagNumber": "33432".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "33432".freeze, label: "Copyright".freeze, - subPropertyOf: ["dc11:rights".freeze, "exif:exifAttribute".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/rights".freeze, "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :customRendered, comment: "The use of special processing on image data, such as rendering geared to output. When special processing is performed, the reader is expected to disable or minimize any further processing.".freeze, - "exif:tagNumber": "41985".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41985".freeze, label: "CustomRendered".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datatype, comment: "The Exif field data type, such as ascii, byte, short etc.".freeze, label: "Data Type".freeze, - subPropertyOf: "dc11:type".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :date, comment: "a date information. Usually saved as YYYY:MM:DD (HH:MM:SS) format in Exif data, but represented here as W3C-DTF format".freeze, label: "Date".freeze, - subPropertyOf: "dc11:date".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateAndOrTime, comment: "An attribute relating to Date and/or Time".freeze, label: "Date and/or Time".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateTime, comment: "The date and time of image creation. In this standard it is the date and time the file was changed.".freeze, - "exif:tagNumber": "306".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "306".freeze, label: "DateTime".freeze, - subPropertyOf: ["exif:date".freeze, "exif:exifAttribute".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#date".freeze, "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateTimeDigitized, comment: "The date and time when the image was stored as digital data. If, for example, an image was captured by DSC and at the same time the file was recorded, then the DateTimeOriginal and DateTimeDigitized will have the same contents.".freeze, - "exif:tagNumber": "36868".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "36868".freeze, label: "DateTimeDigitized".freeze, - subPropertyOf: ["exif:date".freeze, "exif:dateAndOrTime".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#date".freeze, "http://www.w3.org/2003/12/exif/ns#dateAndOrTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateTimeOriginal, comment: "The date and time when the original image data was generated. For a DSC the date and time the picture was taken are recorded.".freeze, - "exif:tagNumber": "36867".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "36867".freeze, label: "DateTimeOriginal".freeze, - subPropertyOf: ["exif:date".freeze, "exif:dateAndOrTime".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#date".freeze, "http://www.w3.org/2003/12/exif/ns#dateAndOrTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deviceSettingDescription, comment: "Information on the picture-taking conditions of a particular camera model. The tag is used only to indicate the picture-taking conditions in the reader.".freeze, - "exif:tagNumber": "41995".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41995".freeze, label: "DeviceSettingDescription".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :digitalZoomRatio, comment: "The digital zoom ratio when the image was shot. If the numerator of the recorded value is 0, this indicates that digital zoom was not used.".freeze, - "exif:tagNumber": "41988".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41988".freeze, label: "DigitalZoomRatio".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exifAttribute, comment: "A property that connects an IFD to one of its entries. Super property which integrates all Exif tags.".freeze, - domain: "exif:IFD".freeze, + domain: "http://www.w3.org/2003/12/exif/ns#IFD".freeze, label: "Exif Attribute".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exifVersion, comment: "Exif Version".freeze, - "exif:tagNumber": "36864".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "36864".freeze, label: "ExifVersion".freeze, - subPropertyOf: "exif:versionInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#versionInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exif_IFD_Pointer, comment: "A pointer to the Exif IFD, which is a set of tags for recording Exif-specific attribute information.".freeze, - "exif:tagNumber": "34665".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "34665".freeze, label: "Exif IFD Pointer".freeze, - subPropertyOf: "exif:ifdPointer".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#ifdPointer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exifdata, comment: "An Exif IFD data entry".freeze, label: "Exif data".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exposureBiasValue, comment: "The exposure bias. The unit is the APEX value. Ordinarily it is given in the range of -99.99 to 99.99.".freeze, - "exif:tagNumber": "37380".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37380".freeze, label: "ExposureBiasValue".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exposureIndex, comment: "The exposure index selected on the camera or input device at the time the image is captured.".freeze, - "exif:tagNumber": "41493".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41493".freeze, label: "ExposureIndex".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exposureMode, comment: "the exposure mode set when the image was shot. In auto-bracketing mode, the camera shoots a series of frames of the same scene at different exposure settings.".freeze, - "exif:tagNumber": "41986".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41986".freeze, label: "ExposureMode".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exposureProgram, comment: "The class of the program used by the camera to set exposure when the picture is taken.".freeze, - "exif:tagNumber": "34850".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "34850".freeze, label: "ExposureProgram".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exposureTime, comment: "Exposure time, given in seconds (sec).".freeze, - "exif:tagNumber": "33434".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "33434".freeze, label: "ExposureTime".freeze, - subPropertyOf: ["exif:pictTaking".freeze, "exif:seconds".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, "http://www.w3.org/2003/12/exif/ns#seconds".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fNumber, comment: "F number".freeze, - "exif:tagNumber": "33437".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "33437".freeze, label: "FNumber".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileSource, comment: "The image source. If a DSC recorded the image, this tag value of this tag always be set to 3, indicating that the image was recorded on a DSC.".freeze, - "exif:tagNumber": "41728".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41728".freeze, label: "FileSource".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :flash, comment: "The status of flash when the image was shot.".freeze, - "exif:tagNumber": "37385".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37385".freeze, label: "Flash".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :flashEnergy, comment: "The strobe energy at the time the image is captured, as measured in Beam Candle Power Seconds (BCPS).".freeze, - "exif:tagNumber": "41483".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41483".freeze, label: "FlashEnergy".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :flashpixVersion, comment: "The Flashpix format version supported by a FPXR file. If the FPXR function supports Flashpix format Ver. 1.0, this is indicated similarly to ExifVersion by recording \"0100\" as 4-byte ASCII.".freeze, - "exif:tagNumber": "40960".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "40960".freeze, label: "FlashpixVersion".freeze, - subPropertyOf: "exif:versionInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#versionInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :focalLength, comment: "The actual focal length of the lens, in mm. Conversion is not made to the focal length of a 35 mm film camera.".freeze, - "exif:tagNumber": "37386".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37386".freeze, label: "FocalLength".freeze, - subPropertyOf: ["exif:mm".freeze, "exif:pictTaking".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#mm".freeze, "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :focalLengthIn35mmFilm, comment: "The equivalent focal length assuming a 35mm film camera, in mm. A value of 0 means the focal length is unknown. Note that this tag differs from the FocalLength tag.".freeze, - "exif:tagNumber": "41989".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41989".freeze, label: "FocalLengthIn35mmFilm".freeze, - subPropertyOf: ["exif:length".freeze, "exif:pictTaking".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#length".freeze, "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :focalPlaneResolutionUnit, comment: "The unit for measuring FocalPlaneXResolution and FocalPlaneYResolution. This value is the same as the ResolutionUnit.".freeze, - "exif:tagNumber": "41488".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41488".freeze, label: "FocalPlaneResolutionUnit".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :focalPlaneXResolution, comment: "The number of pixels in the image width (X) direction per FocalPlaneResolutionUnit on the camera focal plane.".freeze, - "exif:tagNumber": "41486".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41486".freeze, label: "FocalPlaneXResolution".freeze, - subPropertyOf: ["exif:pictTaking".freeze, "exif:resolution".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, "http://www.w3.org/2003/12/exif/ns#resolution".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :focalPlaneYResolution, comment: "The number of pixels in the image height (Y) direction per FocalPlaneResolutionUnit on the camera focal plane.".freeze, - "exif:tagNumber": "41487".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41487".freeze, label: "FocalPlaneYResolution".freeze, - subPropertyOf: ["exif:pictTaking".freeze, "exif:resolution".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, "http://www.w3.org/2003/12/exif/ns#resolution".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gainControl, comment: "The degree of overall image gain adjustment.".freeze, - "exif:tagNumber": "41991".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41991".freeze, label: "GainControl".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geo, comment: "Geometric data such as latitude, longitude and altitude. Usually saved as rational number.".freeze, label: "Geometric data".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsAltitude, comment: "The altitude based on the reference in GPSAltitudeRef. Altitude is expressed as one RATIONAL value. The reference unit is meters.".freeze, - "exif:tagNumber": "6".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "6".freeze, label: "GPSAltitude".freeze, - subPropertyOf: ["exif:geo".freeze, "exif:gpsInfo".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#geo".freeze, "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsAltitudeRef, comment: "Indicates the altitude used as the reference altitude. If the reference is sea level and the altitude is above sea level, 0 is given. If the altitude is below sea level, a value of 1 is given and the altitude is indicated as an absolute value in the GPSAltitude tag. The reference unit is meters.".freeze, - "exif:tagNumber": "5".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "5".freeze, label: "GPSAltitudeRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsAreaInformation, comment: "A character string recording the name of the GPS area. The first byte indicates the character code used, and this is followed by the name of the GPS area.".freeze, - "exif:tagNumber": "28".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "28".freeze, label: "GPSAreaInformation".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDOP, comment: "The GPS DOP (data degree of precision). An HDOP value is written during two-dimensional measurement, and PDOP during three-dimensional measurement.".freeze, - "exif:tagNumber": "11".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "11".freeze, label: "GPSDOP".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDateStamp, comment: "date and time information relative to UTC (Coordinated Universal Time). The record format is \"YYYY:MM:DD\" while converted to W3C-DTF to use in RDF".freeze, - "exif:tagNumber": "29".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "29".freeze, label: "GPSDateStamp".freeze, - subPropertyOf: ["exif:date".freeze, "exif:gpsInfo".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#date".freeze, "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDestBearing, comment: "The bearing to the destination point. The range of values is from 0.00 to 359.99.".freeze, - "exif:tagNumber": "24".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "24".freeze, label: "GPSDestBearing".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDestBearingRef, comment: "Indicates the reference used for giving the bearing to the destination point. 'T' denotes true direction and 'M' is magnetic direction.".freeze, - "exif:tagNumber": "23".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "23".freeze, label: "GPSDestBearingRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDestDistance, comment: "The distance to the destination point.".freeze, - "exif:tagNumber": "26".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "26".freeze, label: "GPSDestDistance".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDestDistanceRef, comment: "Indicates the unit used to express the distance to the destination point. 'K', 'M' and 'N' represent kilometers, miles and knots.".freeze, - "exif:tagNumber": "25".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "25".freeze, label: "GPSDestDistanceRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDestLatitude, comment: "Latitude of destination, expressed as three values giving the degrees, minutes, and seconds, respectively.".freeze, - "exif:tagNumber": "20".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "20".freeze, label: "GPSDestLatitude".freeze, - subPropertyOf: ["exif:geo".freeze, "exif:gpsInfo".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#geo".freeze, "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDestLatitudeRef, comment: "Reference for latitude of destination".freeze, - "exif:tagNumber": "19".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "19".freeze, label: "GPSDestLatitudeRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDestLongitude, comment: "Longitude of destination, expressed as three values giving the degrees, minutes, and seconds, respectively.".freeze, - "exif:tagNumber": "22".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "22".freeze, label: "GPSDestLongitude".freeze, - subPropertyOf: ["exif:geo".freeze, "exif:gpsInfo".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#geo".freeze, "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDestLongitudeRef, comment: "Reference for longitude of destination".freeze, - "exif:tagNumber": "21".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "21".freeze, label: "GPSDestLongitudeRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsDifferential, comment: "Indicates whether differential correction is applied to the GPS receiver.".freeze, - "exif:tagNumber": "30".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "30".freeze, label: "GPSDifferential".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsImgDirection, comment: "The direction of the image when it was captured. The range of values is from 0.00 to 359.99.".freeze, - "exif:tagNumber": "17".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "17".freeze, label: "GPSImgDirection".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsImgDirectionRef, comment: "The reference for giving the direction of the image when it is captured. 'T' denotes true direction and 'M' is magnetic direction.".freeze, - "exif:tagNumber": "16".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "16".freeze, label: "GPSImgDirectionRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsInfo, comment: "An attribute relating to GPS information".freeze, label: "GPS Info".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsInfo_IFD_Pointer, comment: "A pointer to the GPS IFD, which is a set of tags for recording GPS information.".freeze, - "exif:tagNumber": "34853".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "34853".freeze, label: "GPSInfo IFD Pointer".freeze, - subPropertyOf: "exif:ifdPointer".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#ifdPointer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsLatitude, comment: "The latitude, expressed as three values giving the degrees, minutes, and seconds, respectively.".freeze, - "exif:tagNumber": "2".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "2".freeze, label: "GPSLatitude".freeze, - subPropertyOf: ["exif:geo".freeze, "exif:gpsInfo".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#geo".freeze, "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsLatitudeRef, comment: "Indicates whether the latitude is north or south latitude. The ASCII value 'N' indicates north latitude, and 'S' is south latitude.".freeze, - "exif:tagNumber": "1".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "1".freeze, label: "GPSLatitudeRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsLongitude, comment: "The longitude, expressed as three values giving the degrees, minutes, and seconds, respectively.".freeze, - "exif:tagNumber": "4".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "4".freeze, label: "GPSLongitude".freeze, - subPropertyOf: ["exif:geo".freeze, "exif:gpsInfo".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#geo".freeze, "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsLongitudeRef, comment: "Indicates whether the longitude is east or west longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude.".freeze, - "exif:tagNumber": "3".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "3".freeze, label: "GPSLongitudeRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsMapDatum, comment: "The geodetic survey data used by the GPS receiver. If the survey data is restricted to Japan, the value of this tag is 'TOKYO' or 'WGS-84'. If a GPS Info tag is recorded, it is strongly recommended that this tag be recorded.".freeze, - "exif:tagNumber": "18".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "18".freeze, label: "GPSMapDatum".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsMeasureMode, comment: "The GPS measurement mode. '2' means two-dimensional measurement and '3' means three-dimensional measurement is in progress.".freeze, - "exif:tagNumber": "10".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "10".freeze, label: "GPSMeasureMode".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsProcessingMethod, comment: "A character string recording the name of the method used for location finding. The first byte indicates the character code used, and this is followed by the name of the method.".freeze, - "exif:tagNumber": "27".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "27".freeze, label: "GPSProcessingMethod".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsSatellites, comment: "The GPS satellites used for measurements. This tag can be used to describe the number of satellites, their ID number, angle of elevation, azimuth, SNR and other information in ASCII notation. The format is not specified. If the GPS receiver is incapable of taking measurements, value of the tag shall be set to NULL.".freeze, - "exif:tagNumber": "8".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "8".freeze, label: "GPSSatellites".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsSpeed, comment: "The speed of GPS receiver movement.".freeze, - "exif:tagNumber": "13".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "13".freeze, label: "GPSSpeed".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsSpeedRef, comment: "The unit used to express the GPS receiver speed of movement. 'K' 'M' and 'N' represents kilometers per hour, miles per hour, and knots.".freeze, - "exif:tagNumber": "12".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "12".freeze, label: "GPSSpeedRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsStatus, comment: "The status of the GPS receiver when the image is recorded. 'A' means measurement is in progress, and 'V' means the measurement is Interoperability.".freeze, - "exif:tagNumber": "9".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "9".freeze, label: "GPSStatus".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsTimeStamp, comment: "The time as UTC (Coordinated Universal Time). TimeStamp is expressed as three RATIONAL values giving the hour, minute, and second.".freeze, - "exif:tagNumber": "7".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "7".freeze, label: "GPSTimeStamp".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsTrack, comment: "The direction of GPS receiver movement. The range of values is from 0.00 to 359.99.".freeze, - "exif:tagNumber": "15".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "15".freeze, label: "GPSTrack".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsTrackRef, comment: "The reference for giving the direction of GPS receiver movement. 'T' denotes true direction and 'M' is magnetic direction.".freeze, - "exif:tagNumber": "14".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "14".freeze, label: "GPSTrackRef".freeze, - subPropertyOf: "exif:gpsInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gpsVersionID, comment: "The version of GPSInfoIFD. The version is given as 2.2.0.0. This tag is mandatory when GPSInfo tag is present.".freeze, - "exif:tagNumber": "0".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "0".freeze, label: "GPSVersionID".freeze, - subPropertyOf: ["exif:gpsInfo".freeze, "exif:versionInfo".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#gpsInfo".freeze, "http://www.w3.org/2003/12/exif/ns#versionInfo".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :height, comment: "Height of an object".freeze, label: "Height".freeze, - subPropertyOf: "exif:length".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#length".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ifdPointer, comment: "A tag that refers a child IFD".freeze, label: "IFD Pointer".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :imageConfig, comment: "An attribute relating to Image Configuration".freeze, label: "Image Config".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :imageDataCharacter, comment: "An attribute relating to image data characteristics".freeze, label: "Image Data Character".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :imageDataStruct, comment: "An attribute relating to image data structure".freeze, label: "Image Data Structure".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :imageDescription, comment: "A character string giving the title of the image. It may be a comment such as \"1988 company picnic\" or the like. Two-byte character codes cannot be used. When a 2-byte code is necessary, the Exif Private tag UserComment is to be used.".freeze, - "exif:tagNumber": "270".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "270".freeze, label: "ImageDescription".freeze, - subPropertyOf: ["dc11:title".freeze, "exif:exifAttribute".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/title".freeze, "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :imageLength, comment: "Image height. The number of rows of image data. In JPEG compressed data a JPEG marker is used.".freeze, - "exif:tagNumber": "257".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "257".freeze, label: "ImageLength".freeze, - subPropertyOf: ["exif:height".freeze, "exif:imageDataStruct".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#height".freeze, "http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :imageUniqueID, comment: "An identifier assigned uniquely to each image. It is recorded as an ASCII string equivalent to hexadecimal notation and 128-bit fixed length.".freeze, - "exif:tagNumber": "42016".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "42016".freeze, label: "ImageUniqueID".freeze, - subPropertyOf: ["dc11:identifier".freeze, "exif:exifAttribute".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://purl.org/dc/elements/1.1/identifier".freeze, "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :imageWidth, comment: "Image width. The number of columns of image data, equal to the number of pixels per row. In JPEG compressed data a JPEG marker is used instead of this tag.".freeze, - "exif:tagNumber": "256".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "256".freeze, label: "ImageWidth".freeze, - subPropertyOf: ["exif:imageDataStruct".freeze, "exif:width".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, "http://www.w3.org/2003/12/exif/ns#width".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interopInfo, comment: "An attribute relating to Interoperability. Tags stored in\nInteroperability IFD may be defined dependently to each Interoperability rule.".freeze, label: "Interoperability Info".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interoperabilityIndex, comment: "Indicates the identification of the Interoperability rule. 'R98' = conforming to R98 file specification of Recommended Exif Interoperability Rules (ExifR98) or to DCF basic file stipulated by Design Rule for Camera File System. 'THM' = conforming to DCF thumbnail file stipulated by Design rule for Camera File System.".freeze, - "exif:tagNumber": "1".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "1".freeze, label: "InteroperabilityIndex".freeze, - subPropertyOf: "exif:interopInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#interopInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interoperabilityVersion, comment: "Interoperability Version".freeze, - "exif:tagNumber": "2".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "2".freeze, label: "InteroperabilityVersion".freeze, - subPropertyOf: "exif:interopInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#interopInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interoperability_IFD_Pointer, comment: "A pointer to the Interoperability IFD, which is composed of tags storing the information to ensure the Interoperability".freeze, - "exif:tagNumber": "40965".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "40965".freeze, label: "Interoperability IFD Pointer".freeze, - subPropertyOf: "exif:ifdPointer".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#ifdPointer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isoSpeedRatings, comment: "Indicates the ISO Speed and ISO Latitude of the camera or input device as specified in ISO 12232.".freeze, - "exif:tagNumber": "34855".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "34855".freeze, label: "ISOSpeedRatings".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jpegInterchangeFormat, comment: "The offset to the start byte (SOI) of JPEG compressed thumbnail data. This is not used for primary image JPEG data.".freeze, - "exif:tagNumber": "513".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "513".freeze, label: "JPEGInterchangeFormat".freeze, - subPropertyOf: "exif:recOffset".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#recOffset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jpegInterchangeFormatLength, comment: "The number of bytes of JPEG compressed thumbnail data. This is not used for primary image JPEG data.".freeze, - "exif:tagNumber": "514".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "514".freeze, label: "JPEGInterchangeFormatLength".freeze, - subPropertyOf: "exif:recOffset".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#recOffset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :length, comment: "Length of an object. Could be a subProperty of other general schema.".freeze, label: "Length".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lightSource, comment: "Light source such as Daylight, Tungsten, Flash etc.".freeze, - "exif:tagNumber": "37384".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37384".freeze, label: "LightSource".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :make, comment: "Manufacturer of image input equipment".freeze, - "exif:tagNumber": "271".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "271".freeze, label: "Make".freeze, - subPropertyOf: ["exif:exifAttribute".freeze, "rdfs:label".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2000/01/rdf-schema#label".freeze, "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :makerNote, comment: "Manufacturer notes".freeze, - "exif:tagNumber": "37500".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37500".freeze, label: "MakerNote".freeze, - subPropertyOf: "exif:userInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#userInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maxApertureValue, comment: "The smallest F number of the lens. The unit is the APEX value. Ordinarily it is given in the range of 00.00 to 99.99, but it is not limited to this range.".freeze, - "exif:tagNumber": "37381".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37381".freeze, label: "MaxApertureValue".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :meter, comment: "A length with unit of meter".freeze, label: "Meter".freeze, - subPropertyOf: "exif:length".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#length".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :meteringMode, comment: "Metering mode, such as CenterWeightedAverage, Spot, MultiSpot,Pattern, Partial etc.".freeze, - "exif:tagNumber": "37383".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37383".freeze, label: "MeteringMode".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mm, comment: "A length with unit of mm".freeze, label: "Milimeter".freeze, - subPropertyOf: "exif:length".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#length".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :model, comment: "Model of image input equipment".freeze, - "exif:tagNumber": "272".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "272".freeze, label: "Model".freeze, - subPropertyOf: ["exif:exifAttribute".freeze, "rdfs:label".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2000/01/rdf-schema#label".freeze, "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :oecf, comment: "Indicates the Opto-Electric Conversion Function (OECF) specified in ISO 14524. OECF is the relationship between the camera optical input and the image values.".freeze, - "exif:tagNumber": "34856".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "34856".freeze, label: "OECF".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orientation, comment: "The image orientation viewed in terms of rows and columns.".freeze, - "exif:tagNumber": "274".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "274".freeze, label: "Orientation".freeze, - subPropertyOf: "exif:imageDataStruct".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :photometricInterpretation, comment: "Pixel composition. In JPEG compressed data a JPEG marker is used instead of this tag.".freeze, - "exif:tagNumber": "262".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "262".freeze, label: "PhotometricInterpretation".freeze, - subPropertyOf: "exif:imageDataStruct".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pictTaking, comment: "An attribute relating to Picture-Taking Conditions".freeze, label: "PictTaking".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pimBrightness, comment: "Brightness info for print image matching".freeze, - "exif:tagNumber": "10".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "10".freeze, label: "PrintIM Brightness".freeze, - subPropertyOf: "exif:pimInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pimInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pimColorBalance, comment: "ColorBalance info for print image matching".freeze, - "exif:tagNumber": "11".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "11".freeze, label: "PrintIM ColorBalance".freeze, - subPropertyOf: "exif:pimInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pimInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pimContrast, comment: "Contrast info for print image matching".freeze, - "exif:tagNumber": "9".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "9".freeze, label: "PrintIM Contrast".freeze, - subPropertyOf: "exif:pimInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pimInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pimInfo, comment: "An attribute relating to print image matching".freeze, label: "PIM Info".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pimSaturation, comment: "Saturation info for print image matching".freeze, - "exif:tagNumber": "12".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "12".freeze, label: "PrintIM Saturation".freeze, - subPropertyOf: "exif:pimInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pimInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pimSharpness, comment: "Sharpness info for print image matching".freeze, - "exif:tagNumber": "13".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "13".freeze, label: "PrintIM Sharpness".freeze, - subPropertyOf: "exif:pimInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pimInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pixelXDimension, comment: "Information specific to compressed data. When a compressed file is recorded, the valid width of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker. This tag should not exist in an uncompressed file.".freeze, - "exif:tagNumber": "40962".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "40962".freeze, label: "PixelXDimension".freeze, - subPropertyOf: ["exif:imageConfig".freeze, "exif:width".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#imageConfig".freeze, "http://www.w3.org/2003/12/exif/ns#width".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pixelYDimension, comment: "Information specific to compressed data. When a compressed file is recorded, the valid height of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker. This tag should not exist in an uncompressed file. Since data padding is unnecessary in the vertical direction, the number of lines recorded in this valid image height tag will in fact be the same as that recorded in the SOF.".freeze, - "exif:tagNumber": "40963".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "40963".freeze, label: "PixelYDimension".freeze, - subPropertyOf: ["exif:height".freeze, "exif:imageConfig".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#height".freeze, "http://www.w3.org/2003/12/exif/ns#imageConfig".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :planarConfiguration, comment: "Indicates whether pixel components are recorded in chunky or planar format. In JPEG compressed files a JPEG marker is used instead of this tag. If this field does not exist, the TIFF default of 1 (chunky) is assumed.".freeze, - "exif:tagNumber": "284".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "284".freeze, label: "PlanarConfiguration".freeze, - subPropertyOf: "exif:imageDataStruct".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :primaryChromaticities, comment: "The chromaticity of the three primary colors of the image. Normally this tag is not necessary, since color space is specified in the color space information tag (ColorSpace).".freeze, - "exif:tagNumber": "319".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "319".freeze, label: "PrimaryChromaticities".freeze, - subPropertyOf: "exif:imageDataCharacter".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataCharacter".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :printImageMatching_IFD_Pointer, comment: "A pointer to the print image matching IFD".freeze, - "exif:tagNumber": "50341".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "50341".freeze, label: "PrintImageMatching IFD Pointer".freeze, - subPropertyOf: "exif:ifdPointer".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#ifdPointer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recOffset, comment: "An attribute relating to recording offset".freeze, label: "Recording Offset".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :referenceBlackWhite, comment: "The reference black point value and reference white point value. The color space is declared in a color space information tag, with the default being the value that gives the optimal image characteristics Interoperability these conditions.".freeze, - "exif:tagNumber": "532".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "532".freeze, label: "ReferenceBlackWhite".freeze, - subPropertyOf: "exif:imageDataCharacter".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataCharacter".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedFile, comment: "Tag Relating to Related File Information".freeze, label: "Related File".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedImageFileFormat, comment: "Related image file format".freeze, - "exif:tagNumber": "4096".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "4096".freeze, label: "RelatedImageFileFormat".freeze, - subPropertyOf: "exif:interopInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#interopInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedImageLength, comment: "Related image length".freeze, - "exif:tagNumber": "4098".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "4098".freeze, label: "RelatedImageLength".freeze, - subPropertyOf: ["exif:height".freeze, "exif:interopInfo".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#height".freeze, "http://www.w3.org/2003/12/exif/ns#interopInfo".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedImageWidth, comment: "Related image width".freeze, - "exif:tagNumber": "4097".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "4097".freeze, label: "RelatedImageWidth".freeze, - subPropertyOf: ["exif:interopInfo".freeze, "exif:width".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#interopInfo".freeze, "http://www.w3.org/2003/12/exif/ns#width".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedSoundFile, comment: "Related audio file".freeze, - "exif:tagNumber": "40964".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "40964".freeze, label: "RelatedSoundFile".freeze, - subPropertyOf: "exif:relatedFile".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#relatedFile".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resolution, comment: "a rational number representing a resolution. Could be a subProperty of other general schema.".freeze, label: "Resolution".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resolutionUnit, comment: "The unit for measuring XResolution and YResolution. The same unit is used for both XResolution and YResolution. If the image resolution in unknown, 2 (inches) is designated.".freeze, - "exif:tagNumber": "296".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "296".freeze, label: "ResolutionUnit".freeze, - subPropertyOf: "exif:imageDataStruct".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rowsPerStrip, comment: "The number of rows per strip. This is the number of rows in the image of one strip when an image is divided into strips. With JPEG compressed data this designation is not needed and is omitted.".freeze, - "exif:tagNumber": "278".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "278".freeze, label: "RowsPerStrip".freeze, - subPropertyOf: "exif:recOffset".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#recOffset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :samplesPerPixel, comment: "The number of components per pixel. Since this standard applies to RGB and YCbCr images, the value set for this tag is 3. In JPEG compressed data a JPEG marker is used instead of this tag.".freeze, - "exif:tagNumber": "277".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "277".freeze, label: "SamplesPerPixel".freeze, - subPropertyOf: "exif:imageDataStruct".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :saturation, comment: "The direction of saturation processing applied by the camera when the image was shot.".freeze, - "exif:tagNumber": "41993".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41993".freeze, label: "Saturation".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sceneCaptureType, comment: "The type of scene that was shot. It can also be used to record the mode in which the image was shot, such as Landscape, Portrait etc. Note that this differs from the scene type (SceneType) tag.".freeze, - "exif:tagNumber": "41990".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41990".freeze, label: "SceneCaptureType".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sceneType, comment: "The type of scene. If a DSC recorded the image, this tag value shall always be set to 1, indicating that the image was directly photographed.".freeze, - "exif:tagNumber": "41729".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41729".freeze, label: "SceneType".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seconds, comment: "a mesurement of time length with unit of second".freeze, label: "Seconds".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sensingMethod, comment: "The image sensor type on the camera or input device, such as One-chip color area sensor etc.".freeze, - "exif:tagNumber": "41495".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41495".freeze, label: "SensingMethod".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sharpness, comment: "The direction of sharpness processing applied by the camera when the image was shot.".freeze, - "exif:tagNumber": "41994".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41994".freeze, label: "Sharpness".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shutterSpeedValue, comment: "Shutter speed. The unit is the APEX (Additive System of Photographic Exposure) setting".freeze, - "exif:tagNumber": "37377".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37377".freeze, label: "ShutterSpeedValue".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :software, comment: "The name and version of the software or firmware of the camera or image input device used to generate the image.".freeze, - "exif:tagNumber": "305".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "305".freeze, label: "Software".freeze, - subPropertyOf: ["exif:exifAttribute".freeze, "rdfs:label".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2000/01/rdf-schema#label".freeze, "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spatialFrequencyResponse, comment: "This tag records the camera or input device spatial frequency table and SFR values in the direction of image width, image height, and diagonal direction, as specified in ISO 12233.".freeze, - "exif:tagNumber": "41484".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41484".freeze, label: "SpatialFrequencyResponse".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spectralSensitivity, comment: "Indicates the spectral sensitivity of each channel of the camera used. The tag value is an ASCII string compatible with the standard developed by the ASTM Technical committee.".freeze, - "exif:tagNumber": "34852".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "34852".freeze, label: "SpectralSensitivity".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stripByteCounts, comment: "The total number of bytes in each strip. With JPEG compressed data this designation is not needed and is omitted.".freeze, - "exif:tagNumber": "279".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "279".freeze, label: "StripByteCounts".freeze, - subPropertyOf: "exif:recOffset".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#recOffset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stripOffsets, comment: "For each strip, the byte offset of that strip. With JPEG compressed data this designation is not needed and is omitted.".freeze, - "exif:tagNumber": "273".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "273".freeze, label: "StripOffsets".freeze, - subPropertyOf: "exif:recOffset".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#recOffset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subSecTime, comment: "DateTime subseconds".freeze, - "exif:tagNumber": "37520".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37520".freeze, label: "SubSecTime".freeze, - subPropertyOf: ["exif:dateAndOrTime".freeze, "exif:subseconds".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#dateAndOrTime".freeze, "http://www.w3.org/2003/12/exif/ns#subseconds".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subSecTimeDigitized, comment: "DateTimeDigitized subseconds".freeze, - "exif:tagNumber": "37522".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37522".freeze, label: "SubSecTimeDigitized".freeze, - subPropertyOf: ["exif:dateAndOrTime".freeze, "exif:subseconds".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#dateAndOrTime".freeze, "http://www.w3.org/2003/12/exif/ns#subseconds".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subSecTimeOriginal, comment: "DateTimeOriginal subseconds".freeze, - "exif:tagNumber": "37521".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37521".freeze, label: "SubSecTimeOriginal".freeze, - subPropertyOf: ["exif:dateAndOrTime".freeze, "exif:subseconds".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#dateAndOrTime".freeze, "http://www.w3.org/2003/12/exif/ns#subseconds".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subjectArea, comment: "The location and area of the main subject in the overall scene.".freeze, - "exif:tagNumber": "37396".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37396".freeze, label: "SubjectArea".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subjectDistance, comment: "The distance to the subject, given in meters. Note that if the numerator of the recorded value is FFFFFFFF.H, Infinity shall be indicated; and if the numerator is 0, Distance unknown shall be indicated.".freeze, - "exif:tagNumber": "37382".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37382".freeze, label: "SubjectDistance".freeze, - subPropertyOf: ["exif:meter".freeze, "exif:pictTaking".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#meter".freeze, "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subjectDistanceRange, comment: "The distance to the subject, such as Macro, Close View or Distant View.".freeze, - "exif:tagNumber": "41996".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41996".freeze, label: "SubjectDistanceRange".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subjectLocation, comment: "The location of the main subject in the scene. The value of this tag represents the pixel at the center of the main subject relative to the left edge, prior to rotation processing as per the Rotation tag. The first value indicates the X column number and second indicates the Y row number.".freeze, - "exif:tagNumber": "41492".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41492".freeze, label: "SubjectLocation".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subseconds, comment: "A tag used to record fractions of seconds for a date property".freeze, label: "Subseconds".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tag_number, comment: "The Exif tag number".freeze, label: "Tag number".freeze, - subPropertyOf: "dc11:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tagid, comment: "The Exif tag number with context prefix, such as IFD type or maker name".freeze, label: "Tag ID".freeze, - subPropertyOf: "exif:tag_number".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#tag_number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :transferFunction, comment: "A transfer function for the image, described in tabular style. Normally this tag is not necessary, since color space is specified in the color space information tag (ColorSpace).".freeze, - "exif:tagNumber": "301".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "301".freeze, label: "TransferFunction".freeze, - subPropertyOf: "exif:imageDataCharacter".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataCharacter".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :userComment, comment: "A tag for Exif users to write keywords or comments on the image besides those in ImageDescription, and without the character code limitations of the ImageDescription tag. The character code used in the UserComment tag is identified based on an ID code in a fixed 8-byte area at the start of the tag data area.".freeze, - "exif:tagNumber": "37510".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "37510".freeze, label: "UserComment".freeze, - subPropertyOf: "exif:userInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#userInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :userInfo, comment: "An attribute relating to User Information".freeze, label: "User Info".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :versionInfo, comment: "An attribute relating to Version".freeze, label: "Version Info".freeze, - subPropertyOf: "exif:exifAttribute".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#exifAttribute".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :whiteBalance, comment: "The white balance mode set when the image was shot.".freeze, - "exif:tagNumber": "41987".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "41987".freeze, label: "WhiteBalance".freeze, - subPropertyOf: "exif:pictTaking".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#pictTaking".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :whitePoint, comment: "The chromaticity of the white point of the image. Normally this tag is not necessary, since color space is specified in the color space information tag (ColorSpace).".freeze, - "exif:tagNumber": "318".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "318".freeze, label: "WhitePoint".freeze, - subPropertyOf: "exif:imageDataCharacter".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataCharacter".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :width, comment: "Width of an object".freeze, label: "Width".freeze, - subPropertyOf: "exif:length".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#length".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :xResolution, comment: "The number of pixels per ResolutionUnit in the ImageWidth direction. When the image resolution is unknown, 72 [dpi] is designated.".freeze, - "exif:tagNumber": "282".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "282".freeze, label: "XResolution".freeze, - subPropertyOf: ["exif:imageDataStruct".freeze, "exif:resolution".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, "http://www.w3.org/2003/12/exif/ns#resolution".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yCbCrCoefficients, comment: "The matrix coefficients for transformation from RGB to YCbCr image data.".freeze, - "exif:tagNumber": "529".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "529".freeze, label: "YCbCrCoefficients".freeze, - subPropertyOf: "exif:imageDataCharacter".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataCharacter".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yCbCrPositioning, comment: "The position of chrominance components in relation to the luminance component. This field is designated only for JPEG compressed data or uncompressed YCbCr data.".freeze, - "exif:tagNumber": "531".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "531".freeze, label: "YCbCrPositioning".freeze, - subPropertyOf: "exif:imageDataStruct".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yCbCrSubSampling, comment: "The sampling ratio of chrominance components in relation to the luminance component. In JPEG compressed data a JPEG marker is used instead of this tag.".freeze, - "exif:tagNumber": "530".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "530".freeze, label: "YCbCrSubSampling".freeze, - subPropertyOf: "exif:imageDataStruct".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yResolution, comment: "The number of pixels per ResolutionUnit in the ImageLength direction. The same value as XResolution is designated.".freeze, - "exif:tagNumber": "283".freeze, + "http://www.w3.org/2003/12/exif/ns#tagNumber": "283".freeze, label: "YResolution".freeze, - subPropertyOf: ["exif:imageDataStruct".freeze, "exif:resolution".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["http://www.w3.org/2003/12/exif/ns#imageDataStruct".freeze, "http://www.w3.org/2003/12/exif/ns#resolution".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/extensions.rb b/lib/rdf/vocab/extensions.rb index 182a06e..5cbad58 100644 --- a/lib/rdf/vocab/extensions.rb +++ b/lib/rdf/vocab/extensions.rb @@ -136,7 +136,7 @@ def to_ttl(graph: nil, prefixes: nil) po = {} # Group predicates with their values - graph.query(subject: subject) do |statement| + graph.query({subject: subject}) do |statement| # Sanity check this, as these are set to an empty string if not defined. next if [RDF::RDFS.label, RDF::RDFS.comment].include?(statement.predicate) && statement.object.to_s.empty? po[statement.predicate] ||= [] @@ -262,7 +262,7 @@ def to_jsonld(graph: nil, prefixes: nil) po = {} # Group predicates with their values - graph.query(subject: subject) do |statement| + graph.query({subject: subject}) do |statement| # Sanity check this, as these are set to an empty string if not defined. next if [RDF::RDFS.label, RDF::RDFS.comment].include?(statement.predicate) && statement.object.to_s.empty? po[statement.predicate] ||= [] @@ -451,7 +451,7 @@ def subject_categories(graph) cats = {} categorized = {} uncategorized = {} - graph.query(predicate: RDF.type) do |statement| + graph.query({predicate: RDF.type}) do |statement| # Only serialize statements that are in the defined vocabulary next unless statement.subject.uri? && statement.subject.start_with?(self.to_uri) case statement.object diff --git a/lib/rdf/vocab/fcrepo4.rb b/lib/rdf/vocab/fcrepo4.rb index d6be636..b9452b0 100644 --- a/lib/rdf/vocab/fcrepo4.rb +++ b/lib/rdf/vocab/fcrepo4.rb @@ -3,817 +3,437 @@ # This file generated automatically using rdf vocabulary format from http://fedora.info/definitions/v4/repository# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Fedora Commons Repository Ontology - # # - # # Ontology for the Fedora data model, intended primarily to make it possible to expose Fedora-curated RDF predicates via de-reference-able URIs. - # # @version v4/2015/07/24 - # class Fcrepo4 < RDF::StrictVocabulary - # # A Resource that maintains properties in its own right. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnnotatedResource - # - # # A bitstream, with no further data properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Binary - # - # # A container for transform configuration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Configuration - # - # # A Fedora Container: the fundamental quantum of durable content in a Fedora repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Container - # - # # The set of triples representing child resources of a given resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmbedResources - # - # # The set of triples representing other repository resources which link to a given resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InboundReferences - # - # # A container for transform node type configuration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NodeTypeConfiguration - # - # # A container for a bitstream and associated properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NonRdfSourceDescription - # - # # An entity that is a an intermediary node created in a PairTree hierarchy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pairtree - # - # # An entity that may be related to other repository entities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Relations - # - # # An entity that has been committed to the repository for safekeeping. For example, Fedora objects and datastreams are resources. A Fixity is not, because the provenance of the instance is entirely internal to the repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resource - # - # # The system-generated triples for a given resource (as opposed to explicity-declared properties). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ServerManaged - # - # # An entity that is a representation of an RDF Skolem node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Skolem - # - # # Something that is contemplated in the Fedora repository model. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thing - # - # # An entity that is a marker for a deleted node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tombstone - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Version - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :UnmappedType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :baseVersion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clusterCacheMode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clusterMembers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clusterName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clusterNodeAddress - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clusterNodeView - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clusterPhysicalAddress - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clusterSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :computedChecksum - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :computedSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :couldNotStoreProperty - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :created - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :createdBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :exportsAs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frozenMixinTypes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frozenPrimaryType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frozenUuid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAccessRoles - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasChild - # - # # Indicates a binary in which content is stored for this datastream. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContent - # - # # Indicates the default workspace of the repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDefaultWorkspace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFixityService - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLocation - # - # # Links to a newly-minted identifier which can be used to create a repository resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMoreResults - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNamespaces - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNodeType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasParent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasResultsMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTransactionProvider - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVersion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVersionLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVersions - # - # # Links to a workspace of the repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasWorkspace - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasWorkspaces - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isCheckedOut - # - # # Indicates a datastream for which this resource contains the content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isContentOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastModified - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastModifiedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mixinTypes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numFixityChecks - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numFixityErrors - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numFixityRepaired - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfChildren - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :objectCount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :objectSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :predecessors - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :primaryType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryCustomRepName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryIdentifierStability - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryJcrRepositoryName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryJcrRepositoryVendor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryJcrRepositoryVendorUrl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryJcrRepositoryVersion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryJcrSpecificationName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryJcrSpecificationVersion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryLevel1Supported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryLevel2Supported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementAutocreatedDefinitionsSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementInheritance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementMultipleBinaryPropertiesSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementMultivaluedPropertiesSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementOrderableChildNodesSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementOverridesSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementPrimaryItemNameSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementPropertyTypes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementResidualDefinitionsSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementSameNameSiblingsSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementUpdateInUseSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryNodeTypeManagementValueConstraintsSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionAccessControlSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionActivitiesSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionBaselinesSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionJournaledObservationSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionLifecycleSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionLockingSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionNodeAndPropertyWithSameNameSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionNodeTypeManagementSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionObservationSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionQuerySqlSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionRetentionSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionShareableNodesSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionSimpleVersioningSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionTransactionsSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionUnfiledContentSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionUpdateMixinNodeTypesSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionUpdatePrimaryNodeTypeSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionVersioningSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionWorkspaceManagementSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionXmlExportSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryOptionXmlImportSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryQueryFullTextSearchSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryQueryJoins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryQueryStoredQueriesSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryQueryXpathDocOrder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryQueryXpathPosIndex - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :repositoryWriteSupported - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sparql - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :uuid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :writable - # - # end Fcrepo4 = Class.new(RDF::StrictVocabulary("http://fedora.info/definitions/v4/repository#")) do # Ontology definition ontology :"http://fedora.info/definitions/v4/repository#", comment: "Ontology for the Fedora data model, intended primarily to make it possible to expose Fedora-curated RDF predicates via de-reference-able URIs.".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://fedora.info/definitions/v4/2015/05/19/repository".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "v4/2015/07/24".freeze, label: "Fedora Commons Repository Ontology".freeze, - "owl:priorVersion": "http://fedora.info/definitions/v4/2015/05/19/repository".freeze, - "owl:versionInfo": "v4/2015/07/24".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AnnotatedResource, comment: "A Resource that maintains properties in its own right.".freeze, label: "annotated resource".freeze, - subClassOf: "fcrepo4:Resource".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Resource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Binary, comment: "A bitstream, with no further data properties.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://fedora.info/definitions/v4/repository#Container".freeze, "http://fedora.info/definitions/v4/repository#NonRdfSourceDescription".freeze], label: "binary".freeze, - "owl:disjointWith": ["fcrepo4:Container".freeze, "fcrepo4:NonRdfSourceDescription".freeze], - subClassOf: "fcrepo4:Resource".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Resource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Configuration, comment: "A container for transform configuration.".freeze, label: "Fedora transform configuration".freeze, - subClassOf: "fcrepo4:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Container, comment: "A Fedora Container: the fundamental quantum of durable content in a Fedora repository.".freeze, label: "Fedora Container".freeze, - subClassOf: "fcrepo4:AnnotatedResource".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#AnnotatedResource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EmbedResources, comment: "The set of triples representing child resources of a given resource.".freeze, label: "embed resources".freeze, - subClassOf: "fcrepo4:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InboundReferences, comment: "The set of triples representing other repository resources which link to a given resource.".freeze, label: "inbound references".freeze, - subClassOf: "fcrepo4:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NodeTypeConfiguration, comment: "A container for transform node type configuration.".freeze, label: "Fedora transform node type configuration".freeze, - subClassOf: "fcrepo4:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NonRdfSourceDescription, comment: "A container for a bitstream and associated properties.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://fedora.info/definitions/v4/repository#Container".freeze, label: "Fedora NonRdfSourceDescription".freeze, - "owl:disjointWith": "fcrepo4:Container".freeze, - subClassOf: "fcrepo4:AnnotatedResource".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#AnnotatedResource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Pairtree, comment: "An entity that is a an intermediary node created in a PairTree hierarchy.".freeze, label: "pair tree".freeze, - subClassOf: "fcrepo4:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Relations, comment: "An entity that may be related to other repository entities.".freeze, - subClassOf: "fcrepo4:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Resource, comment: "An entity that has been committed to the repository for safekeeping. For example, Fedora objects and datastreams are resources. A Fixity is not, because the provenance of the instance is entirely internal to the repository.".freeze, label: "Fedora resource".freeze, - subClassOf: "fcrepo4:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ServerManaged, comment: "The system-generated triples for a given resource (as opposed to explicity-declared properties).".freeze, label: "server managed".freeze, - subClassOf: "fcrepo4:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Skolem, comment: "An entity that is a representation of an RDF Skolem node.".freeze, label: "skolem".freeze, - subClassOf: "fcrepo4:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Thing, comment: "Something that is contemplated in the Fedora repository model.".freeze, label: "Fedora thing".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Tombstone, comment: "An entity that is a marker for a deleted node.".freeze, label: "tombstone".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Version, label: "A snapshot of a Fedora object at a given point in time.".freeze, - subClassOf: "fcrepo4:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://fedora.info/definitions/v4/repository#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :UnmappedType, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :baseVersion, - domain: "fcrepo4:Container".freeze, + domain: "http://fedora.info/definitions/v4/repository#Container".freeze, label: "base version".freeze, - range: "fcrepo4:Version".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://fedora.info/definitions/v4/repository#Version".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :clusterCacheMode, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :clusterMembers, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :clusterName, - range: "xsd:string".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :clusterNodeAddress, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :clusterNodeView, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :clusterPhysicalAddress, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :clusterSize, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :computedChecksum, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :computedSize, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :couldNotStoreProperty, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :created, - range: "xsd:dateTime".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :createdBy, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :exportsAs, label: "exports as".freeze, - range: "xsd:anyURI".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :frozenMixinTypes, - subPropertyOf: "fcrepo4:mixinTypes".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://fedora.info/definitions/v4/repository#mixinTypes".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :frozenPrimaryType, - subPropertyOf: "fcrepo4:primaryType".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://fedora.info/definitions/v4/repository#primaryType".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :frozenUuid, - subPropertyOf: "fcrepo4:uuid".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://fedora.info/definitions/v4/repository#uuid".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasAccessRoles, label: "has access roles".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasChild, - domain: "fcrepo4:Container".freeze, + domain: "http://fedora.info/definitions/v4/repository#Container".freeze, label: "has child".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("fcrepo4:NonRdfSourceDescription".freeze, "fcrepo4:Container".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://fedora.info/definitions/v4/repository#NonRdfSourceDescription".freeze, "http://fedora.info/definitions/v4/repository#Container".freeze) ), - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasContent, comment: "Indicates a binary in which content is stored for this datastream.".freeze, - domain: "fcrepo4:NonRdfSourceDescription".freeze, + domain: "http://fedora.info/definitions/v4/repository#NonRdfSourceDescription".freeze, label: "has content".freeze, - range: "fcrepo4:Binary".freeze, - type: "owl:ObjectProperty".freeze + range: "http://fedora.info/definitions/v4/repository#Binary".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDefaultWorkspace, comment: "Indicates the default workspace of the repository.".freeze, label: "has default workspace".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasFixityService, label: "has fixity service".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasLocation, - range: "xsd:anyURI".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasMember, comment: "Links to a newly-minted identifier which can be used to create a repository resource.".freeze, label: "has member".freeze, - range: "xsd:anyURI".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMoreResults, label: "has more results".freeze, - range: "xsd:boolean".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasNamespaces, label: "has namespaces".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasNodeType, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasParent, - domain: "fcrepo4:Resource".freeze, + domain: "http://fedora.info/definitions/v4/repository#Resource".freeze, label: "has parent".freeze, - range: "fcrepo4:Container".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://fedora.info/definitions/v4/repository#Container".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasResultsMember, label: "has results member".freeze, - range: "fcrepo4:Resource".freeze, - type: "owl:ObjectProperty".freeze + range: "http://fedora.info/definitions/v4/repository#Resource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTransactionProvider, label: "has transaction provider".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasVersion, - domain: "fcrepo4:Container".freeze, + domain: "http://fedora.info/definitions/v4/repository#Container".freeze, label: "has version".freeze, - range: "fcrepo4:Version".freeze, - type: "owl:ObjectProperty".freeze + range: "http://fedora.info/definitions/v4/repository#Version".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasVersionLabel, - range: "xsd:string".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasVersions, label: "has versions".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasWorkspace, comment: "Links to a workspace of the repository.".freeze, label: "has workspace".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasWorkspaces, label: "has workspaces".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isCheckedOut, - range: "xsd:boolean".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :isContentOf, comment: "Indicates a datastream for which this resource contains the content. ".freeze, - domain: "fcrepo4:Binary".freeze, + domain: "http://fedora.info/definitions/v4/repository#Binary".freeze, label: "is content of".freeze, - range: "fcrepo4:NonRdfSourceDescription".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://fedora.info/definitions/v4/repository#NonRdfSourceDescription".freeze, + type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :lastModified, - range: "xsd:dateTime".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :lastModifiedBy, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :mixinTypes, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :numFixityChecks, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :numFixityErrors, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :numFixityRepaired, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :numberOfChildren, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :objectCount, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :objectSize, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :predecessors, - domain: "fcrepo4:Version".freeze, + domain: "http://fedora.info/definitions/v4/repository#Version".freeze, label: "predecessors".freeze, - range: "fcrepo4:Version".freeze, - type: "owl:ObjectProperty".freeze + range: "http://fedora.info/definitions/v4/repository#Version".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :primaryType, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryCustomRepName, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryIdentifierStability, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryJcrRepositoryName, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryJcrRepositoryVendor, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryJcrRepositoryVendorUrl, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryJcrRepositoryVersion, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryJcrSpecificationName, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryJcrSpecificationVersion, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryLevel1Supported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryLevel2Supported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementAutocreatedDefinitionsSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementInheritance, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementMultipleBinaryPropertiesSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementMultivaluedPropertiesSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementOrderableChildNodesSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementOverridesSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementPrimaryItemNameSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementPropertyTypes, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementResidualDefinitionsSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementSameNameSiblingsSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementUpdateInUseSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryNodeTypeManagementValueConstraintsSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionAccessControlSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionActivitiesSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionBaselinesSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionJournaledObservationSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionLifecycleSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionLockingSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionNodeAndPropertyWithSameNameSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionNodeTypeManagementSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionObservationSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionQuerySqlSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionRetentionSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionShareableNodesSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionSimpleVersioningSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionTransactionsSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionUnfiledContentSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionUpdateMixinNodeTypesSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionUpdatePrimaryNodeTypeSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionVersioningSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionWorkspaceManagementSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionXmlExportSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryOptionXmlImportSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryQueryFullTextSearchSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryQueryJoins, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryQueryStoredQueriesSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryQueryXpathDocOrder, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryQueryXpathPosIndex, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repositoryWriteSupported, - "rdf:subPropertyOf": "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + "http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :sparql, label: "has sparql service".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :uuid, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :writable, label: "writable".freeze, - range: "xsd:boolean".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze end end diff --git a/lib/rdf/vocab/foaf.rb b/lib/rdf/vocab/foaf.rb index 90ce6bf..6ce150b 100644 --- a/lib/rdf/vocab/foaf.rb +++ b/lib/rdf/vocab/foaf.rb @@ -3,919 +3,611 @@ # This file generated automatically using rdf vocabulary format from http://xmlns.com/foaf/0.1/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Friend of a Friend (FOAF) vocabulary - # # - # # The Friend of a Friend (FOAF) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language. - # class FOAF < RDF::StrictVocabulary - # # An agent (eg. person, group, software or physical artifact). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agent - # - # # A document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Document - # - # # A class of Agents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Group - # - # # An image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Image - # - # # A foaf:LabelProperty is any RDF property with texual values that serve as labels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LabelProperty - # - # # An online account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineAccount - # - # # An online chat account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineChatAccount - # - # # An online e-commerce account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineEcommerceAccount - # - # # An online gaming account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineGamingAccount - # - # # An organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # A person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # A personal profile RDF document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PersonalProfileDocument - # - # # A project (a collective endeavour of some kind). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Project - # - # # Indicates an account held by this agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :account - # - # # Indicates the name (identifier) associated with this online account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountName - # - # # Indicates a homepage of the service provide for this online account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountServiceHomepage - # - # # The age in years of some agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :age - # - # # An AIM chat ID - # # @return [RDF::Vocabulary::Term] - # attr_reader :aimChatID - # - # # A location that something is based near, for some broadly human notion of near. - # # @return [RDF::Vocabulary::Term] - # attr_reader :based_near - # - # # The birthday of this Agent, represented in mm-dd string form, eg. '12-31'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthday - # - # # A current project this person works on. - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentProject - # - # # A depiction of some thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :depiction - # - # # A thing depicted in this representation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :depicts - # - # # A checksum for the DNA of some thing. Joke. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dnaChecksum - # - # # The family name of some person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :familyName - # - # # The family name of some person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :family_name - # - # # The first name of a person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstName - # - # # The underlying or 'focal' entity associated with some SKOS-described concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :focus - # - # # An organization funding a project or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fundedBy - # - # # A textual geekcode for this person, see http://www.geekcode.com/geek.html - # # @return [RDF::Vocabulary::Term] - # attr_reader :geekcode - # - # # The gender of this Agent (typically but not necessarily 'male' or 'female'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :gender - # - # # The given name of some person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :givenName - # - # # The given name of some person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :givenname - # - # # Indicates an account held by this agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :holdsAccount - # - # # A homepage for some thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :homepage - # - # # An ICQ chat ID - # # @return [RDF::Vocabulary::Term] - # attr_reader :icqChatID - # - # # An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one's photo on a homepage). - # # @return [RDF::Vocabulary::Term] - # attr_reader :img - # - # # A page about a topic of interest to this person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interest - # - # # A document that this thing is the primary topic of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPrimaryTopicOf - # - # # A jabber ID for something. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jabberID - # - # # A person known by this person (indicating some level of reciprocated interaction between the parties). - # # @return [RDF::Vocabulary::Term] - # attr_reader :knows - # - # # The last name of a person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastName - # - # # A logo representing some thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :logo - # - # # Something that was made by this agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :made - # - # # An agent that made this thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maker - # - # # A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mbox - # - # # The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mbox_sha1sum - # - # # Indicates a member of a Group - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # Indicates the class of individuals that are a member of a Group - # # @return [RDF::Vocabulary::Term] - # attr_reader :membershipClass - # - # # An MSN chat ID - # # @return [RDF::Vocabulary::Term] - # attr_reader :msnChatID - # - # # A Myers Briggs (MBTI) personality classification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :myersBriggs - # - # # A name for some thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames). - # # @return [RDF::Vocabulary::Term] - # attr_reader :nick - # - # # An OpenID for an Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :openid - # - # # A page or document about this thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :page - # - # # A project this person has previously worked on. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pastProject - # - # # A phone, specified using fully qualified tel: URI scheme (refs: http://www.w3.org/Addressing/schemes.html#tel). - # # @return [RDF::Vocabulary::Term] - # attr_reader :phone - # - # # A .plan comment, in the tradition of finger and '.plan' files. - # # @return [RDF::Vocabulary::Term] - # attr_reader :plan - # - # # The primary topic of some page or document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :primaryTopic - # - # # A link to the publications of this person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publications - # - # # A homepage of a school attended by the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :schoolHomepage - # - # # A sha1sum hash, in hex. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sha1 - # - # # A Skype ID - # # @return [RDF::Vocabulary::Term] - # attr_reader :skypeID - # - # # A string expressing what the user is happy for the general public (normally) to know about their current activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :status - # - # # The surname of some person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :surname - # - # # A theme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :theme - # - # # A derived thumbnail image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :thumbnail - # - # # A tipjar document for this agent, describing means for payment and reward. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tipjar - # - # # Title (Mr, Mrs, Ms, Dr. etc) - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # A topic of some page or document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :topic - # - # # A thing of interest to this person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :topic_interest - # - # # A weblog of some thing (whether person, group, company etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :weblog - # - # # A work info homepage of some person; a page about their work for some organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workInfoHomepage - # - # # A workplace homepage of some person; the homepage of an organization they work for. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workplaceHomepage - # - # # A Yahoo chat ID - # # @return [RDF::Vocabulary::Term] - # attr_reader :yahooChatID - # - # end FOAF = Class.new(RDF::StrictVocabulary("http://xmlns.com/foaf/0.1/")) do # Ontology definition ontology :"http://xmlns.com/foaf/0.1/", - "dc11:description": "The Friend of a Friend (FOAF) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.".freeze, - "dc11:title": "Friend of a Friend (FOAF) vocabulary".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/elements/1.1/description": "The Friend of a Friend (FOAF) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.".freeze, + "http://purl.org/dc/elements/1.1/title": "Friend of a Friend (FOAF) vocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Agent, comment: "An agent (eg. person, group, software or physical artifact).".freeze, - equivalentClass: "dc:Agent".freeze, - isDefinedBy: "foaf:".freeze, + equivalentClass: "http://purl.org/dc/terms/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Agent".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Document, comment: "A document.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://xmlns.com/foaf/0.1/Organization".freeze, "http://xmlns.com/foaf/0.1/Project".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Document".freeze, - "owl:disjointWith": ["foaf:Organization".freeze, "foaf:Project".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Group, comment: "A class of Agents.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Group".freeze, - subClassOf: "foaf:Agent".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "stable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Image, comment: "An image.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Image".freeze, - subClassOf: "foaf:Document".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :LabelProperty, comment: "A foaf:LabelProperty is any RDF property with texual values that serve as labels.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Label Property".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "unstable".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OnlineAccount, comment: "An online account.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Online Account".freeze, - subClassOf: "owl:Thing".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OnlineChatAccount, comment: "An online chat account.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Online Chat Account".freeze, - subClassOf: "foaf:OnlineAccount".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OnlineEcommerceAccount, comment: "An online e-commerce account.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Online E-commerce Account".freeze, - subClassOf: "foaf:OnlineAccount".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OnlineGamingAccount, comment: "An online gaming account.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Online Gaming Account".freeze, - subClassOf: "foaf:OnlineAccount".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Organization, comment: "An organization.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://xmlns.com/foaf/0.1/Document".freeze, "http://xmlns.com/foaf/0.1/Person".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Organization".freeze, - "owl:disjointWith": ["foaf:Document".freeze, "foaf:Person".freeze], - subClassOf: "foaf:Agent".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "stable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Person, comment: "A person.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://xmlns.com/foaf/0.1/Organization".freeze, "http://xmlns.com/foaf/0.1/Project".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Person".freeze, - "owl:disjointWith": ["foaf:Organization".freeze, "foaf:Project".freeze], - subClassOf: ["foaf:Agent".freeze, "geo:SpatialThing".freeze, "http://www.w3.org/2000/10/swap/pim/contact#Person".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "stable".freeze + subClassOf: ["http://www.w3.org/2000/10/swap/pim/contact#Person".freeze, "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze], + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :PersonalProfileDocument, comment: "A personal profile RDF document.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "PersonalProfileDocument".freeze, - subClassOf: "foaf:Document".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Project, comment: "A project (a collective endeavour of some kind).".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://xmlns.com/foaf/0.1/Document".freeze, "http://xmlns.com/foaf/0.1/Person".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Project".freeze, - "owl:disjointWith": ["foaf:Document".freeze, "foaf:Person".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :account, comment: "Indicates an account held by this agent.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "account".freeze, - range: "foaf:OnlineAccount".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :accountName, comment: "Indicates the name (identifier) associated with this online account.".freeze, - domain: "foaf:OnlineAccount".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "account name".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :accountServiceHomepage, comment: "Indicates a homepage of the service provide for this online account.".freeze, - domain: "foaf:OnlineAccount".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "account service homepage".freeze, - range: "foaf:Document".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :age, comment: "The age in years of some agent.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "age".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :aimChatID, comment: "An AIM chat ID".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "AIM chat ID".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "foaf:nick".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/nick".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :based_near, comment: "A location that something is based near, for some broadly human notion of near.".freeze, - domain: "geo:SpatialThing".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "based near".freeze, - range: "geo:SpatialThing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :birthday, comment: "The birthday of this Agent, represented in mm-dd string form, eg. '12-31'.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "birthday".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :currentProject, comment: "A current project this person works on.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "current project".freeze, - range: "owl:Thing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :depiction, comment: "A depiction of some thing.".freeze, - domain: "owl:Thing".freeze, - inverseOf: "foaf:depicts".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/depicts".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "depiction".freeze, - range: "foaf:Image".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Image".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :depicts, comment: "A thing depicted in this representation.".freeze, - domain: "foaf:Image".freeze, - inverseOf: "foaf:depiction".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Image".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/depiction".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "depicts".freeze, - range: "owl:Thing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :dnaChecksum, comment: "A checksum for the DNA of some thing. Joke.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "DNA checksum".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "archaic".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :familyName, comment: "The family name of some person.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "familyName".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :family_name, comment: "The family name of some person.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "family_name".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "archaic".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :firstName, comment: "The first name of a person.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "firstName".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :focus, comment: "The underlying or 'focal' entity associated with some SKOS-described concept.".freeze, - domain: "skos:Concept".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "focus".freeze, - range: "owl:Thing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :fundedBy, comment: "An organization funding a project or person.".freeze, - domain: "owl:Thing".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "funded by".freeze, - range: "owl:Thing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "archaic".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :geekcode, comment: "A textual geekcode for this person, see http://www.geekcode.com/geek.html".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "geekcode".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "archaic".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :gender, comment: "The gender of this Agent (typically but not necessarily 'male' or 'female').".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "gender".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :givenName, comment: "The given name of some person.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Given name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :givenname, comment: "The given name of some person.".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Given name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "archaic".freeze + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :holdsAccount, comment: "Indicates an account held by this agent.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "account".freeze, - range: "foaf:OnlineAccount".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "archaic".freeze + range: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :homepage, comment: "A homepage for some thing.".freeze, - domain: "owl:Thing".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "homepage".freeze, - range: "foaf:Document".freeze, - subPropertyOf: ["foaf:isPrimaryTopicOf".freeze, "foaf:page".freeze], - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: ["http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, "http://xmlns.com/foaf/0.1/page".freeze], + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :icqChatID, comment: "An ICQ chat ID".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "ICQ chat ID".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "foaf:nick".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/nick".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :img, comment: "An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one's photo on a homepage).".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "image".freeze, - range: "foaf:Image".freeze, - subPropertyOf: "foaf:depiction".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Image".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/depiction".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :interest, comment: "A page about a topic of interest to this person.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "interest".freeze, - range: "foaf:Document".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isPrimaryTopicOf, comment: "A document that this thing is the primary topic of.".freeze, - domain: "owl:Thing".freeze, - inverseOf: "foaf:primaryTopic".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/primaryTopic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "is primary topic of".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:page".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/page".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :jabberID, comment: "A jabber ID for something.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "jabber ID".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :knows, comment: "A person known by this person (indicating some level of reciprocated interaction between the parties).".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "knows".freeze, - range: "foaf:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Person".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :lastName, comment: "The last name of a person.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "lastName".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :logo, comment: "A logo representing some thing.".freeze, - domain: "owl:Thing".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "logo".freeze, - range: "owl:Thing".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :made, comment: "Something that was made by this agent.".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "foaf:maker".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/maker".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "made".freeze, - range: "owl:Thing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :maker, comment: "An agent that made this thing.".freeze, - domain: "owl:Thing".freeze, - equivalentProperty: "dc:creator".freeze, - inverseOf: "foaf:made".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + equivalentProperty: "http://purl.org/dc/terms/creator".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/made".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "maker".freeze, - range: "foaf:Agent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :mbox, comment: "A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "personal mailbox".freeze, - range: "owl:Thing".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :mbox_sha1sum, comment: "The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "sha1sum of a personal mailbox URI name".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :member, comment: "Indicates a member of a Group".freeze, - domain: "foaf:Group".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Group".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "member".freeze, - range: "foaf:Agent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :membershipClass, comment: "Indicates the class of individuals that are a member of a Group".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "membershipClass".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "unstable".freeze + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :msnChatID, comment: "An MSN chat ID".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "MSN chat ID".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "foaf:nick".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/nick".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :myersBriggs, comment: "A Myers Briggs (MBTI) personality classification.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "myersBriggs".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :name, comment: "A name for some thing.".freeze, - domain: "owl:Thing".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "name".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "rdfs:label".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :nick, comment: "A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames).".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "nickname".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :openid, comment: "An OpenID for an Agent.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "openid".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :page, comment: "A page or document about this thing.".freeze, - domain: "owl:Thing".freeze, - inverseOf: "foaf:topic".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/topic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "page".freeze, - range: "foaf:Document".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :pastProject, comment: "A project this person has previously worked on.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "past project".freeze, - range: "owl:Thing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :phone, comment: "A phone, specified using fully qualified tel: URI scheme (refs: http://www.w3.org/Addressing/schemes.html#tel).".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "phone".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :plan, comment: "A .plan comment, in the tradition of finger and '.plan' files.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "plan".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :primaryTopic, comment: "The primary topic of some page or document.".freeze, - domain: "foaf:Document".freeze, - inverseOf: "foaf:isPrimaryTopicOf".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "primary topic".freeze, - range: "owl:Thing".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :publications, comment: "A link to the publications of this person.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "publications".freeze, - range: "foaf:Document".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :schoolHomepage, comment: "A homepage of a school attended by the person.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "schoolHomepage".freeze, - range: "foaf:Document".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sha1, comment: "A sha1sum hash, in hex.".freeze, - domain: "foaf:Document".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "sha1sum (hex)".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "unstable".freeze + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :skypeID, comment: "A Skype ID".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Skype ID".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "foaf:nick".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/nick".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :status, comment: "A string expressing what the user is happy for the general public (normally) to know about their current activity.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "status".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :surname, comment: "The surname of some person.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Surname".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "archaic".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :theme, comment: "A theme.".freeze, - domain: "owl:Thing".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "theme".freeze, - range: "owl:Thing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "archaic".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :thumbnail, comment: "A derived thumbnail image.".freeze, - domain: "foaf:Image".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Image".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "thumbnail".freeze, - range: "foaf:Image".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Image".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :tipjar, comment: "A tipjar document for this agent, describing means for payment and reward.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "tipjar".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:page".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/page".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :title, comment: "Title (Mr, Mrs, Ms, Dr. etc)".freeze, - isDefinedBy: "foaf:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "title".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :topic, comment: "A topic of some page or document.".freeze, - domain: "foaf:Document".freeze, - inverseOf: "foaf:page".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/page".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "topic".freeze, - range: "owl:Thing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :topic_interest, comment: "A thing of interest to this person.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "topic_interest".freeze, - range: "owl:Thing".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :weblog, comment: "A weblog of some thing (whether person, group, company etc.).".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "weblog".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:page".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/page".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :workInfoHomepage, comment: "A work info homepage of some person; a page about their work for some organization.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "work info homepage".freeze, - range: "foaf:Document".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :workplaceHomepage, comment: "A workplace homepage of some person; the homepage of an organization they work for.".freeze, - domain: "foaf:Person".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "workplace homepage".freeze, - range: "foaf:Document".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :yahooChatID, comment: "A Yahoo chat ID".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "foaf:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/foaf/0.1/".freeze, label: "Yahoo chat ID".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "foaf:nick".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/nick".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] end end diff --git a/lib/rdf/vocab/geo.rb b/lib/rdf/vocab/geo.rb index 8157a77..4dd09f5 100644 --- a/lib/rdf/vocab/geo.rb +++ b/lib/rdf/vocab/geo.rb @@ -3,94 +3,52 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2003/01/geo/wgs84_pos# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # WGS84 Geo Positioning: an RDF vocabulary - # # - # # geo - # # - # # Recent changes to this namespace: $Log: wgs84_pos.rdf,v $ Revision 1.22 2009/04/20 15:00:30 timbl Remove the time bits which have been deal with elsewhere eg in iCal. Revision 1.21 2009/04/20 12:52:47 timbl try again Revision 1.20 2009/04/20 12:42:11 timbl Add Event (edited ages ago and never checked in), and location (following discussion http://chatlogs.planetrdf.com/swig/2009-04-20#T12-36-09) Revision 1.19 2009/04/20 12:36:31 timbl Add Event (edited ages ago and never checked in), and location (following discussion http://chatlogs.planetrdf.com/swig/2009-04-20#T12-36-09) Revision 1.18 2006/02/01 22:01:04 danbri Clarified that lat and long are decimal degrees, and that alt is decimal metres about local reference ellipsoid Revision 1.17 2004/02/06 17:38:12 danbri Fixed a bad commit screwup Revision 1.15 2003/04/19 11:24:08 danbri Fixed the typo even more. Revision 1.14 2003/04/19 11:16:56 danbri fixed a typo Revision 1.13 2003/02/19 22:27:27 connolly relaxed domain constraints on lat/long/alt from Point to SpatialThing Revision 1.12 2003/01/12 01:41:41 danbri Trying local copy of XSLT doc. Revision 1.11 2003/01/12 01:20:18 danbri added a link to morten's xslt rdfs viewer. Revision 1.10 2003/01/11 18:56:49 danbri Removed datatype range from lat and long properties, since they would have required each occurance of the property to mention the datatype. Revision 1.9 2003/01/11 11:41:31 danbri Another typo; repaired rdfs:Property to rdf:Property x4 Revision 1.8 2003/01/11 11:05:02 danbri Added an rdfs:range for each lat/long/alt property, http://www.w3.org/2001/XMLSchema#float Revision 1.7 2003/01/10 20:25:16 danbri Longer rdfs:comment for Point, trying to be Earth-centric and neutral about coordinate system(s) at the same time. Feedback welcomed. Revision 1.6 2003/01/10 20:18:30 danbri Added CVS log comments into the RDF/XML as an rdfs:comment property of the vocabulary. Note that this is not common practice (but seems both harmless and potentially useful). revision 1.5 date: 2003/01/10 20:14:31; author: danbri; state: Exp; lines: +16 -5 Updated schema: Added a dc:date, added url for more info. Changed the rdfs:label of the namespace from gp to geo. Added a class Point, set as the rdfs:domain of each property. Added XML comment on the lat_long property suggesting that we might not need it (based on #rdfig commentary from implementors). revision 1.4 date: 2003/01/10 20:01:07; author: danbri; state: Exp; lines: +6 -5 Fixed typo; several rdfs:about attributes are now rdf:about. Thanks to MortenF in #rdfig for catching this error. revision 1.3 date: 2003/01/10 11:59:03; author: danbri; state: Exp; lines: +4 -3 fixed buglet in vocab, added more wgs links revision 1.2 date: 2003/01/10 11:01:11; author: danbri; state: Exp; lines: +4 -4 Removed alt from the as-a-flat-string property, and switched from space separated to comma separated. revision 1.1 date: 2003/01/10 10:53:23; author: danbri; state: Exp; basic geo vocab - # # - # # A vocabulary for representing latitude, longitude and altitude information in the WGS84 geodetic reference datum. Version $Id: wgs84_pos.rdf,v 1.22 2009/04/20 15:00:30 timbl Exp $. See http://www.w3.org/2003/01/geo/ for more details. - # class GEO < RDF::StrictVocabulary - # # Uniquely identified by lat/long/alt. i.e. spaciallyIntersects(P1, P2) :- lat(P1, LAT), long(P1, LONG), alt(P1, ALT), lat(P2, LAT), long(P2, LONG), alt(P2, ALT). sameThing(P1, P2) :- type(P1, Point), type(P2, Point), spaciallyIntersects(P1, P2). - # # - # # A point, typically described using a coordinate system relative to Earth, such as WGS84. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Point - # - # # Anything with spatial extent, i.e. size, shape, or position. e.g. people, places, bowling balls, as well as abstract areas like cubes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpatialThing - # - # # The WGS84 altitude of a SpatialThing (decimal meters above the local reference ellipsoid). - # # @return [RDF::Vocabulary::Term] - # attr_reader :alt - # - # # The WGS84 latitude of a SpatialThing (decimal degrees). - # # @return [RDF::Vocabulary::Term] - # attr_reader :lat - # - # # A comma-separated representation of a latitude, longitude coordinate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lat_long - # - # # The relation between something and the point, or other geometrical thing in space, where it is. For example, the realtionship between a radio tower and a Point with a given lat and long. Or a relationship between a park and its outline as a closed arc of points, or a road and its location as a arc (a sequence of points). Clearly in practice there will be limit to the accuracy of any such statement, but one would expect an accuracy appropriate for the size of the object and uses such as mapping . - # # @return [RDF::Vocabulary::Term] - # attr_reader :location - # - # # The WGS84 longitude of a SpatialThing (decimal degrees). - # # @return [RDF::Vocabulary::Term] - # attr_reader :long - # - # end GEO = Class.new(RDF::StrictVocabulary("http://www.w3.org/2003/01/geo/wgs84_pos#")) do # Ontology definition ontology :"http://www.w3.org/2003/01/geo/wgs84_pos#", comment: "\nRecent changes to this namespace:\n$Log: wgs84_pos.rdf,v $\nRevision 1.22 2009/04/20 15:00:30 timbl\nRemove the time bits which have been deal with elsewhere eg in iCal.\n\nRevision 1.21 2009/04/20 12:52:47 timbl\ntry again\n\nRevision 1.20 2009/04/20 12:42:11 timbl\nAdd Event (edited ages ago and never checked in), and location (following discussion http://chatlogs.planetrdf.com/swig/2009-04-20#T12-36-09)\n\nRevision 1.19 2009/04/20 12:36:31 timbl\nAdd Event (edited ages ago and never checked in), and location (following discussion http://chatlogs.planetrdf.com/swig/2009-04-20#T12-36-09)\n\nRevision 1.18 2006/02/01 22:01:04 danbri\nClarified that lat and long are decimal degrees, and that alt is decimal metres about local reference ellipsoid\n\nRevision 1.17 2004/02/06 17:38:12 danbri\nFixed a bad commit screwup\n\nRevision 1.15 2003/04/19 11:24:08 danbri\nFixed the typo even more.\n\nRevision 1.14 2003/04/19 11:16:56 danbri\nfixed a typo\n\nRevision 1.13 2003/02/19 22:27:27 connolly\nrelaxed domain constraints on lat/long/alt from Point to SpatialThing\n\nRevision 1.12 2003/01/12 01:41:41 danbri\nTrying local copy of XSLT doc.\n\nRevision 1.11 2003/01/12 01:20:18 danbri\nadded a link to morten's xslt rdfs viewer.\n\nRevision 1.10 2003/01/11 18:56:49 danbri\nRemoved datatype range from lat and long properties, since they would\nhave required each occurance of the property to mention the datatype.\n\nRevision 1.9 2003/01/11 11:41:31 danbri\nAnother typo; repaired rdfs:Property to rdf:Property x4\n\nRevision 1.8 2003/01/11 11:05:02 danbri\nAdded an rdfs:range for each lat/long/alt property,\nhttp://www.w3.org/2001/XMLSchema#float\n\nRevision 1.7 2003/01/10 20:25:16 danbri\nLonger rdfs:comment for Point, trying to be Earth-centric and neutral about\ncoordinate system(s) at the same time. Feedback welcomed.\n\nRevision 1.6 2003/01/10 20:18:30 danbri\nAdded CVS log comments into the RDF/XML as an rdfs:comment property of the\nvocabulary. Note that this is not common practice (but seems both harmless\nand potentially useful).\n\n\nrevision 1.5\ndate: 2003/01/10 20:14:31; author: danbri; state: Exp; lines: +16 -5\nUpdated schema:\nAdded a dc:date, added url for more info. Changed the rdfs:label of the\nnamespace from gp to geo. Added a class Point, set as the rdfs:domain of\neach property. Added XML comment on the lat_long property suggesting that\nwe might not need it (based on #rdfig commentary from implementors).\n\nrevision 1.4\ndate: 2003/01/10 20:01:07; author: danbri; state: Exp; lines: +6 -5\nFixed typo; several rdfs:about attributes are now rdf:about. Thanks to MortenF in\n#rdfig for catching this error.\n\nrevision 1.3\ndate: 2003/01/10 11:59:03; author: danbri; state: Exp; lines: +4 -3\nfixed buglet in vocab, added more wgs links\n\nrevision 1.2\ndate: 2003/01/10 11:01:11; author: danbri; state: Exp; lines: +4 -4\nRemoved alt from the as-a-flat-string property, and switched from\nspace separated to comma separated.\n\nrevision 1.1\ndate: 2003/01/10 10:53:23; author: danbri; state: Exp;\nbasic geo vocab\n\n".freeze, - "dc11:date": "$Date: 2009/04/20 15:00:30 $".freeze, - "dc11:description": "A vocabulary for representing latitude, longitude and \n altitude information in the WGS84 geodetic reference datum. \n Version $Id: wgs84_pos.rdf,v 1.22 2009/04/20 15:00:30 timbl Exp $. See http://www.w3.org/2003/01/geo/ for more details.".freeze, - "dc11:title": "WGS84 Geo Positioning: an RDF vocabulary".freeze, + "http://purl.org/dc/elements/1.1/date": "$Date: 2009/04/20 15:00:30 $".freeze, + "http://purl.org/dc/elements/1.1/description": "A vocabulary for representing latitude, longitude and \n altitude information in the WGS84 geodetic reference datum. \n Version $Id: wgs84_pos.rdf,v 1.22 2009/04/20 15:00:30 timbl Exp $. See http://www.w3.org/2003/01/geo/ for more details.".freeze, + "http://purl.org/dc/elements/1.1/title": "WGS84 Geo Positioning: an RDF vocabulary".freeze, label: "geo".freeze # Class definitions term :Point, comment: [" \nUniquely identified by lat/long/alt. i.e.\n\nspaciallyIntersects(P1, P2) :- lat(P1, LAT), long(P1, LONG), alt(P1, ALT),\n lat(P2, LAT), long(P2, LONG), alt(P2, ALT).\n\nsameThing(P1, P2) :- type(P1, Point), type(P2, Point), spaciallyIntersects(P1, P2).\n ".freeze, "A point, typically described using a coordinate system relative to Earth, such as WGS84.\n ".freeze], label: "point".freeze, - subClassOf: "geo:SpatialThing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SpatialThing, comment: "Anything with spatial extent, i.e. size, shape, or position.\n e.g. people, places, bowling balls, as well as abstract areas like cubes.\n".freeze, label: "SpatialThing".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :alt, comment: "The WGS84 altitude of a SpatialThing (decimal meters \nabove the local reference ellipsoid).".freeze, - domain: "geo:SpatialThing".freeze, + domain: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, label: "altitude".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lat, comment: "The WGS84 latitude of a SpatialThing (decimal degrees).".freeze, - domain: "geo:SpatialThing".freeze, + domain: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, label: "latitude".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lat_long, comment: "A comma-separated representation of a latitude, longitude coordinate.".freeze, label: "lat/long".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :location, comment: "The relation between something and the point, \n or other geometrical thing in space, where it is. For example, the realtionship between\n a radio tower and a Point with a given lat and long.\n Or a relationship between a park and its outline as a closed arc of points, or a road and\n its location as a arc (a sequence of points).\n Clearly in practice there will be limit to the accuracy of any such statement, but one would expect\n an accuracy appropriate for the size of the object and uses such as mapping .\n ".freeze, label: "location".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "foaf:based_near".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/based_near".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :long, comment: "The WGS84 longitude of a SpatialThing (decimal degrees).".freeze, - domain: "geo:SpatialThing".freeze, + domain: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, label: "longitude".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/geojson.rb b/lib/rdf/vocab/geojson.rb index f901956..1f510e1 100644 --- a/lib/rdf/vocab/geojson.rb +++ b/lib/rdf/vocab/geojson.rb @@ -3,75 +3,6 @@ # This file generated automatically using rdf vocabulary format from https://purl.org/geojson/vocab# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class GEOJSON < RDF::StrictVocabulary - # # See RFC 7946 Section 3.2. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Feature - # - # # See RFC 7946 Section 3.3. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FeatureCollection - # - # # See RFC 7946 Section 3.1.8. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeometryCollection - # - # # See RFC 7946 Section 3.1.4. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LineString - # - # # See RFC 7946 Section 3.1.5. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MultiLineString - # - # # See RFC 7946 Section 3.1.3. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MultiPoint - # - # # See RFC 7946 Section 3.1.7. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MultiPolygon - # - # # See RFC 7946 Section 3.1.2. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Point - # - # # See RFC 7946 Section 3.1.6. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Polygon - # - # # See RFC 7946 Section 5. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bbox - # - # # RFC 7946 Section 3.1.1. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coordinates - # - # # RFC 7946 Section 3.3. - # # @return [RDF::Vocabulary::Term] - # attr_reader :features - # - # # RFC 7946 Section 3.2. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geometry - # - # # RFC 7946 Section 3.2. - # # @return [RDF::Vocabulary::Term] - # attr_reader :id - # - # # RFC 7946 Section 3.2. - # # @return [RDF::Vocabulary::Term] - # attr_reader :properties - # - # # RFC 7946 Section 3. - # # @return [RDF::Vocabulary::Term] - # attr_reader :type - # - # end GEOJSON = Class.new(RDF::StrictVocabulary("https://purl.org/geojson/vocab#")) do # Class definitions @@ -79,83 +10,83 @@ module RDF::Vocab comment: "See RFC 7946 Section 3.2.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "Feature".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FeatureCollection, comment: "See RFC 7946 Section 3.3.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "FeatureCollection".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeometryCollection, comment: "See RFC 7946 Section 3.1.8.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "GeometryCollection".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LineString, comment: "See RFC 7946 Section 3.1.4.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "LineString".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MultiLineString, comment: "See RFC 7946 Section 3.1.5.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "MultiLineString".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MultiPoint, comment: "See RFC 7946 Section 3.1.3.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "MultiPoint".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MultiPolygon, comment: "See RFC 7946 Section 3.1.7.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "MultiPolygon".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Point, comment: "See RFC 7946 Section 3.1.2.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "Point".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Polygon, comment: "See RFC 7946 Section 3.1.6.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "Polygon".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :bbox, comment: "See RFC 7946 Section 5.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "bbox".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coordinates, comment: "RFC 7946 Section 3.1.1.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "coordinates".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :features, comment: "RFC 7946 Section 3.3.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "features".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geometry, comment: "RFC 7946 Section 3.2.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "geometry".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :id, comment: "RFC 7946 Section 3.2.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "id".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :properties, comment: "RFC 7946 Section 3.2.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "properties".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :type, comment: "RFC 7946 Section 3.".freeze, isDefinedBy: "http://purl.org/geojson/vocab#".freeze, label: "type".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/geonames.rb b/lib/rdf/vocab/geonames.rb index 71ac2b6..c1756a0 100644 --- a/lib/rdf/vocab/geonames.rb +++ b/lib/rdf/vocab/geonames.rb @@ -3,4593 +3,4424 @@ # This file generated automatically using rdf vocabulary format from http://www.geonames.org/ontology# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The Geonames ontology - # # - # # Modifications from version 3.01 : Added : gn:GeonamesFeature, subclass of gn:Feature. Added : explicit property gn:geonamesID, mandatory and unique for each gn:GeonamesFeature instance. Deleted : owl:FunctionalProperty declarations for properties attached to gn:Feature, replaced by local cardinality restrictions on gn:GeonamesFeature The gn:Feature class and attached properties can therefore be used in the open world for features not necessarily identified in the Geonames data base, or with partial descriptions. Modified : Equivalent classes and superclasses of geonames:Feature in other vocabularies. Added : new feature codes for historical features. Improved metadata. - # # - # # The Geonames ontologies provides elements of description for geographical features, in particular those defined in the geonames.org data base - # # @version Version 3.1 - 2012-10-29 - # class GEONAMES < RDF::StrictVocabulary - # # country, state, region ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :A - # - # # A class of features. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Class - # - # # A feature code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Code - # - # # A geographical feature - # # @return [RDF::Vocabulary::Term] - # attr_reader :Feature - # - # # A feature described in geonames database, uniquely defined by its geonames identifier - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeonamesFeature - # - # # stream, lake, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :H - # - # # parks,area, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :L - # - # # A Web page displaying a map - # # @return [RDF::Vocabulary::Term] - # attr_reader :Map - # - # # city, village,... - # # @return [RDF::Vocabulary::Term] - # attr_reader :P - # - # # road, railroad, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :R - # - # # A Document containing RDF description of one or several features. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RDFData - # - # # spot, building, farm, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :S - # - # # mountain, hill, rock, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :T - # - # # undersea - # # @return [RDF::Vocabulary::Term] - # attr_reader :U - # - # # forest, heath, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :V - # - # # A Wikipedia article - # # @return [RDF::Vocabulary::Term] - # attr_reader :WikipediaArticle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternateName - # - # # Links to an RDF document containing the descriptions of children features - # # @return [RDF::Vocabulary::Term] - # attr_reader :childrenFeatures - # - # # @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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryCode - # - # # The main category of the feature, as defined in geonames taxonomy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :featureClass - # - # # Type of the feature, as defined in geonames taxonomy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :featureCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geonamesID - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :historicalName - # - # # Indicates that the subject resource is located in the object feature - # # @return [RDF::Vocabulary::Term] - # attr_reader :locatedIn - # - # # A geonames map centered on the feature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationMap - # - # # The main international name of a feature. The value has no xml:lang tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # A feature close to the reference feature - # # @return [RDF::Vocabulary::Term] - # attr_reader :nearby - # - # # Links to an RDF document containing the descriptions of nearby features - # # @return [RDF::Vocabulary::Term] - # attr_reader :nearbyFeatures - # - # # A feature sharing a common boarder with the reference feature - # # @return [RDF::Vocabulary::Term] - # attr_reader :neighbour - # - # # Links to an RDF document containing the descriptions of neighbouring features. Applies when the feature has definite boarders. - # # @return [RDF::Vocabulary::Term] - # attr_reader :neighbouringFeatures - # - # # A name in an official local language - # # @return [RDF::Vocabulary::Term] - # attr_reader :officialName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentADM1 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentADM2 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentADM3 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentADM4 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentCountry - # - # # A feature parent of the current one, in either administrative or physical subdivision. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentFeature - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :population - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :postalCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :shortName - # - # # A Wikipedia article of which subject is the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikipediaArticle - # - # end GEONAMES = Class.new(RDF::StrictVocabulary("http://www.geonames.org/ontology#")) do # Ontology definition ontology :"http://www.geonames.org/ontology#", - "cc:license": "http://creativecommons.org/licenses/by/3.0/".freeze, comment: "Modifications from version 3.01 :\n Added : gn:GeonamesFeature, subclass of gn:Feature.\n Added : explicit property gn:geonamesID, mandatory and unique for each gn:GeonamesFeature instance.\n Deleted : owl:FunctionalProperty declarations for properties attached to gn:Feature, replaced by local cardinality restrictions on gn:GeonamesFeature\n The gn:Feature class and attached properties can therefore be used in the open world for features not necessarily identified in the Geonames data base, or with partial descriptions.\n Modified : Equivalent classes and superclasses of geonames:Feature in other vocabularies.\n Added : new feature codes for historical features.\n Improved metadata.\n ".freeze, - "dc:contributor": ["Erik Bolstad (norwegian and swedish translations)".freeze, "Roman Rachkov (bulgarian translation)".freeze, "Valery Hronusov (russian translation)".freeze], - "dc:creator": "http://data.semanticweb.org/person/bernard-vatant".freeze, - "dc:description": "The Geonames ontologies provides elements of description for geographical features, in particular those defined in the geonames.org data base".freeze, - "dc:issued": "2006-10-14".freeze, - "dc:modified": "2012-10-29".freeze, - "dc:publisher": "http://dbpedia.org/resource/GeoNames".freeze, - "dc:title": "The Geonames ontology".freeze, - "foaf:homepage": "http://www.geonames.org/ontology/documentation.html".freeze, + "http://creativecommons.org/ns#license": "http://creativecommons.org/licenses/by/3.0/".freeze, + "http://purl.org/dc/terms/contributor": ["Erik Bolstad (norwegian and swedish translations)".freeze, "Roman Rachkov (bulgarian translation)".freeze, "Valery Hronusov (russian translation)".freeze], + "http://purl.org/dc/terms/creator": "http://data.semanticweb.org/person/bernard-vatant".freeze, + "http://purl.org/dc/terms/description": "The Geonames ontologies provides elements of description for geographical features, in particular those defined in the geonames.org data base".freeze, + "http://purl.org/dc/terms/issued": "2006-10-14".freeze, + "http://purl.org/dc/terms/modified": "2012-10-29".freeze, + "http://purl.org/dc/terms/publisher": "http://dbpedia.org/resource/GeoNames".freeze, + "http://purl.org/dc/terms/title": "The Geonames ontology".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "gn".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://www.geonames.org/ontology#".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://www.geonames.org/ontology/ontology_v3.0.1.rdf".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "Version 3.1 - 2012-10-29".freeze, "http://www.w3.org/ns/adms#relatedDocumentation": "http://www.geonames.org/ontology/documentation.html".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://www.geonames.org/ontology/documentation.html".freeze, isDefinedBy: "http://www.geonames.org/ontology/ontology_v3.1.rdf".freeze, - "owl:priorVersion": "http://www.geonames.org/ontology/ontology_v3.0.1.rdf".freeze, - "owl:versionInfo": "Version 3.1 - 2012-10-29".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :A, comment: "country, state, region ...".freeze, - type: "geonames:Class".freeze + type: "http://www.geonames.org/ontology#Class".freeze term :Class, comment: "A class of features.".freeze, label: "Class".freeze, - subClassOf: "skos:ConceptScheme".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Code, comment: "A feature code.".freeze, label: "Code".freeze, - subClassOf: "skos:Concept".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Feature, comment: "A geographical feature".freeze, equivalentClass: ["http://geovocab.org/spatial#Feature".freeze, "http://www.mindswap.org/2003/owl/geo/geoFeatures20040307.owl#GeographicFeature".freeze], + "http://www.w3.org/2004/02/skos/core#historyNote": "Modified in version 3.1 : The cardinality constraints on feature code, feature class are relaxed on this class, and put on the specific subclass Geonames Feature. This class and attached properties can therefore be used for features not necessarily identified in the Geoanmes data base".freeze, label: "Feature".freeze, - "skos:historyNote": "Modified in version 3.1 : The cardinality constraints on feature code, feature class are relaxed on this class, and put on the specific subclass Geonames Feature. This class and attached properties can therefore be used for features not necessarily identified in the Geoanmes data base".freeze, - subClassOf: ["geo:SpatialThing".freeze, "schema:Place".freeze], - type: "owl:Class".freeze + subClassOf: ["http://schema.org/Place".freeze, "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GeonamesFeature, comment: "A feature described in geonames database, uniquely defined by its geonames identifier".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in version 3.1".freeze, label: "Geonames Feature".freeze, - "skos:historyNote": "Added in version 3.1".freeze, - subClassOf: ["geonames:Feature".freeze, term( + subClassOf: ["http://www.geonames.org/ontology#Feature".freeze, term( cardinality: "1".freeze, - onProperty: "geo:lat".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#featureClass".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( cardinality: "1".freeze, - onProperty: "geo:long".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#geonamesID".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( cardinality: "1".freeze, - onProperty: "geonames:featureClass".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#name".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( cardinality: "1".freeze, - onProperty: "geonames:geonamesID".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2003/01/geo/wgs84_pos#lat".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( cardinality: "1".freeze, - onProperty: "geonames:name".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2003/01/geo/wgs84_pos#long".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "geonames:countryCode".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#countryCode".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "geonames:featureCode".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#featureCode".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "geonames:parentADM1".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#parentADM1".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "geonames:parentADM2".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#parentADM2".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "geonames:parentADM3".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#parentADM3".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "geonames:parentADM4".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#parentADM4".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "geonames:population".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.geonames.org/ontology#population".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :H, comment: "stream, lake, ...".freeze, - type: "geonames:Class".freeze + type: "http://www.geonames.org/ontology#Class".freeze term :L, comment: "parks,area, ...".freeze, - type: "geonames:Class".freeze + type: "http://www.geonames.org/ontology#Class".freeze term :Map, comment: "A Web page displaying a map".freeze, label: "Map".freeze, - subClassOf: "foaf:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :P, comment: "city, village,...".freeze, - type: "geonames:Class".freeze + type: "http://www.geonames.org/ontology#Class".freeze term :R, comment: "road, railroad, ...".freeze, - type: "geonames:Class".freeze + type: "http://www.geonames.org/ontology#Class".freeze term :RDFData, comment: "A Document containing RDF description of one or several features.".freeze, label: "RDF Data".freeze, - subClassOf: "foaf:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :S, comment: "spot, building, farm, ...".freeze, - type: "geonames:Class".freeze + type: "http://www.geonames.org/ontology#Class".freeze term :T, comment: "mountain, hill, rock, ...".freeze, - type: "geonames:Class".freeze + type: "http://www.geonames.org/ontology#Class".freeze term :U, comment: "undersea".freeze, - type: "geonames:Class".freeze + type: "http://www.geonames.org/ontology#Class".freeze term :V, comment: "forest, heath, ...".freeze, - type: "geonames:Class".freeze + type: "http://www.geonames.org/ontology#Class".freeze term :WikipediaArticle, comment: "A Wikipedia article".freeze, label: "Wikipedia Article".freeze, - subClassOf: "foaf:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :alternateName, - domain: "geonames:Feature".freeze, - subPropertyOf: "skos:altLabel".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.geonames.org/ontology#Feature".freeze, + subPropertyOf: "http://www.w3.org/2004/02/skos/core#altLabel".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :childrenFeatures, comment: "Links to an RDF document containing the descriptions of children features".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "children features".freeze, - range: "geonames:RDFData".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.geonames.org/ontology#RDFData".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :colloquialName, label: "colloquial name".freeze, - subPropertyOf: "geonames:alternateName".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.geonames.org/ontology#alternateName".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :countryCode, comment: ["A two letters country code in the ISO 3166 list".freeze, "The countryCode value for a Geoname Feature is equal to the countryCode value of the parentCountry value.".freeze], - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "ISO country code".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :featureClass, comment: "The main category of the feature, as defined in geonames taxonomy.".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.geonames.org/ontology#featureCode".freeze, "http://www.w3.org/2004/02/skos/core#inScheme".freeze), label: "feature class".freeze, - "owl:propertyChainAxiom": list("geonames:featureCode".freeze, "skos:inScheme".freeze), - range: "geonames:Class".freeze, - subPropertyOf: "dc:type".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.geonames.org/ontology#Class".freeze, + subPropertyOf: "http://purl.org/dc/terms/type".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :featureCode, comment: "Type of the feature, as defined in geonames taxonomy.".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "feature code".freeze, - range: "geonames:Code".freeze, - subPropertyOf: "dc:type".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.geonames.org/ontology#Code".freeze, + subPropertyOf: "http://purl.org/dc/terms/type".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :geonamesID, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in version 3.1".freeze, label: "geonames identifier".freeze, - "skos:historyNote": "Added in version 3.1".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :historicalName, label: "historical name".freeze, - subPropertyOf: "geonames:alternateName".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.geonames.org/ontology#alternateName".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locatedIn, comment: "Indicates that the subject resource is located in the object feature".freeze, label: "located in".freeze, - range: "geonames:Feature".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.geonames.org/ontology#Feature".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :locationMap, comment: "A geonames map centered on the feature.".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "map".freeze, - range: "geonames:Map".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.geonames.org/ontology#Map".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :name, comment: "The main international name of a feature. The value has no xml:lang tag.".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "name".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :nearby, comment: "A feature close to the reference feature".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "nearby".freeze, - range: "geonames:Feature".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.geonames.org/ontology#Feature".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :nearbyFeatures, comment: "Links to an RDF document containing the descriptions of nearby features".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "nearby features".freeze, - range: "geonames:RDFData".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.geonames.org/ontology#RDFData".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :neighbour, comment: "A feature sharing a common boarder with the reference feature".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "neighbour".freeze, - range: "geonames:Feature".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://www.geonames.org/ontology#Feature".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :neighbouringFeatures, comment: "Links to an RDF document containing the descriptions of neighbouring features. Applies when the feature has definite boarders.".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "neighbouring features".freeze, - range: "geonames:RDFData".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.geonames.org/ontology#RDFData".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :officialName, comment: "A name in an official local language".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "official name".freeze, - subPropertyOf: "skos:prefLabel".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2004/02/skos/core#prefLabel".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :parentADM1, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "level 1 administrative parent".freeze, range: term( - onProperty: "geonames:featureCode".freeze, - "owl:hasValue": "geonames:A.ADM1".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://www.geonames.org/ontology#A.ADM1".freeze, + onProperty: "http://www.geonames.org/ontology#featureCode".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - subPropertyOf: "geonames:parentFeature".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.geonames.org/ontology#parentFeature".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :parentADM2, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "level 2 administrative parent".freeze, range: term( - onProperty: "geonames:featureCode".freeze, - "owl:hasValue": "geonames:A.ADM2".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://www.geonames.org/ontology#A.ADM2".freeze, + onProperty: "http://www.geonames.org/ontology#featureCode".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - subPropertyOf: "geonames:parentFeature".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.geonames.org/ontology#parentFeature".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :parentADM3, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "level 3 administrative parent".freeze, range: term( - onProperty: "geonames:featureCode".freeze, - "owl:hasValue": "geonames:A.ADM3".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://www.geonames.org/ontology#A.ADM3".freeze, + onProperty: "http://www.geonames.org/ontology#featureCode".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - subPropertyOf: "geonames:parentFeature".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.geonames.org/ontology#parentFeature".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :parentADM4, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "level 4 administrative parent".freeze, range: term( - onProperty: "geonames:featureCode".freeze, - "owl:hasValue": "geonames:A.ADM4".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://www.geonames.org/ontology#A.ADM4".freeze, + onProperty: "http://www.geonames.org/ontology#featureCode".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - subPropertyOf: "geonames:parentFeature".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.geonames.org/ontology#parentFeature".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :parentCountry, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "parent country".freeze, range: term( - onProperty: "geonames:featureCode".freeze, - "owl:hasValue": "geonames:A.PCLI".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://www.geonames.org/ontology#A.PCLI".freeze, + onProperty: "http://www.geonames.org/ontology#featureCode".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - subPropertyOf: "geonames:parentFeature".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.geonames.org/ontology#parentFeature".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :parentFeature, comment: "A feature parent of the current one, in either administrative or physical subdivision.".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "parent feature".freeze, - range: "geonames:Feature".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://www.geonames.org/ontology#Feature".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :population, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "population".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :postalCode, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "postal code".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :shortName, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "short name".freeze, - subPropertyOf: "geonames:alternateName".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.geonames.org/ontology#alternateName".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :wikipediaArticle, comment: "A Wikipedia article of which subject is the resource.".freeze, - domain: "geonames:Feature".freeze, + domain: "http://www.geonames.org/ontology#Feature".freeze, label: "wikipedia article".freeze, - range: "geonames:WikipediaArticle".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.geonames.org/ontology#WikipediaArticle".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze # Extra definitions term :"A.ADM1", definition: "a primary administrative division of a country, such as a state in the United States".freeze, - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADM1".freeze, prefLabel: "first-order administrative division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADM1H", - inScheme: "geonames:A".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADM1H".freeze, prefLabel: "historical first-order administrative division".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADM2", definition: "a subdivision of a first-order administrative division".freeze, - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADM2".freeze, prefLabel: "second-order administrative division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADM2H", - inScheme: "geonames:A".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADM2H".freeze, prefLabel: "historical second-order administrative division".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADM3", definition: "a subdivision of a second-order administrative division".freeze, - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADM3".freeze, prefLabel: "third-order administrative division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADM3H", - inScheme: "geonames:A".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADM3H".freeze, prefLabel: "historical third-order administrative division".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADM4", definition: "a subdivision of a third-order administrative division".freeze, - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADM4".freeze, prefLabel: "fourth-order administrative division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADM4H", - inScheme: "geonames:A".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADM4H".freeze, prefLabel: "historical fourth-order administrative division".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADM5", definition: "a subdivision of a fourth-order administrative division".freeze, notation: "A.ADM5".freeze, prefLabel: "fifth-order administrative division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADMD", definition: "an administrative division of a country, undifferentiated as to administrative level".freeze, - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADMD".freeze, prefLabel: "administrative division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ADMH", - inScheme: "geonames:A".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ADMH".freeze, prefLabel: "historical administrative division".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.LTER", definition: "a tract of land leased to another country, usually for military installations".freeze, - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.LTER".freeze, prefLabel: "leased area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PCL", - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.PCL".freeze, prefLabel: "political entity".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PCLD", - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.PCLD".freeze, prefLabel: "dependent political entity".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PCLF", - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.PCLF".freeze, prefLabel: "freely associated state".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PCLH", - inScheme: "geonames:A".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.PCLH".freeze, prefLabel: "historical political entity".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PCLI", - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.PCLI".freeze, prefLabel: "independent political entity".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PCLIX", - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.PCLIX".freeze, prefLabel: "section of independent political entity".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PCLS", - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.PCLS".freeze, prefLabel: "semi-independent political entity".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PPCLH", - inScheme: "geonames:P".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "A.PPCLH".freeze, prefLabel: "historical capital of a political entity".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PPLH", - inScheme: "geonames:P".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "A.PPLH".freeze, prefLabel: "historical populated place".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.PRSH", definition: "an ecclesiastical district".freeze, - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.PRSH".freeze, prefLabel: "parish".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.TERR", - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.TERR".freeze, prefLabel: "territory".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ZN", - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ZN".freeze, prefLabel: "zone".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"A.ZNB", definition: "a zone recognized as a buffer between two nations in which military presence is minimal or absent".freeze, - inScheme: "geonames:A".freeze, + inScheme: "http://www.geonames.org/ontology#A".freeze, notation: "A.ZNB".freeze, prefLabel: "buffer zone".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.AIRS", definition: "a place on a waterbody where floatplanes land and take off".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.AIRS".freeze, prefLabel: "seaplane landing area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.ANCH", definition: "an area where vessels may anchor".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.ANCH".freeze, prefLabel: "anchorage".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.BAY", definition: "a coastal indentation between two capes or headlands, larger than a cove but smaller than a gulf".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.BAY".freeze, prefLabel: "bay".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.BAYS", definition: "coastal indentations between two capes or headlands, larger than a cove but smaller than a gulf".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.BAYS".freeze, prefLabel: "bays".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.BGHT", definition: "an open body of water forming a slight recession in a coastline".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.BGHT".freeze, prefLabel: "bight(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.BNK", definition: "an elevation, typically located on a shelf, over which the depth of water is relatively shallow but sufficient for most surface navigation".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.BNK".freeze, prefLabel: "bank(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.BNKR", definition: "a sloping margin of a stream channel which normally confines the stream to its channel on land".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.BNKR".freeze, prefLabel: "stream bank".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.BNKX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.BNKX".freeze, prefLabel: "section of bank".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.BOG", definition: "a wetland characterized by peat forming sphagnum moss, sedge, and other acid-water plants".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.BOG".freeze, prefLabel: "bog(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CAPG", definition: "a dome-shaped mass of glacial ice covering an area of mountain summits or other high lands; smaller than an ice sheet".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CAPG".freeze, prefLabel: "icecap".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CHN", definition: "the deepest part of a stream, bay, lagoon, or strait, through which the main current flows".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CHN".freeze, prefLabel: "channel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CHNL", definition: "that part of a lake having water deep enough for navigation between islands, shoals, etc.".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CHNL".freeze, prefLabel: "lake channel(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CHNM", definition: "that part of a body of water deep enough for navigation through an area otherwise not suitable".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CHNM".freeze, prefLabel: "marine channel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CHNN", definition: "a buoyed channel of sufficient depth for the safe navigation of vessels".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CHNN".freeze, prefLabel: "navigation channel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNFL", definition: "a place where two or more streams or intermittent streams flow together".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNFL".freeze, prefLabel: "confluence".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNL", definition: "an artificial watercourse".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNL".freeze, prefLabel: "canal".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNLA", definition: "a conduit used to carry water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNLA".freeze, prefLabel: "aqueduct".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNLB", definition: "a conspicuously curved or bent section of a canal".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNLB".freeze, prefLabel: "canal bend".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNLD", definition: "an artificial waterway carrying water away from a wetland or from drainage ditches".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNLD".freeze, prefLabel: "drainage canal".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNLI", definition: "a canal which serves as a main conduit for irrigation water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNLI".freeze, prefLabel: "irrigation canal".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNLN", definition: "a watercourse constructed for navigation of vessels".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNLN".freeze, prefLabel: "navigation canal(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNLQ", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNLQ".freeze, prefLabel: "abandoned canal".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNLSB", definition: "a gently inclined underground tunnel bringing water for irrigation from aquifers".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNLSB".freeze, prefLabel: "underground irrigation canal(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CNLX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CNLX".freeze, prefLabel: "section of canal".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.COVE", definition: "a small coastal indentation, smaller than a bay".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.COVE".freeze, prefLabel: "cove(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CRKT", definition: "a meandering channel in a coastal wetland subject to bi-directional tidal currents".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CRKT".freeze, prefLabel: "tidal creek(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CRNT", definition: "a horizontal flow of water in a given direction with uniform velocity".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CRNT".freeze, prefLabel: "current".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.CUTF", definition: "a channel formed as a result of a stream cutting through a meander neck".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.CUTF".freeze, prefLabel: "cutoff".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.DCK", definition: "a waterway between two piers, or cut into the land for the berthing of ships".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.DCK".freeze, prefLabel: "dock(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.DCKB", definition: "a part of a harbor where ships dock".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.DCKB".freeze, prefLabel: "docking basin".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.DOMG", definition: "a comparatively elevated area on an icecap".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.DOMG".freeze, prefLabel: "icecap dome".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.DPRG", definition: "a comparatively depressed area on an icecap".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.DPRG".freeze, prefLabel: "icecap depression".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.DTCH", definition: "a small artificial watercourse dug for draining or irrigating the land".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.DTCH".freeze, prefLabel: "ditch".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.DTCHD", definition: "a ditch which serves to drain the land".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.DTCHD".freeze, prefLabel: "drainage ditch".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.DTCHI", definition: "a ditch which serves to distribute irrigation water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.DTCHI".freeze, prefLabel: "irrigation ditch".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.DTCHM", definition: "an area where a drainage ditch enters a lagoon, lake or bay".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.DTCHM".freeze, prefLabel: "ditch mouth(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.ESTY", definition: "a funnel-shaped stream mouth or embayment where fresh water mixes with sea water under tidal influences".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.ESTY".freeze, prefLabel: "estuary".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.FISH", definition: "a fishing ground, bank or area where fishermen go to catch fish".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.FISH".freeze, prefLabel: "fishing area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.FJD", definition: "a long, narrow, steep-walled, deep-water arm of the sea at high latitudes, usually along mountainous coasts".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.FJD".freeze, prefLabel: "fjord".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.FJDS", definition: "long, narrow, steep-walled, deep-water arms of the sea at high latitudes, usually along mountainous coasts".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.FJDS".freeze, prefLabel: "fjords".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.FLLS", definition: "a perpendicular or very steep descent of the water of a stream".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.FLLS".freeze, prefLabel: "waterfall(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.FLLSX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.FLLSX".freeze, prefLabel: "section of waterfall(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.FLTM", definition: "a relatively level area of mud either between high and low tide lines, or subject to flooding".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.FLTM".freeze, prefLabel: "mud flat(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.FLTT", definition: "a large flat area of mud or sand attached to the shore and alternately covered and uncovered by the tide".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.FLTT".freeze, prefLabel: "tidal flat(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.GLCR", definition: "a mass of ice, usually at high latitudes or high elevations, with sufficient thickness to flow away from the source area in lobes, tongues, or masses".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.GLCR".freeze, prefLabel: "glacier(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.GULF", definition: "a large recess in the coastline, larger than a bay".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.GULF".freeze, prefLabel: "gulf".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.GYSR", definition: "a type of hot spring with intermittent eruptions of jets of hot water and steam".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.GYSR".freeze, prefLabel: "geyser".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.HBR", definition: "a haven or space of deep water so sheltered by the adjacent land as to afford a safe anchorage for ships".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.HBR".freeze, prefLabel: "harbor(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.HBRX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.HBRX".freeze, prefLabel: "section of harbor".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.INLT", definition: "a narrow waterway extending into the land, or connecting a bay or lagoon with a larger body of water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.INLT".freeze, prefLabel: "inlet".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.INLTQ", definition: "an inlet which has been filled in, or blocked by deposits".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.INLTQ".freeze, prefLabel: "former inlet".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LBED", definition: "a dried up or drained area of a former lake".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LBED".freeze, prefLabel: "lake bed(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LGN", definition: "a shallow coastal waterbody, completely or partly separated from a larger body of water by a barrier island, coral reef or other depositional feature".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LGN".freeze, prefLabel: "lagoon".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LGNS", definition: "shallow coastal waterbodies, completely or partly separated from a larger body of water by a barrier island, coral reef or other depositional feature".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LGNS".freeze, prefLabel: "lagoons".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LGNX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LGNX".freeze, prefLabel: "section of lagoon".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LK", definition: "a large inland body of standing water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LK".freeze, prefLabel: "lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKC", definition: "a lake in a crater or caldera".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKC".freeze, prefLabel: "crater lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKI".freeze, prefLabel: "intermittent lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKN", definition: "an inland body of salt water with no outlet".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKN".freeze, prefLabel: "salt lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKNI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKNI".freeze, prefLabel: "intermittent salt lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKO", definition: "a crescent-shaped lake commonly found adjacent to meandering streams".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKO".freeze, prefLabel: "oxbow lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKOI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKOI".freeze, prefLabel: "intermittent oxbow lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKS", definition: "large inland bodies of standing water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKS".freeze, prefLabel: "lakes".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKSB", definition: "a standing body of water in a cave".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKSB".freeze, prefLabel: "underground lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKSC", definition: "lakes in a crater or caldera".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKSC".freeze, prefLabel: "crater lakes".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKSI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKSI".freeze, prefLabel: "intermittent lakes".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKSN", definition: "inland bodies of salt water with no outlet".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKSN".freeze, prefLabel: "salt lakes".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKSNI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKSNI".freeze, prefLabel: "intermittent salt lakes".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.LKX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.LKX".freeze, prefLabel: "section of lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.MFGN", definition: "diked salt ponds used in the production of solar evaporated salt".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.MFGN".freeze, prefLabel: "salt evaporation ponds".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.MGV", definition: "a tropical tidal mud flat characterized by mangrove vegetation".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.MGV".freeze, prefLabel: "mangrove swamp".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.MOOR", definition: "an area of open ground overlaid with wet peaty soils".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.MOOR".freeze, prefLabel: "moor(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.MRSH", definition: "a wetland dominated by grass-like vegetation".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.MRSH".freeze, prefLabel: "marsh(es)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.MRSHN", definition: "a flat area, subject to periodic salt water inundation, dominated by grassy salt-tolerant plants".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.MRSHN".freeze, prefLabel: "salt marsh".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.NRWS", definition: "a navigable narrow part of a bay, strait, river, etc.".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.NRWS".freeze, prefLabel: "narrows".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.OCN", definition: "one of the major divisions of the vast expanse of salt water covering part of the earth".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.OCN".freeze, prefLabel: "ocean".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.OVF", definition: "an area of breaking waves caused by the meeting of currents or by waves moving against the current".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.OVF".freeze, prefLabel: "overfalls".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.PND", definition: "a small standing waterbody".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.PND".freeze, prefLabel: "pond".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.PNDI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.PNDI".freeze, prefLabel: "intermittent pond".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.PNDN", definition: "a small standing body of salt water often in a marsh or swamp, usually along a seacoast".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.PNDN".freeze, prefLabel: "salt pond".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.PNDNI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.PNDNI".freeze, prefLabel: "intermittent salt pond(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.PNDS", definition: "small standing waterbodies".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.PNDS".freeze, prefLabel: "ponds".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.PNDSF", definition: "ponds or enclosures in which fish are kept or raised".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.PNDSF".freeze, prefLabel: "fishponds".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.PNDSI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.PNDSI".freeze, prefLabel: "intermittent ponds".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.PNDSN", definition: "small standing bodies of salt water often in a marsh or swamp, usually along a seacoast".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.PNDSN".freeze, prefLabel: "salt ponds".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.POOL", definition: "a small and comparatively still, deep part of a larger body of water such as a stream or harbor; or a small body of standing water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.POOL".freeze, prefLabel: "pool(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.POOLI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.POOLI".freeze, prefLabel: "intermittent pool".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RCH", definition: "a straight section of a navigable stream or channel between two bends".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RCH".freeze, prefLabel: "reach".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RDGG", definition: "a linear elevation on an icecap".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RDGG".freeze, prefLabel: "icecap ridge".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RDST", definition: "an open anchorage affording less protection than a harbor".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RDST".freeze, prefLabel: "roadstead".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RF", definition: "a surface-navigation hazard composed of consolidated material".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RF".freeze, prefLabel: "reef(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RFC", definition: "a surface-navigation hazard composed of coral".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RFC".freeze, prefLabel: "coral reef(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RFX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RFX".freeze, prefLabel: "section of reef".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RPDS", definition: "a turbulent section of a stream associated with a steep, irregular stream bed".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RPDS".freeze, prefLabel: "rapids".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RSV", definition: "an artificial pond or lake".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RSV".freeze, prefLabel: "reservoir(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RSVI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RSVI".freeze, prefLabel: "intermittent reservoir".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RSVT", definition: "a contained pool or tank of water at, below, or above ground level".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RSVT".freeze, prefLabel: "water tank".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.RVN", definition: "a small, narrow, deep, steep-sided stream channel, smaller than a gorge".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.RVN".freeze, prefLabel: "ravine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SBKH", definition: "a salt flat or salt encrusted plain subject to periodic inundation from flooding or high tides".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SBKH".freeze, prefLabel: "sabkha(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SD", definition: "a long arm of the sea forming a channel between the mainland and an island or islands; or connecting two larger bodies of water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SD".freeze, prefLabel: "sound".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SEA", definition: "a large body of salt water more or less confined by continuous land or chains of islands forming a subdivision of an ocean".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SEA".freeze, prefLabel: "sea".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SHOL", definition: "a surface-navigation hazard composed of unconsolidated material".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SHOL".freeze, prefLabel: "shoal(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SILL", definition: "the low part of an underwater gap or saddle separating basins, including a similar feature at the mouth of a fjord".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SILL".freeze, prefLabel: "sill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SPNG", definition: "a place where ground water flows naturally out of the ground".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SPNG".freeze, prefLabel: "spring(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SPNS", definition: "a place where sulphur ground water flows naturally out of the ground".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SPNS".freeze, prefLabel: "sulphur spring(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SPNT", definition: "a place where hot ground water flows naturally out of the ground".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SPNT".freeze, prefLabel: "hot spring(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STM", definition: "a body of running water moving to a lower level in a channel on land".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STM".freeze, prefLabel: "stream".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMA", definition: "a diverging branch flowing out of a main stream and rejoining it downstream".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMA".freeze, prefLabel: "anabranch".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMB", definition: "a conspicuously curved or bent segment of a stream".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMB".freeze, prefLabel: "stream bend".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMC", definition: "a stream that has been substantially ditched, diked, or straightened".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMC".freeze, prefLabel: "canalized stream".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMD", definition: "a branch which flows away from the main stream, as in a delta or irrigation canal".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMD".freeze, prefLabel: "distributary(-ies)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMH", definition: "the source and upper part of a stream, including the upper drainage basin".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMH".freeze, prefLabel: "headwaters".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMI".freeze, prefLabel: "intermittent stream".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMIX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMIX".freeze, prefLabel: "section of intermittent stream".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMM", definition: "a place where a stream discharges into a lagoon, lake, or the sea".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMM".freeze, prefLabel: "stream mouth(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMQ", definition: "a former stream or distributary no longer carrying flowing water, but still evident due to lakes, wetland, topographic or vegetation patterns".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMQ".freeze, prefLabel: "abandoned watercourse".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMS", definition: "bodies of running water moving to a lower level in a channel on land".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMS".freeze, prefLabel: "streams".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMSB", definition: "a surface stream that disappears into an underground channel, or dries up in an arid area".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMSB".freeze, prefLabel: "lost river".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STMX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STMX".freeze, prefLabel: "section of stream".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.STRT", definition: "a relatively narrow waterway, usually narrower and less extensive than a sound, connecting two larger bodies of water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.STRT".freeze, prefLabel: "strait".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SWMP", definition: "a wetland dominated by tree vegetation".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SWMP".freeze, prefLabel: "swamp".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.SYSI", definition: "a network of ditches and one or more of the following elements: water supply, reservoir, canal, pump, well, drain, etc.".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.SYSI".freeze, prefLabel: "irrigation system".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.TNLC", definition: "a tunnel through which a canal passes".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.TNLC".freeze, prefLabel: "canal tunnel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WAD", definition: "a valley or ravine, bounded by relatively steep banks, which in the rainy season becomes a watercourse; found primarily in North Africa and the Middle East".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WAD".freeze, prefLabel: "wadi".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WADB", definition: "a conspicuously curved or bent segment of a wadi".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WADB".freeze, prefLabel: "wadi bend".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WADJ", definition: "a place where two or more wadies join".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WADJ".freeze, prefLabel: "wadi junction".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WADM", definition: "the lower terminus of a wadi where it widens into an adjoining floodplain, depression, or waterbody".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WADM".freeze, prefLabel: "wadi mouth".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WADS", definition: "valleys or ravines, bounded by relatively steep banks, which in the rainy season become watercourses; found primarily in North Africa and the Middle East".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WADS".freeze, prefLabel: "wadies".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WADX", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WADX".freeze, prefLabel: "section of wadi".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WHRL", definition: "a turbulent, rotating movement of water in a stream".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WHRL".freeze, prefLabel: "whirlpool".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WLL", definition: "a cylindrical hole, pit, or tunnel drilled or dug down to a depth from which water, oil, or gas can be pumped or brought to the surface".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WLL".freeze, prefLabel: "well".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WLLQ", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WLLQ".freeze, prefLabel: "abandoned well".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WLLS", definition: "cylindrical holes, pits, or tunnels drilled or dug down to a depth from which water, oil, or gas can be pumped or brought to the surface".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WLLS".freeze, prefLabel: "wells".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WTLD", definition: "an area subject to inundation, usually characterized by bog, marsh, or swamp vegetation".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WTLD".freeze, prefLabel: "wetland".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WTLDI", - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WTLDI".freeze, prefLabel: "intermittent wetland".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WTRC", definition: "a natural, well-defined channel produced by flowing water, or an artificial channel designed to carry flowing water".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WTRC".freeze, prefLabel: "watercourse".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"H.WTRH", definition: "a natural hole, hollow, or small depression that contains water, used by man and animals, especially in arid areas".freeze, - inScheme: "geonames:H".freeze, + inScheme: "http://www.geonames.org/ontology#H".freeze, notation: "H.WTRH".freeze, prefLabel: "waterhole(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.AGRC", definition: "a tract of land set aside for agricultural settlement".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.AGRC".freeze, prefLabel: "agricultural colony".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.AMUS", definition: "Amusement Park are theme parks, adventure parks offering entertainment, similar to funfairs but with a fix location".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.AMUS".freeze, prefLabel: "amusement park".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.AREA", definition: "a tract of land without homogeneous character or boundaries".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.AREA".freeze, prefLabel: "area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.BSND", definition: "an area drained by a stream".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.BSND".freeze, prefLabel: "drainage basin".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.BSNP", definition: "an area underlain by an oil-rich structural basin".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.BSNP".freeze, prefLabel: "petroleum basin".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.BTL", definition: "a site of a land battle of historical importance".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.BTL".freeze, prefLabel: "battlefield".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.CLG", definition: "an area in a forest with trees removed".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.CLG".freeze, prefLabel: "clearing".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.CMN", definition: "a park or pasture for community use".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.CMN".freeze, prefLabel: "common".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.CNS", definition: "a lease of land by a government for economic development, e.g., mining, forestry".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.CNS".freeze, prefLabel: "concession area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.COLF", definition: "a region in which coal deposits of possible economic value occur".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.COLF".freeze, prefLabel: "coalfield".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.CONT", definition: "continent : Europe, Africa, Asia, North America, South America, Oceania,Antarctica".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.CONT".freeze, prefLabel: "continent".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.CST", definition: "a zone of variable width straddling the shoreline".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.CST".freeze, prefLabel: "coast".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.CTRB", definition: "a place where a number of businesses are located".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.CTRB".freeze, prefLabel: "business center".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.DEVH", definition: "a tract of land on which many houses of similar design are built according to a development plan".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.DEVH".freeze, prefLabel: "housing development".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.FLD", definition: "an open as opposed to wooded area".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.FLD".freeze, prefLabel: "field(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.FLDI", definition: "a tract of level or terraced land which is irrigated".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.FLDI".freeze, prefLabel: "irrigated field(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.GASF", definition: "an area containing a subterranean store of natural gas of economic value".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.GASF".freeze, prefLabel: "gasfield".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.GRAZ", definition: "an area of grasses and shrubs used for grazing".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.GRAZ".freeze, prefLabel: "grazing area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.GVL", definition: "an area covered with gravel".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.GVL".freeze, prefLabel: "gravel area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.INDS", definition: "an area characterized by industrial activity".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.INDS".freeze, prefLabel: "industrial area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.LAND", definition: "a tract of land in the Arctic".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.LAND".freeze, prefLabel: "arctic land".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.LCTY", definition: "a minor area or place of unspecified or mixed character and indefinite boundaries".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.LCTY".freeze, prefLabel: "locality".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.MILB", definition: "a place used by an army or other armed service for storing arms and supplies, and for accommodating and training troops, a base from which operations can be initiated".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.MILB".freeze, prefLabel: "military base".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.MNA", definition: "an area of mine sites where minerals and ores are extracted".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.MNA".freeze, prefLabel: "mining area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.MVA", definition: "a tract of land where military field exercises are carried out".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.MVA".freeze, prefLabel: "maneuver area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.NVB", definition: "an area used to store supplies, provide barracks for troops and naval personnel, a port for naval vessels, and from which operations are initiated".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.NVB".freeze, prefLabel: "naval base".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.OAS", definition: "an area in a desert made productive by the availability of water".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.OAS".freeze, prefLabel: "oasis(-es)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.OILF", definition: "an area containing a subterranean store of petroleum of economic value".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.OILF".freeze, prefLabel: "oilfield".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.PEAT", definition: "an area where peat is harvested".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.PEAT".freeze, prefLabel: "peat cutting area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.PRK", definition: "an area, often of forested land, maintained as a place of beauty, or for recreation".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.PRK".freeze, prefLabel: "park".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.PRT", definition: "a place provided with terminal and transfer facilities for loading and discharging waterborne cargo or passengers, usually located in a harbor".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.PRT".freeze, prefLabel: "port".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.QCKS", definition: "an area where loose sand with water moving through it may become unstable when heavy objects are placed at the surface, causing them to sink".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.QCKS".freeze, prefLabel: "quicksand".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.REP", - inScheme: "geonames:L".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.REP".freeze, - "owl:deprecated": "true".freeze, prefLabel: "republic".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RES", definition: "a tract of public land reserved for future use or restricted as to use".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RES".freeze, prefLabel: "reserve".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RESA", definition: "a tract of land reserved for agricultural reclamation and/or development".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RESA".freeze, prefLabel: "agricultural reserve".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RESF", definition: "a forested area set aside for preservation or controlled use".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RESF".freeze, prefLabel: "forest reserve".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RESH", definition: "a tract of land used primarily for hunting".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RESH".freeze, prefLabel: "hunting reserve".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RESN", definition: "an area reserved for the maintenance of a natural habitat".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RESN".freeze, prefLabel: "nature reserve".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RESP", definition: "an area of palm trees where use is controlled".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RESP".freeze, prefLabel: "palm tree reserve".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RESV", definition: "a tract of land set aside for aboriginal, tribal, or native populations".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RESV".freeze, prefLabel: "reservation".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RESW", definition: "a tract of public land reserved for the preservation of wildlife".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RESW".freeze, prefLabel: "wildlife reserve".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RGN", definition: "an area distinguished by one or more observable physical or cultural characteristics".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RGN".freeze, prefLabel: "region".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RGNE", definition: "a region of a country established for economic development or for statistical purposes".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RGNE".freeze, prefLabel: "economic region".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RGNH", - inScheme: "geonames:L".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RGNH".freeze, prefLabel: "historical region".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RGNL", definition: "a tract of land distinguished by numerous lakes".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RGNL".freeze, prefLabel: "lake region".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.RNGA", definition: "a tract of land used for artillery firing practice".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.RNGA".freeze, prefLabel: "artillery range".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.SALT", definition: "a shallow basin or flat where salt accumulates after periodic inundation".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.SALT".freeze, prefLabel: "salt area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.SNOW", definition: "an area of permanent snow and ice forming the accumulation area of a glacier".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.SNOW".freeze, prefLabel: "snowfield".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.TRB", definition: "a tract of land used by nomadic or other tribes".freeze, - inScheme: "geonames:L".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.TRB".freeze, prefLabel: "tribal area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"L.ZZZZZ", - inScheme: "geonames:L".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#L".freeze, notation: "L.ZZZZZ".freeze, - "owl:deprecated": "true".freeze, prefLabel: "master source holdings list".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"Marc-Wick", - "foaf:name": "Marc Wick".freeze, - type: "foaf:Person".freeze + "http://xmlns.com/foaf/0.1/name": "Marc Wick".freeze, + type: "http://xmlns.com/foaf/0.1/Person".freeze term :"P.PPL", definition: "a city, town, village, or other agglomeration of buildings where people live and work".freeze, - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPL".freeze, prefLabel: "populated place".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLA", definition: "seat of a first-order administrative division (PPLC takes precedence over PPLA)".freeze, - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLA".freeze, prefLabel: "seat of a first-order administrative\n division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLA2", - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLA2".freeze, prefLabel: "seat of a second-order administrative division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLA3", - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLA3".freeze, prefLabel: "seat of a third-order administrative division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLA4", - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLA4".freeze, prefLabel: "seat of a fourth-order administrative division".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLC", - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLC".freeze, prefLabel: "capital of a political entity".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLF", definition: "a populated place where the population is largely engaged in agricultural activities".freeze, - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLF".freeze, prefLabel: "farm village".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLG", - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLG".freeze, prefLabel: "seat of government of a political entity".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLL", definition: "an area similar to a locality but with a small group of dwellings or other buildings".freeze, - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLL".freeze, prefLabel: "populated locality".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLQ", - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLQ".freeze, prefLabel: "abandoned populated place".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLR", definition: "a populated place whose population is largely engaged in religious occupations".freeze, - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLR".freeze, prefLabel: "religious populated place".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLS", definition: "cities, towns, villages, or other agglomerations of buildings where people live and work".freeze, - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLS".freeze, prefLabel: "populated places".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLW", definition: "a village, town or city destroyed by a natural disaster, or by war".freeze, - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLW".freeze, prefLabel: "destroyed populated place".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.PPLX", - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.PPLX".freeze, prefLabel: "section of populated place".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"P.STLMT", - inScheme: "geonames:P".freeze, + inScheme: "http://www.geonames.org/ontology#P".freeze, notation: "P.STLMT".freeze, prefLabel: "israeli settlement".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.CSWY", definition: "a raised roadway across wet ground or shallow water".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.CSWY".freeze, prefLabel: "causeway".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.CSWYQ", definition: "a causeway no longer used for transportation".freeze, - inScheme: "geonames:R".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.CSWYQ".freeze, - "owl:deprecated": "true".freeze, prefLabel: "former causeway".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.OILP", definition: "a pipeline used for transporting oil".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.OILP".freeze, prefLabel: "oil pipeline".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.PRMN", definition: "a place for public walking, usually along a beach front".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.PRMN".freeze, prefLabel: "promenade".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.PTGE", definition: "a place where boats, goods, etc., are carried overland between navigable waters".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.PTGE".freeze, prefLabel: "portage".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RD", definition: "an open way with improved surface for transportation of animals, people and vehicles".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RD".freeze, prefLabel: "road".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RDA", definition: "the remains of a road used by ancient cultures".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RDA".freeze, prefLabel: "ancient road".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RDB", definition: "a conspicuously curved or bent section of a road".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RDB".freeze, prefLabel: "road bend".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RDCUT", definition: "an excavation cut through a hill or ridge for a road".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RDCUT".freeze, prefLabel: "road cut".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RDJCT", definition: "a place where two or more roads join".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RDJCT".freeze, prefLabel: "road junction".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RJCT", definition: "a place where two or more railroad tracks join".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RJCT".freeze, prefLabel: "railroad junction".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RR", definition: "a permanent twin steel-rail track on which freight and passenger cars move long distances".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RR".freeze, prefLabel: "railroad".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RRQ", - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RRQ".freeze, prefLabel: "abandoned railroad".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RTE", definition: "the route taken by caravans".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RTE".freeze, prefLabel: "caravan route".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.RYD", definition: "a system of tracks used for the making up of trains, and switching and storing freight cars".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.RYD".freeze, prefLabel: "railroad yard".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.ST", definition: "a paved urban thoroughfare".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.ST".freeze, prefLabel: "street".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.STKR", definition: "a route taken by livestock herds".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.STKR".freeze, prefLabel: "stock route".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.TNL", definition: "a subterranean passageway for transportation".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.TNL".freeze, prefLabel: "tunnel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.TNLN", definition: "a cave that is open at both ends".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.TNLN".freeze, prefLabel: "natural tunnel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.TNLRD", definition: "a tunnel through which a road passes".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.TNLRD".freeze, prefLabel: "road tunnel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.TNLRR", definition: "a tunnel through which a railroad passes".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.TNLRR".freeze, prefLabel: "railroad tunnel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.TNLS", definition: "subterranean passageways for transportation".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.TNLS".freeze, prefLabel: "tunnels".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"R.TRL", definition: "a path, track, or route used by pedestrians, animals, or off-road vehicles".freeze, - inScheme: "geonames:R".freeze, + inScheme: "http://www.geonames.org/ontology#R".freeze, notation: "R.TRL".freeze, prefLabel: "trail".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ADMF", definition: "a government building".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ADMF".freeze, prefLabel: "administrative facility".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.AGRF", definition: "a building and/or tract of land used for improving agriculture".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.AGRF".freeze, prefLabel: "agricultural facility".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.AIRB", definition: "an area used to store supplies, provide barracks for air force personnel, hangars and runways for aircraft, and from which operations are initiated".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.AIRB".freeze, prefLabel: "airbase".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.AIRF", definition: "a place on land where aircraft land and take off; no facilities provided for the commercial handling of passengers and cargo".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.AIRF".freeze, prefLabel: "airfield".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.AIRH", definition: "a place where helicopters land and take off".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.AIRH".freeze, prefLabel: "heliport".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.AIRP", definition: "a place where aircraft regularly land and take off, with runways, navigational aids, and major facilities for the commercial handling of passengers and cargo".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.AIRP".freeze, prefLabel: "airport".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.AIRQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.AIRQ".freeze, prefLabel: "abandoned airfield".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.AMTH", definition: "an oval or circular structure with rising tiers of seats about a stage or open space".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.AMTH".freeze, prefLabel: "amphitheater".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ANS", definition: "a place where archeological remains, old structures, or cultural artifacts are located".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ANS".freeze, prefLabel: "ancient site".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.AQC", definition: "facility or area for the cultivation of aquatic animals and plants, especially fish, shellfish, and seaweed, in natural or controlled marine or freshwater environments; underwater agriculture".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.0".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.AQC".freeze, prefLabel: "aquaculture facility".freeze, - "skos:historyNote": "Added in v3.0".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ARCH", definition: "a natural or man-made structure in the form of an arch".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ARCH".freeze, prefLabel: "arch".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ASTR", definition: "a point on the earth whose position has been determined by observations of celestial bodies".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ASTR".freeze, prefLabel: "astronomical station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ASYL", definition: "a facility where the insane are cared for and protected".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ASYL".freeze, prefLabel: "asylum".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ATHF", definition: "a tract of land used for playing team sports, and athletic track and field events".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ATHF".freeze, prefLabel: "athletic field".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ATM", definition: "An unattended electronic machine in a public place, connected to a data system and related equipment and activated by a bank customer to obtain cash withdrawals and other banking services.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ATM".freeze, prefLabel: "automatic teller machine".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BANK", definition: "A business establishment in which money is kept for saving or commercial purposes or is invested, supplied for loans, or exchanged.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BANK".freeze, prefLabel: "bank".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BCN", definition: "a fixed artificial navigation mark".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BCN".freeze, prefLabel: "beacon".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BDG", definition: "a structure erected across an obstacle such as a stream, road, etc., in order to carry roads, railroads, and pedestrians across".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BDG".freeze, prefLabel: "bridge".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BDGQ", definition: "a destroyed or decayed bridge which is no longer functional".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BDGQ".freeze, prefLabel: "ruined bridge".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BLDG", definition: "a structure built for permanent use, as a house, factory, etc.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BLDG".freeze, prefLabel: "building(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BLDO", definition: "commercial building where business and/or services are conducted".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.0".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BLDO".freeze, prefLabel: "office building".freeze, - "skos:historyNote": "Added in v3.0".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BP", definition: "a fixture marking a point along a boundary".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BP".freeze, prefLabel: "boundary marker".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BRKS", definition: "a building for lodging military personnel".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BRKS".freeze, prefLabel: "barracks".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BRKW", definition: "a structure erected to break the force of waves at the entrance to a harbor or port".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BRKW".freeze, prefLabel: "breakwater".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BSTN", definition: "a facility for baling agricultural products".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BSTN".freeze, prefLabel: "baling station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BTYD", definition: "a waterside facility for servicing, repairing, and building small vessels".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BTYD".freeze, prefLabel: "boatyard".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BUR", definition: "a cave used for human burials".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BUR".freeze, prefLabel: "burial cave(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BUSTN", definition: "a facility comprising ticket office, platforms, etc. for loading and unloading passengers".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BUSTN".freeze, prefLabel: "bus station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.BUSTP", definition: "a place lacking station facilities".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.BUSTP".freeze, prefLabel: "bus stop".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CARN", definition: "a heap of stones erected as a landmark or for other purposes".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CARN".freeze, prefLabel: "cairn".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CAVE", definition: "an underground passageway or chamber, or cavity on the side of a cliff".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CAVE".freeze, prefLabel: "cave(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CCL", definition: "Centres for Continuous Learning".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CCL".freeze, - "owl:deprecated": "true".freeze, prefLabel: "Centre Continuous Learning".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CH", definition: "a building for public Christian worship".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CH".freeze, prefLabel: "church".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CMP", definition: "a site occupied by tents, huts, or other shelters for temporary use".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CMP".freeze, prefLabel: "camp(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CMPL", definition: "a camp used by loggers".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CMPL".freeze, prefLabel: "logging camp".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CMPLA", definition: "a camp used by migrant or temporary laborers".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CMPLA".freeze, prefLabel: "labor camp".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CMPMN", definition: "a camp used by miners".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CMPMN".freeze, prefLabel: "mining camp".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CMPO", definition: "a camp used by oilfield workers".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CMPO".freeze, prefLabel: "oil camp".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CMPQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CMPQ".freeze, prefLabel: "abandoned camp".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CMPRF", definition: "a camp used by refugees".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CMPRF".freeze, prefLabel: "refugee camp".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CMTY", definition: "a burial place or ground".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CMTY".freeze, prefLabel: "cemetery".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.COMC", definition: "a facility, including buildings, antennae, towers and electronic equipment for receiving and transmitting information".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.COMC".freeze, prefLabel: "communication center".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CRRL", definition: "a pen or enclosure for confining or capturing animals".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CRRL".freeze, prefLabel: "corral(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CSNO", definition: "a building used for entertainment, especially gambling".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CSNO".freeze, prefLabel: "casino".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CSTL", definition: "a large fortified building or set of buildings".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CSTL".freeze, prefLabel: "castle".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CSTM", definition: "a building in a port where customs and duties are paid, and where vessels are entered and cleared".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CSTM".freeze, prefLabel: "customs house".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CTHSE", definition: "a building in which courts of law are held".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CTHSE".freeze, prefLabel: "courthouse".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CTRA", definition: "a facility where atomic research is carried out".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CTRA".freeze, prefLabel: "atomic center".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CTRCM", definition: "a facility for community recreation and other activities".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CTRCM".freeze, prefLabel: "community center".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CTRF", definition: "a place where more than one facility is situated".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CTRF".freeze, prefLabel: "facility center".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CTRM", definition: "a complex of health care buildings including two or more of the following: hospital, medical school, clinic, pharmacy, doctor's offices, etc.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CTRM".freeze, prefLabel: "medical center".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CTRR", definition: "a facility where more than one religious activity is carried out, e.g., retreat, school, monastery, worship".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CTRR".freeze, prefLabel: "religious center".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CTRS", definition: "a facility for launching, tracking, or controlling satellites and space vehicles".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CTRS".freeze, prefLabel: "space center".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.CVNT", definition: "a building where a community of nuns lives in seclusion".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.CVNT".freeze, prefLabel: "convent".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.DAM", definition: "a barrier constructed across a stream to impound water".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.DAM".freeze, prefLabel: "dam".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.DAMQ", definition: "a destroyed or decayed dam which is no longer functional".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.DAMQ".freeze, prefLabel: "ruined dam".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.DAMSB", definition: "a dam put down to bedrock in a sand river".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.DAMSB".freeze, prefLabel: "sub-surface dam".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.DARY", definition: "a facility for the processing, sale and distribution of milk or milk products".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.DARY".freeze, prefLabel: "dairy".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.DCKD", definition: "a dock providing support for a vessel, and means for removing the water so that the bottom of the vessel can be exposed".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.DCKD".freeze, prefLabel: "dry dock".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.DCKY", definition: "a facility for servicing, building, or repairing ships".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.DCKY".freeze, prefLabel: "dockyard".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.DIKE", definition: "an earth or stone embankment usually constructed for flood or stream control".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.DIKE".freeze, prefLabel: "dike".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.DIP", definition: "office, residence, or facility of a foreign government, which may include an embassy, consulate, chancery, office of charge d?affaires, or other diplomatic, economic, military, or cultural mission".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.0".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.DIP".freeze, prefLabel: "diplomatic facility".freeze, - "skos:historyNote": "Added in v3.0".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.DPOF", definition: "an area where fuel is stored".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.DPOF".freeze, prefLabel: "fuel depot".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.EST", definition: "a large commercialized agricultural landholding with associated buildings and other facilities".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.EST".freeze, prefLabel: "estate(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ESTB", definition: "an estate that specializes in the growing of bananas".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ESTB".freeze, - "owl:deprecated": "true".freeze, prefLabel: "banana plantation".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ESTC", definition: "an estate specializing in the cultivation of cotton".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ESTC".freeze, - "owl:deprecated": "true".freeze, prefLabel: "cotton plantation".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ESTO", definition: "an estate specializing in the cultivation of oil palm trees".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ESTO".freeze, prefLabel: "oil palm plantation".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ESTR", definition: "an estate which specializes in growing and tapping rubber trees".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ESTR".freeze, prefLabel: "rubber plantation".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ESTSG", definition: "an estate that specializes in growing sugar cane".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ESTSG".freeze, prefLabel: "sugar plantation".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ESTSL", definition: "an estate that specializes in growing sisal".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ESTSL".freeze, - "owl:deprecated": "true".freeze, prefLabel: "sisal plantation".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ESTT", definition: "an estate which specializes in growing tea bushes".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ESTT".freeze, prefLabel: "tea plantation".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ESTX", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ESTX".freeze, prefLabel: "section of estate".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.FCL", definition: "a building or buildings housing a center, institute, foundation, hospital, prison, mission, courthouse, etc.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.FCL".freeze, prefLabel: "facility".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.FNDY", definition: "a building or works where metal casting is carried out".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.FNDY".freeze, prefLabel: "foundry".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.FRM", definition: "a tract of land with associated buildings devoted to agriculture".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.FRM".freeze, prefLabel: "farm".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.FRMQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.FRMQ".freeze, prefLabel: "abandoned farm".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.FRMS", definition: "tracts of land with associated buildings devoted to agriculture".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.FRMS".freeze, prefLabel: "farms".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.FRMT", definition: "the buildings and adjacent service areas of a farm".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.FRMT".freeze, prefLabel: "farmstead".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.FT", definition: "a defensive structure or earthworks".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.FT".freeze, prefLabel: "fort".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.FY", definition: "a boat or other floating conveyance and terminal facilities regularly used to transport people and vehicles across a waterbody".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.FY".freeze, prefLabel: "ferry".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.GATE", definition: "a controlled access entrance or exit".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.GATE".freeze, prefLabel: "gate".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.GDN", definition: "an enclosure for displaying selected plant or animal life".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.GDN".freeze, prefLabel: "garden(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.GHAT", definition: "a set of steps leading to a river, which are of religious significance, and at their base is usually a platform for bathing".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.0".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.GHAT".freeze, prefLabel: "ghat".freeze, - "skos:historyNote": "Added in v3.0".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.GHSE", definition: "a house used to provide lodging for paying guests".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.GHSE".freeze, prefLabel: "guest house".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.GOSP", definition: "a facility for separating gas from oil".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.GOSP".freeze, prefLabel: "gas-oil separator plant".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.GOVL", definition: "a facility housing local governmental offices, usually a city, town, or village hall".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.0".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.GOVL".freeze, prefLabel: "local government office".freeze, - "skos:historyNote": "Added in v3.0".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.GRVE", definition: "a burial site".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.GRVE".freeze, prefLabel: "grave".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HERM", definition: "a secluded residence, usually for religious sects".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HERM".freeze, prefLabel: "hermitage".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HLT", definition: "a place where caravans stop for rest".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HLT".freeze, prefLabel: "halting place".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HMSD", definition: "a residence, owner's or manager's, on a sheep or cattle station, woolshed, outcamp, or Aboriginal outstation, specific to Australia and New Zealand".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.1".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HMSD".freeze, prefLabel: "homestead".freeze, - "skos:historyNote": "Added in v3.1".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HSE", definition: "a building used as a human habitation".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HSE".freeze, prefLabel: "house(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HSEC", definition: "a large house, mansion, or chateau, on a large estate".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HSEC".freeze, prefLabel: "country house".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HSP", definition: "a building in which sick or injured, especially those confined to bed, are medically treated".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HSP".freeze, prefLabel: "hospital".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HSPC", definition: "a medical facility associated with a hospital for outpatients".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HSPC".freeze, prefLabel: "clinic".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HSPD", definition: "a building where medical or dental aid is dispensed".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HSPD".freeze, prefLabel: "dispensary".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HSPL", definition: "an asylum or hospital for lepers".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HSPL".freeze, prefLabel: "leprosarium".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HSTS", definition: "a place of historical importance".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HSTS".freeze, prefLabel: "historical site".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HTL", definition: "a building providing lodging and/or meals for the public".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HTL".freeze, prefLabel: "hotel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HUT", definition: "a small primitive house".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HUT".freeze, prefLabel: "hut".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.HUTS", definition: "small primitive houses".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.HUTS".freeze, prefLabel: "huts".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.INSM", definition: "a facility for use of and control by armed forces".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.INSM".freeze, prefLabel: "military installation".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ITTR", definition: "a facility where research is carried out".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ITTR".freeze, prefLabel: "research institute".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.JTY", definition: "a structure built out into the water at a river mouth or harbor entrance to regulate currents and silting".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.JTY".freeze, prefLabel: "jetty".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.LDNG", definition: "a place where boats receive or discharge passengers and freight, but lacking most port facilities".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.LDNG".freeze, prefLabel: "landing".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.LEPC", definition: "a settled area inhabited by lepers in relative isolation".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.LEPC".freeze, prefLabel: "leper colony".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.LIBR", definition: "A place in which information resources such as books are kept for reading, reference, or lending.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.LIBR".freeze, prefLabel: "library".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.LNDF", definition: "a place for trash and garbage disposal in which the waste is buried between layers of earth to build up low-lying land".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.LNDF".freeze, prefLabel: "landfill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.LOCK", definition: "a basin in a waterway with gates at each end by means of which vessels are passed from one water level to another".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.LOCK".freeze, prefLabel: "lock(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.LTHSE", definition: "a distinctive structure exhibiting a major navigation light".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.LTHSE".freeze, prefLabel: "lighthouse".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MALL", definition: "A large, often enclosed shopping complex containing various stores, businesses, and restaurants usually accessible by common passageways.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MALL".freeze, prefLabel: "mall".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MAR", definition: "a harbor facility for small boats, yachts, etc.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MAR".freeze, prefLabel: "marina".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MFG", definition: "one or more buildings where goods are manufactured, processed or fabricated".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MFG".freeze, prefLabel: "factory".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MFGB", definition: "one or more buildings where beer is brewed".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MFGB".freeze, prefLabel: "brewery".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MFGC", definition: "a building where food items are canned".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MFGC".freeze, prefLabel: "cannery".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MFGCU", definition: "a facility for processing copper ore".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MFGCU".freeze, prefLabel: "copper works".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MFGLM", definition: "a furnace in which limestone is reduced to lime".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MFGLM".freeze, prefLabel: "limekiln".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MFGM", definition: "a factory where ammunition is made".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MFGM".freeze, prefLabel: "munitions plant".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MFGPH", definition: "a facility for producing fertilizer".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MFGPH".freeze, prefLabel: "phosphate works".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MFGQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MFGQ".freeze, prefLabel: "abandoned factory".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MFGSG", definition: "a facility for converting raw sugar into refined sugar".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MFGSG".freeze, prefLabel: "sugar refinery".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MKT", definition: "a place where goods are bought and sold at regular intervals".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MKT".freeze, prefLabel: "market".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ML", definition: "a building housing machines for transforming, shaping, finishing, grinding, or extracting products".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ML".freeze, prefLabel: "mill(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MLM", definition: "a facility for improving the metal content of ore by concentration".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MLM".freeze, prefLabel: "ore treatment plant".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MLO", definition: "a mill where oil is extracted from olives".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MLO".freeze, prefLabel: "olive oil mill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MLSG", definition: "a facility where sugar cane is processed into raw sugar".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MLSG".freeze, prefLabel: "sugar mill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MLSGQ", definition: "a sugar mill no longer used as a sugar mill".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MLSGQ".freeze, prefLabel: "former sugar mill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MLSW", definition: "a mill where logs or lumber are sawn to specified shapes and sizes".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MLSW".freeze, prefLabel: "sawmill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MLWND", definition: "a mill or water pump powered by wind".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MLWND".freeze, prefLabel: "windmill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MLWTR", definition: "a mill powered by running water".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MLWTR".freeze, prefLabel: "water mill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MN", definition: "a site where mineral ores are extracted from the ground by excavating surface pits and subterranean passages".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MN".freeze, prefLabel: "mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNAU", definition: "a mine where gold ore, or alluvial gold is extracted".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNAU".freeze, prefLabel: "gold mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNC", definition: "a mine where coal is extracted".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNC".freeze, prefLabel: "coal mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNCR", definition: "a mine where chrome ore is extracted".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNCR".freeze, prefLabel: "chrome mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNCU", definition: "a mine where copper ore is extracted".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNCU".freeze, prefLabel: "copper mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNDT", definition: "a place where diatomaceous earth is extracted".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNDT".freeze, - "owl:deprecated": "true".freeze, prefLabel: "diatomite mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNFE", definition: "a mine where iron ore is extracted".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNFE".freeze, prefLabel: "iron mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNMT", definition: "a commemorative structure or statue".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNMT".freeze, prefLabel: "monument".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNN", definition: "a mine from which salt is extracted".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNN".freeze, prefLabel: "salt mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNNI", definition: "a mine where nickel ore is extracted".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNNI".freeze, - "owl:deprecated": "true".freeze, prefLabel: "nickel mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNPB", definition: "a mine where lead ore is extracted".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNPB".freeze, - "owl:deprecated": "true".freeze, prefLabel: "lead mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNPL", definition: "a place where heavy metals are concentrated and running water is used to extract them from unconsolidated sediments".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNPL".freeze, - "owl:deprecated": "true".freeze, prefLabel: "placer mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNQ".freeze, prefLabel: "abandoned mine".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNQR", definition: "a surface mine where building stone or gravel and sand, etc. are extracted".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNQR".freeze, prefLabel: "quarry(-ies)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MNSN", definition: "a mine where tin ore is extracted".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MNSN".freeze, - "owl:deprecated": "true".freeze, prefLabel: "tin mine(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MOLE", definition: "a massive structure of masonry or large stones serving as a pier or breakwater".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MOLE".freeze, prefLabel: "mole".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MSQE", definition: "a building for public Islamic worship".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MSQE".freeze, prefLabel: "mosque".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MSSN", definition: "a place characterized by dwellings, school, church, hospital and other facilities operated by a religious group for the purpose of providing charitable services and to propagate religion".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MSSN".freeze, prefLabel: "mission".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MSSNQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MSSNQ".freeze, prefLabel: "abandoned mission".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MSTY", definition: "a building and grounds where a community of monks lives in seclusion".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MSTY".freeze, prefLabel: "monastery".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MTRO", definition: "metro station (Underground, Tube, or Métro)".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MTRO".freeze, prefLabel: "metro station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.MUS", definition: "a building where objects of permanent interest in one or more of the arts and sciences are preserved and exhibited".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.MUS".freeze, prefLabel: "museum".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.NOV", definition: "a religious house or school where novices are trained".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.NOV".freeze, prefLabel: "novitiate".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.NSY", definition: "a place where plants are propagated for transplanting or grafting".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.NSY".freeze, prefLabel: "nursery(-ies)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.OBPT", definition: "a wildlife or scenic observation point".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.OBPT".freeze, prefLabel: "observation point".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.OBS", definition: "a facility equipped for observation of atmospheric or space phenomena".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.OBS".freeze, prefLabel: "observatory".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.OBSR", definition: "a facility equipped with an array of antennae for receiving radio waves from space".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.OBSR".freeze, prefLabel: "radio observatory".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.OILJ", definition: "a section of an oil pipeline where two or more pipes join together".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.OILJ".freeze, prefLabel: "oil pipeline junction".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.OILQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.OILQ".freeze, prefLabel: "abandoned oil well".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.OILR", definition: "a facility for converting crude oil into refined petroleum products".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.OILR".freeze, prefLabel: "oil refinery".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.OILT", definition: "a tract of land occupied by large, cylindrical, metal tanks in which oil or liquid petrochemicals are stored".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.OILT".freeze, prefLabel: "tank farm".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.OILW", definition: "a well from which oil may be pumped".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.OILW".freeze, prefLabel: "oil well".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.OPRA", definition: "A theater designed chiefly for the performance of operas.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.OPRA".freeze, prefLabel: "opera house".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PAL", definition: "a large stately house, often a royal or presidential residence".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PAL".freeze, prefLabel: "palace".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PGDA", definition: "a tower-like storied structure, usually a Buddhist shrine".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PGDA".freeze, prefLabel: "pagoda".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PIER", definition: "a structure built out into navigable water on piles providing berthing for ships and recreation".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PIER".freeze, prefLabel: "pier".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PKLT", definition: "an area used for parking vehicles".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PKLT".freeze, prefLabel: "parking lot".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PMPO", definition: "a facility for pumping oil through a pipeline".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PMPO".freeze, prefLabel: "oil pumping station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PMPW", definition: "a facility for pumping water from a major well or through a pipeline".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PMPW".freeze, prefLabel: "water pumping station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PO", definition: "a public building in which mail is received, sorted and distributed".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PO".freeze, prefLabel: "post office".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PP", definition: "a building in which police are stationed".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PP".freeze, prefLabel: "police post".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PPQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PPQ".freeze, prefLabel: "abandoned police post".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PRKGT", definition: "a controlled access to a park".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PRKGT".freeze, prefLabel: "park gate".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PRKHQ", definition: "a park administrative facility".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PRKHQ".freeze, prefLabel: "park headquarters".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PRN", definition: "a facility for confining prisoners".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PRN".freeze, prefLabel: "prison".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PRNJ", definition: "a facility for confining, training, and reforming young law offenders".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PRNJ".freeze, prefLabel: "reformatory".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PRNQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PRNQ".freeze, prefLabel: "abandoned prison".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PS", definition: "a facility for generating electric power".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PS".freeze, prefLabel: "power station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PSH", definition: "a building where electricity is generated from water power".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PSH".freeze, prefLabel: "hydroelectric power station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PSTB", definition: "a post or station at an international boundary for the regulation of movement of people and goods".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PSTB".freeze, prefLabel: "border post".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PSTC", definition: "a building at an international boundary where customs and duties are paid on goods".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PSTC".freeze, prefLabel: "customs post".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PSTP", definition: "a post from which patrols are sent out".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PSTP".freeze, prefLabel: "patrol post".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PYR", definition: "an ancient massive structure of square ground plan with four triangular faces meeting at a point and used for enclosing tombs".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PYR".freeze, prefLabel: "pyramid".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.PYRS", definition: "ancient massive structures of square ground plan with four triangular faces meeting at a point and used for enclosing tombs".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.PYRS".freeze, prefLabel: "pyramids".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.QUAY", definition: "a structure of solid construction along a shore or bank which provides berthing for ships and which generally provides cargo handling facilities".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.QUAY".freeze, prefLabel: "quay".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RDCR", definition: "a road junction formed around a central circle about which traffic moves in one direction only".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.0".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RDCR".freeze, prefLabel: "traffic circle".freeze, - "skos:historyNote": "Added in v3.0".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RECG", definition: "a recreation field where golf is played".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RECG".freeze, prefLabel: "golf course".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RECR", definition: "a track where races are held".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RECR".freeze, prefLabel: "racetrack".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.REST", definition: "A place where meals are served to the public".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.REST".freeze, prefLabel: "restaurant".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RET", definition: "a building where goods and/or services are offered for sale".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.0".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RET".freeze, prefLabel: "store".freeze, - "skos:historyNote": "Added in v3.0".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RHSE", definition: "a structure maintained for the rest and shelter of travelers".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RHSE".freeze, prefLabel: "resthouse".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RKRY", definition: "a breeding place of a colony of birds or seals".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RKRY".freeze, prefLabel: "rookery".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RLG", definition: "an ancient site of significant religious importance".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RLG".freeze, prefLabel: "religious site".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RLGR", definition: "a place of temporary seclusion, especially for religious groups".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RLGR".freeze, prefLabel: "retreat".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RNCH", definition: "a large farm specializing in extensive grazing of livestock".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RNCH".freeze, prefLabel: "ranch(es)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RSD", definition: "a short track parallel to and joining the main track".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RSD".freeze, prefLabel: "railroad siding".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RSGNL", definition: "a signal at the entrance of a particular section of track governing the movement of trains".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RSGNL".freeze, prefLabel: "railroad signal".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RSRT", definition: "a specialized facility for vacation, health, or participation sports activities".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RSRT".freeze, prefLabel: "resort".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RSTN", definition: "a facility comprising ticket office, platforms, etc. for loading and unloading train passengers and freight".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RSTN".freeze, prefLabel: "railroad station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RSTNQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RSTNQ".freeze, prefLabel: "abandoned railroad station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RSTP", definition: "a place lacking station facilities where trains stop to pick up and unload passengers and freight".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RSTP".freeze, prefLabel: "railroad stop".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RSTPQ", - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RSTPQ".freeze, prefLabel: "abandoned railroad stop".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.RUIN", definition: "a destroyed or decayed structure which is no longer functional".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.RUIN".freeze, prefLabel: "ruin(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SCH", definition: "building(s) where instruction in one or more branches of knowledge takes place".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SCH".freeze, prefLabel: "school".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SCHA", definition: "a school with a curriculum focused on agriculture".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SCHA".freeze, prefLabel: "agricultural school".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SCHC", definition: "the grounds and buildings of an institution of higher learning".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SCHC".freeze, prefLabel: "college".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SCHD", definition: "Driving School".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SCHD".freeze, - "owl:deprecated": "true".freeze, prefLabel: "Driving School".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SCHL", definition: "Language Schools & Institutions".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SCHL".freeze, prefLabel: ["Language School".freeze, "language school".freeze], - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SCHM", definition: "a school at which military science forms the core of the curriculum".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SCHM".freeze, prefLabel: "military school".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SCHN", definition: "a school at which maritime sciences form the core of the curriculum".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SCHN".freeze, prefLabel: "maritime school".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SCHT", definition: "post-secondary school with a specifically technical or vocational curriculum".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SCHT".freeze, prefLabel: "technical school".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SECP", definition: "state exam preparation centres".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SECP".freeze, prefLabel: "State Exam Prep Centre".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SHPF", definition: "a fence or wall enclosure for sheep and other small herd animals".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SHPF".freeze, prefLabel: "sheepfold".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SHRN", definition: "a structure or place memorializing a person or religious concept".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SHRN".freeze, prefLabel: "shrine".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SHSE", definition: "a building for storing goods, especially provisions".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SHSE".freeze, prefLabel: "storehouse".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SLCE", definition: "a conduit or passage for carrying off surplus water from a waterbody, usually regulated by means of a sluice gate".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SLCE".freeze, prefLabel: "sluice".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SNTR", definition: "a facility where victims of physical or mental disorders are treated".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SNTR".freeze, prefLabel: "sanatorium".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SPA", definition: "a resort area usually developed around a medicinal spring".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SPA".freeze, prefLabel: "spa".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SPLY", definition: "a passage or outlet through which surplus water flows over, around or through a dam".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SPLY".freeze, prefLabel: "spillway".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SQR", definition: "a broad, open, public area near the center of a town or city".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SQR".freeze, prefLabel: "square".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STBL", definition: "a building for the shelter and feeding of farm animals, especially horses".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STBL".freeze, prefLabel: "stable".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STDM", definition: "a structure with an enclosure for athletic games with tiers of seats for spectators".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STDM".freeze, prefLabel: "stadium".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STNB", definition: "a scientific facility used as a base from which research is carried out or monitored".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STNB".freeze, prefLabel: "scientific research base".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STNC", definition: "a facility from which the coast is guarded by armed vessels".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STNC".freeze, prefLabel: "coast guard station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STNE", definition: "a facility for carrying out experiments".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STNE".freeze, prefLabel: "experiment station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STNF", definition: "a collection of buildings and facilities for carrying out forest management".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STNF".freeze, prefLabel: "forest station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STNI", definition: "a station at which vehicles, goods, and people are inspected".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STNI".freeze, prefLabel: "inspection station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STNM", definition: "a station at which weather elements are recorded".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STNM".freeze, prefLabel: "meteorological station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STNR", definition: "a facility for producing and transmitting information by radio waves".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STNR".freeze, prefLabel: "radio station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STNS", definition: "a facility for tracking and communicating with orbiting satellites".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STNS".freeze, prefLabel: "satellite station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STNW", definition: "a facility for butchering whales and processing train oil".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STNW".freeze, prefLabel: "whaling station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.STPS", definition: "stones or slabs placed for ease in ascending or descending a steep slope".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.STPS".freeze, prefLabel: "steps".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.SWT", definition: "facility for the processing of sewage and/or wastewater".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.SWT".freeze, prefLabel: "sewage treatment plant".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.THTR", definition: "A building, room, or outdoor structure for the presentation of plays, films, or other dramatic performances".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.THTR".freeze, prefLabel: "theater".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.TMB", definition: "a structure for interring bodies".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.TMB".freeze, prefLabel: "tomb(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.TMPL", definition: "an edifice dedicated to religious worship".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.TMPL".freeze, prefLabel: "temple(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.TNKD", definition: "a small artificial pond used for immersing cattle in chemically treated water for disease control".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.TNKD".freeze, prefLabel: "cattle dipping tank".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.TOWR", definition: "a high conspicuous structure, typically much higher than its diameter".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.TOWR".freeze, prefLabel: "tower".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.TRANT", definition: "facilities for the handling of vehicular freight and passengers".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.TRANT".freeze, prefLabel: "transit terminal".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.TRIG", definition: "a point on the earth whose position has been determined by triangulation".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.TRIG".freeze, prefLabel: "triangulation station".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.TRMO", definition: "a tank farm or loading facility at the end of an oil pipeline".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.TRMO".freeze, prefLabel: "oil pipeline terminal".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.TWO", definition: "Temporary Work Offices".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.TWO".freeze, prefLabel: "temp work office".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.UNIO", definition: "Post Universitary Education Institutes (post graduate studies and highly specialised master programs) & MBA".freeze, - inScheme: "geonames:S".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.UNIO".freeze, - "owl:deprecated": "true".freeze, prefLabel: "postgrad & MBA".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.UNIP", definition: "University Preparation Schools & Institutions".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.UNIP".freeze, prefLabel: "university prep school".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.UNIV", definition: "An institution for higher learning with teaching and research facilities constituting a graduate school and professional schools that award master's degrees and doctorates and an undergraduate division that awards bachelor's degrees.".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.UNIV".freeze, prefLabel: "university".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.USGE", definition: "a facility operated by the United States Government in Panama".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.USGE".freeze, prefLabel: "united states government establishment".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.VETF", definition: "a building or camp at which veterinary services are available".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.VETF".freeze, prefLabel: "veterinary facility".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.WALL", definition: "a thick masonry structure, usually enclosing a field or building, or forming the side of a structure".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.WALL".freeze, prefLabel: "wall".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.WALLA", definition: "the remains of a linear defensive stone structure".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.WALLA".freeze, prefLabel: "ancient wall".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.WEIR", definition: "a small dam in a stream, designed to raise the water level or to divert stream flow through a desired channel".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.WEIR".freeze, prefLabel: "weir(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.WHRF", definition: "a structure of open rather than solid construction along a shore or a bank which provides berthing for ships and cargo-handling facilities".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.WHRF".freeze, prefLabel: "wharf(-ves)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.WRCK", definition: "the site of the remains of a wrecked vessel".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.WRCK".freeze, prefLabel: "wreck".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.WTRW", definition: "a facility for supplying potable water through a water source and a system of pumps and filtration beds".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.WTRW".freeze, prefLabel: "waterworks".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ZNF", definition: "an area, usually a section of a port, where goods may be received and shipped free of customs duty and of most customs regulations".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ZNF".freeze, prefLabel: "free trade zone".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"S.ZOO", definition: "a zoological garden or park where wild animals are kept for exhibition".freeze, - inScheme: "geonames:S".freeze, + inScheme: "http://www.geonames.org/ontology#S".freeze, notation: "S.ZOO".freeze, prefLabel: "zoo".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ASPH", definition: "a small basin containing naturally occurring asphalt".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ASPH".freeze, prefLabel: "asphalt lake".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ATOL", definition: "a ring-shaped coral reef which has closely spaced islands on it encircling a lagoon".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ATOL".freeze, prefLabel: "atoll(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.BAR", definition: "a shallow ridge or mound of coarse unconsolidated material in a stream channel, at the mouth of a stream, estuary, or lagoon and in the wave-break zone along coasts".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.BAR".freeze, prefLabel: "bar".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.BCH", definition: "a shore zone of coarse unconsolidated sediment that extends from the low-water line to the highest reach of storm waves".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.BCH".freeze, prefLabel: "beach".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.BCHS", definition: "a shore zone of coarse unconsolidated sediment that extends from the low-water line to the highest reach of storm waves".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.BCHS".freeze, prefLabel: "beaches".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.BDLD", definition: "an area characterized by a maze of very closely spaced, deep, narrow, steep-sided ravines, and sharp crests and pinnacles".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.BDLD".freeze, prefLabel: "badlands".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.BLDR", definition: "a high altitude or high latitude bare, flat area covered with large angular rocks".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.BLDR".freeze, prefLabel: "boulder field".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.BLHL", definition: "a hole in coastal rock through which sea water is forced by a rising tide or waves and spurted through an outlet into the air".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.BLHL".freeze, prefLabel: "blowhole(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.BLOW", definition: "a small depression in sandy terrain, caused by wind erosion".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.BLOW".freeze, prefLabel: "blowout(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.BNCH", definition: "a long, narrow bedrock platform bounded by steeper slopes above and below, usually overlooking a waterbody".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.BNCH".freeze, prefLabel: "bench".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.BUTE", definition: "a small, isolated, usually flat-topped hill with steep sides".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.BUTE".freeze, prefLabel: "butte(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CAPE", definition: "a land area, more prominent than a point, projecting into the sea and marking a notable change in coastal direction".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CAPE".freeze, prefLabel: "cape".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CFT", definition: "a deep narrow slot, notch, or groove in a coastal cliff".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CFT".freeze, prefLabel: "cleft(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CLDA", definition: "a depression measuring kilometers across formed by the collapse of a volcanic mountain".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CLDA".freeze, prefLabel: "caldera".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CLF", definition: "a high, steep to perpendicular slope overlooking a waterbody or lower area".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CLF".freeze, prefLabel: "cliff(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CNYN", definition: "a deep, narrow valley with steep sides cutting into a plateau or mountainous area".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CNYN".freeze, prefLabel: "canyon".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CONE", definition: "a conical landform composed of mud or volcanic material".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CONE".freeze, prefLabel: "cone(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CRDR", definition: "a strip or area of land having significance as an access way".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CRDR".freeze, prefLabel: "corridor".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CRQ", definition: "a bowl-like hollow partially surrounded by cliffs or steep slopes at the head of a glaciated valley".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CRQ".freeze, prefLabel: "cirque".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CRQS", definition: "bowl-like hollows partially surrounded by cliffs or steep slopes at the head of a glaciated valley".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CRQS".freeze, prefLabel: "cirques".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CRTR", definition: "a generally circular saucer or bowl-shaped depression caused by volcanic or meteorite explosive action".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CRTR".freeze, prefLabel: "crater(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.CUET", definition: "an asymmetric ridge formed on tilted strata".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.CUET".freeze, prefLabel: "cuesta(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.DLTA", definition: "a flat plain formed by alluvial deposits at the mouth of a stream".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.DLTA".freeze, prefLabel: "delta".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.DPR", definition: "a low area surrounded by higher land and usually characterized by interior drainage".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.DPR".freeze, prefLabel: "depression(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.DSRT", definition: "a large area with little or no vegetation due to extreme environmental conditions".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.DSRT".freeze, prefLabel: "desert".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.DUNE", definition: "a wave form, ridge or star shape feature composed of sand".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.DUNE".freeze, prefLabel: "dune(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.DVD", definition: "a line separating adjacent drainage basins".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.DVD".freeze, prefLabel: "divide".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ERG", definition: "an extensive tract of shifting sand and sand dunes".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ERG".freeze, prefLabel: "sandy desert".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.FAN", definition: "a fan-shaped wedge of coarse alluvium with apex merging with a mountain stream bed and the fan spreading out at a low angle slope onto an adjacent plain".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.FAN".freeze, prefLabel: "fan(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.FORD", definition: "a shallow part of a stream which can be crossed on foot or by land vehicle".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.FORD".freeze, prefLabel: "ford".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.FSR", definition: "a crack associated with volcanism".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.FSR".freeze, prefLabel: "fissure".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.GAP", definition: "a low place in a ridge, not used for transportation".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.GAP".freeze, prefLabel: "gap".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.GRGE", definition: "a short, narrow, steep-sided section of a stream valley".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.GRGE".freeze, prefLabel: "gorge(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.HDLD", definition: "a high projection of land extending into a large body of water beyond the line of the coast".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.HDLD".freeze, prefLabel: "headland".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.HLL", definition: "a rounded elevation of limited extent rising above the surrounding land with local relief of less than 300m".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.HLL".freeze, prefLabel: "hill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.HLLS", definition: "rounded elevations of limited extent rising above the surrounding land with local relief of less than 300m".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.HLLS".freeze, prefLabel: "hills".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.HMCK", definition: "a patch of ground, distinct from and slightly above the surrounding plain or wetland. Often occurs in groups".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.HMCK".freeze, prefLabel: "hammock(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.HMDA", definition: "a relatively sand-free, high bedrock plateau in a hot desert, with or without a gravel veneer".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.HMDA".freeze, prefLabel: "rock desert".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.INTF", definition: "a relatively undissected upland between adjacent stream valleys".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.INTF".freeze, prefLabel: "interfluve".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ISL", definition: "a tract of land, smaller than a continent, surrounded by water at high water".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ISL".freeze, prefLabel: "island".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ISLET", definition: "small island, bigger than rock, smaller than island.".freeze, - inScheme: "geonames:T".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "Added in v3.0".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ISLET".freeze, prefLabel: "islet".freeze, - "skos:historyNote": "Added in v3.0".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ISLF", definition: "an island created by landfill or diking and filling in a wetland, bay, or lagoon".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ISLF".freeze, prefLabel: "artificial island".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ISLM", definition: "a mangrove swamp surrounded by a waterbody".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ISLM".freeze, prefLabel: "mangrove island".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ISLS", definition: "tracts of land, smaller than a continent, surrounded by water at high water".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ISLS".freeze, prefLabel: "islands".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ISLT", definition: "a coastal island connected to the mainland by barrier beaches, levees or dikes".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ISLT".freeze, prefLabel: "land-tied island".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ISLX", - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ISLX".freeze, prefLabel: "section of island".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.ISTH", definition: "a narrow strip of land connecting two larger land masses and bordered by water".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.ISTH".freeze, prefLabel: "isthmus".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.KRST", definition: "a distinctive landscape developed on soluble rock such as limestone characterized by sinkholes, caves, disappearing streams, and underground drainage".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.KRST".freeze, prefLabel: "karst area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.LAVA", definition: "an area of solidified lava".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.LAVA".freeze, prefLabel: "lava area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.LEV", definition: "a natural low embankment bordering a distributary or meandering stream; often built up artificially to control floods".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.LEV".freeze, prefLabel: "levee".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.MESA", definition: "a flat-topped, isolated elevation with steep slopes on all sides, less extensive than a plateau".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.MESA".freeze, prefLabel: "mesa(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.MND", definition: "a low, isolated, rounded hill".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.MND".freeze, prefLabel: "mound(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.MRN", definition: "a mound, ridge, or other accumulation of glacial till".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.MRN".freeze, prefLabel: "moraine".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.MT", definition: "an elevation standing high above the surrounding area with small summit area, steep slopes and local relief of 300m or more".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.MT".freeze, prefLabel: "mountain".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.MTS", definition: "a mountain range or a group of mountains or high ridges".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.MTS".freeze, prefLabel: "mountains".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.NKM", definition: "a narrow strip of land between the two limbs of a meander loop at its narrowest point".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.NKM".freeze, prefLabel: "meander neck".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.NTK", definition: "a rock or mountain peak protruding through glacial ice".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.NTK".freeze, prefLabel: "nunatak".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.NTKS", definition: "rocks or mountain peaks protruding through glacial ice".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.NTKS".freeze, prefLabel: "nunataks".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PAN", definition: "a near-level shallow, natural depression or basin, usually containing an intermittent lake, pond, or pool".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PAN".freeze, prefLabel: "pan".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PANS", definition: "a near-level shallow, natural depression or basin, usually containing an intermittent lake, pond, or pool".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PANS".freeze, prefLabel: "pans".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PASS", definition: "a break in a mountain range or other high obstruction, used for transportation from one side to the other [See also gap]".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PASS".freeze, prefLabel: "pass".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PEN", definition: "an elongate area of land projecting into a body of water and nearly surrounded by water".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PEN".freeze, prefLabel: "peninsula".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PENX", - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PENX".freeze, prefLabel: "section of peninsula".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PK", definition: "a pointed elevation atop a mountain, ridge, or other hypsographic feature".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PK".freeze, prefLabel: "peak".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PKS", definition: "pointed elevations atop a mountain, ridge, or other hypsographic features".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PKS".freeze, prefLabel: "peaks".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PLAT", definition: "an elevated plain with steep slopes on one or more sides, and often with incised streams".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PLAT".freeze, prefLabel: "plateau".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PLATX", - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PLATX".freeze, prefLabel: "section of plateau".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PLDR", definition: "an area reclaimed from the sea by diking and draining".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PLDR".freeze, prefLabel: "polder".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PLN", definition: "an extensive area of comparatively level to gently undulating land, lacking surface irregularities, and usually adjacent to a higher area".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PLN".freeze, prefLabel: "plain(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PLNX", - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PLNX".freeze, prefLabel: "section of plain".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PROM", definition: "a bluff or prominent hill overlooking or projecting into a lowland".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PROM".freeze, prefLabel: "promontory(-ies)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PT", definition: "a tapering piece of land projecting into a body of water, less prominent than a cape".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PT".freeze, prefLabel: "point".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.PTS", definition: "tapering pieces of land projecting into a body of water, less prominent than a cape".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.PTS".freeze, prefLabel: "points".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.RDGB", definition: "a ridge of sand just inland and parallel to the beach, usually in series".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.RDGB".freeze, prefLabel: "beach ridge".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.RDGE", definition: "a long narrow elevation with steep sides, and a more or less continuous crest".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.RDGE".freeze, prefLabel: "ridge(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.REG", definition: "a desert plain characterized by a surface veneer of gravel and stones".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.REG".freeze, prefLabel: "stony desert".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.RK", definition: "a conspicuous, isolated rocky mass".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.RK".freeze, prefLabel: "rock".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.RKFL", definition: "an irregular mass of fallen rock at the base of a cliff or steep slope".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.RKFL".freeze, prefLabel: "rockfall".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.RKS", definition: "conspicuous, isolated rocky masses".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.RKS".freeze, prefLabel: "rocks".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SAND", definition: "a tract of land covered with sand".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SAND".freeze, prefLabel: "sand area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SBED", definition: "a channel formerly containing the water of a stream".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SBED".freeze, prefLabel: "dry stream bed".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SCRP", definition: "a long line of cliffs or steep slopes separating level surfaces above and below".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SCRP".freeze, prefLabel: "escarpment".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SDL", definition: "a broad, open pass crossing a ridge or between hills or mountains".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SDL".freeze, prefLabel: "saddle".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SHOR", definition: "a narrow zone bordering a waterbody which covers and uncovers at high and low water, respectively".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SHOR".freeze, prefLabel: "shore".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SINK", definition: "a small crater-shape depression in a karst area".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SINK".freeze, prefLabel: "sinkhole".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SLID", definition: "a mound of earth material, at the base of a slope and the associated scoured area".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SLID".freeze, prefLabel: "slide".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SLP", definition: "a surface with a relatively uniform slope angle".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SLP".freeze, prefLabel: "slope(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SPIT", definition: "a narrow, straight or curved continuation of a beach into a waterbody".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SPIT".freeze, prefLabel: "spit".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.SPUR", definition: "a subordinate ridge projecting outward from a hill, mountain or other elevation".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.SPUR".freeze, prefLabel: "spur(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.TAL", definition: "a steep concave slope formed by an accumulation of loose rock fragments at the base of a cliff or steep slope".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.TAL".freeze, prefLabel: "talus slope".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.TRGD", definition: "a long wind-swept trough between parallel longitudinal dunes".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.TRGD".freeze, prefLabel: "interdune trough(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.TRR", definition: "a long, narrow alluvial platform bounded by steeper slopes above and below, usually overlooking a waterbody".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.TRR".freeze, prefLabel: "terrace".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.UPLD", definition: "an extensive interior region of high land with low to moderate surface relief".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.UPLD".freeze, prefLabel: "upland".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.VAL", definition: "an elongated depression usually traversed by a stream".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.VAL".freeze, prefLabel: "valley".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.VALG", definition: "a valley the floor of which is notably higher than the valley or shore to which it leads; most common in areas that have been glaciated".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.VALG".freeze, prefLabel: "hanging valley".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.VALS", definition: "elongated depressions usually traversed by a stream".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.VALS".freeze, prefLabel: "valleys".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.VALX", - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.VALX".freeze, prefLabel: "section of valley".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"T.VLC", definition: "a conical elevation composed of volcanic materials with a crater at the top".freeze, - inScheme: "geonames:T".freeze, + inScheme: "http://www.geonames.org/ontology#T".freeze, notation: "T.VLC".freeze, prefLabel: "volcano".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.APNU", definition: "a gentle slope, with a generally smooth surface, particularly found around groups of islands and seamounts".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.APNU".freeze, prefLabel: "apron".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.ARCU", definition: "a low bulge around the southeastern end of the island of Hawaii".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.ARCU".freeze, prefLabel: "arch".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.ARRU", definition: "an area of subdued corrugations off Baja California".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.ARRU".freeze, prefLabel: "arrugado".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.BDLU", definition: "a region adjacent to a continent, normally occupied by or bordering a shelf, that is highly irregular with depths well in excess of those typical of a shelf".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.BDLU".freeze, prefLabel: "borderland".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.BKSU", definition: "elevations, typically located on a shelf, over which the depth of water is relatively shallow but sufficient for safe surface navigation".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.BKSU".freeze, prefLabel: "banks".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.BNCU", definition: "a small terrace".freeze, - inScheme: "geonames:U".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.BNCU".freeze, - "owl:deprecated": "true".freeze, prefLabel: "bench".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.BNKU", definition: "an elevation, typically located on a shelf, over which the depth of water is relatively shallow but sufficient for safe surface navigation".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.BNKU".freeze, prefLabel: "bank".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.BSNU", definition: "a depression more or less equidimensional in plan and of variable extent".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.BSNU".freeze, prefLabel: "basin".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.CDAU", definition: "an entire mountain system including the subordinate ranges, interior plateaus, and basins".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.CDAU".freeze, prefLabel: "cordillera".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.CNSU", definition: "relatively narrow, deep depressions with steep sides, the bottom of which generally has a continuous slope".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.CNSU".freeze, prefLabel: "canyons".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.CNYU", definition: "a relatively narrow, deep depression with steep sides, the bottom of which generally has a continuous slope".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.CNYU".freeze, prefLabel: "canyon".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.CRSU", definition: "a gentle slope rising from oceanic depths towards the foot of a continental slope".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.CRSU".freeze, prefLabel: "continental rise".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.DEPU", definition: "a localized deep area within the confines of a larger feature, such as a trough, basin or trench".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.DEPU".freeze, prefLabel: "deep".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.EDGU", definition: "a line along which there is a marked increase of slope at the outer margin of a continental shelf or island shelf".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.EDGU".freeze, prefLabel: "shelf edge".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.ESCU", definition: "an elongated and comparatively steep slope separating flat or gently sloping areas".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.ESCU".freeze, prefLabel: "escarpment (or scarp)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.FANU", definition: "a relatively smooth feature normally sloping away from the lower termination of a canyon or canyon system".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.FANU".freeze, prefLabel: "fan".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.FLTU", definition: "a small level or nearly level area".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.FLTU".freeze, prefLabel: "flat".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.FRKU", definition: "a branch of a canyon or valley".freeze, - inScheme: "geonames:U".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.FRKU".freeze, - "owl:deprecated": "true".freeze, prefLabel: "fork".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.FRSU", definition: "a branch of a canyon or valley".freeze, - inScheme: "geonames:U".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.FRSU".freeze, - "owl:deprecated": "true".freeze, prefLabel: "forks".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.FRZU", definition: "an extensive linear zone of irregular topography of the sea floor, characterized by steep-sided or asymmetrical ridges, troughs, or escarpments".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.FRZU".freeze, prefLabel: "fracture zone".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.FURU", definition: "a closed, linear, narrow, shallow depression".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.FURU".freeze, prefLabel: "furrow".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.GAPU", definition: "a narrow break in a ridge or rise".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.GAPU".freeze, prefLabel: "gap".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.GLYU", definition: "a small valley-like feature".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.GLYU".freeze, prefLabel: "gully".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.HLLU", definition: "an elevation rising generally less than 500 meters".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.HLLU".freeze, prefLabel: "hill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.HLSU", definition: "elevations rising generally less than 500 meters".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.HLSU".freeze, prefLabel: "hills".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.HOLU", definition: "a small depression of the sea floor".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.HOLU".freeze, prefLabel: "hole".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.KNLU", definition: "an elevation rising generally more than 500 meters and less than 1,000 meters and of limited extent across the summit".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.KNLU".freeze, prefLabel: "knoll".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.KNSU", definition: "elevations rising generally more than 500 meters and less than 1,000 meters and of limited extent across the summits".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.KNSU".freeze, prefLabel: "knolls".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.LDGU", definition: "a rocky projection or outcrop, commonly linear and near shore".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.LDGU".freeze, prefLabel: "ledge".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.LEVU", definition: "an embankment bordering a canyon, valley, or seachannel".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.LEVU".freeze, prefLabel: "levee".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.MDVU", definition: "the axial depression of the mid-oceanic ridge system".freeze, - inScheme: "geonames:U".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.MDVU".freeze, - "owl:deprecated": "true".freeze, prefLabel: "median valley".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.MESU", definition: "an isolated, extensive, flat-topped elevation on the shelf, with relatively steep sides".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.MESU".freeze, prefLabel: "mesa".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.MNDU", definition: "a low, isolated, rounded hill".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.MNDU".freeze, prefLabel: "mound".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.MOTU", definition: "an annular depression that may not be continuous, located at the base of many seamounts, islands, and other isolated elevations".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.MOTU".freeze, prefLabel: "moat".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.MTSU", definition: "well-delineated subdivisions of a large and complex positive feature".freeze, - inScheme: "geonames:U".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.MTSU".freeze, - "owl:deprecated": "true".freeze, prefLabel: "mountains".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.MTU", definition: "a well-delineated subdivision of a large and complex positive feature".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.MTU".freeze, prefLabel: "mountain".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.PKSU", definition: "prominent elevations, part of a larger feature, either pointed or of very limited extent across the summit".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.PKSU".freeze, prefLabel: "peaks".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.PKU", definition: "a prominent elevation, part of a larger feature, either pointed or of very limited extent across the summit".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.PKU".freeze, prefLabel: "peak".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.PLFU", definition: "a flat or gently sloping underwater surface extending seaward from the shore".freeze, - inScheme: "geonames:U".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.PLFU".freeze, - "owl:deprecated": "true".freeze, prefLabel: "platform".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.PLNU", definition: "a flat, gently sloping or nearly level region".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.PLNU".freeze, prefLabel: "plain".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.PLTU", definition: "a comparatively flat-topped feature of considerable extent, dropping off abruptly on one or more sides".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.PLTU".freeze, prefLabel: "plateau".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.PNLU", definition: "a high tower or spire-shaped pillar of rock or coral, alone or cresting a summit".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.PNLU".freeze, prefLabel: "pinnacle".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.PRVU", definition: "a region identifiable by a group of similar physiographic features whose characteristics are markedly in contrast with surrounding areas".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.PRVU".freeze, prefLabel: "province".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.RAVU", definition: "a small canyon".freeze, - inScheme: "geonames:U".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.RAVU".freeze, - "owl:deprecated": "true".freeze, prefLabel: "ravine".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.RDGU", definition: "a long narrow elevation with steep sides".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.RDGU".freeze, prefLabel: "ridge".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.RDSU", definition: "long narrow elevations with steep sides".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.RDSU".freeze, prefLabel: "ridges".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.RFSU", definition: "surface-navigation hazards composed of consolidated material".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.RFSU".freeze, prefLabel: "reefs".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.RFU", definition: "a surface-navigation hazard composed of consolidated material".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.RFU".freeze, prefLabel: "reef".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.RISU", definition: "a broad elevation that rises gently, and generally smoothly, from the sea floor".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.RISU".freeze, prefLabel: "rise".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.RMPU", definition: "a gentle slope connecting areas of different elevations".freeze, - inScheme: "geonames:U".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.RMPU".freeze, - "owl:deprecated": "true".freeze, prefLabel: "ramp".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.RNGU", definition: "a series of associated ridges or seamounts".freeze, - inScheme: "geonames:U".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.RNGU".freeze, - "owl:deprecated": "true".freeze, prefLabel: "range".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SCNU", definition: "a continuously sloping, elongated depression commonly found in fans or plains and customarily bordered by levees on one or two sides".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SCNU".freeze, prefLabel: "seachannel".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SCSU", definition: "continuously sloping, elongated depressions commonly found in fans or plains and customarily bordered by levees on one or two sides".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SCSU".freeze, prefLabel: "seachannels".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SDLU", definition: "a low part, resembling in shape a saddle, in a ridge or between contiguous seamounts".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SDLU".freeze, prefLabel: "saddle".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SHFU", definition: "a zone adjacent to a continent (or around an island) that extends from the low water line to a depth at which there is usually a marked increase of slope towards oceanic depths".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SHFU".freeze, prefLabel: "shelf".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SHLU", definition: "a surface-navigation hazard composed of unconsolidated material".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SHLU".freeze, prefLabel: "shoal".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SHSU", definition: "hazards to surface navigation composed of unconsolidated material".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SHSU".freeze, prefLabel: "shoals".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SHVU", definition: "a valley on the shelf, generally the shoreward extension of a canyon".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SHVU".freeze, prefLabel: "shelf valley".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SILU", definition: "the low part of a gap or saddle separating basins".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SILU".freeze, prefLabel: "sill".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SLPU", definition: "the slope seaward from the shelf edge to the beginning of a continental rise or the point where there is a general reduction in slope".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SLPU".freeze, prefLabel: "slope".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SMSU", definition: "elevations rising generally more than 1,000 meters and of limited extent across the summit".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SMSU".freeze, prefLabel: "seamounts".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SMU", definition: "an elevation rising generally more than 1,000 meters and of limited extent across the summit".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SMU".freeze, prefLabel: "seamount".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.SPRU", definition: "a subordinate elevation, ridge, or rise projecting outward from a larger feature".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.SPRU".freeze, prefLabel: "spur".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.TERU", definition: "a relatively flat horizontal or gently inclined surface, sometimes long and narrow, which is bounded by a steeper ascending slope on one side and by a steep descending slope on the opposite side".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.TERU".freeze, prefLabel: "terrace".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.TMSU", definition: "seamounts having a comparatively smooth, flat top".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.TMSU".freeze, prefLabel: "tablemounts (or guyots)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.TMTU", definition: "a seamount having a comparatively smooth, flat top".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.TMTU".freeze, prefLabel: "tablemount (or guyot)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.TNGU", definition: "an elongate (tongue-like) extension of a flat sea floor into an adjacent higher feature".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.TNGU".freeze, prefLabel: "tongue".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.TRGU", definition: "a long depression of the sea floor characteristically flat bottomed and steep sided, and normally shallower than a trench".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.TRGU".freeze, prefLabel: "trough".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.TRNU", definition: "a long, narrow, characteristically very deep and asymmetrical depression of the sea floor, with relatively steep sides".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.TRNU".freeze, prefLabel: "trench".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.VALU", definition: "a relatively shallow, wide depression, the bottom of which usually has a continuous gradient".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.VALU".freeze, prefLabel: "valley".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"U.VLSU", definition: "a relatively shallow, wide depression, the bottom of which usually has a continuous gradient".freeze, - inScheme: "geonames:U".freeze, + inScheme: "http://www.geonames.org/ontology#U".freeze, notation: "U.VLSU".freeze, prefLabel: "valleys".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.BUSH", definition: "a small clump of conspicuous bushes in an otherwise bare area".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.BUSH".freeze, prefLabel: "bush(es)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.CULT", definition: "an area under cultivation".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.CULT".freeze, prefLabel: "cultivated area".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.FRST", definition: "an area dominated by tree vegetation".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.FRST".freeze, prefLabel: "forest(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.FRSTF", definition: "a forest fossilized by geologic processes and now exposed at the earth's surface".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.FRSTF".freeze, prefLabel: "fossilized forest".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.GRSLD", definition: "an area dominated by grass vegetation".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.GRSLD".freeze, prefLabel: "grassland".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.GRVC", definition: "a planting of coconut trees".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.GRVC".freeze, prefLabel: "coconut grove".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.GRVO", definition: "a planting of olive trees".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.GRVO".freeze, prefLabel: "olive grove".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.GRVP", definition: "a planting of palm trees".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.GRVP".freeze, prefLabel: "palm grove".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.GRVPN", definition: "a planting of pine trees".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.GRVPN".freeze, prefLabel: "pine grove".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.HTH", definition: "an upland moor or sandy area dominated by low shrubby vegetation including heather".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.HTH".freeze, prefLabel: "heath".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.MDW", definition: "a small, poorly drained area dominated by grassy vegetation".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.MDW".freeze, prefLabel: "meadow".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.OCH", definition: "a planting of fruit or nut trees".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.OCH".freeze, prefLabel: "orchard(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.SCRB", definition: "an area of low trees, bushes, and shrubs stunted by some environmental limitation".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.SCRB".freeze, prefLabel: "scrubland".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.TREE", definition: "a conspicuous tree used as a landmark".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.TREE".freeze, prefLabel: "tree(s)".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.TUND", definition: "a marshy, treeless, high latitude plain, dominated by mosses, lichens, and low shrub vegetation under permafrost conditions".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.TUND".freeze, prefLabel: "tundra".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.VIN", definition: "a planting of grapevines".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.VIN".freeze, prefLabel: "vineyard".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze term :"V.VINS", definition: "plantings of grapevines".freeze, - inScheme: "geonames:V".freeze, + inScheme: "http://www.geonames.org/ontology#V".freeze, notation: "V.VINS".freeze, prefLabel: "vineyards".freeze, - type: "geonames:Code".freeze + type: "http://www.geonames.org/ontology#Code".freeze end end diff --git a/lib/rdf/vocab/gr.rb b/lib/rdf/vocab/gr.rb index 13c5ad1..24fa035 100644 --- a/lib/rdf/vocab/gr.rb +++ b/lib/rdf/vocab/gr.rb @@ -3,2270 +3,1382 @@ # This file generated automatically using rdf vocabulary format from http://purl.org/goodrelations/v1# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The GoodRelations Vocabulary for Semantic Web-based E-Commerce - # # - # # GoodRelations Ontology - # # - # # The GoodRelations ontology provides the vocabulary for annotating e-commerce offerings (1) to sell, lease, repair, dispose, or maintain commodity products and (2) to provide commodity services. GoodRelations allows describing the relationship between (1) Web resources, (2) offerings made by those Web resources, (3) legal entities, (4) prices, (5) terms and conditions, and the aforementioned ontologies for products and services (6). For more information, see http://purl.org/goodrelations/ Note: The base URI of GoodRelations is http://purl.org/goodrelations/v1. Please make sure you are only using element identifiers in this namespace, e.g. http://purl.org/goodrelations/v1#BusinessEntity. There may be copies of the ontology file on the Web which can be retrieved from other locations, BUT THOSE LOCATIONS MUST NOT BE USED AS THE BASIS OF IDENTIFIERS. If you use GoodRelations for scientific purposes, please cite our paper: Hepp, Martin: GoodRelations: An Ontology for Describing Products and Services Offers on the Web, Proceedings of the 16th International Conference on Knowledge Engineering and Knowledge Management (EKAW2008), September 29 - October 3, 2008, Acitrezza, Italy, Springer LNCS, Vol. 5268, pp. 332-347. PDF at http://www.heppnetz.de/publications/ - # # @version V 1.0, Release 2011-10-01 - # class GR < RDF::StrictVocabulary - # # DEPRECATED - This class is superseded by gr:Individual. Replace all occurrences of gr:ActualProductOrServiceInstance by gr:Individual, if possible. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActualProductOrServiceInstance - # - # # A brand is the identity of a specific product, service, or business. Use foaf:logo for attaching a brand logo and gr:name or rdfs:label for attaching the brand name. (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Brand) - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brand - # - # # An instance of this class represents the legal agent making (or seeking) a particular offering. This can be a legal body or a person. A business entity has at least a primary mailing address and contact details. For this, typical address standards (vCard) and location data (geo, WGS84) can be attached. Note that the location of the business entity is not necessarily the location from which the product or service is being available (e.g. the branch or store). Use gr:Location for stores and branches. Example: Siemens Austria AG, Volkswagen Ltd., Peter Miller's Cell phone Shop LLC Compatibility with schema.org: This class is equivalent to the union of http://schema.org/Person and http://schema.org/Organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessEntity - # - # # A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of a gr:BusinessEntity. From the ontological point of view, business entity types are mostly roles that a business entity has in the market. Business entity types are important for specifying eligible customers, since a gr:Offering is often valid only for business entities of a certain size, legal structure, or role in the value chain. Examples: Consumers, Retailers, Wholesalers, or Public Institutions - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessEntityType - # - # # The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the gr:BusinessEntity on the gr:ProductOrService through the gr:Offering. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Licenses and other proprietary specifications of access rights are also instances of this class. Examples: A particular offering made by Miller Rentals Ltd. says that they (1) sell Volkswagen Golf convertibles, (2) lease out a particular Ford pick-up truck, and (3) dispose car wrecks of any make and model. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessFunction - # - # # The day of the week, used to specify to which day the opening hours of a gr:OpeningHoursSpecification refer. Examples: Monday, Tuesday, Wednesday,... - # # @return [RDF::Vocabulary::Term] - # attr_reader :DayOfWeek - # - # # A delivery charge specification is a conceptual entity that specifies the additional costs asked for the delivery of a given gr:Offering using a particular gr:DeliveryMethod by the respective gr:BusinessEntity. A delivery charge specification is characterized by (1) a monetary amount per order, specified as a literal value of type float in combination with a currency, (2) the delivery method, (3) the target country or region, and (4) whether this charge includes local sales taxes, namely VAT. A gr:Offering may be linked to multiple gr:DeliveryChargeSpecification nodes that specify alternative charges for disjoint combinations of target countries or regions, and delivery methods. Examples: Delivery by direct download is free of charge worldwide, delivery by UPS to Germany is 10 Euros per order, delivery by mail within the US is 5 Euros per order. The total amount of this charge is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded property. The gr:DeliveryMethod to which this charge applies is specified using the gr:appliesToDeliveryMethod object property. The region or regions to which this charge applies is specified using the gr:eligibleRegions property, which uses ISO 3166-1 and ISO 3166-2 codes. If the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds. Important: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryChargeSpecification - # - # # A delivery method is a standardized procedure for transferring the product or service to the destination of fulfilment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending gr:BusinessEntity (this is important, since the contracted party may subcontract the fulfilment to smaller, regional businesses). Examples: Delivery by mail, delivery by direct download, delivery by UPS - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryMethod - # - # # A private parcel service as the delivery mode available for a certain offering. Examples: UPS, DHL - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryModeParcelService - # - # # A gr:Individual is an actual product or service instance, i.e., a single identifiable object or action that creates some increase in utility (in the economic sense) for the individual possessing or using this very object (product) or for the individual in whose favor this very action is being taken (service). Products or services are types of goods in the economic sense. For an overview of goods and commodities in economics, see Milgate (1987). Examples: MyThinkpad T60, the pint of beer standing in front of me, my Volkswagen Golf, the haircut that I received or will be receiving at a given date and time. Note 1: In many cases, product or service instances are not explicitly exposed on the Web but only claimed to exist (i.e. existentially quantified). In this case, use gr:SomeItems. Note 2: This class is the new, shorter form of the former gr:ActualProductOrServiceInstance. Compatibility with schema.org: This class is a subclass of http://schema.org/Product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Individual - # - # # A license is the specification of a bundle of rights that determines the type of activity or access offered by the gr:BusinessEntity on the gr:ProductOrService through the gr:Offering. Licenses can be standardized (e.g. LPGL, Creative Commons, ...), vendor-specific, or individually defined for a single offer or product. Whether there is a fee for obtaining the license is specified using the gr:UnitPriceSpecification attached to the gr:Offering. Use foaf:page for linking to a document containing the license, e.g. in PDF or HTML. - # # @return [RDF::Vocabulary::Term] - # attr_reader :License - # - # # A location is a point or area of interest from which a particular product or service is available, e.g. a store, a bus stop, a gas station, or a ticket booth. The difference to gr:BusinessEntity is that the gr:BusinessEntity is the legal entity (e.g. a person or corporation) making the offer, while gr:Location is the store, office, or place. A chain restaurant will e.g. have one legal entity but multiple restaurant locations. Locations are characterized by an address or geographical position and a set of opening hour specifications for various days of the week. Example: A rental car company may offer the Business Function Lease Out of cars from two locations, one in Fort Myers, Florida, and one in Boston, Massachussetts. Both stations are open 7:00 - 23:00 Mondays through Saturdays. Note: Typical address standards (vcard) and location data (geo, WGC84) should be attached to a gr:Location node. Since there already exist established vocabularies for this, the GoodRelations ontology does not provide respective attributes. Instead, the use of respective vocabularies is recommended. However, the gr:hasGlobalLocationNumber property is provided for linking to public identifiers for business locations. Compatibility with schema.org: This class is equivalent to http://schema.org/Place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Location - # - # # DEPRECATED - This class is superseded by gr:Location. Replace all occurrences of gr:LocationOfSalesOrServiceProvisioning by gr:Location, if possible. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LocationOfSalesOrServiceProvisioning - # - # # An offering represents the public, not necessarily binding, not necessarily exclusive, announcement by a gr:BusinessEntity to provide (or seek) a certain gr:BusinessFunction for a certain gr:ProductOrService to a specified target audience. An offering is specified by the type of product or service or bundle it refers to, what business function is being offered (sales, rental, ...), and a set of commercial properties. It can either refer to (1) a clearly specified instance (gr:Individual), (2) to a set of anonymous instances of a given type (gr:SomeItems), (3) a product model specification (gr:ProductOrServiceModel), see also section 3.3.3 of the GoodRelations Technical Report. An offering may be constrained in terms of the eligible type of business partner, countries, quantities, and other commercial properties. The definition of the commercial properties, the type of product offered, and the business function are explained in other parts of this vocabulary in more detail. Example: Peter Miller offers to repair TV sets made by Siemens, Volkswagen Innsbruck sells a particular instance of a Volkswagen Golf at $10,000. Compatibility with schema.org: This class is a superclass to http://schema.org/Offer, since gr:Offering can also represent demand. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Offering - # - # # This is a conceptual entity that holds together all information about the opening hours on a given day (gr:DayOfWeek). - # # @return [RDF::Vocabulary::Term] - # attr_reader :OpeningHoursSpecification - # - # # A payment charge specification is a conceptual entity that specifies the additional costs asked for settling the payment after accepting a given gr:Offering using a particular gr:PaymentMethod. A payment charge specification is characterized by (1) a monetary amount per order specified as a literal value of type float in combination with a Currency, (2) the payment method, and (3) a whether this charge includes local sales taxes, namely VAT. A gr:Offering may be linked to multiple payment charge specifications that specify alternative charges for various payment methods. Examples: Payment by VISA or Mastercard costs a fee of 3 Euros including VAT, payment by bank transfer in advance is free of charge. The total amount of this surcharge is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded datatype property. The gr:PaymentMethod to which this charge applies is specified using the gr:appliesToPaymentMethod object property. If the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds. Important: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentChargeSpecification - # - # # A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction. This element is mostly used for specifying the types of payment accepted by a gr:BusinessEntity. Examples: VISA, MasterCard, Diners, cash, or bank transfer in advance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentMethod - # - # # The subclass of gr:PaymentMethod represents all variants and brands of credit or debit cards as a standardized procedure for transferring the monetary amount for a purchase. It is mostly used for specifying the types of payment accepted by a gr:Business Entity. Examples: VISA, MasterCard, or American Express. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentMethodCreditCard - # - # # The superclass of all price specifications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PriceSpecification - # - # # The superclass of all classes describing products or services types, either by nature or purpose. Examples for such subclasses are "TV set", "vacuum cleaner", etc. An instance of this class can be either an actual product or service (gr:Individual), a placeholder instance for unknown instances of a mass-produced commodity (gr:SomeItems), or a model / prototype specification (gr:ProductOrServiceModel). When in doubt, use gr:SomeItems. Examples: a) MyCellphone123, i.e. my personal, tangible cell phone (gr:Individual) b) Siemens1234, i.e. the Siemens cell phone make and model 1234 (gr:ProductOrServiceModel) c) dummyCellPhone123 as a placeholder for actual instances of a certain kind of cell phones (gr:SomeItems) Note: Your first choice for specializations of gr:ProductOrService should be http://www.productontology.org. Compatibility with schema.org: This class is (approximately) equivalent to http://schema.org/Product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductOrService - # - # # A product or service model is a intangible entity that specifies some characteristics of a group of similar, usually mass-produced products, in the sense of a prototype. In case of mass-produced products, there exists a relation gr:hasMakeAndModel between the actual product or service (gr:Individual or gr:SomeItems) and the prototype (gr:ProductOrServiceModel). GoodRelations treats product or service models as "prototypes" instead of a completely separate kind of entities, because this allows using the same domain-specific properties (e.g. gr:weight) for describing makes and models and for describing actual products. Examples: Ford T, Volkswagen Golf, Sony Ericsson W123 cell phone Note: An actual product or service (gr:Individual) by default shares the features of its model (e.g. the weight). However, this requires non-standard reasoning. See http://wiki.goodrelations-vocabulary.org/Axioms for respective rule sets. Compatibility with schema.org: This class is (approximately) a subclass of http://schema.org/Product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductOrServiceModel - # - # # DEPRECATED - This class is superseded by gr:SomeItems. Replace all occurrences of gr:ProductOrServicesSomeInstancesPlaceholder by gr:SomeItems, if possible. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductOrServicesSomeInstancesPlaceholder - # - # # A qualitative value is a predefined value for a product characteristic. Examples: the color "green" or the power cord plug type "US"; the garment sizes "S", "M", "L", and "XL". Note: Value sets are supported by creating subclasses of this class. Ordinal relations between values (gr:greater, gr:lesser, ...) are provided directly by GoodRelations. Compatibility with schema.org: This class is equivalent to http://schema.org/Enumeration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QualitativeValue - # - # # A quantitative value is a numerical interval that represents the range of a certain gr:quantitativeProductOrServiceProperty in terms of the lower and upper bounds for a particular gr:ProductOrService. It is to be interpreted in combination with the respective unit of measurement. Most quantitative values are intervals even if they are in practice often treated as a single point value. Example: a weight between 10 and 25 kilogramms, a length between 10 and 15 milimeters. Compatibility with schema.org: This class is equivalent to http://schema.org/Quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuantitativeValue - # - # # An instance of this class is an actual float value for a quantitative property of a product. This instance is usually characterized by a minimal value, a maximal value, and a unit of measurement. Examples: The intervals "between 10.0 and 25.4 kilogramms" or "10.2 and 15.5 milimeters". Compatibility with schema.org: This class is a subclass of http://schema.org/Quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuantitativeValueFloat - # - # # An instance of this class is an actual integer value for a quantitative property of a product. This instance is usually characterized by a minimal value, a maximal value, and a unit of measurement. Example: A seating capacity between 1 and 8 persons. Note: Users must keep in mind that ranges in here mean that ALL possible values in this interval are covered. (Sometimes, the actual commitment may be less than that: "We sell cars from 2 - 12 seats" does often not really mean that they have cars with 2,3,4,...12 seats.). Someone renting out two types of rowing boats, one that fits for 1 or 2 people, and another that must be operated by 4 people cannot claim to rent boats with a seating capacity between 1 and 4 people. He or she is offering two boat types for 1-2 and 4 persons. Compatibility with schema.org: This class is a subclass of http://schema.org/Quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuantitativeValueInteger - # - # # A placeholder instance for unknown instances of a mass-produced commodity. This is used as a computationally cheap work-around for such instances that are not individually exposed on the Web but just stated to exist (i.e., which are existentially quantified). Example: An instance of this class can represent an anonymous set of green Siemens1234 phones. It is different from the gr:ProductOrServiceModel Siemens1234, since this refers to the make and model, and it is different from a particular instance of this make and model (e.g. my individual phone) since the latter can be sold only once. Note: This class is the new, shorter form of the former gr:ProductOrServicesSomeInstancesPlaceholder. Compatibility with schema.org: This class is (approximately) a subclass of http://schema.org/Product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SomeItems - # - # # This class collates all the information about a gr:ProductOrService included in a bundle. If a gr:Offering contains just one item, you can directly link from the gr:Offering to the gr:ProductOrService using gr:includes. If the offering contains multiple items, use an instance of this class for each component to indicate the quantity, unit of measurement, and type of product, and link from the gr:Offering via gr:includesObject. Example: An offering may include of 100g of Butter and 1 kg of potatoes, or 1 cell phone and 2 headsets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TypeAndQuantityNode - # - # # A unit price specification is a conceptual entity that specifies the price asked for a given gr:Offering by the respective gr:Business Entity. An offering may be linked to multiple unit price specifications that specify alternative prices for non-overlapping sets of conditions (e.g. quantities or sales regions) or with differing validity periods. A unit price specification is characterized by (1) the lower and upper limits and the unit of measurement of the eligible quantity, (2) by a monetary amount per unit of the product or service, and (3) whether this prices includes local sales taxes, namely VAT. Example: The price, including VAT, for 1 kg of a given material is 5 Euros per kg for 0 - 5 kg and 4 Euros for quantities above 5 kg. The eligible quantity interval for a given price is specified using the object property gr:hasEligibleQuantity, which points to an instance of gr:QuantitativeValue. The currency is specified using the gr:hasCurrency property, which points to an ISO 4217 currency code. The unit of measurement for the eligible quantity is specified using the gr:hasUnitOfMeasurement datatype property, which points to an UN/CEFACT Common Code (3 characters). In most cases, the appropriate unit of measurement is the UN/CEFACT Common Code "C62" for "Unit or piece", since a gr:Offering is defined by the quantity and unit of measurement of all items included (e.g. "1 kg of bananas plus a 2 kg of apples"). As long at the offering consists of only one item, it is also possible to use an unit of measurement of choice for specifying the price per unit. For bundles, however, only "C62" for "Unit or piece" is a valid unit of measurement. You can assume that the price is given per unit or piece if there is no gr:hasUnitOfMeasurement property attached to the price. Whether VAT and sales taxes are included in this price is specified using the property gr:valueAddedTaxIncluded (xsd:boolean). The price per unit of measurement is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded datatype property. The property priceType can be used to indicate that the price is a retail price recommendation only (i.e. a list price). If the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds. Important: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue. Note 1: Due to the complexity of pricing scenarios in various industries, it may be necessary to create extensions of this fundamental model of price specifications. Such can be done easily by importing and refining the GoodRelations ontology. Note 2: For Google, attaching a gr:validThrough statement to a gr:UnitPriceSpecification is mandatory. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UnitPriceSpecification - # - # # This is a conceptual entity that holds together all aspects of the n-ary relation gr:hasWarrantyPromise. A Warranty promise is an entity 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 the gr:ProductOrService. A warranty promise is characterized by its temporal duration (usually starting with the date of purchase) and its gr:WarrantyScope. The warranty scope represents the types of services provided (e.g. labor and parts, just parts) of the warranty included in an gr:Offering. The actual services may be provided by the gr:BusinessEntity making the offering, by the manufacturer of the product, or by a third party. There may be multiple warranty promises associated with a particular offering, which differ in duration and scope (e.g. pick-up service during the first 12 months, just parts and labor for 36 months). Examples: 12 months parts and labor, 36 months parts - # # @return [RDF::Vocabulary::Term] - # attr_reader :WarrantyPromise - # - # # The warranty scope represents types of services that will be provided free of charge by the vendor or manufacturer in the case of a defect (e.g. labor and parts, just parts), as part of the warranty included in an gr:Offering. The actual services may be provided by the gr:BusinessEntity making the offering, by the manufacturer of the product, or by a third party. Examples: Parts and Labor, Parts - # # @return [RDF::Vocabulary::Term] - # attr_reader :WarrantyScope - # - # # The gr:PaymentMethod or methods accepted by the gr:BusinessEntity for the given gr:Offering. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedPaymentMethods - # - # # This property points from a gr:Offering to additional offerings that can only be obtained in combination with the first offering. This can be used to model supplements and extensions that are available for a surcharge. Any gr:PriceSpecification attached to the secondary offering is to be understood as an additional charge. - # # @return [RDF::Vocabulary::Term] - # attr_reader :addOn - # - # # The minimal and maximal amount of time that is required between accepting the gr:Offering and the actual usage of the resource or service. This is mostly relevant for offers regarding hotel rooms, the rental of objects, or the provisioning of services. The duration is specified relatively to the beginning of the usage of the contracted object. It is represented by attaching an instance of the class gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes). The difference to the gr:validFrom and gr:validThrough properties is that those specify the interval during which the gr:Offering is valid, while gr:advanceBookingRequirement specifies the acceptable relative amount of time between accepting the offer and the fulfilment or usage. - # # @return [RDF::Vocabulary::Term] - # attr_reader :advanceBookingRequirement - # - # # This property specifies the quantity of the goods included in the gr:Offering via this gr:TypeAndQuantityNode. The quantity is given in the unit of measurement attached to the gr:TypeAndQuantityNode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :amountOfThisGood - # - # # This property specifies the gr:DeliveryMethod to which the gr:DeliveryChargeSpecification applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appliesToDeliveryMethod - # - # # This property specifies the gr:PaymentMethod to which the gr:PaymentChargeSpecification applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appliesToPaymentMethod - # - # # This property specifies the end of the availability of the gr:ProductOrService included in the gr:Offering. The difference to the properties gr:validFrom and gr:validThrough is that those specify the period of time during which the offer is valid and can be accepted. Example: I offer to lease my boat for the period of August 1 - August 31, 2010, but you must accept by offer no later than July 15. A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time: 2008-05-30T09:30:10Z. Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time: 2008-05-30T09:30:10-09:00 or 2008-05-30T09:30:10+09:00. Note: There is another property gr:availableAtOrFrom, which is used to indicate the gr:Location (e.g. store or shop) from which the goods would be available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availabilityEnds - # - # # This property specifies the beginning of the availability of the gr:ProductOrService included in the gr:Offering. The difference to the properties gr:validFrom and gr:validThrough is that those specify the period of time during which the offer is valid and can be accepted. Example: I offer to lease my boat for the period of August 1 - August 31, 2010, but you must accept by offer no later than July 15. A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time: 2008-05-30T09:30:10Z. Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time: 2008-05-30T09:30:10-09:00 or 2008-05-30T09:30:10+09:00. Note: There is another property gr:availableAtOrFrom, which is used to indicate the gr:Location (e.g. store or shop) from which the goods would be available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availabilityStarts - # - # # This states that a particular gr:Offering is available at or from the given gr:Location (e.g. shop or branch). - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableAtOrFrom - # - # # This specifies the gr:DeliveryMethod or methods available for a given gr:Offering. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableDeliveryMethods - # - # # 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 UN/CEFACT code attached to the gr:UnitPriceSpecification via the gr:hasUnitOfMeasurement property. Examples: - The price for gasoline is 4 USD per gallon at the pump, but you will be charged in units of 0.1 gallons. - The price for legal consulting is 100 USD per hour, but you will be charged in units of 15 minutes. This property makes sense only for instances of gr:Offering that include not more than one type of good or service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingIncrement - # - # # The name of a category to which this gr:ProductOrService, gr:Offering, gr:BusinessEntity, or gr:Location belongs. Note 1: For products, it is better to add an rdf:type statement referring to a GoodRelations-compliant ontology for vertical industries instead, but if you just have a short text label, gr:category is simpler. Note 2: You can use greater signs or slashes to informally indicate a category hierarchy, e.g. "restaurants/asian_restaurants" or "cables > usb_cables" - # # @return [RDF::Vocabulary::Term] - # attr_reader :category - # - # # The closing hour of the gr:Location on the given gr:DayOfWeek. If no time-zone suffix is included, the time is given in the local time valid at the gr:Location. For a time in GMT/UTC, simply add a "Z" following the time: 09:30:10Z. Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time: 09:30:10-09:00 09:30:10+09:00. Note 1: Use 00:00:00 for the first second of the respective day and 23:59:59 for the last second of that day. Note 2: If a store opens at 17:00 on Saturdays and closes at 03:00:00 a.m. next morning, use two instances of this class, one with 17:00:00 - 23:59:59 for Saturday and another one with 00:00:00 - 03:00:00 for Sunday. Note 3: If the shop re-opens on the same day of the week or set of days of the week, you must create a second instance of gr:OpeningHoursSpecification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :closes - # - # # The color of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :color - # - # # A textual description of the condition of the product or service, or the products or services included in the offer (when attached to a gr:Offering) - # # @return [RDF::Vocabulary::Term] - # attr_reader :condition - # - # # This property is the super property for all pure datatype properties that can be used to describe a gr:ProductOrService. In products and services ontologies, only such properties that are no quantitative properties and that have no predefined gr:QualitativeValue instances are subproperties of this property. In practice, this refers to a few integer properties for which the integer value represents qualitative aspects, for string datatypes (as long as no predefined values exist), for boolean datatype properties, and for dates and times. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datatypeProductOrServiceProperty - # - # # This property can be used to indicate the promised delay between the receipt of the order and the goods leaving the warehouse. The duration is specified by attaching an instance of gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. A point value can be modeled with the gr:hasValueInteger property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes). - # # @return [RDF::Vocabulary::Term] - # attr_reader :deliveryLeadTime - # - # # The depth of the product. Typical unit code(s): CMT for centimeters, INH for inches - # # @return [RDF::Vocabulary::Term] - # attr_reader :depth - # - # # A short textual description of the resource. This property is semantically equivalent to rdfs:comment and just meant as a handy shortcut for marking up data. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # The position at which the option or element should be listed in a menu or user dialog, lower numbers come first. The main usage of this property are the days of the week (gr:DayOfWeek), but it is also possible to apply it e.g. to product features or any other conceptual element. Note: Rely on this property only for data originating from a single RDF graph; otherwise, unpredictable results are possible. - # # @return [RDF::Vocabulary::Term] - # attr_reader :displayPosition - # - # # This property specifies the duration of the gr:WarrantyPromise in months. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationOfWarrantyInMonths - # - # # The types of customers (gr:BusinessEntityType) for which the given gr:Offering is valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleCustomerTypes - # - # # The minimal and maximal duration for which the given gr:Offering or gr:License is valid. This is mostly used for offers regarding accommodation, the rental of objects, or software licenses. The duration is specified by attaching an instance of gr:QuantitativeValue. The lower and upper boundaries are specified using the properties gr:hasMinValue and gr:hasMaxValue to that instance. If they are the same, use the gr:hasValue property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes). The difference to the gr:validFrom and gr:validThrough properties is that those specify the absiolute interval during which the gr:Offering or gr:License is valid, while gr:eligibleDuration specifies the acceptable duration of the contract or usage. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleDuration - # - # # This property specifies the geo-political region or regions for which the gr:Offering, gr:License, or gr:DeliveryChargeSpecification is valid using the two-character version of ISO 3166-1 (ISO 3166-1 alpha-2) for regions or ISO 3166-2 , which breaks down the countries from ISO 3166-1 into administrative subdivisions. Important: Do NOT use 3-letter ISO 3166-1 codes! - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleRegions - # - # # This property can be used to indicate the transaction volume, in a monetary unit, for which the gr:Offering or gr:PriceSpecification is valid. This is mostly used to specify a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases above a certain amount. The object is a gr:PriceSpecification that uses the properties gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue to indicate the lower and upper boundaries and gr:hasCurrency to indicate the currency using the ISO 4217 standard (3 characters). - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleTransactionVolume - # - # # This ordering relation for qualitative values indicates that the subject is equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :equal - # - # # This ordering relation for qualitative values indicates that the subject is greater than the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :greater - # - # # This ordering relation for qualitative values indicates that the subject is greater than or equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :greaterOrEqual - # - # # This specifies the brand or brands (gr:Brand) associated with a gr:ProductOrService, or the brand or brands maintained by a gr:BusinessEntity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasBrand - # - # # This specifies the business function of the gr:Offering, i.e. whether the gr:BusinessEntity is offering to sell, to lease, or to repair the particular type of product. In the case of bundles, it is also possible to attach individual business functions to each gr:TypeAndQuantityNode. The business function of the main gr:Offering determines the business function for all included objects or services, unless a business function attached to a gr:TypeAndQuantityNode overrides it. Note: While it is possible that an entity is offering multiple types of business functions for the same set of objects (e.g. rental and sales), this should usually not be stated by attaching multiple business functions to the same gr:Offering, since the gr:UnitPriceSpecification for the varying business functions will typically be very different. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasBusinessFunction - # - # # The currency for all prices in the gr:PriceSpecification given using the ISO 4217 standard (3 characters). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCurrency - # - # # This property specifies the amount of money for a price per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc. For a gr:UnitPriceSpecification, this is the price for one unit or bundle (as specified in the unit of measurement of the unit price specification) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the price per delivery or payment. GoodRelations also supports giving price information as intervals only. If this is needed, use gr:hasMaxCurrencyValue for the upper bound and gr:hasMinCurrencyValue for the lower bound. Using gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCurrencyValue - # - # # The Dun & Bradstreet DUNS number for identifying a gr:BusinessEntity. The Dun & Bradstreet DUNS is a nine-digit number used to identify legal entities (but usually not branches or locations of logistical importance only). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDUNS - # - # # This specifies the interval and unit of measurement of ordering quantities for which the gr:Offering or gr:PriceSpecification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity. Note that if an offering is a bundle, i.e. it consists of more than one unit of a single type of good, or if the unit of measurement for the good is different from unit (Common Code C62), then gr:hasEligibleQuantity refers to units of this bundle. In other words, "C62" for "Units or pieces" is usually the appropriate unit of measurement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEligibleQuantity - # - # # The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective gr:BusinessEntity or gr:Location. The Global Location Number is a thirteen-digit number used to identify parties and physical locations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasGlobalLocationNumber - # - # # The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular gr:BusinessEntity or gr:Location. See http://unstats.un.org/unsd/cr/registry/isic-4.asp for more information. Note: While ISIC codes are sometimes misused for classifying products or services, they are designed and suited only for classifying business establishments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasISICv4 - # - # # This property specifies the current approximate inventory level for gr:SomeItems. The unit of measurement and the point value or interval are indicated using the attached gr:QuantitativeValueFloat instance. This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInventoryLevel - # - # # The Manufacturer Part Number or MPN is a unique identifier for a product, service, or bundle from the perspective of a particular manufacturer. MPNs can be assigned to products or product datasheets, or bundles. Accordingly, the domain of this property is the union of gr:ProductOrService (the common superclass of goods and datasheets), and gr:Offering. Important: Be careful when assuming two products or services instances or offering instances to be identical based on the MPN. Since MPNs are unique only for the same gr:BusinessEntity, this holds only when the two MPN values refer to the same gr:BusinessEntity. Such can be done by taking into account the provenance of the data. Usually, the properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more reliable identifiers, because they are globally unique. See also http://en.wikipedia.org/wiki/Part_number - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMPN - # - # # This states that an actual product instance (gr:Individual) or a placeholder instance for multiple, unidentified such instances (gr:SomeItems) is one occurence of a particular gr:ProductOrServiceModel. Example: myFordT hasMakeAndModel FordT. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMakeAndModel - # - # # This object property links a gr:ProductOrService to the gr:BusinessEntity that produces it. Mostly used with gr:ProductOrServiceModel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasManufacturer - # - # # This property specifies the UPPER BOUND of the amount of money for a price RANGE per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc. For a gr:UnitPriceSpecification, this is the UPPER BOUND for the price for one unit or bundle (as specified in the unit of measurement of the unit price specification) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the UPPER BOUND of the price per delivery or payment. Using gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMaxCurrencyValue - # - # # This property captures the upper limit of a gr:QuantitativeValue instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMaxValue - # - # # This property captures the upper limit of a gr:QuantitativeValueFloat instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMaxValueFloat - # - # # This property captures the upper limit of a gr:QuantitativeValueInteger instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMaxValueInteger - # - # # This property specifies the LOWER BOUND of the amount of money for a price RANGE per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc. For a gr:UnitPriceSpecification, this is the LOWER BOUND for the price for one unit or bundle (as specified in the unit of measurement of the unit price specification) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the LOWER BOUND of the price per delivery or payment. Using gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMinCurrencyValue - # - # # This property captures the lower limit of a gr:QuantitativeValue instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMinValue - # - # # This property captures the lower limit of a gr:QuantitativeValueFloat instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMinValueFloat - # - # # This property captures the lower limit of a gr:QuantitativeValueInteger instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMinValueInteger - # - # # The North American Industry Classification System (NAICS) code for a particular gr:BusinessEntity. See http://www.census.gov/eos/www/naics/ for more details. Note: While NAICS codes are sometimes misused for classifying products or services, they are designed and suited only for classifying business establishments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNAICS - # - # # This ordering relation for gr:DayOfWeek indicates that the subject is directly followed by the object. Example: Monday hasNext Tuesday Since days of the week are a cycle, this property is not transitive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNext - # - # # This specifies the gr:DayOfWeek to which the gr:OpeningHoursSpecification is related. Note: Use multiple instances of gr:OpeningHoursSpecification for specifying the opening hours for multiple days if the opening hours differ. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOpeningHoursDayOfWeek - # - # # This property links a gr:Location to a gr:OpeningHoursSpecification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOpeningHoursSpecification - # - # # This property states that the respective gr:Location is a point of sale for the respective gr:BusinessEntity. It allows linking those two types of entities without the need for a particular gr:Offering. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPOS - # - # # This ordering relation for gr:DayOfWeek indicates that the subject is directly preceeded by the object. Example: Tuesday hasPrevious Monday Since days of the week are a cycle, this property is not transitive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPrevious - # - # # This links a gr:Offering to a gr:PriceSpecification or specifications. There can be unit price specifications, payment charge specifications, and delivery charge specifications. For each type, multiple specifications for the same gr:Offering are possible, e.g. for different quantity ranges or for different currencies, or for different combinations of gr:DeliveryMethod and target destinations. Recommended retail prices etc. can be marked by the gr:priceType property of the gr:UnitPriceSpecification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPriceSpecification - # - # # The Stock Keeping Unit, or SKU is a unique identifier for a product, service, or bundle from the perspective of a particular supplier, i.e. SKUs are mostly assigned and serialized at the merchant level. Examples of SKUs are the ordering or parts numbers used by a particular Web shop or catalog. Consequently, the domain of gr:hasStockKeepingUnit is the union of the classes gr:Offering and gr:ProductOrService. If attached to a gr:Offering, the SKU will usually reflect a merchant-specific identifier, i.e. one valid only for that particular retailer or shop. If attached to a gr:ProductOrServiceModel, the SKU can reflect either the identifier used by the merchant or the part number used by the official manufacturer of that part. For the latter, gr:hasMPN is a better choice. Important: Be careful when assuming two products or services instances or offering instances to be identical based on the SKU. Since SKUs are unique only for the same gr:BusinessEntity, this can be assumed only when you are sure that the two SKU values refer to the same business entity. Such can be done by taking into account the provenance of the data. As long as instances of gr:Offering are concerned, you can also check that the offerings are being offered by the same gr:Business Entity. Usually, the properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more reliable identifiers, because they are globally unique. See also http://en.wikipedia.org/wiki/Stock_Keeping_Unit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStockKeepingUnit - # - # # The unit of measurement for a gr:QuantitativeValue, a gr:UnitPriceSpecification, or a gr:TypeAndQuantityNode given using the UN/CEFACT Common Code (3 characters). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasUnitOfMeasurement - # - # # This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValue are identical and have the respective value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasValue - # - # # This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueFloat are identical and have the respective float value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasValueFloat - # - # # This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueInteger are identical and have the respective integer value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasValueInteger - # - # # This specifies the gr:WarrantyPromise made by the gr:BusinessEntity for the given gr:Offering. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasWarrantyPromise - # - # # This states the gr:WarrantyScope of a given gr:WarrantyPromise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasWarrantyScope - # - # # The height of the product. Typical unit code(s): CMT for centimeters, INH for inches - # # @return [RDF::Vocabulary::Term] - # attr_reader :height - # - # # This object property is a shortcut for the original gr:includesObject property for the common case of having exactly one single gr:ProductOrService instance included in an Offering. When linking to an instance of gr:SomeItems or gr:Individual, it is equivalent to using a gr:TypeAndQuantityNode with gr:hasUnitOfMeasurement="C62"^^xsd:string and gr:amountOfThisGood="1.0"^^xsd:float for that good. When linking to a gr:ProductOrServiceModel, it is equivalent to 1. defining an blank node for a gr:SomeItems 2. linking that blank node via gr:hasMakeAndModel to the gr:ProductOrServiceModel, and 3. linking from the gr:Offering to that blank node using another blank node of type gr:TypeAndQuantityNode with gr:hasUnitOfMeasurement="C62"^^xsd:string and gr:amountOfThisGood="1.0"^^xsd:float for that good. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includes - # - # # This object property links a gr:Offering to one or multiple gr:TypeAndQuantityNode or nodes that specify the components that are included in the respective offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includesObject - # - # # This states that a particular gr:ProductOrService is an accessory or spare part for another product or service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAccessoryOrSparePartFor - # - # # This states that a particular gr:ProductOrService is a consumable for another product or service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isConsumableFor - # - # # This boolean attribute indicates whether a gr:UnitPriceSpecification is a list price (usually a vendor recommendation) or not. "true" indicates it is a list price, "false" indicates it is not. DEPRECATED. Use the gr:priceType property instead. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isListPrice - # - # # This states that a given gr:ProductOrService is similar to another product or service. Of course, this is a subjective statement; when interpreting it, the trust in the origin of the statement should be taken into account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSimilarTo - # - # # This states that a particular gr:ProductOrServiceModel is a variant of another product or service model. It is pretty safe to infer that the variant inherits all gr:quantitativeProductOrServiceProperty, gr:qualitativeProductOrServiceProperty, and gr:datatypeProductOrServiceProperty values that are defined for the first gr:ProductOrServiceModel. Example: foo:Red_Ford_T_Model gr:isVariantOf foo:Ford_T_Model - # # @return [RDF::Vocabulary::Term] - # attr_reader :isVariantOf - # - # # The legal name of the gr:BusinessEntity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalName - # - # # This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lesser - # - # # This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than or equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lesserOrEqual - # - # # A short text describing the respective resource. This property is semantically equivalent to dcterms:title and rdfs:label and just meant as a handy shortcut for marking up data. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # This ordering relation for gr:QualitativeValue pairs indicates that the subject is not equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nonEqual - # - # # This links a gr:BusinessEntity to the offers (gr:Offering) it makes. If you want to express interest in receiving offers, use gr:seeks instead. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offers - # - # # The opening hour of the gr:Location on the given gr:DayOfWeek. If no time-zone suffix is included, the time is given in the local time valid at the gr:Location. For a time in GMT/UTC, simply add a "Z" following the time: 09:30:10Z. Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time: 09:30:10-09:00 or 09:30:10+09:00. Note 1: Use 00:00:00 for the first second of the respective day and 23:59:59 for the last second of that day. Note 2: If a store opens at 17:00 on Saturdays and closes at 03:00:00 a.m. next morning, use 17:00:00 - 23:59:59 for Saturday and 00:00:00 - 03:00:00 for Sunday. Note 3: If the shop re-opens on the same day of the week or set of days of the week, you must create a second instance of gr:OpeningHoursSpecification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :opens - # - # # This property indicates that a particular person or business owns a particular product. It can be used to expose the products in one's posession in order to empower recommender systems to suggest matching offers. Note that the product must be an instance of the class gr:Individual. This property can also be safely applied to foaf:Agent instances. - # # @return [RDF::Vocabulary::Term] - # attr_reader :owns - # - # # This property indicates that the subject is a previous, often discontinued variant of the gr:ProductOrServiceModel used as the object. Example: Golf III predecessorOf Golf IV This relation is transitive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :predecessorOf - # - # # This attribute can be used to distinguish multiple different price specifications for the same gr:Offering. It supersedes the former gr:isListPrice property. The following values are recommended: The absence of this property marks the actual sales price. SRP: "suggested retail price" - applicable for all sorts of a non-binding retail price recommendations, e.g. such published by the manufacturer or the distributor. This value replaces the former gr:isListPrice property. INVOICE: The invoice price, mostly used in the car industry - this is the price a dealer pays to the manufacturer, excluding rebates and charges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceType - # - # # This is the super property of all qualitative properties for products and services. All properties in product or service ontologies for which gr:QualitativeValue instances are specified are subproperties of this property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualitativeProductOrServiceProperty - # - # # This is the super property of all quantitative properties for products and services. All properties in product or service ontologies that specify quantitative characteristics, for which an interval is at least theoretically an appropriate value, are subproperties of this property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :quantitativeProductOrServiceProperty - # - # # The URI of a SOAP or REST Web Service from which additional information about the gr:BusinessEntity, gr:Offering, gr:PriceSpecification, or gr:ProductOrService, or any other element, can be obtained. The recommended range is xsd:anyURI i.e., the URI of a SOAP or REST Web Service. In principle, any existing or upcoming vocabulary for Web Services can be used in combination with GoodRelations, because the association between (a) the service description and (b) the GoodRelations description can be found via the Web Service URI value used with this gr:relatedWebService property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedWebService - # - # # This links a gr:BusinessEntity to gr:Offering nodes that describe what the business entity is interested in (i.e., the buy side). If you want to express interest in offering something, use gr:offers instead. Note that this substitutes the former gr:BusinessFunction gr:Buy, which is now deprecated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seeks - # - # # The serial number or any alphanumeric identifier of a particular product. Note that serial number are unique only for the same brand or the same model, so you cannot infer from two occurrences of the same serial number that the objects to which they are attached are identical. This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serialNumber - # - # # This property indicates that the subject is a newer, often updated or improved variant of the gr:ProductOrServiceModel used as the object. Example: Golf III successorOf Golf II This relation is transitive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :successorOf - # - # # The Tax / Fiscal ID of the gr:BusinessEntity, e.g. the TIN in the US or the CIF/NIF in Spain. It is usually assigned by the country of residence - # # @return [RDF::Vocabulary::Term] - # attr_reader :taxID - # - # # This specifies the gr:ProductOrService that the gr:TypeAndQuantityNode is referring to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeOfGood - # - # # This property specifies the beginning of the validity of the gr:Offering, gr:PriceSpecification, gr:License, or gr:OpeningHoursSpecification. A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time: 2008-05-30T09:30:10Z. Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time: 2008-05-30T09:30:10-09:00 or 2008-05-30T09:30:10+09:00. Note: If multiple contradicting instances of a gr:Offering, gr:PriceSpecification, or gr:OpeningHoursSpecification exist, it is a good heuristics to assume that 1. Information with validity information for the respective period of time ranks higher than information without validity information. 2. Among conflicting nodes both having validity information, the one with the shorter validity span ranks higher. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validFrom - # - # # This property specifies the end of the validity of the gr:Offering, gr:PriceSpecification, gr:License, or gr:OpeningHoursSpecification. A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time: 2008-05-30T09:30:10Z. Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time: 2008-05-30T09:30:10-09:00 or 2008-05-30T09:30:10+09:00. Note 1: If multiple contradicting instances of a gr:Offering, gr:PriceSpecification, or gr:OpeningHoursSpecification exist, it is a good heuristics to assume that 1. Information with validity information for the respective period of time ranks higher than information without validity information. 2. Among conflicting nodes both having validity information, the one with the shorter validity span ranks higher. Note 2: For Google, attaching a gr:validThrough statement to a gr:UnitPriceSpecification is mandatory. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validThrough - # - # # This property specifies whether the applicable value-added tax (VAT) is included in the price of the gr:PriceSpecification or not. Note: This is a simple representation which may not properly reflect all details of local taxation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueAddedTaxIncluded - # - # # The superclass of properties that link a gr:QuantitativeValue or a gr:QualitativeValue to a second gr:QuantitativeValue or a gr:QualitativeValue that provides additional information on the original value. A good modeling practice is to define specializations of this property (e.g. foo:referenceTemperature) for your particular domain. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueReference - # - # # The Value-added Tax ID of the gr:BusinessEntity. See http://en.wikipedia.org/wiki/Value_added_tax_identification_number for details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vatID - # - # # The weight of the gr:ProductOrService. Typical unit code(s): GRM for gram, KGM for kilogram, LBR for pound - # # @return [RDF::Vocabulary::Term] - # attr_reader :weight - # - # # The width of the gr:ProductOrService. Typical unit code(s): CMT for centimeters, INH for inches - # # @return [RDF::Vocabulary::Term] - # attr_reader :width - # - # # Payment by credit or debit cards issued by the American Express network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmericanExpress - # - # # The gr:BusinessEntityType representing such agents that are themselves offering commercial services or products on the market. Usually, businesses are characterized by the fact that they are officially registered with the public administration and strive for profits by their activities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Business - # - # # This gr:BusinessFunction indicates that the gr:BusinessEntity is in general interested in purchasing the specified gr:ProductOrService. DEPRECATED. Use gr:seeks instead. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Buy - # - # # Payment by bank transfer in advance, i.e., the offering gr:BusinessEntity will inform the buying party about their bank account details and will deliver the goods upon receipt of the due amount. This is equivalent to payment by wire transfer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ByBankTransferInAdvance - # - # # Payment by bank transfer after delivery, i.e., the offering gr:BusinessEntity will deliver first, inform the buying party about the due amount and their bank account details, and expect payment shortly after delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ByInvoice - # - # # Collect on delivery / Cash on delivery - A payment method where the recipient of goods pays at the time of delivery. Usually, the amount of money is collected by the transportation company handling the goods. - # # @return [RDF::Vocabulary::Term] - # attr_reader :COD - # - # # Payment by cash upon delivery or pickup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cash - # - # # Payment by sending a check in advance, i.e., the offering gr:BusinessEntity will deliver the goods upon receipt of a check over the due amount. There are variations in handling payment by check - sometimes, shipment will be upon receipt of the check as a document, sometimes the shipment will take place only upon successful crediting of the check. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheckInAdvance - # - # # This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the construction and/or installation of the specified gr:ProductOrService at the customer's location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConstructionInstallation - # - # # Delivery via the parcel service DHL. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DHL - # - # # Delivery of the goods via direct download from the Internet, i.e., the offering gr:BusinessEntity provides the buying party with details on how to retrieve the goods online. Connection fees and other costs of using the infrastructure are to be carried by the buying party. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryModeDirectDownload - # - # # Delivery by an unspecified air, sea, or ground freight carrier or cargo company. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryModeFreight - # - # # Delivery via regular mail service (private or public postal services). - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryModeMail - # - # # Delivery of the goods by using a fleet of vehicles either owned and operated or subcontracted by the gr:BusinessEntity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryModeOwnFleet - # - # # Delivery of the goods by picking them up at one of the stores etc. (gr:Location) during the opening hours as specified by respective instances of gr:OpeningHoursSpecification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryModePickUp - # - # # Payment by credit or debit cards issued by the Diner's Club network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DinersClub - # - # # Payment by direct debit, i.e., the buying party will inform the offering gr:BusinessEntity about its bank account details and authorizes the gr:BusinessEntity to collect the agreed amount directly from that account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DirectDebit - # - # # Payment by credit or debit cards issued by the Discover network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Discover - # - # # This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the acceptance of the specified gr:ProductOrService for proper disposal, recycling, or any other kind of allowed usages, freeing the current owner from all rights and obligations of ownership. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dispose - # - # # The gr:BusinessEntityType representing such agents that are purchasing the good or service for private consumption, in particular not for resale or for usage within an industrial enterprise. By default, a Business Entity is an Enduser. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Enduser - # - # # Delivery via the parcel service Federal Express. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FederalExpress - # - # # Friday as a day of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Friday - # - # # Payment via the Google Checkout payment service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GoogleCheckout - # - # # Payment by credit or debit cards issued by the JCB network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JCB - # - # # This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the temporary right to use the specified gr:ProductOrService. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LeaseOut - # - # # This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) typical maintenance tasks for the specified gr:ProductOrService. Maintenance tasks are actions that undo or compensate for wear or other deterioriation caused by regular usage, in order to restore the originally intended function of the product, or to prevent outage or malfunction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Maintain - # - # # Payment by credit or debit cards issued by the MasterCard network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MasterCard - # - # # Monday as a day of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Monday - # - # # Payment via the PayPal payment service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PayPal - # - # # Payment via the PaySwarm distributed micropayment service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaySwarm - # - # # This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the respective type of service. Note: Maintain and Repair are also types of Services. However, products and services ontologies often provide classes for tangible products as well as for types of services. The business function gr:ProvideService is to be used with such goods that are services, while gr:Maintain and gr:Repair can be used with goods for which only the class of product exists in the ontology, but not the respective type of service. Example: Car maintenance could be expressed both as "provide the service car maintenance" or "maintain cars". - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProvideService - # - # # A placeholder for all official public holidays at the gr:Location. This allows specifying the opening hours on public holidays. If a given day is a public holiday, this specification supersedes the opening hours for the respective day of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicHolidays - # - # # The gr:BusinessEntityType representing such agents that are part of the adminstration or owned by the public. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicInstitution - # - # # This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the evaluation of the chances for repairing, and, if positive, repair of the specified gr:ProductOrService. Repairing means actions that restore the originally intended function of a product that suffers from outage or malfunction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Repair - # - # # The gr:BusinessEntityType representing such agents that are purchasing the scope of products included in the gr:Offering for resale on the market. Resellers are also businesses, i.e., they are officially registered with the public administration and strive for profits by their activities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Reseller - # - # # Saturday as a day of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Saturday - # - # # This gr:BusinessFunction indicates that the gr:BusinessEntity offers to permanently transfer all property rights on the specified gr:ProductOrService. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sell - # - # # Sunday as a day of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sunday - # - # # Thursday as a day of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thursday - # - # # Tuesday as a day of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tuesday - # - # # Delivery via the parcel service UPS. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UPS - # - # # Payment by credit or debit cards issued by the VISA network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VISA - # - # # Wednesday as a day of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Wednesday - # - # end GR = Class.new(RDF::StrictVocabulary("http://purl.org/goodrelations/v1#")) do # Ontology definition ontology :"http://purl.org/goodrelations/v1#", comment: "The GoodRelations ontology provides the vocabulary for annotating e-commerce offerings (1) to sell, lease, repair, dispose, or maintain commodity products and (2) to provide commodity services.\n\nGoodRelations allows describing the relationship between (1) Web resources, (2) offerings made by those Web resources, (3) legal entities, (4) prices, (5) terms and conditions, and the aforementioned ontologies for products and services (6).\n \nFor more information, see http://purl.org/goodrelations/\n\nNote: The base URI of GoodRelations is http://purl.org/goodrelations/v1. Please make sure you are only using element identifiers in this namespace, e.g. http://purl.org/goodrelations/v1#BusinessEntity. There may be copies of the ontology file on the Web which can be retrieved from other locations, BUT THOSE LOCATIONS MUST NOT BE USED AS THE BASIS OF IDENTIFIERS.\n\nIf you use GoodRelations for scientific purposes, please cite our paper:\n\nHepp, Martin: GoodRelations: An Ontology for Describing Products and Services Offers on the Web, Proceedings of the 16th International Conference on Knowledge Engineering and Knowledge Management (EKAW2008), September 29 - October 3, 2008, Acitrezza, Italy, Springer LNCS, Vol. 5268, pp. 332-347.\n\nPDF at http://www.heppnetz.de/publications/".freeze, - "dc11:contributor": "Work on the GoodRelations ontology and related research and development has been partly supported by the Austrian BMVIT/FFG under the FIT-IT Semantic Systems project myOntology (grant no. 812515/9284), by a Young Researcher's Grant (Nachwuchsfoerderung 2005-2006) from the Leopold-Franzens-Universitaet Innsbruck, by the European Commission under the project SUPER (FP6-026850), and by the German Federal Ministry of Research (BMBF) by a grant under the KMU Innovativ program as part of the Intelligent Match project (FKZ 01IS10022B). The".freeze, - "dc11:creator": "Martin Hepp".freeze, - "dc11:rights": "The GoodRelations ontology is available under the Creative Commons Attribution 3.0 Unported license; see http://creativecommons.org/licenses/by/3.0/. In a nutshell, you are free to copy, distribute and transmit the work; to remix/adapt the work (e.g. to import the ontology and create specializations of its elements), as long as you attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). Proper Attribution: Simply include the statement \"This work is based on the GoodRelations ontology, developed by Martin Hepp\" and link back to http://purl.org/goodrelations/".freeze, - "dc11:subject": "E-Commerce, E-Business, GoodRelations, Microdata, Ontology, Semantic SEO, RDFa, Linked Data, RDF, Semantic Web, Recommender Systems".freeze, - "dc11:title": "The GoodRelations Vocabulary for Semantic Web-based E-Commerce".freeze, - "dc:license": "http://creativecommons.org/licenses/by/3.0/".freeze, - "foaf:homepage": "http://purl.org/goodrelations/".freeze, + "http://purl.org/dc/elements/1.1/contributor": "Work on the GoodRelations ontology and related research and development has been partly supported by the Austrian BMVIT/FFG under the FIT-IT Semantic Systems project myOntology (grant no. 812515/9284), by a Young Researcher's Grant (Nachwuchsfoerderung 2005-2006) from the Leopold-Franzens-Universitaet Innsbruck, by the European Commission under the project SUPER (FP6-026850), and by the German Federal Ministry of Research (BMBF) by a grant under the KMU Innovativ program as part of the Intelligent Match project (FKZ 01IS10022B). The".freeze, + "http://purl.org/dc/elements/1.1/creator": "Martin Hepp".freeze, + "http://purl.org/dc/elements/1.1/rights": "The GoodRelations ontology is available under the Creative Commons Attribution 3.0 Unported license; see http://creativecommons.org/licenses/by/3.0/. In a nutshell, you are free to copy, distribute and transmit the work; to remix/adapt the work (e.g. to import the ontology and create specializations of its elements), as long as you attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). Proper Attribution: Simply include the statement \"This work is based on the GoodRelations ontology, developed by Martin Hepp\" and link back to http://purl.org/goodrelations/".freeze, + "http://purl.org/dc/elements/1.1/subject": "E-Commerce, E-Business, GoodRelations, Microdata, Ontology, Semantic SEO, RDFa, Linked Data, RDF, Semantic Web, Recommender Systems".freeze, + "http://purl.org/dc/elements/1.1/title": "The GoodRelations Vocabulary for Semantic Web-based E-Commerce".freeze, + "http://purl.org/dc/terms/license": "http://creativecommons.org/licenses/by/3.0/".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "V 1.0, Release 2011-10-01".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://purl.org/goodrelations/".freeze, label: "GoodRelations Ontology".freeze, - "owl:versionInfo": "V 1.0, Release 2011-10-01".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :ActualProductOrServiceInstance, comment: "DEPRECATED - This class is superseded by gr:Individual. Replace all occurrences of gr:ActualProductOrServiceInstance by gr:Individual, if possible.".freeze, - equivalentClass: "gr:Individual".freeze, + equivalentClass: "http://purl.org/goodrelations/v1#Individual".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Actual product or service instance (DEPRECATED)".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "gr:ProductOrService".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#ProductOrService".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Brand, comment: "A brand is the identity of a specific product, service, or business. Use foaf:logo for attaching a brand logo and gr:name or rdfs:label for attaching the brand name.\t\n\n(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Brand)".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Brand".freeze, - "owl:disjointWith": ["gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BusinessEntity, comment: "An instance of this class represents the legal agent making (or seeking) a particular offering. This can be a legal body or a person. A business entity has at least a primary mailing address and contact details. For this, typical address standards (vCard) and location data (geo, WGS84) can be attached. Note that the location of the business entity is not necessarily the location from which the product or service is being available (e.g. the branch or store). Use gr:Location for stores and branches.\n\t\t\nExample: Siemens Austria AG, Volkswagen Ltd., Peter Miller's Cell phone Shop LLC\n\nCompatibility with schema.org: This class is equivalent to the union of http://schema.org/Person and http://schema.org/Organization.\t\t\n".freeze, equivalentClass: term( - type: "owl:Class".freeze, - unionOf: list(term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - ), term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g23540".freeze, "_:g23580".freeze) ), + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Business entity".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BusinessEntityType, comment: "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of a gr:BusinessEntity. From the ontological point of view, business entity types are mostly roles that a business entity has in the market. Business entity types are important for specifying eligible customers, since a gr:Offering is often valid only for business entities of a certain size, legal structure, or role in the value chain. \n\nExamples: Consumers, Retailers, Wholesalers, or Public Institutions".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Business entity type".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BusinessFunction, comment: "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the gr:BusinessEntity on the gr:ProductOrService through the gr:Offering. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation.\n\nLicenses and other proprietary specifications of access rights are also instances of this class.\n\nExamples: A particular offering made by Miller Rentals Ltd. says that they (1) sell Volkswagen Golf convertibles, (2) lease out a particular Ford pick-up truck, and (3) dispose car wrecks of any make and model.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Business function".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DayOfWeek, comment: "The day of the week, used to specify to which day the opening hours of a gr:OpeningHoursSpecification refer.\n\nExamples: Monday, Tuesday, Wednesday,...".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Day of week".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DeliveryChargeSpecification, comment: "A delivery charge specification is a conceptual entity that specifies the additional costs asked for the delivery of a given gr:Offering using a particular gr:DeliveryMethod by the respective gr:BusinessEntity. A delivery charge specification is characterized by (1) a monetary amount per order, specified as a literal value of type float in combination with a currency, (2) the delivery method, (3) the target country or region, and (4) whether this charge includes local sales taxes, namely VAT.\nA gr:Offering may be linked to multiple gr:DeliveryChargeSpecification nodes that specify alternative charges for disjoint combinations of target countries or regions, and delivery methods.\n\nExamples: Delivery by direct download is free of charge worldwide, delivery by UPS to Germany is 10 Euros per order, delivery by mail within the US is 5 Euros per order.\n\nThe total amount of this charge is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded property. The gr:DeliveryMethod to which this charge applies is specified using the gr:appliesToDeliveryMethod object property. The region or regions to which this charge applies is specified using the gr:eligibleRegions property, which uses ISO 3166-1 and ISO 3166-2 codes.\n\nIf the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds.\n\nImportant: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#PaymentChargeSpecification".freeze, "http://purl.org/goodrelations/v1#UnitPriceSpecification".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Delivery charge specification".freeze, - "owl:disjointWith": ["gr:PaymentChargeSpecification".freeze, "gr:UnitPriceSpecification".freeze], - subClassOf: "gr:PriceSpecification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DeliveryMethod, comment: "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfilment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending gr:BusinessEntity (this is important, since the contracted party may subcontract the fulfilment to smaller, regional businesses).\n\nExamples: Delivery by mail, delivery by direct download, delivery by UPS".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Delivery method".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DeliveryModeParcelService, comment: "A private parcel service as the delivery mode available for a certain offering.\n\nExamples: UPS, DHL".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Delivery mode parcel service".freeze, - subClassOf: "gr:DeliveryMethod".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Individual, comment: "A gr:Individual is an actual product or service instance, i.e., a single identifiable object or action that creates some increase in utility (in the economic sense) for the individual possessing or using this very object (product) or for the individual in whose favor this very action is being taken (service). Products or services are types of goods in the economic sense. For an overview of goods and commodities in economics, see Milgate (1987).\n\nExamples: MyThinkpad T60, the pint of beer standing in front of me, my Volkswagen Golf, the haircut that I received or will be receiving at a given date and time.\n\nNote 1: In many cases, product or service instances are not explicitly exposed on the Web but only claimed to exist (i.e. existentially quantified). In this case, use gr:SomeItems.\nNote 2: This class is the new, shorter form of the former gr:ActualProductOrServiceInstance.\n\nCompatibility with schema.org: This class is a subclass of http://schema.org/Product.".freeze, - equivalentClass: "gr:ActualProductOrServiceInstance".freeze, + equivalentClass: "http://purl.org/goodrelations/v1#ActualProductOrServiceInstance".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, "http://purl.org/goodrelations/v1#SomeItems".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Individual".freeze, - "owl:disjointWith": ["gr:ProductOrServiceModel".freeze, "gr:SomeItems".freeze], - subClassOf: ["gr:ProductOrService".freeze, "schema:Product".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://schema.org/Product".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :License, comment: "A license is the specification of a bundle of rights that determines the type of activity or access offered by the gr:BusinessEntity on the gr:ProductOrService through the gr:Offering.\n\t\nLicenses can be standardized (e.g. LPGL, Creative Commons, ...), vendor-specific, or individually defined for a single offer or product. Whether there is a fee for obtaining the license is specified using the gr:UnitPriceSpecification attached to the gr:Offering. Use foaf:page for linking to a document containing the license, e.g. in PDF or HTML.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "License".freeze, - subClassOf: "gr:BusinessFunction".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#BusinessFunction".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Location, comment: "A location is a point or area of interest from which a particular product or service is available, e.g. a store, a bus stop, a gas station, or a ticket booth. The difference to gr:BusinessEntity is that the gr:BusinessEntity is the legal entity (e.g. a person or corporation) making the offer, while gr:Location is the store, office, or place. A chain restaurant will e.g. have one legal entity but multiple restaurant locations. Locations are characterized by an address or geographical position and a set of opening hour specifications for various days of the week.\n\t\t\nExample: A rental car company may offer the Business Function Lease Out of cars from two locations, one in Fort Myers, Florida, and one in Boston, Massachussetts. Both stations are open 7:00 - 23:00 Mondays through Saturdays.\n\nNote: Typical address standards (vcard) and location data (geo, WGC84) should be attached to a gr:Location node. Since there already exist established vocabularies for this, the GoodRelations ontology does not provide respective attributes. Instead, the use of respective vocabularies is recommended. However, the gr:hasGlobalLocationNumber property is provided for linking to public identifiers for business locations.\n\t\t\nCompatibility with schema.org: This class is equivalent to http://schema.org/Place.".freeze, - equivalentClass: "gr:LocationOfSalesOrServiceProvisioning".freeze, + equivalentClass: "http://purl.org/goodrelations/v1#LocationOfSalesOrServiceProvisioning".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Location".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LocationOfSalesOrServiceProvisioning, comment: "DEPRECATED - This class is superseded by gr:Location. Replace all occurrences of gr:LocationOfSalesOrServiceProvisioning by gr:Location, if possible.".freeze, - equivalentClass: "gr:Location".freeze, + equivalentClass: "http://purl.org/goodrelations/v1#Location".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Location of sales or service provisioning (DEPRECATED)".freeze, - "owl:deprecated": "true".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :"N-Ary-Relations", comment: "This is the superclass for all classes that are placeholders for n-ary relations, which OWL cannot represent.\nDEPRECATED. Do not use this class in data or queries.".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "N-ary relations (DEPRECATED)".freeze, - "owl:deprecated": "true".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Offering, comment: "An offering represents the public, not necessarily binding, not necessarily exclusive, announcement by a gr:BusinessEntity to provide (or seek) a certain gr:BusinessFunction for a certain gr:ProductOrService to a specified target audience. An offering is specified by the type of product or service or bundle it refers to, what business function is being offered (sales, rental, ...), and a set of commercial properties. It can either refer to \n(1) a clearly specified instance (gr:Individual),\n(2) to a set of anonymous instances of a given type (gr:SomeItems),\n(3) a product model specification (gr:ProductOrServiceModel), see also section 3.3.3 of the GoodRelations Technical Report. \n\nAn offering may be constrained in terms of the eligible type of business partner, countries, quantities, and other commercial properties. The definition of the commercial properties, the type of product offered, and the business function are explained in other parts of this vocabulary in more detail.\n\nExample: Peter Miller offers to repair TV sets made by Siemens, Volkswagen Innsbruck sells a particular instance of a Volkswagen Golf at $10,000.\n\nCompatibility with schema.org: This class is a superclass to http://schema.org/Offer, since gr:Offering can also represent demand.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QualitativeValue".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Offering".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QualitativeValue".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OpeningHoursSpecification, comment: "This is a conceptual entity that holds together all information about the opening hours on a given day (gr:DayOfWeek).".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Opening hours specification".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PaymentChargeSpecification, comment: "A payment charge specification is a conceptual entity that specifies the additional costs asked for settling the payment after accepting a given gr:Offering using a particular gr:PaymentMethod. A payment charge specification is characterized by (1) a monetary amount per order specified as a literal value of type float in combination with a Currency, (2) the payment method, and (3) a whether this charge includes local sales taxes, namely VAT.\nA gr:Offering may be linked to multiple payment charge specifications that specify alternative charges for various payment methods.\n\nExamples: Payment by VISA or Mastercard costs a fee of 3 Euros including VAT, payment by bank transfer in advance is free of charge.\n\nThe total amount of this surcharge is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded datatype property. The gr:PaymentMethod to which this charge applies is specified using the gr:appliesToPaymentMethod object property.\n\nIf the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds.\n\nImportant: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#DeliveryChargeSpecification".freeze, "http://purl.org/goodrelations/v1#UnitPriceSpecification".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Payment charge specification".freeze, - "owl:disjointWith": ["gr:DeliveryChargeSpecification".freeze, "gr:UnitPriceSpecification".freeze], - subClassOf: "gr:PriceSpecification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PaymentMethod, comment: "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction. This element is mostly used for specifying the types of payment accepted by a gr:BusinessEntity.\n\nExamples: VISA, MasterCard, Diners, cash, or bank transfer in advance.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Payment method".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PriceSpecification".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PaymentMethodCreditCard, comment: "The subclass of gr:PaymentMethod represents all variants and brands of credit or debit cards as a standardized procedure for transferring the monetary amount for a purchase. It is mostly used for specifying the types of payment accepted by a gr:Business Entity.\n\nExamples: VISA, MasterCard, or American Express.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Payment method credit card".freeze, - subClassOf: "gr:PaymentMethod".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#PaymentMethod".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PriceSpecification, comment: "The superclass of all price specifications.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Price specification".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:ProductOrService".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProductOrService, comment: "The superclass of all classes describing products or services types, either by nature or purpose. Examples for such subclasses are \"TV set\", \"vacuum cleaner\", etc. An instance of this class can be either an actual product or service (gr:Individual), a placeholder instance for unknown instances of a mass-produced commodity (gr:SomeItems), or a model / prototype specification (gr:ProductOrServiceModel). When in doubt, use gr:SomeItems.\n\nExamples: \na) MyCellphone123, i.e. my personal, tangible cell phone (gr:Individual)\nb) Siemens1234, i.e. the Siemens cell phone make and model 1234 (gr:ProductOrServiceModel)\nc) dummyCellPhone123 as a placeholder for actual instances of a certain kind of cell phones (gr:SomeItems)\n\t\nNote: Your first choice for specializations of gr:ProductOrService should be http://www.productontology.org.\n\nCompatibility with schema.org: This class is (approximately) equivalent to http://schema.org/Product.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Product or service".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PriceSpecification".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProductOrServiceModel, comment: "A product or service model is a intangible entity that specifies some characteristics of a group of similar, usually mass-produced products, in the sense of a prototype. In case of mass-produced products, there exists a relation gr:hasMakeAndModel between the actual product or service (gr:Individual or gr:SomeItems) and the prototype (gr:ProductOrServiceModel). GoodRelations treats product or service models as \"prototypes\" instead of a completely separate kind of entities, because this allows using the same domain-specific properties (e.g. gr:weight) for describing makes and models and for describing actual products.\n\nExamples: Ford T, Volkswagen Golf, Sony Ericsson W123 cell phone\n\nNote: An actual product or service (gr:Individual) by default shares the features of its model (e.g. the weight). However, this requires non-standard reasoning. See http://wiki.goodrelations-vocabulary.org/Axioms for respective rule sets.\n\t\nCompatibility with schema.org: This class is (approximately) a subclass of http://schema.org/Product.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#Individual".freeze, "http://purl.org/goodrelations/v1#SomeItems".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Product or service model".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:Individual".freeze, "gr:SomeItems".freeze], - subClassOf: ["gr:ProductOrService".freeze, "schema:Product".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://schema.org/Product".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProductOrServicesSomeInstancesPlaceholder, comment: "DEPRECATED - This class is superseded by gr:SomeItems. Replace all occurrences of gr:ProductOrServicesSomeInstancesPlaceholder by gr:SomeItems, if possible.".freeze, - equivalentClass: "gr:SomeItems".freeze, + equivalentClass: "http://purl.org/goodrelations/v1#SomeItems".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Product or services some instances placeholder (DEPRECATED)".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "gr:ProductOrService".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#ProductOrService".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :QualitativeValue, comment: "A qualitative value is a predefined value for a product characteristic. \n\t\nExamples: the color \"green\" or the power cord plug type \"US\"; the garment sizes \"S\", \"M\", \"L\", and \"XL\".\n\t\nNote: Value sets are supported by creating subclasses of this class. Ordinal relations between values (gr:greater, gr:lesser, ...) are provided directly by GoodRelations.\n\nCompatibility with schema.org: This class is equivalent to http://schema.org/Enumeration.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Qualitative value".freeze, - "owl:disjointWith": ["gr:Offering".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :QuantitativeValue, comment: "A quantitative value is a numerical interval that represents the range of a certain gr:quantitativeProductOrServiceProperty in terms of the lower and upper bounds for a particular gr:ProductOrService. It is to be interpreted in combination with the respective unit of measurement. Most quantitative values are intervals even if they are in practice often treated as a single point value.\n\t\nExample: a weight between 10 and 25 kilogramms, a length between 10 and 15 milimeters.\n\nCompatibility with schema.org: This class is equivalent to http://schema.org/Quantity.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QualitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Quantitative value".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QualitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :QuantitativeValueFloat, comment: "An instance of this class is an actual float value for a quantitative property of a product. This instance is usually characterized by a minimal value, a maximal value, and a unit of measurement.\n\nExamples: The intervals \"between 10.0 and 25.4 kilogramms\" or \"10.2 and 15.5 milimeters\".\n\nCompatibility with schema.org: This class is a subclass of http://schema.org/Quantity.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/goodrelations/v1#QuantitativeValueInteger".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Quantitative value float".freeze, - "owl:disjointWith": "gr:QuantitativeValueInteger".freeze, - subClassOf: "gr:QuantitativeValue".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :QuantitativeValueInteger, comment: "An instance of this class is an actual integer value for a quantitative property of a product. This instance is usually characterized by a minimal value, a maximal value, and a unit of measurement. \n\nExample: A seating capacity between 1 and 8 persons.\n\nNote: Users must keep in mind that ranges in here mean that ALL possible values in this interval are covered. (Sometimes, the actual commitment may be less than that: \"We sell cars from 2 - 12 seats\" does often not really mean that they have cars with 2,3,4,...12 seats.). Someone renting out two types of rowing boats, one that fits for 1 or 2 people, and another that must be operated by 4 people cannot claim to rent boats with a seating capacity between 1 and 4 people. He or she is offering two boat types for 1-2 and 4 persons.\n\t\t\nCompatibility with schema.org: This class is a subclass of http://schema.org/Quantity.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/goodrelations/v1#QuantitativeValueFloat".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Quantitative value integer".freeze, - "owl:disjointWith": "gr:QuantitativeValueFloat".freeze, - subClassOf: "gr:QuantitativeValue".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SomeItems, comment: "A placeholder instance for unknown instances of a mass-produced commodity. This is used as a computationally cheap work-around for such instances that are not individually exposed on the Web but just stated to exist (i.e., which are existentially quantified).\n\nExample: An instance of this class can represent an anonymous set of green Siemens1234 phones. It is different from the gr:ProductOrServiceModel Siemens1234, since this refers to the make and model, and it is different from a particular instance of this make and model (e.g. my individual phone) since the latter can be sold only once.\n\nNote: This class is the new, shorter form of the former gr:ProductOrServicesSomeInstancesPlaceholder.\n\t\t\nCompatibility with schema.org: This class is (approximately) a subclass of http://schema.org/Product.".freeze, - equivalentClass: "gr:ProductOrServicesSomeInstancesPlaceholder".freeze, + equivalentClass: "http://purl.org/goodrelations/v1#ProductOrServicesSomeInstancesPlaceholder".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Individual".freeze, "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Some items".freeze, - "owl:disjointWith": ["gr:Individual".freeze, "gr:ProductOrServiceModel".freeze], - subClassOf: ["gr:ProductOrService".freeze, "schema:Product".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://schema.org/Product".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TypeAndQuantityNode, comment: "This class collates all the information about a gr:ProductOrService included in a bundle. If a gr:Offering contains just one item, you can directly link from the gr:Offering to the gr:ProductOrService using gr:includes. If the offering contains multiple items, use an instance of this class for each component to indicate the quantity, unit of measurement, and type of product, and link from the gr:Offering via gr:includesObject.\n\nExample: An offering may include of 100g of Butter and 1 kg of potatoes, or 1 cell phone and 2 headsets.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QualitativeValue".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Type and quantity node".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QualitativeValue".freeze, "gr:QuantitativeValue".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :UnitPriceSpecification, comment: "A unit price specification is a conceptual entity that specifies the price asked for a given gr:Offering by the respective gr:Business Entity. An offering may be linked to multiple unit price specifications that specify alternative prices for non-overlapping sets of conditions (e.g. quantities or sales regions) or with differing validity periods. \n\nA unit price specification is characterized by (1) the lower and upper limits and the unit of measurement of the eligible quantity, (2) by a monetary amount per unit of the product or service, and (3) whether this prices includes local sales taxes, namely VAT.\n\t\nExample: The price, including VAT, for 1 kg of a given material is 5 Euros per kg for 0 - 5 kg and 4 Euros for quantities above 5 kg.\n\nThe eligible quantity interval for a given price is specified using the object property gr:hasEligibleQuantity, which points to an instance of gr:QuantitativeValue. The currency is specified using the gr:hasCurrency property, which points to an ISO 4217 currency code. The unit of measurement for the eligible quantity is specified using the gr:hasUnitOfMeasurement datatype property, which points to an UN/CEFACT Common Code (3 characters).\n\t\nIn most cases, the appropriate unit of measurement is the UN/CEFACT Common Code \"C62\" for \"Unit or piece\", since a gr:Offering is defined by the quantity and unit of measurement of all items included (e.g. \"1 kg of bananas plus a 2 kg of apples\"). As long at the offering consists of only one item, it is also possible to use an unit of measurement of choice for specifying the price per unit. For bundles, however, only \"C62\" for \"Unit or piece\" is a valid unit of measurement.\n\nYou can assume that the price is given per unit or piece if there is no gr:hasUnitOfMeasurement property attached to the price.\n\t\nWhether VAT and sales taxes are included in this price is specified using the property gr:valueAddedTaxIncluded (xsd:boolean).\n\t\nThe price per unit of measurement is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded datatype property.\n\nThe property priceType can be used to indicate that the price is a retail price recommendation only (i.e. a list price). \n\nIf the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds.\n\nImportant: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.\n\nNote 1: Due to the complexity of pricing scenarios in various industries, it may be necessary to create extensions of this fundamental model of price specifications. Such can be done easily by importing and refining the GoodRelations ontology.\n\nNote 2: For Google, attaching a gr:validThrough statement to a gr:UnitPriceSpecification is mandatory. \n".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#DeliveryChargeSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentChargeSpecification".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Unit price specification".freeze, - "owl:disjointWith": ["gr:DeliveryChargeSpecification".freeze, "gr:PaymentChargeSpecification".freeze], - subClassOf: "gr:PriceSpecification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WarrantyPromise, comment: "This is a conceptual entity that holds together all aspects of the n-ary relation gr:hasWarrantyPromise.\n\nA Warranty promise is an entity 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 the gr:ProductOrService. A warranty promise is characterized by its temporal duration (usually starting with the date of purchase) and its gr:WarrantyScope. The warranty scope represents the types of services provided (e.g. labor and parts, just parts) of the warranty included in an gr:Offering. The actual services may be provided by the gr:BusinessEntity making the offering, by the manufacturer of the product, or by a third party. There may be multiple warranty promises associated with a particular offering, which differ in duration and scope (e.g. pick-up service during the first 12 months, just parts and labor for 36 months).\n\nExamples: 12 months parts and labor, 36 months parts".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Warranty promise".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyScope".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WarrantyScope, comment: "The warranty scope represents types of services that will be provided free of charge by the vendor or manufacturer in the case of a defect (e.g. labor and parts, just parts), as part of the warranty included in an gr:Offering. The actual services may be provided by the gr:BusinessEntity making the offering, by the manufacturer of the product, or by a third party. \n\nExamples: Parts and Labor, Parts".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze], isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Warranty scope".freeze, - "owl:disjointWith": ["gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryMethod".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:WarrantyPromise".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :acceptedPaymentMethods, comment: "The gr:PaymentMethod or methods accepted by the gr:BusinessEntity for the given gr:Offering.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g41180".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "accepted payment methods (0..*)".freeze, - range: "gr:PaymentMethod".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#PaymentMethod".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :addOn, comment: "This property points from a gr:Offering to additional offerings that can only be obtained in combination with the first offering. This can be used to model supplements and extensions that are available for a surcharge. Any gr:PriceSpecification attached to the secondary offering is to be understood as an additional charge.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g24380".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "add-on (0..*)".freeze, - range: "gr:Offering".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#Offering".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :advanceBookingRequirement, comment: "The minimal and maximal amount of time that is required between accepting the gr:Offering and the actual usage of the resource or service. This is mostly relevant for offers regarding hotel rooms, the rental of objects, or the provisioning of services. The duration is specified relatively to the beginning of the usage of the contracted object. It is represented by attaching an instance of the class gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes).\n\nThe difference to the gr:validFrom and gr:validThrough properties is that those specify the interval during which the gr:Offering is valid, while gr:advanceBookingRequirement specifies the acceptable relative amount of time between accepting the offer and the fulfilment or usage.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g38960".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "advance booking requirement (0..1)".freeze, - range: "gr:QuantitativeValueInteger".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValueInteger".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :amountOfThisGood, comment: "This property specifies the quantity of the goods included in the gr:Offering via this gr:TypeAndQuantityNode. The quantity is given in the unit of measurement attached to the gr:TypeAndQuantityNode.".freeze, - domain: "gr:TypeAndQuantityNode".freeze, + domain: "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "amount of this good (1..1)".freeze, - range: "xsd:float".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :appliesToDeliveryMethod, comment: "This property specifies the gr:DeliveryMethod to which the gr:DeliveryChargeSpecification applies.".freeze, - domain: "gr:DeliveryChargeSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#DeliveryChargeSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "applies to delivery method (0..*)".freeze, - range: "gr:DeliveryMethod".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :appliesToPaymentMethod, comment: "This property specifies the gr:PaymentMethod to which the gr:PaymentChargeSpecification applies.".freeze, - domain: "gr:PaymentChargeSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#PaymentChargeSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "applies to payment method (1..*)".freeze, - range: "gr:PaymentMethod".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#PaymentMethod".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :availabilityEnds, comment: "This property specifies the end of the availability of the gr:ProductOrService included in the gr:Offering.\nThe difference to the properties gr:validFrom and gr:validThrough is that those specify the period of time during which the offer is valid and can be accepted.\n\nExample: I offer to lease my boat for the period of August 1 - August 31, 2010, but you must accept by offer no later than July 15.\n\nA time-zone should be specified. For a time in GMT/UTC, simply add a \"Z\" following the time:\n\n2008-05-30T09:30:10Z.\n\nAlternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:\n\n2008-05-30T09:30:10-09:00\n\nor\n\n2008-05-30T09:30:10+09:00.\n\nNote: There is another property gr:availableAtOrFrom, which is used to indicate the gr:Location (e.g. store or shop) from which the goods would be available.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g18240".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "availability ends (0..1)".freeze, - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :availabilityStarts, comment: "This property specifies the beginning of the availability of the gr:ProductOrService included in the gr:Offering.\nThe difference to the properties gr:validFrom and gr:validThrough is that those specify the period of time during which the offer is valid and can be accepted.\n\nExample: I offer to lease my boat for the period of August 1 - August 31, 2010, but you must accept by offer no later than July 15.\n\nA time-zone should be specified. For a time in GMT/UTC, simply add a \"Z\" following the time:\n\n2008-05-30T09:30:10Z.\n\nAlternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:\n\n2008-05-30T09:30:10-09:00\n\nor\n\n2008-05-30T09:30:10+09:00.\n\nNote: There is another property gr:availableAtOrFrom, which is used to indicate the gr:Location (e.g. store or shop) from which the goods would be available.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g17940".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "availability starts (0..1)".freeze, - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :availableAtOrFrom, comment: "This states that a particular gr:Offering is available at or from the given gr:Location (e.g. shop or branch).".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g18000".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "available at or from (0..*)".freeze, - range: "gr:Location".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#Location".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :availableDeliveryMethods, comment: "This specifies the gr:DeliveryMethod or methods available for a given gr:Offering.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g23740".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "available delivery methods (0..*)".freeze, - range: "gr:DeliveryMethod".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :billingIncrement, comment: "This property specifies the minimal quantity and rounding increment that will be the basis for the billing. \nThe unit of measurement is specified by the UN/CEFACT code attached to the gr:UnitPriceSpecification via the gr:hasUnitOfMeasurement property.\n\nExamples: \n- The price for gasoline is 4 USD per gallon at the pump, but you will be charged in units of 0.1 gallons.\n- The price for legal consulting is 100 USD per hour, but you will be charged in units of 15 minutes.\n\nThis property makes sense only for instances of gr:Offering that include not more than one type of good or service.".freeze, - domain: "gr:UnitPriceSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#UnitPriceSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "billing increment (0..1)".freeze, - range: "xsd:float".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :category, comment: "The name of a category to which this gr:ProductOrService, gr:Offering, gr:BusinessEntity, or gr:Location belongs.\n\t\nNote 1: For products, it is better to add an rdf:type statement referring to a GoodRelations-compliant ontology for vertical industries instead, but if you just have a short text label, gr:category is simpler.\nNote 2: You can use greater signs or slashes to informally indicate a category hierarchy, e.g. \"restaurants/asian_restaurants\" or \"cables > usb_cables\"\n".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, "gr:Offering".freeze, "gr:Location".freeze, "gr:BusinessEntity".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - ), term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - ), term( - equivalentClass: "gr:Location".freeze, - type: "owl:Class".freeze - ), term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g35720".freeze, "_:g35760".freeze, "_:g35800".freeze, "_:g35840".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "category (0..*)".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :closes, comment: "The closing hour of the gr:Location on the given gr:DayOfWeek.\nIf no time-zone suffix is included, the time is given in the local time valid at the gr:Location.\n\nFor a time in GMT/UTC, simply add a \"Z\" following the time:\n\n09:30:10Z.\n\nAlternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:\n\n09:30:10-09:00\n\n09:30:10+09:00.\n\nNote 1: Use 00:00:00 for the first second of the respective day and 23:59:59 for the last second of that day.\nNote 2: If a store opens at 17:00 on Saturdays and closes at 03:00:00 a.m. next morning, use two instances of this class, one with 17:00:00 - 23:59:59 for Saturday and another one with 00:00:00 - 03:00:00 for Sunday.\nNote 3: If the shop re-opens on the same day of the week or set of days of the week, you must create a second instance of gr:OpeningHoursSpecification.".freeze, - domain: "gr:OpeningHoursSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "closes (1..1)".freeze, - range: "xsd:time".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :color, comment: "The color of the product.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g23860".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "color (0..1)".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "gr:datatypeProductOrServiceProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/goodrelations/v1#datatypeProductOrServiceProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :condition, comment: "A textual description of the condition of the product or service, or the products or services included in the offer (when attached to a gr:Offering)".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g23420".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "condition (0..1)".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :datatypeProductOrServiceProperty, comment: "This property is the super property for all pure datatype properties that can be used to describe a gr:ProductOrService.\n\nIn products and services ontologies, only such properties that are no quantitative properties and that have no predefined gr:QualitativeValue instances are subproperties of this property. In practice, this refers to a few integer properties for which the integer value represents qualitative aspects, for string datatypes (as long as no predefined values exist), for boolean datatype properties, and for dates and times.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g24720".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "datatype product or service property (0..*)".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :deliveryLeadTime, comment: "This property can be used to indicate the promised delay between the receipt of the order and the goods leaving the warehouse.\n\nThe duration is specified by attaching an instance of gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. A point value can be modeled with the gr:hasValueInteger property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes).".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g37740".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "delivery lead time (0..1)".freeze, - range: "gr:QuantitativeValueInteger".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValueInteger".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :depth, comment: "The depth of the product.\nTypical unit code(s): CMT for centimeters, INH for inches".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g42660".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "depth (0..1)".freeze, - range: "gr:QuantitativeValue".freeze, - subPropertyOf: "gr:quantitativeProductOrServiceProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, + subPropertyOf: "http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :description, comment: "A short textual description of the resource. \n\nThis property is semantically equivalent to rdfs:comment and just meant as a handy shortcut for marking up data.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("owl:Thing".freeze, "gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryChargeSpecification".freeze, "gr:DeliveryMethod".freeze, "gr:DeliveryModeParcelService".freeze, "gr:Individual".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentChargeSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PaymentMethodCreditCard".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:ProductOrServiceModel".freeze, "gr:QualitativeValue".freeze, "gr:QuantitativeValue".freeze, "gr:QuantitativeValueFloat".freeze, "gr:QuantitativeValueInteger".freeze, "gr:SomeItems".freeze, "gr:TypeAndQuantityNode".freeze, "gr:UnitPriceSpecification".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/07/owl#Thing".freeze, "http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryChargeSpecification".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#DeliveryModeParcelService".freeze, "http://purl.org/goodrelations/v1#Individual".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentChargeSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PaymentMethodCreditCard".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, "http://purl.org/goodrelations/v1#QualitativeValue".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#QuantitativeValueFloat".freeze, "http://purl.org/goodrelations/v1#QuantitativeValueInteger".freeze, "http://purl.org/goodrelations/v1#SomeItems".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#UnitPriceSpecification".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "description (0..1)".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :displayPosition, comment: "The position at which the option or element should be listed in a menu or user dialog, lower numbers come first.\n\nThe main usage of this property are the days of the week (gr:DayOfWeek), but it is also possible to apply it e.g. to product features or any other conceptual element.\nNote: Rely on this property only for data originating from a single RDF graph; otherwise, unpredictable results are possible.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "display position (0..1)".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :durationOfWarrantyInMonths, comment: "This property specifies the duration of the gr:WarrantyPromise in months.".freeze, - domain: "gr:WarrantyPromise".freeze, + domain: "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "duration of warranty in months (0..1)".freeze, - range: "xsd:int".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :eligibleCustomerTypes, comment: "The types of customers (gr:BusinessEntityType) for which the given gr:Offering is valid.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g36040".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "eligible customer types (0..*)".freeze, - range: "gr:BusinessEntityType".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :eligibleDuration, comment: "The minimal and maximal duration for which the given gr:Offering or gr:License is valid. This is mostly used for offers regarding accommodation, the rental of objects, or software licenses. The duration is specified by attaching an instance of gr:QuantitativeValue. The lower and upper boundaries are specified using the properties gr:hasMinValue and gr:hasMaxValue to that instance. If they are the same, use the gr:hasValue property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes).\n\nThe difference to the gr:validFrom and gr:validThrough properties is that those specify the absiolute interval during which the gr:Offering or gr:License is valid, while gr:eligibleDuration specifies the acceptable duration of the contract or usage.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:License".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#License".freeze, "_:g25320".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "eligible duration (0..1)".freeze, - range: "gr:QuantitativeValue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :eligibleRegions, comment: "This property specifies the geo-political region or regions for which the gr:Offering, gr:License, or gr:DeliveryChargeSpecification is valid using the two-character version of ISO 3166-1 (ISO 3166-1 alpha-2) for regions or ISO 3166-2 , which breaks down the countries from ISO 3166-1 into administrative subdivisions.\n\nImportant: Do NOT use 3-letter ISO 3166-1 codes!".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:DeliveryChargeSpecification".freeze, "gr:Offering".freeze, "gr:License".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#DeliveryChargeSpecification".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#License".freeze, "_:g22640".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "eligible regions (0..*)".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :eligibleTransactionVolume, comment: "This property can be used to indicate the transaction volume, in a monetary unit, for which the gr:Offering or gr:PriceSpecification is valid. This is mostly used to specify a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases above a certain amount.\n\nThe object is a gr:PriceSpecification that uses the properties gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue to indicate the lower and upper boundaries and gr:hasCurrency to indicate the currency using the ISO 4217 standard (3 characters).".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:PriceSpecification".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "_:g37860".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "eligible transaction volume (0..1)".freeze, - range: "gr:PriceSpecification".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :equal, comment: "This ordering relation for qualitative values indicates that the subject is equal to the object.".freeze, - domain: "gr:QualitativeValue".freeze, - inverseOf: "gr:equal".freeze, + domain: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + inverseOf: "http://purl.org/goodrelations/v1#equal".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "equal (0..*)".freeze, - range: "gr:QualitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :greater, comment: "This ordering relation for qualitative values indicates that the subject is greater than the object.".freeze, - domain: "gr:QualitativeValue".freeze, - inverseOf: "gr:lesser".freeze, + domain: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + inverseOf: "http://purl.org/goodrelations/v1#lesser".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "greater (0..*)".freeze, - range: "gr:QualitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :greaterOrEqual, comment: "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.".freeze, - domain: "gr:QualitativeValue".freeze, - inverseOf: "gr:lesserOrEqual".freeze, + domain: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + inverseOf: "http://purl.org/goodrelations/v1#lesserOrEqual".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "greater or equal (0..*)".freeze, - range: "gr:QualitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :hasBrand, comment: "This specifies the brand or brands (gr:Brand) associated with a gr:ProductOrService, or the brand or brands maintained by a gr:BusinessEntity.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, "gr:ProductOrService".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - ), term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g33480".freeze, "_:g33520".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has brand (0..*)".freeze, - range: "gr:Brand".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#Brand".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasBusinessFunction, comment: "This specifies the business function of the gr:Offering, i.e. whether the gr:BusinessEntity is offering to sell, to lease, or to repair the particular type of product. In the case of bundles, it is also possible to attach individual business functions to each gr:TypeAndQuantityNode. The business function of the main gr:Offering determines the business function for all included objects or services, unless a business function attached to a gr:TypeAndQuantityNode overrides it.\n\t\nNote: While it is possible that an entity is offering multiple types of business functions for the same set of objects (e.g. rental and sales), this should usually not be stated by attaching multiple business functions to the same gr:Offering, since the gr:UnitPriceSpecification for the varying business functions will typically be very different.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:TypeAndQuantityNode".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "_:g40900".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has business function (1..*)".freeze, - range: "gr:BusinessFunction".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#BusinessFunction".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCurrency, comment: "The currency for all prices in the gr:PriceSpecification given using the ISO 4217 standard (3 characters).".freeze, - domain: "gr:PriceSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has currency (1..1)".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasCurrencyValue, comment: "This property specifies the amount of money for a price per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc.\n\nFor a gr:UnitPriceSpecification, this is the price for one unit or bundle (as specified in the unit of measurement of the unit price specification) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the price per delivery or payment.\n\nGoodRelations also supports giving price information as intervals only. If this is needed, use gr:hasMaxCurrencyValue for the upper bound and gr:hasMinCurrencyValue for the lower bound. \n\nUsing gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.".freeze, - domain: "gr:PriceSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has currency value (0..1)".freeze, - range: "xsd:float".freeze, - subPropertyOf: ["gr:hasMaxCurrencyValue".freeze, "gr:hasMinCurrencyValue".freeze], - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: ["http://purl.org/goodrelations/v1#hasMaxCurrencyValue".freeze, "http://purl.org/goodrelations/v1#hasMinCurrencyValue".freeze], + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasDUNS, comment: "The Dun & Bradstreet DUNS number for identifying a gr:BusinessEntity. The Dun & Bradstreet DUNS is a nine-digit number used to identify legal entities (but usually not branches or locations of logistical importance only).".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g36300".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has DUNS (0..1)".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :"hasEAN_UCC-13", comment: "The EAN·UCC-13 code of the given gr:ProductOrService or gr:Offering. This code is now officially called GTIN-13 (Global Trade Identifier Number) or EAN·UCC-13. Former 12-digit UPC codes can be converted into EAN·UCC-13 code by simply adding a preceeding zero.\n\nNote 1: When using this property for searching by 12-digit UPC codes, you must add a preceeding zero digit.\nNote 2: As of January 1, 2007, the former ISBN numbers for books etc. have been integrated into the EAN·UCC-13 code. For each old ISBN-10 code, there exists a proper translation into EAN·UCC-13 by adding \"978\" or \"979\" as prefix. Since the old ISBN-10 is now deprecated, GoodRelations does not provide a property for ISBNs.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g23940".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has EAN/UCC-13 (0..*)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "schema:productID".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://schema.org/productID".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasEligibleQuantity, comment: "This specifies the interval and unit of measurement of ordering quantities for which the gr:Offering or gr:PriceSpecification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.\nNote that if an offering is a bundle, i.e. it consists of more than one unit of a single type of good, or if the unit of measurement for the good is different from unit (Common Code C62), then gr:hasEligibleQuantity refers to units of this bundle. In other words, \"C62\" for \"Units or pieces\" is usually the appropriate unit of measurement.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:PriceSpecification".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "_:g23020".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has eligible quantity (0..1)".freeze, - range: "gr:QuantitativeValue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"hasGTIN-14", comment: "The Global Trade Item Number (GTIN-14) of the given gr:ProductOrService or gr:Offering.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g28580".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has GTIN-14 (0..*)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "schema:productID".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://schema.org/productID".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :"hasGTIN-8", comment: "The 8-digit Global Trade Item Number (GTIN-8) of the given gr:ProductOrService or gr:Offering, also known as EAN/UCC-8 (8-digit EAN).".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g24620".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has GTIN-8 (0..*)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "schema:productID".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://schema.org/productID".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasGlobalLocationNumber, comment: "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective gr:BusinessEntity or gr:Location.\nThe Global Location Number is a thirteen-digit number used to identify parties and physical locations.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, "gr:Location".freeze, term( - equivalentClass: "gr:Location".freeze, - type: "owl:Class".freeze - ), term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "_:g19800".freeze, "_:g19840".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has Global Location Number (0..1)".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasISICv4, comment: "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular gr:BusinessEntity or gr:Location. See http://unstats.un.org/unsd/cr/registry/isic-4.asp for more information.\n\nNote: While ISIC codes are sometimes misused for classifying products or services, they are designed and suited only for classifying business establishments.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, "gr:Location".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - ), term( - equivalentClass: "gr:Location".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "_:g17760".freeze, "_:g17800".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has ISIC v4 (0..*)".freeze, - range: "xsd:int".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasInventoryLevel, comment: "This property specifies the current approximate inventory level for gr:SomeItems. The unit of measurement and the point value or interval are indicated using the attached gr:QuantitativeValueFloat instance.\n\nThis property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:SomeItems".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#SomeItems".freeze, "_:g38160".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has inventory level (0..1)".freeze, - range: "gr:QuantitativeValueFloat".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValueFloat".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMPN, comment: "The Manufacturer Part Number or MPN is a unique identifier for a product, service, or bundle from the perspective of a particular manufacturer. MPNs can be assigned to products or product datasheets, or bundles. Accordingly, the domain of this property is the union of gr:ProductOrService (the common superclass of goods and datasheets), and gr:Offering.\n\nImportant: Be careful when assuming two products or services instances or offering instances to be identical based on the MPN. Since MPNs are unique only for the same gr:BusinessEntity, this holds only when the two MPN values refer to the same gr:BusinessEntity. Such can be done by taking into account the provenance of the data. \n\nUsually, the properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more reliable identifiers, because they are globally unique.\n\nSee also http://en.wikipedia.org/wiki/Part_number".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g33300".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has MPN (0..*)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "schema:productID".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://schema.org/productID".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasMakeAndModel, comment: "This states that an actual product instance (gr:Individual) or a placeholder instance for multiple, unidentified such instances (gr:SomeItems) is one occurence of a particular gr:ProductOrServiceModel.\n\nExample: myFordT hasMakeAndModel FordT.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Individual".freeze, "gr:SomeItems".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Individual".freeze, "http://purl.org/goodrelations/v1#SomeItems".freeze, "_:g42060".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has make and model (0..1)".freeze, - range: "gr:ProductOrServiceModel".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasManufacturer, comment: "This object property links a gr:ProductOrService to the gr:BusinessEntity that produces it. Mostly used with gr:ProductOrServiceModel.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g36140".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has manufacturer (0..1)".freeze, - range: "gr:BusinessEntity".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#BusinessEntity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMaxCurrencyValue, comment: "This property specifies the UPPER BOUND of the amount of money for a price RANGE per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc.\nFor a gr:UnitPriceSpecification, this is the UPPER BOUND for the price for one unit or bundle (as specified in the unit of measurement of the unit price specification) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the UPPER BOUND of the price per delivery or payment.\n\nUsing gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.".freeze, - domain: "gr:PriceSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has max currency value (1..1)".freeze, - range: "xsd:float".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasMaxValue, comment: "This property captures the upper limit of a gr:QuantitativeValue instance.".freeze, - domain: "gr:QuantitativeValue".freeze, + domain: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has max value (0..1)".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasMaxValueFloat, comment: "This property captures the upper limit of a gr:QuantitativeValueFloat instance.".freeze, - domain: "gr:QuantitativeValueFloat".freeze, + domain: "http://purl.org/goodrelations/v1#QuantitativeValueFloat".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has max value float (1..1)".freeze, - range: "xsd:float".freeze, - subPropertyOf: "gr:hasMaxValue".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://purl.org/goodrelations/v1#hasMaxValue".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasMaxValueInteger, comment: "This property captures the upper limit of a gr:QuantitativeValueInteger instance.".freeze, - domain: "gr:QuantitativeValueInteger".freeze, + domain: "http://purl.org/goodrelations/v1#QuantitativeValueInteger".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has max value integer (1..1)".freeze, - range: "xsd:int".freeze, - subPropertyOf: "gr:hasMaxValue".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + subPropertyOf: "http://purl.org/goodrelations/v1#hasMaxValue".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasMinCurrencyValue, comment: "This property specifies the LOWER BOUND of the amount of money for a price RANGE per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc.\nFor a gr:UnitPriceSpecification, this is the LOWER BOUND for the price for one unit or bundle (as specified in the unit of measurement of the unit price specification) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the LOWER BOUND of the price per delivery or payment.\n\nUsing gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.".freeze, - domain: "gr:PriceSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has min currency value (1..1)".freeze, - range: "xsd:float".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasMinValue, comment: "This property captures the lower limit of a gr:QuantitativeValue instance.".freeze, - domain: "gr:QuantitativeValue".freeze, + domain: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has min value (0..1)".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasMinValueFloat, comment: "This property captures the lower limit of a gr:QuantitativeValueFloat instance.".freeze, - domain: "gr:QuantitativeValueFloat".freeze, + domain: "http://purl.org/goodrelations/v1#QuantitativeValueFloat".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has min value float (1..1)".freeze, - range: "xsd:float".freeze, - subPropertyOf: "gr:hasMinValue".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://purl.org/goodrelations/v1#hasMinValue".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasMinValueInteger, comment: "This property captures the lower limit of a gr:QuantitativeValueInteger instance.".freeze, - domain: "gr:QuantitativeValueInteger".freeze, + domain: "http://purl.org/goodrelations/v1#QuantitativeValueInteger".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has min value integer (1..1)".freeze, - range: "xsd:int".freeze, - subPropertyOf: "gr:hasMinValue".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + subPropertyOf: "http://purl.org/goodrelations/v1#hasMinValue".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasNAICS, comment: "The North American Industry Classification System (NAICS) code for a particular gr:BusinessEntity.\nSee http://www.census.gov/eos/www/naics/ for more details.\n\nNote: While NAICS codes are sometimes misused for classifying products or services, they are designed and suited only for classifying business establishments.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g32880".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has NAICS (0..*)".freeze, - range: "xsd:int".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasNext, comment: "This ordering relation for gr:DayOfWeek indicates that the subject is directly followed by the object.\n\nExample: Monday hasNext Tuesday\n\nSince days of the week are a cycle, this property is not transitive.".freeze, - domain: "gr:DayOfWeek".freeze, - inverseOf: "gr:hasPrevious".freeze, + domain: "http://purl.org/goodrelations/v1#DayOfWeek".freeze, + inverseOf: "http://purl.org/goodrelations/v1#hasPrevious".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has next (0..1)".freeze, - range: "gr:DayOfWeek".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#DayOfWeek".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasOpeningHoursDayOfWeek, comment: "This specifies the gr:DayOfWeek to which the gr:OpeningHoursSpecification is related.\n\nNote: Use multiple instances of gr:OpeningHoursSpecification for specifying the opening hours for multiple days if the opening hours differ.".freeze, - domain: "gr:OpeningHoursSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has opening hours day of week (1..*)".freeze, - range: "gr:DayOfWeek".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#DayOfWeek".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasOpeningHoursSpecification, comment: "This property links a gr:Location to a gr:OpeningHoursSpecification.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Location".freeze, term( - equivalentClass: "gr:Location".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Location".freeze, "_:g36200".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has opening hours specification (0..*)".freeze, - range: "gr:OpeningHoursSpecification".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPOS, comment: "This property states that the respective gr:Location is a point of sale for the respective gr:BusinessEntity. It allows linking those two types of entities without the need for a particular gr:Offering.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g33220".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has POS (0..*)".freeze, - range: "gr:Location".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#Location".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPrevious, comment: "This ordering relation for gr:DayOfWeek indicates that the subject is directly preceeded by the object.\n\nExample: Tuesday hasPrevious Monday\n\nSince days of the week are a cycle, this property is not transitive.".freeze, - domain: "gr:DayOfWeek".freeze, - inverseOf: "gr:hasNext".freeze, + domain: "http://purl.org/goodrelations/v1#DayOfWeek".freeze, + inverseOf: "http://purl.org/goodrelations/v1#hasNext".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has previous (0..1)".freeze, - range: "gr:DayOfWeek".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#DayOfWeek".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPriceSpecification, comment: "This links a gr:Offering to a gr:PriceSpecification or specifications. There can be unit price specifications, payment charge specifications, and delivery charge specifications. For each type, multiple specifications for the same gr:Offering are possible, e.g. for different quantity ranges or for different currencies, or for different combinations of gr:DeliveryMethod and target destinations.\n\nRecommended retail prices etc. can be marked by the gr:priceType property of the gr:UnitPriceSpecification.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g38540".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has price specification (0..*)".freeze, - range: "gr:PriceSpecification".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasStockKeepingUnit, comment: "The Stock Keeping Unit, or SKU is a unique identifier for a product, service, or bundle from the perspective of a particular supplier, i.e. SKUs are mostly assigned and serialized at the merchant level. \nExamples of SKUs are the ordering or parts numbers used by a particular Web shop or catalog.\n\nConsequently, the domain of gr:hasStockKeepingUnit is the union of the classes gr:Offering and gr:ProductOrService. \nIf attached to a gr:Offering, the SKU will usually reflect a merchant-specific identifier, i.e. one valid only for that particular retailer or shop. \nIf attached to a gr:ProductOrServiceModel, the SKU can reflect either the identifier used by the merchant or the part number used by the official manufacturer of that part. For the latter, gr:hasMPN is a better choice.\n\nImportant: Be careful when assuming two products or services instances or offering instances to be identical based on the SKU. Since SKUs are unique only for the same gr:BusinessEntity, this can be assumed only when you are sure that the two SKU values refer to the same business entity. Such can be done by taking into account the provenance of the data. As long as instances of gr:Offering are concerned, you can also check that the offerings are being offered by the same gr:Business Entity.\n\nUsually, the properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more reliable identifiers, because they are globally unique.\n\nSee also http://en.wikipedia.org/wiki/Stock_Keeping_Unit.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:ProductOrService".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - ), term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g29920".freeze, "_:g29960".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has Stock Keeping Unit (0..*)".freeze, - range: "xsd:string".freeze, - subPropertyOf: "schema:productID".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://schema.org/productID".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasUnitOfMeasurement, comment: "The unit of measurement for a gr:QuantitativeValue, a gr:UnitPriceSpecification, or a gr:TypeAndQuantityNode given using the UN/CEFACT Common Code (3 characters).".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:QuantitativeValue".freeze, "gr:TypeAndQuantityNode".freeze, "gr:UnitPriceSpecification".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#UnitPriceSpecification".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has unit of measurement (1..1)".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasValue, comment: "This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValue are identical and have the respective value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval.".freeze, - domain: "gr:QuantitativeValue".freeze, + domain: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has value (0..1)".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: ["gr:hasMaxValue".freeze, "gr:hasMinValue".freeze], - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: ["http://purl.org/goodrelations/v1#hasMaxValue".freeze, "http://purl.org/goodrelations/v1#hasMinValue".freeze], + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasValueFloat, comment: "This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueFloat are identical and have the respective float value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval.".freeze, - domain: "gr:QuantitativeValueFloat".freeze, + domain: "http://purl.org/goodrelations/v1#QuantitativeValueFloat".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has value float (0..1)".freeze, - range: "xsd:float".freeze, - subPropertyOf: ["gr:hasMaxValueFloat".freeze, "gr:hasMinValueFloat".freeze], - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: ["http://purl.org/goodrelations/v1#hasMaxValueFloat".freeze, "http://purl.org/goodrelations/v1#hasMinValueFloat".freeze], + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasValueInteger, comment: "This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueInteger are identical and have the respective integer value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval.".freeze, - domain: "gr:QuantitativeValueInteger".freeze, + domain: "http://purl.org/goodrelations/v1#QuantitativeValueInteger".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has value integer (0..1)".freeze, - range: "xsd:int".freeze, - subPropertyOf: ["gr:hasMaxValueInteger".freeze, "gr:hasMinValueInteger".freeze], - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + subPropertyOf: ["http://purl.org/goodrelations/v1#hasMaxValueInteger".freeze, "http://purl.org/goodrelations/v1#hasMinValueInteger".freeze], + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasWarrantyPromise, comment: "This specifies the gr:WarrantyPromise made by the gr:BusinessEntity for the given gr:Offering.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g23500".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has warranty promise (0..*)".freeze, - range: "gr:WarrantyPromise".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasWarrantyScope, comment: "This states the gr:WarrantyScope of a given gr:WarrantyPromise.".freeze, - domain: "gr:WarrantyPromise".freeze, + domain: "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "has warranty scope (0..1)".freeze, - range: "gr:WarrantyScope".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#WarrantyScope".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :height, comment: "The height of the product.\nTypical unit code(s): CMT for centimeters, INH for inches".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g41460".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "height (0..1)".freeze, - range: "gr:QuantitativeValue".freeze, - subPropertyOf: "gr:quantitativeProductOrServiceProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, + subPropertyOf: "http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :includes, comment: "This object property is a shortcut for the original gr:includesObject property for the common case of having exactly one single gr:ProductOrService instance included in an Offering. \n\nWhen linking to an instance of gr:SomeItems or gr:Individual, it is equivalent to using a gr:TypeAndQuantityNode with gr:hasUnitOfMeasurement=\"C62\"^^xsd:string and gr:amountOfThisGood=\"1.0\"^^xsd:float for that good.\n\nWhen linking to a gr:ProductOrServiceModel, it is equivalent to \n1. defining an blank node for a gr:SomeItems\n2. linking that blank node via gr:hasMakeAndModel to the gr:ProductOrServiceModel, and\n3. linking from the gr:Offering to that blank node using another blank node of type gr:TypeAndQuantityNode with gr:hasUnitOfMeasurement=\"C62\"^^xsd:string and gr:amountOfThisGood=\"1.0\"^^xsd:float for that good.".freeze, - domain: "gr:Offering".freeze, + domain: "http://purl.org/goodrelations/v1#Offering".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "includes (0..1)".freeze, - range: "gr:ProductOrService".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#ProductOrService".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :includesObject, comment: "This object property links a gr:Offering to one or multiple gr:TypeAndQuantityNode or nodes that specify the components that are included in the respective offer.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "_:g40120".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "includes object (0..*)".freeze, - range: "gr:TypeAndQuantityNode".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isAccessoryOrSparePartFor, comment: "This states that a particular gr:ProductOrService is an accessory or spare part for another product or service.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g41080".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "is accessory or spare part for (0..*)".freeze, - range: "gr:ProductOrService".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#ProductOrService".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isConsumableFor, comment: "This states that a particular gr:ProductOrService is a consumable for another product or service.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g33080".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "is consumable for (0..*)".freeze, - range: "gr:ProductOrService".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#ProductOrService".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isListPrice, comment: "This boolean attribute indicates whether a gr:UnitPriceSpecification is a list price (usually a vendor recommendation) or not. \"true\" indicates it is a list price, \"false\" indicates it is not.\nDEPRECATED. Use the gr:priceType property instead.".freeze, - domain: "gr:UnitPriceSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#UnitPriceSpecification".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "is list price (DEPRECATED)".freeze, - "owl:deprecated": "true".freeze, - range: "xsd:boolean".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :isSimilarTo, comment: "This states that a given gr:ProductOrService is similar to another product or service. Of course, this is a subjective statement; when interpreting it, the trust in the origin of the statement should be taken into account.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g23340".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "is similar to (0..*)".freeze, - range: "gr:ProductOrService".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#ProductOrService".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isVariantOf, comment: "This states that a particular gr:ProductOrServiceModel is a variant of another product or service model. It is pretty safe to infer that the variant inherits all gr:quantitativeProductOrServiceProperty, gr:qualitativeProductOrServiceProperty, and gr:datatypeProductOrServiceProperty values that are defined for the first gr:ProductOrServiceModel.\n\nExample:\nfoo:Red_Ford_T_Model gr:isVariantOf foo:Ford_T_Model".freeze, - domain: "gr:ProductOrServiceModel".freeze, + domain: "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "is variant of (0..1)".freeze, - range: "gr:ProductOrServiceModel".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :legalName, comment: "The legal name of the gr:BusinessEntity.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g18720".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "legal name (0..1)".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :lesser, comment: "This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than the object.".freeze, - domain: "gr:QualitativeValue".freeze, - inverseOf: "gr:greater".freeze, + domain: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + inverseOf: "http://purl.org/goodrelations/v1#greater".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "lesser (0..*)".freeze, - range: "gr:QualitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :lesserOrEqual, comment: "This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than or equal to the object.".freeze, - domain: "gr:QualitativeValue".freeze, - inverseOf: "gr:greaterOrEqual".freeze, + domain: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + inverseOf: "http://purl.org/goodrelations/v1#greaterOrEqual".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "lesser or equal (0..*)".freeze, - range: "gr:QualitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :name, comment: "A short text describing the respective resource.\n\nThis property is semantically equivalent to dcterms:title and rdfs:label and just meant as a handy shortcut for marking up data.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("owl:Thing".freeze, "gr:Brand".freeze, "gr:BusinessEntity".freeze, "gr:BusinessEntityType".freeze, "gr:BusinessFunction".freeze, "gr:DayOfWeek".freeze, "gr:DeliveryChargeSpecification".freeze, "gr:DeliveryMethod".freeze, "gr:DeliveryModeParcelService".freeze, "gr:Individual".freeze, "gr:Location".freeze, "gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PaymentChargeSpecification".freeze, "gr:PaymentMethod".freeze, "gr:PaymentMethodCreditCard".freeze, "gr:PriceSpecification".freeze, "gr:ProductOrService".freeze, "gr:ProductOrServiceModel".freeze, "gr:QualitativeValue".freeze, "gr:QuantitativeValue".freeze, "gr:QuantitativeValueFloat".freeze, "gr:QuantitativeValueInteger".freeze, "gr:SomeItems".freeze, "gr:TypeAndQuantityNode".freeze, "gr:UnitPriceSpecification".freeze, "gr:WarrantyPromise".freeze, "gr:WarrantyScope".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/07/owl#Thing".freeze, "http://purl.org/goodrelations/v1#Brand".freeze, "http://purl.org/goodrelations/v1#BusinessEntity".freeze, "http://purl.org/goodrelations/v1#BusinessEntityType".freeze, "http://purl.org/goodrelations/v1#BusinessFunction".freeze, "http://purl.org/goodrelations/v1#DayOfWeek".freeze, "http://purl.org/goodrelations/v1#DeliveryChargeSpecification".freeze, "http://purl.org/goodrelations/v1#DeliveryMethod".freeze, "http://purl.org/goodrelations/v1#DeliveryModeParcelService".freeze, "http://purl.org/goodrelations/v1#Individual".freeze, "http://purl.org/goodrelations/v1#Location".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentChargeSpecification".freeze, "http://purl.org/goodrelations/v1#PaymentMethod".freeze, "http://purl.org/goodrelations/v1#PaymentMethodCreditCard".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#ProductOrService".freeze, "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, "http://purl.org/goodrelations/v1#QualitativeValue".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://purl.org/goodrelations/v1#QuantitativeValueFloat".freeze, "http://purl.org/goodrelations/v1#QuantitativeValueInteger".freeze, "http://purl.org/goodrelations/v1#SomeItems".freeze, "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, "http://purl.org/goodrelations/v1#UnitPriceSpecification".freeze, "http://purl.org/goodrelations/v1#WarrantyPromise".freeze, "http://purl.org/goodrelations/v1#WarrantyScope".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "name (0..1)".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :nonEqual, comment: "This ordering relation for gr:QualitativeValue pairs indicates that the subject is not equal to the object.".freeze, - domain: "gr:QualitativeValue".freeze, - inverseOf: "gr:nonEqual".freeze, + domain: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + inverseOf: "http://purl.org/goodrelations/v1#nonEqual".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "non equal (0..*)".freeze, - range: "gr:QualitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :offers, comment: "This links a gr:BusinessEntity to the offers (gr:Offering) it makes. If you want to express interest in receiving offers, use gr:seeks instead.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g18660".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "offers (0..*)".freeze, - range: "gr:Offering".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#Offering".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :opens, comment: "The opening hour of the gr:Location on the given gr:DayOfWeek.\nIf no time-zone suffix is included, the time is given in the local time valid at the gr:Location.\n\nFor a time in GMT/UTC, simply add a \"Z\" following the time:\n\n09:30:10Z.\n\nAlternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:\n\n09:30:10-09:00\n\nor\n\n09:30:10+09:00.\n\nNote 1: Use 00:00:00 for the first second of the respective day and 23:59:59 for the last second of that day.\nNote 2: If a store opens at 17:00 on Saturdays and closes at 03:00:00 a.m. next morning, use 17:00:00 - 23:59:59 for Saturday and 00:00:00 - 03:00:00 for Sunday.\nNote 3: If the shop re-opens on the same day of the week or set of days of the week, you must create a second instance of gr:OpeningHoursSpecification.".freeze, - domain: "gr:OpeningHoursSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "opens (1..1)".freeze, - range: "xsd:time".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :owns, comment: "This property indicates that a particular person or business owns a particular product. It can be used to expose the products in one's posession in order to empower recommender systems to suggest matching offers.\n\nNote that the product must be an instance of the class gr:Individual.\n\nThis property can also be safely applied to foaf:Agent instances.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - ), term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g41240".freeze, "_:g41280".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "owns (0..*)".freeze, - range: "gr:Individual".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#Individual".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :predecessorOf, comment: "This property indicates that the subject is a previous, often discontinued variant of the gr:ProductOrServiceModel used as the object.\n\nExample: Golf III predecessorOf Golf IV\n\nThis relation is transitive.".freeze, - domain: "gr:ProductOrServiceModel".freeze, - inverseOf: "gr:successorOf".freeze, + domain: "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, + inverseOf: "http://purl.org/goodrelations/v1#successorOf".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "predecessor of (0..*)".freeze, - range: "gr:ProductOrServiceModel".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :priceType, comment: "This attribute can be used to distinguish multiple different price specifications for the same gr:Offering. It supersedes the former gr:isListPrice property. The following values are recommended:\n\nThe absence of this property marks the actual sales price.\n\nSRP: \"suggested retail price\" - applicable for all sorts of a non-binding retail price recommendations, e.g. such published by the manufacturer or the distributor. This value replaces the former gr:isListPrice property.\n\nINVOICE: The invoice price, mostly used in the car industry - this is the price a dealer pays to the manufacturer, excluding rebates and charges.".freeze, - domain: "gr:UnitPriceSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#UnitPriceSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "price type (0..1)".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :qualitativeProductOrServiceProperty, comment: "This is the super property of all qualitative properties for products and services. All properties in product or service ontologies for which gr:QualitativeValue instances are specified are subproperties of this property.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g29760".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "qualitative product or service property (0..*)".freeze, - range: "gr:QualitativeValue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QualitativeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :quantitativeProductOrServiceProperty, comment: "This is the super property of all quantitative properties for products and services. All properties in product or service ontologies that specify quantitative characteristics, for which an interval is at least theoretically an appropriate value, are subproperties of this property.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g18340".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "quantitative product or service property (0..*)".freeze, - range: "gr:QuantitativeValue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedWebService, comment: "The URI of a SOAP or REST Web Service from which additional information about the gr:BusinessEntity, gr:Offering, gr:PriceSpecification, or gr:ProductOrService, or any other element, can be obtained. The recommended range is xsd:anyURI i.e., the URI of a SOAP or REST Web Service.\n\nIn principle, any existing or upcoming vocabulary for Web Services can be used in combination with GoodRelations, because the association between (a) the service description and (b) the GoodRelations description can be found via the Web Service URI value used with this gr:relatedWebService property.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "related Web Service (0..*)".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :seeks, comment: "This links a gr:BusinessEntity to gr:Offering nodes that describe what the business entity is interested in (i.e., the buy side). If you want to express interest in offering something, use gr:offers instead. Note that this substitutes the former gr:BusinessFunction gr:Buy, which is now deprecated.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - ), term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g18060".freeze, "_:g18100".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "seeks (0..*)".freeze, - range: "gr:Offering".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#Offering".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :serialNumber, comment: "The serial number or any alphanumeric identifier of a particular product. Note that serial number are unique only for the same brand or the same model, so you cannot infer from two occurrences of the same serial number that the objects to which they are attached are identical.\n\nThis property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Individual".freeze, "gr:Offering".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Individual".freeze, "http://purl.org/goodrelations/v1#Offering".freeze, "_:g17540".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "serial number (0..*)".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :successorOf, comment: "This property indicates that the subject is a newer, often updated or improved variant of the gr:ProductOrServiceModel used as the object.\n\nExample: Golf III successorOf Golf II\n\nThis relation is transitive.".freeze, - domain: "gr:ProductOrServiceModel".freeze, - inverseOf: "gr:predecessorOf".freeze, + domain: "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, + inverseOf: "http://purl.org/goodrelations/v1#predecessorOf".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "successor of (0..*)".freeze, - range: "gr:ProductOrServiceModel".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/goodrelations/v1#ProductOrServiceModel".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :taxID, comment: "The Tax / Fiscal ID of the gr:BusinessEntity, e.g. the TIN in the US or the CIF/NIF in Spain. It is usually assigned by the country of residence".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - ), term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g17340".freeze, "_:g17380".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Tax ID (0..1)".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :typeOfGood, comment: "This specifies the gr:ProductOrService that the gr:TypeAndQuantityNode is referring to.".freeze, - domain: "gr:TypeAndQuantityNode".freeze, + domain: "http://purl.org/goodrelations/v1#TypeAndQuantityNode".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "type of good (1..1)".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("gr:Individual".freeze, "gr:SomeItems".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Individual".freeze, "http://purl.org/goodrelations/v1#SomeItems".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :validFrom, comment: "This property specifies the beginning of the validity of the gr:Offering, gr:PriceSpecification, gr:License, or gr:OpeningHoursSpecification.\nA time-zone should be specified. For a time in GMT/UTC, simply add a \"Z\" following the time:\n\n2008-05-30T09:30:10Z.\n\nAlternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:\n\n2008-05-30T09:30:10-09:00\n\nor\n\n2008-05-30T09:30:10+09:00.\n\nNote: If multiple contradicting instances of a gr:Offering, gr:PriceSpecification, or gr:OpeningHoursSpecification exist, it is a good heuristics to assume that\n1. Information with validity information for the respective period of time ranks higher than information without validity information.\n2. Among conflicting nodes both having validity information, the one with the shorter validity span ranks higher.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PriceSpecification".freeze, "gr:License".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#License".freeze, "_:g25740".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "valid from (0..1)".freeze, - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :validThrough, comment: "This property specifies the end of the validity of the gr:Offering, gr:PriceSpecification, gr:License, or gr:OpeningHoursSpecification.\nA time-zone should be specified. For a time in GMT/UTC, simply add a \"Z\" following the time:\n\n2008-05-30T09:30:10Z.\n\nAlternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:\n\n2008-05-30T09:30:10-09:00\n\nor\n2008-05-30T09:30:10+09:00.\n\nNote 1: If multiple contradicting instances of a gr:Offering, gr:PriceSpecification, or gr:OpeningHoursSpecification exist, it is a good heuristics to assume that\n1. Information with validity information for the respective period of time ranks higher than information without validity information.\n2. Among conflicting nodes both having validity information, the one with the shorter validity span ranks higher.\nNote 2: For Google, attaching a gr:validThrough statement to a gr:UnitPriceSpecification is mandatory. \n".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:Offering".freeze, "gr:OpeningHoursSpecification".freeze, "gr:PriceSpecification".freeze, "gr:License".freeze, term( - subClassOf: "gr:Offering".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#Offering".freeze, "http://purl.org/goodrelations/v1#OpeningHoursSpecification".freeze, "http://purl.org/goodrelations/v1#PriceSpecification".freeze, "http://purl.org/goodrelations/v1#License".freeze, "_:g41400".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "valid through (0..1)".freeze, - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :valueAddedTaxIncluded, comment: "This property specifies whether the applicable value-added tax (VAT) is included in the price of the gr:PriceSpecification or not.\n\nNote: This is a simple representation which may not properly reflect all details of local taxation.".freeze, - domain: "gr:PriceSpecification".freeze, + domain: "http://purl.org/goodrelations/v1#PriceSpecification".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "value added tax included (0..1)".freeze, - range: "xsd:boolean".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :valueReference, comment: "The superclass of properties that link a gr:QuantitativeValue or a gr:QualitativeValue to a second gr:QuantitativeValue or a gr:QualitativeValue that provides additional information on the original value. A good modeling practice is to define specializations of this property (e.g. foo:referenceTemperature) for your particular domain.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:QualitativeValue".freeze, "gr:QuantitativeValue".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#QualitativeValue".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "value reference (0..*)".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("gr:QualitativeValue".freeze, "gr:QuantitativeValue".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#QualitativeValue".freeze, "http://purl.org/goodrelations/v1#QuantitativeValue".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :vatID, comment: "The Value-added Tax ID of the gr:BusinessEntity. See http://en.wikipedia.org/wiki/Value_added_tax_identification_number for details.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:BusinessEntity".freeze, term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - ), term( - subClassOf: "gr:BusinessEntity".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#BusinessEntity".freeze, "_:g25380".freeze, "_:g25420".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "VAT ID (0..1)".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :weight, comment: "The weight of the gr:ProductOrService.\nTypical unit code(s): GRM for gram, KGM for kilogram, LBR for pound".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g34200".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "weight (0..1)".freeze, - range: "gr:QuantitativeValue".freeze, - subPropertyOf: "gr:quantitativeProductOrServiceProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, + subPropertyOf: "http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :width, comment: "The width of the gr:ProductOrService.\nTypical unit code(s): CMT for centimeters, INH for inches".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("gr:ProductOrService".freeze, term( - equivalentClass: "gr:ProductOrService".freeze, - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/goodrelations/v1#ProductOrService".freeze, "_:g38000".freeze) ), isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "width (0..1)".freeze, - range: "gr:QuantitativeValue".freeze, - subPropertyOf: "gr:quantitativeProductOrServiceProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/goodrelations/v1#QuantitativeValue".freeze, + subPropertyOf: "http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze # Extra definitions term :AmericanExpress, comment: "Payment by credit or debit cards issued by the American Express network.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "American Express (payment method)".freeze, - type: "gr:PaymentMethodCreditCard".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethodCreditCard".freeze term :Business, comment: "The gr:BusinessEntityType representing such agents that are themselves offering commercial services or products on the market. Usually, businesses are characterized by the fact that they are officially registered with the public administration and strive for profits by their activities.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Business (business entity type)".freeze, - type: "gr:BusinessEntityType".freeze + type: "http://purl.org/goodrelations/v1#BusinessEntityType".freeze term :Buy, comment: "This gr:BusinessFunction indicates that the gr:BusinessEntity is in general interested in purchasing the specified gr:ProductOrService.\nDEPRECATED. Use gr:seeks instead.".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Buy (business function, DEPRECATED)".freeze, - "owl:deprecated": "true".freeze, - type: "gr:BusinessFunction".freeze + type: "http://purl.org/goodrelations/v1#BusinessFunction".freeze term :ByBankTransferInAdvance, comment: "Payment by bank transfer in advance, i.e., the offering gr:BusinessEntity will inform the buying party about their bank account details and will deliver the goods upon receipt of the due amount.\nThis is equivalent to payment by wire transfer.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "By bank transfer in advance (payment method)".freeze, - type: "gr:PaymentMethod".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethod".freeze term :ByInvoice, comment: "Payment by bank transfer after delivery, i.e., the offering gr:BusinessEntity will deliver first, inform the buying party about the due amount and their bank account details, and expect payment shortly after delivery.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "By invoice (payment method)".freeze, - type: "gr:PaymentMethod".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethod".freeze term :COD, comment: "Collect on delivery / Cash on delivery - A payment method where the recipient of goods pays at the time of delivery. Usually, the amount of money is collected by the transportation company handling the goods.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "COD (payment method)".freeze, - type: "gr:PaymentMethod".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethod".freeze term :Cash, comment: "Payment by cash upon delivery or pickup.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Cash (payment method)".freeze, - type: "gr:PaymentMethod".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethod".freeze term :CheckInAdvance, comment: "Payment by sending a check in advance, i.e., the offering gr:BusinessEntity will deliver the goods upon receipt of a check over the due amount. There are variations in handling payment by check - sometimes, shipment will be upon receipt of the check as a document, sometimes the shipment will take place only upon successful crediting of the check.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Check in advance (payment method)".freeze, - type: "gr:PaymentMethod".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethod".freeze term :ConstructionInstallation, comment: "This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the construction and/or installation of the specified gr:ProductOrService at the customer's location.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Construction / installation (business function)".freeze, - type: "gr:BusinessFunction".freeze + type: "http://purl.org/goodrelations/v1#BusinessFunction".freeze term :DHL, comment: "Delivery via the parcel service DHL.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "DHL (delivery method)".freeze, - type: "gr:DeliveryModeParcelService".freeze + type: "http://purl.org/goodrelations/v1#DeliveryModeParcelService".freeze term :DeliveryModeDirectDownload, comment: "Delivery of the goods via direct download from the Internet, i.e., the offering gr:BusinessEntity provides the buying party with details on how to retrieve the goods online. Connection fees and other costs of using the infrastructure are to be carried by the buying party.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Delivery mode direct download (delivery method)".freeze, - type: "gr:DeliveryMethod".freeze + type: "http://purl.org/goodrelations/v1#DeliveryMethod".freeze term :DeliveryModeFreight, comment: "Delivery by an unspecified air, sea, or ground freight carrier or cargo company.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Delivery mode freight (delivery method)".freeze, - type: "gr:DeliveryMethod".freeze + type: "http://purl.org/goodrelations/v1#DeliveryMethod".freeze term :DeliveryModeMail, comment: "Delivery via regular mail service (private or public postal services).".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Delivery mode mail (delivery method)".freeze, - type: "gr:DeliveryMethod".freeze + type: "http://purl.org/goodrelations/v1#DeliveryMethod".freeze term :DeliveryModeOwnFleet, comment: "Delivery of the goods by using a fleet of vehicles either owned and operated or subcontracted by the gr:BusinessEntity.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Delivery mode own fleet (delivery method)".freeze, - type: "gr:DeliveryMethod".freeze + type: "http://purl.org/goodrelations/v1#DeliveryMethod".freeze term :DeliveryModePickUp, comment: "Delivery of the goods by picking them up at one of the stores etc. (gr:Location) during the opening hours as specified by respective instances of gr:OpeningHoursSpecification.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Delivery mode pick up (delivery method)".freeze, - type: "gr:DeliveryMethod".freeze + type: "http://purl.org/goodrelations/v1#DeliveryMethod".freeze term :DinersClub, comment: "Payment by credit or debit cards issued by the Diner's Club network.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Diners Club (payment method)".freeze, - type: "gr:PaymentMethodCreditCard".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethodCreditCard".freeze term :DirectDebit, comment: "Payment by direct debit, i.e., the buying party will inform the offering gr:BusinessEntity about its bank account details and authorizes the gr:BusinessEntity to collect the agreed amount directly from that account.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Direct debit (payment method)".freeze, - type: "gr:PaymentMethod".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethod".freeze term :Discover, comment: "Payment by credit or debit cards issued by the Discover network.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Discover (payment method)".freeze, - type: "gr:PaymentMethodCreditCard".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethodCreditCard".freeze term :Dispose, comment: "This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the acceptance of the specified gr:ProductOrService for proper disposal, recycling, or any other kind of allowed usages, freeing the current owner from all rights and obligations of ownership.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Dispose (business function)".freeze, - type: "gr:BusinessFunction".freeze + type: "http://purl.org/goodrelations/v1#BusinessFunction".freeze term :Enduser, comment: "The gr:BusinessEntityType representing such agents that are purchasing the good or service for private consumption, in particular not for resale or for usage within an industrial enterprise. By default, a Business Entity is an Enduser.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Enduser (business entity type)".freeze, - type: "gr:BusinessEntityType".freeze + type: "http://purl.org/goodrelations/v1#BusinessEntityType".freeze term :FederalExpress, comment: "Delivery via the parcel service Federal Express.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Federal Express (delivery method)".freeze, - type: "gr:DeliveryModeParcelService".freeze + type: "http://purl.org/goodrelations/v1#DeliveryModeParcelService".freeze term :Friday, comment: "Friday as a day of the week.".freeze, - "gr:displayPosition": "5".freeze, - "gr:hasNext": "gr:Saturday".freeze, - "gr:hasPrevious": "gr:Thursday".freeze, + "http://purl.org/goodrelations/v1#displayPosition": "5".freeze, + "http://purl.org/goodrelations/v1#hasNext": "http://purl.org/goodrelations/v1#Saturday".freeze, + "http://purl.org/goodrelations/v1#hasPrevious": "http://purl.org/goodrelations/v1#Thursday".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Friday (day of week)".freeze, - type: "gr:DayOfWeek".freeze + type: "http://purl.org/goodrelations/v1#DayOfWeek".freeze term :GoogleCheckout, comment: "Payment via the Google Checkout payment service.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Google Checkout (payment method)".freeze, - type: "gr:PaymentMethod".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethod".freeze term :JCB, comment: "Payment by credit or debit cards issued by the JCB network.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "JCB (payment method)".freeze, - type: "gr:PaymentMethodCreditCard".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethodCreditCard".freeze term :"Labor-BringIn", comment: "In case of a defect or malfunction, the buying party has the right to transport the good to a service location determined by the the selling gr:BusinessEntity and will be charged only for parts and materials needed to fix the problem. Labor will be covered by the selling business entity or one of its partnering business entities.\n\nNote: This is just a rough classification for filtering offers. It is up to the buying party to check the exact scope and terms and conditions of the gr:WarrantyPromise.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Labor / bring-in (warranty scope)".freeze, - type: "gr:WarrantyScope".freeze + type: "http://purl.org/goodrelations/v1#WarrantyScope".freeze term :LeaseOut, comment: "This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the temporary right to use the specified gr:ProductOrService.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Lease Out (business function)".freeze, - type: "gr:BusinessFunction".freeze + type: "http://purl.org/goodrelations/v1#BusinessFunction".freeze term :Maintain, comment: "This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) typical maintenance tasks for the specified gr:ProductOrService. Maintenance tasks are actions that undo or compensate for wear or other deterioriation caused by regular usage, in order to restore the originally intended function of the product, or to prevent outage or malfunction.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Maintain (business function)".freeze, - type: "gr:BusinessFunction".freeze + type: "http://purl.org/goodrelations/v1#BusinessFunction".freeze term :MasterCard, comment: "Payment by credit or debit cards issued by the MasterCard network.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "MasterCard (payment method)".freeze, - type: "gr:PaymentMethodCreditCard".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethodCreditCard".freeze term :Monday, comment: "Monday as a day of the week.".freeze, - "gr:displayPosition": "1".freeze, - "gr:hasNext": "gr:Tuesday".freeze, - "gr:hasPrevious": "gr:Sunday".freeze, + "http://purl.org/goodrelations/v1#displayPosition": "1".freeze, + "http://purl.org/goodrelations/v1#hasNext": "http://purl.org/goodrelations/v1#Tuesday".freeze, + "http://purl.org/goodrelations/v1#hasPrevious": "http://purl.org/goodrelations/v1#Sunday".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Monday (day of week)".freeze, - type: "gr:DayOfWeek".freeze + type: "http://purl.org/goodrelations/v1#DayOfWeek".freeze term :"PartsAndLabor-BringIn", comment: "In case of a defect or malfunction, the buying party has the right to transport the good to a service location determined by the the selling gr:BusinessEntity and will not be be charged for labor, parts, and materials needed to fix the problem. All those costs will be covered by the selling business entity or one of its partnering business entities.\n\nNote: This is just a rough classification for filtering offers. It is up to the buying party to check the exact scope and terms and conditions of the gr:WarrantyPromise.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Parts and labor / bring-in (warranty scope)".freeze, - type: "gr:WarrantyScope".freeze + type: "http://purl.org/goodrelations/v1#WarrantyScope".freeze term :"PartsAndLabor-PickUp", comment: "In case of a defect or malfunction, the buying party has the right to request from the selling gr:Business Entity to pick-up the good from its current location to a suitable service location, where the functionality of the good will be restored. All transportation, labor, parts, and materials needed to fix the problem will be covered by the selling business entity or one of its partnering business entities.\n \nNote: This is just a rough classification for filtering offers. It is up to the buying party to check the exact scope and terms and conditions of the gr:WarrantyPromise.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Parts and labor / pick up (warranty scope)".freeze, - type: "gr:WarrantyScope".freeze + type: "http://purl.org/goodrelations/v1#WarrantyScope".freeze term :PayPal, comment: "Payment via the PayPal payment service.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "PayPal (payment method)".freeze, - type: "gr:PaymentMethod".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethod".freeze term :PaySwarm, comment: "Payment via the PaySwarm distributed micropayment service.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "PaySwarm (payment method)".freeze, - type: "gr:PaymentMethod".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethod".freeze term :ProvideService, comment: "This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the respective type of service.\n\nNote: Maintain and Repair are also types of Services. However, products and services ontologies often provide classes for tangible products as well as for types of services. The business function gr:ProvideService is to be used with such goods that are services, while gr:Maintain and gr:Repair can be used with goods for which only the class of product exists in the ontology, but not the respective type of service.\n\nExample: Car maintenance could be expressed both as \"provide the service car maintenance\" or \"maintain cars\".".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Provide service (business function)".freeze, - type: "gr:BusinessFunction".freeze + type: "http://purl.org/goodrelations/v1#BusinessFunction".freeze term :PublicHolidays, comment: "A placeholder for all official public holidays at the gr:Location. This allows specifying the opening hours on public holidays. If a given day is a public holiday, this specification supersedes the opening hours for the respective day of the week.".freeze, - "gr:displayPosition": "8".freeze, + "http://purl.org/goodrelations/v1#displayPosition": "8".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Public holidays (day of week)".freeze, - type: "gr:DayOfWeek".freeze + type: "http://purl.org/goodrelations/v1#DayOfWeek".freeze term :PublicInstitution, comment: "The gr:BusinessEntityType representing such agents that are part of the adminstration or owned by the public.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Public institution (business entity type)".freeze, - type: "gr:BusinessEntityType".freeze + type: "http://purl.org/goodrelations/v1#BusinessEntityType".freeze term :Repair, comment: "This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the evaluation of the chances for repairing, and, if positive, repair of the specified gr:ProductOrService. Repairing means actions that restore the originally intended function of a product that suffers from outage or malfunction.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Repair (business function)".freeze, - type: "gr:BusinessFunction".freeze + type: "http://purl.org/goodrelations/v1#BusinessFunction".freeze term :Reseller, comment: "The gr:BusinessEntityType representing such agents that are purchasing the scope of products included in the gr:Offering for resale on the market. Resellers are also businesses, i.e., they are officially registered with the public administration and strive for profits by their activities.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Reseller (business entity type)".freeze, - type: "gr:BusinessEntityType".freeze + type: "http://purl.org/goodrelations/v1#BusinessEntityType".freeze term :Saturday, comment: "Saturday as a day of the week.".freeze, - "gr:displayPosition": "6".freeze, - "gr:hasNext": "gr:Sunday".freeze, - "gr:hasPrevious": "gr:Friday".freeze, + "http://purl.org/goodrelations/v1#displayPosition": "6".freeze, + "http://purl.org/goodrelations/v1#hasNext": "http://purl.org/goodrelations/v1#Sunday".freeze, + "http://purl.org/goodrelations/v1#hasPrevious": "http://purl.org/goodrelations/v1#Friday".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Saturday (day of week)".freeze, - type: "gr:DayOfWeek".freeze + type: "http://purl.org/goodrelations/v1#DayOfWeek".freeze term :Sell, comment: "This gr:BusinessFunction indicates that the gr:BusinessEntity offers to permanently transfer all property rights on the specified gr:ProductOrService.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Sell (business function)".freeze, - type: "gr:BusinessFunction".freeze + type: "http://purl.org/goodrelations/v1#BusinessFunction".freeze term :Sunday, comment: "Sunday as a day of the week.".freeze, - "gr:displayPosition": "7".freeze, - "gr:hasNext": "gr:Monday".freeze, - "gr:hasPrevious": "gr:Saturday".freeze, + "http://purl.org/goodrelations/v1#displayPosition": "7".freeze, + "http://purl.org/goodrelations/v1#hasNext": "http://purl.org/goodrelations/v1#Monday".freeze, + "http://purl.org/goodrelations/v1#hasPrevious": "http://purl.org/goodrelations/v1#Saturday".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Sunday (day of week)".freeze, - type: "gr:DayOfWeek".freeze + type: "http://purl.org/goodrelations/v1#DayOfWeek".freeze term :Thursday, comment: "Thursday as a day of the week.".freeze, - "gr:displayPosition": "4".freeze, - "gr:hasNext": "gr:Friday".freeze, - "gr:hasPrevious": "gr:Wednesday".freeze, + "http://purl.org/goodrelations/v1#displayPosition": "4".freeze, + "http://purl.org/goodrelations/v1#hasNext": "http://purl.org/goodrelations/v1#Friday".freeze, + "http://purl.org/goodrelations/v1#hasPrevious": "http://purl.org/goodrelations/v1#Wednesday".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Thursday (day of week)".freeze, - type: "gr:DayOfWeek".freeze + type: "http://purl.org/goodrelations/v1#DayOfWeek".freeze term :Tuesday, comment: "Tuesday as a day of the week.".freeze, - "gr:displayPosition": "2".freeze, - "gr:hasNext": "gr:Wednesday".freeze, - "gr:hasPrevious": "gr:Monday".freeze, + "http://purl.org/goodrelations/v1#displayPosition": "2".freeze, + "http://purl.org/goodrelations/v1#hasNext": "http://purl.org/goodrelations/v1#Wednesday".freeze, + "http://purl.org/goodrelations/v1#hasPrevious": "http://purl.org/goodrelations/v1#Monday".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Tuesday (day of week)".freeze, - type: "gr:DayOfWeek".freeze + type: "http://purl.org/goodrelations/v1#DayOfWeek".freeze term :UPS, comment: "Delivery via the parcel service UPS.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "UPS (delivery method)".freeze, - type: "gr:DeliveryModeParcelService".freeze + type: "http://purl.org/goodrelations/v1#DeliveryModeParcelService".freeze term :VISA, comment: "Payment by credit or debit cards issued by the VISA network.".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "VISA (payment method)".freeze, - type: "gr:PaymentMethodCreditCard".freeze + type: "http://purl.org/goodrelations/v1#PaymentMethodCreditCard".freeze term :Wednesday, comment: "Wednesday as a day of the week.".freeze, - "gr:displayPosition": "3".freeze, - "gr:hasNext": "gr:Thursday".freeze, - "gr:hasPrevious": "gr:Tuesday".freeze, + "http://purl.org/goodrelations/v1#displayPosition": "3".freeze, + "http://purl.org/goodrelations/v1#hasNext": "http://purl.org/goodrelations/v1#Thursday".freeze, + "http://purl.org/goodrelations/v1#hasPrevious": "http://purl.org/goodrelations/v1#Tuesday".freeze, isDefinedBy: "http://purl.org/goodrelations/v1".freeze, label: "Wednesday (day of week)".freeze, - type: "gr:DayOfWeek".freeze + type: "http://purl.org/goodrelations/v1#DayOfWeek".freeze end end diff --git a/lib/rdf/vocab/gs1.rb b/lib/rdf/vocab/gs1.rb index 7b2979c..89c4b97 100644 --- a/lib/rdf/vocab/gs1.rb +++ b/lib/rdf/vocab/gs1.rb @@ -3,8735 +3,7135 @@ # This file generated automatically using rdf vocabulary format from http://gs1.org/voc/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # GS1 vocabulary - # # - # # The GS1 RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language. - # class GS1 < RDF::StrictVocabulary - # # A product classification for the product other than the Global Product Classification(GPC brick value). - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdditionalProductClassificationDetails - # - # # A set of details about one of the additives within the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdditiveDetails - # - # # Describes a prize or award won by a product or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AwardPrizeDetails - # - # # Any potable liquid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Beverage - # - # # Information on brands and sub-brands for a product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brand - # - # # Information about the type of certification issued by a certifying body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CertificationDetails - # - # # A product that is worn on the body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Clothing - # - # # A set of colour code details (colour code, party controlling the code list) for the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ColourCodeDetails - # - # # Information on an individual or department acting as point of contact for an organiation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContactPoint - # - # # Country is a complex data type that indicates a country and a country subdivision. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Country - # - # # A set of diet type code details (diet type code and diet type sub code) for the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DietTypeCodeDetails - # - # # Provides the length, width, and depth of an item with their associated unit of measure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dimension - # - # # Food and Beverage Preparation Information is a complex data type that indicates a preparation state code and preparation instructions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodAndBeveragePreparationInformation - # - # # Food Beverage Tobacco Ingredient is a complex data type that includes an ingredient statement and details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodBeverageTobaccoIngredientDetails - # - # # A food, beverage or tobacco product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodBeverageTobaccoProduct - # - # # Outerwear that is worn on the feet such as shoes or boots. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Footwear - # - # # Contains properties related specifically to fruit and vegetable products. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FruitsVegetables - # - # # The geographic coordinates of a place or event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeoCoordinates - # - # # Meat and poultry products. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MeatPoultry - # - # # Milk butter cream yogurts cheese eggs and any substitutes for these products. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MilkButterCreamYogurtCheeseEggsSubstitutes - # - # # A class providing nutritional value and intake percent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NutritionMeasurementType - # - # # An offer to transfer some rights to an item or to provide a service,for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Offer - # - # # A set of organic claim details for the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganicClaimDetails - # - # # An Organization is any legal or physical entity involved at any point in any supply chain and upon which there is a need to retrieve predefined information. An Organization is uniquely identified by a Global Location Number (GLN). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # Details on packaging for a product for example packaging type (bottle), materials, features, recycling, etc.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingDetails - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingMaterialDetails - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Place - # - # # The location at which a particular organization or person may be found or reached. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PostalAddress - # - # # A structured value representing a monetary amount, consisting of a value and currency code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PriceSpecification - # - # # Any item (product or service) upon which there is a need to retrieve pre-defined information and that may be priced, or ordered, or invoiced at any point in any supply chain. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Product - # - # # A grouping of properties related to the yield of a food or beverage product according to a specified type of preparation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductYieldDetails - # - # # A point value or interval for product characteristics and other purposes. A unit of measurement is also specified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuantitativeValue - # - # # Provides URL and other information on a referenced electronic file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReferencedFileDetails - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReturnablePackageDepositDetails - # - # # Seafood Products including fish and shellfish. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Seafood - # - # # A grouping of properties related to the representing the size of a product, by specifying a value from a specified code list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SizeCodeDetails - # - # # A grouping of properties related to the size of a wearable product - # # @return [RDF::Vocabulary::Term] - # attr_reader :SizeDetails - # - # # A set of target market details (product release date and associated countries) for the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TargetMarketDetails - # - # # Details on the composition of any materials used to make a product using textiles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextileMaterialDetails - # - # # A code list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TypeCode - # - # # An assurance that the product is reliable and that repairs or replacement will be done free of charge within a given time limit and under certain conditions in the event of a defect. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WarrantyPromise - # - # # Products that are worn on the body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WearableProduct - # - # # Code indicating a means of payment, for example, BANK_CHEQUE, CASH, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedPaymentMethod - # - # # The value associated with the Additional Organization Identification Type Value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalOrganizationIdentificationTypeValue - # - # # Relates to a set of additional product classification details - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalProductClassification - # - # # Code specifying the applied additional product classification scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalProductClassificationCode - # - # # A description related to the additional product classification code value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalProductClassificationCodeDescription - # - # # Code specifying an additional product classification other than the GS1 Global Product Classification. The applied classification scheme is specified as additional information together with the classification value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalProductClassificationValue - # - # # Additional variants necessary to communicate to the industry to help define the product. Multiple variants can be established for each GTIN for e.g. Style, Colour, and Fragrance . - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalProductDescription - # - # # Relates to details about any additives that a product may contain. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additive - # - # # Code indicating the level of presence of the additive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additiveLevelOfContainment - # - # # The name of any additive or genetic modification contained or not contained in the product . - # # @return [RDF::Vocabulary::Term] - # attr_reader :additiveName - # - # # The postal address for an organization or place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :address - # - # # Code specifying the country (and country subdivision) for the address using ISO 3166-1. - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressCountry - # - # # Text specifying the name of the locality, for example a city. - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressLocality - # - # # Text specifying a province or state in abbreviated format for example NJ. - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressRegion - # - # # Links to afterhours contact information for an organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :afterHoursContact - # - # # A legally defined geographical region where the grapes for a wine were grown also known as an appellation. It is recommended to populate this property with an ISO 3166-2 code to indicate country and subdivision. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alcoholicBeverageSubregion - # - # # Code specifying the level of presence of the allergen. - # # @return [RDF::Vocabulary::Term] - # attr_reader :allergenLevelOfContainmentCode - # - # # The agency or other organization that defines or manages the criteria for allergen containment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :allergenSpecificationAgency - # - # # Free text field containing the name and version of the regulation or standard that defines the criteria of allergen containment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :allergenSpecificationName - # - # # Textual description of the presence or absence of allergens as governed by local rules and regulations, specified as one string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :allergenStatement - # - # # Code specifying the type of allergen. - # # @return [RDF::Vocabulary::Term] - # attr_reader :allergenType - # - # # Describes the meat product in terms of whether it is the whole animal or part of the animal which has been cut such as the muscle, bone, organ, or fat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :anatomicalForm - # - # # Link to a file containing an audio clip which is relevant to the product. Examples are commercials, or instructional/ how to use audio files. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audioFile - # - # # The date from which the product is no longer available from the information provider, including seasonal or temporary product and services . - # # @return [RDF::Vocabulary::Term] - # attr_reader :availabilityEnds - # - # # The date from which the product is available from the information provider, including seasonal or temporary product and services. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availabilityStarts - # - # # The location the offered product or service is available from. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableAtOrFrom - # - # # ISO 639-1 code specifying the language of a specified contact point. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableLanguage - # - # # An award or prize given to the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardPrize - # - # # Indicates the achievement of the product in relation to a prize or award, e.g. winner, runner-up, shortlisted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardPrizeCode - # - # # An ISO standard code identifying the country in which a prize or award is given. It is recommended to populate this property with an ISO 3166-1 country code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardPrizeCountryCode - # - # # Text that describes the awards won. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardPrizeDescription - # - # # Free text listing members of the jury that awarded the prize. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardPrizeJury - # - # # The name of a prize or award which the product has received. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardPrizeName - # - # # The year in which a prize or award was given. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awardPrizeYear - # - # # The year in which the majority of ingredients are harvested and/or the alcoholic beverage is produced. Determination as to whether the vintage year is the harvest date or production date is according to requirements in the Target Market. - # # @return [RDF::Vocabulary::Term] - # attr_reader :beverageVintage - # - # # Biotin Acid per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :biotinPerNutrientBasis - # - # # The descriptive term that is used by the product manufacturer to identify whether the product makes a specific claim to contain no bones. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bonelessClaim - # - # # The brand of the product that appears on the consumer package. - # # @return [RDF::Vocabulary::Term] - # attr_reader :brand - # - # # The brand name of the product that appears on the consumer package. - # # @return [RDF::Vocabulary::Term] - # attr_reader :brandName - # - # # The brand owner of the product. The organization that is responsible for allocating the GTIN to the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :brandOwner - # - # # Calcium per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :calciumPerNutrientBasis - # - # # Carbohydrates per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :carbohydratesPerNutrientBasis - # - # # Free text field describing the sea zone from which the product was caught in. - # # @return [RDF::Vocabulary::Term] - # attr_reader :catchZone - # - # # Information on certification to which the product complies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :certification - # - # # Name of the organization issuing the certification standard or other requirement being met . - # # @return [RDF::Vocabulary::Term] - # attr_reader :certificationAgency - # - # # Name of the certification standard. Free text. Example: Egg classification . - # # @return [RDF::Vocabulary::Term] - # attr_reader :certificationStandard - # - # # The product's certification standard value. Example:4. - # # @return [RDF::Vocabulary::Term] - # attr_reader :certificationValue - # - # # The firmness of the cheese product for example EXTRA_HARD. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cheeseFirmness - # - # # A descriptive way to specify a date range as some cheeses are matured over a period of time, but not an exact period. For example 3 to 4 weeks, over 1 year etc. The term maturation is also known in other markets as Aged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cheeseMaturationPeriodDescription - # - # # Chloride per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :chloridePerNutrientBasis - # - # # Cholesterol per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cholesterolPerNutrientBasis - # - # # Chromium per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :chromiumPerNutrientBasis - # - # # Supplemental information to indicate the clothing cut or silhouette make of the garment. For example, silhouette details for a pair of jeans such as boot cut, or loose fit, comfort fit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :clothingCut - # - # # A free text description of the type of collar on the garment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collarType - # - # # Relates to a set of details about the colour code for a product - # # @return [RDF::Vocabulary::Term] - # attr_reader :colourCode - # - # # The parties controlling the colour code lists. Dependent on colour code value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colourCodeList - # - # # A code depicting the colour of an object according to a specific code list. The applied code list is specified as additional information together with the colour code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colourCodeValue - # - # # A description of the colour of an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colourDescription - # - # # The first date/time that the buyer is allowed to sell the product to consumers. Usually related to a specific geography. ISO 8601 date format CCYY-MM-DDTHH:MM:SS. - # # @return [RDF::Vocabulary::Term] - # attr_reader :consumerFirstAvailabilityDateTime - # - # # Link to a website, file, or image containing the manufacturer's recommendations for how the consumer or end user should store and handle the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :consumerHandlingStorage - # - # # Indicates, with reference to the product branding, labelling or packaging, the descriptive term that is used by the product manufacturer to identify the period or stage in the consumer's life during which the product is considered to be suitable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :consumerLifestage - # - # # Additional information that should be used in advertising and in displaying. - # # @return [RDF::Vocabulary::Term] - # attr_reader :consumerPackageDisclaimer - # - # # Information on consumer safety regarding the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :consumerSafetyInformation - # - # # A code depicting restrictions imposed on the product regarding how it can be sold to the consumer for example Prescription Required. - # # @return [RDF::Vocabulary::Term] - # attr_reader :consumerSalesCondition - # - # # Expresses in text the consumer storage instructions of a product which are normally held on the label or accompanying the product. This information may or may not be labelled on the pack. - # # @return [RDF::Vocabulary::Term] - # attr_reader :consumerStorageInstructions - # - # # Free text containing the usage instructions of a product, which are normally held on the label or accompanying the product. This information may or may not be labelled on the pack. - # # @return [RDF::Vocabulary::Term] - # attr_reader :consumerUsageInstructions - # - # # Links to information about a business location for an organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactPoint - # - # # The function or role of a contact for example Customer Support. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactType - # - # # An indication of the ease of preparation for semi-prepared products. The convenience level indicates the level of preparation in percentage required to prepare and helps the consumer to assess how long it will take to prepare the meal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :convenienceLevelPercent - # - # # Copper per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copperPerNutrientBasis - # - # # 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 - # - # # The place where product is assembled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryOfAssembly - # - # # The place where the product or ingredient was last processed and tested before importation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryOfLastProcessing - # - # # Code indicating the country of origin of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryOfOrigin - # - # # A description of the geographic area the item may have originated from or has been processed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryOfOriginStatement - # - # # A short text string code (see values defined in ISO 3166_2) specifying the country subdivision in which an activity is performed, for example processing, bottling, manufacturing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countrySubdivisionCode - # - # # A code that identifies a county. A county is a territorial division in some countries, forming the chief unit of local administration. In the US, a county is a political and administrative division of a state. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countyCode - # - # # A street intersecting a main street (usually at right angles) and continuing on both sides of it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :crossStreet - # - # # The organization which provides product support to the trading partner organization to which merchandise is sold. - # # @return [RDF::Vocabulary::Term] - # attr_reader :customerSupportCentre - # - # # The percentage of the recommended daily intake of a nutrient as recommended by authorities of the target market. Is expressed relative to the serving size and base daily value intake. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dailyValueIntakePercent - # - # # The name of a division of an organization dealing with a specific activity - # # @return [RDF::Vocabulary::Term] - # attr_reader :department - # - # # Dependent products are products which are required to make the current product functional. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dependentProprietaryProduct - # - # # The depth of the product, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :depth - # - # # An alphanumeric size factor the brand owner wishes to communicate to the consumer. IE Jumbo, Capri, Full Length, Maxi. - # # @return [RDF::Vocabulary::Term] - # attr_reader :descriptiveSize - # - # # The measurement of the diameter of the product at its largest point. For example, 165 mmt. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diameter - # - # # Links to multiple pairs of gs1:DietTypeCode and diet type sub code (free-form text string). - # # @return [RDF::Vocabulary::Term] - # attr_reader :dietCode - # - # # Code indicating the diet the product is suitable for example Kosher. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dietType - # - # # Free text for indication of diet not stated in the list of diets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dietTypeDescription - # - # # Indicates a set of agreements or a certificate name that guarantees the product is permitted in a particular diet. A diet type subcode is a subclassification of a specific diet type. For example, Pareve is a diet type subcode of Kosher. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dietTypeSubcode - # - # # The weight of the product when drained of its liquid. For example 225 grm, Jar of pickles in vinegar. - # # @return [RDF::Vocabulary::Term] - # attr_reader :drainedWeight - # - # # The time period that the warranty is valid within. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationOfWarranty - # - # # The current tax or duty or fee amount applicable to the product, expressed as a floating-point numeric value that is qualified by the corresponding currency. See also gs1:priceCurrency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutyFeeTaxAmount - # - # # A description of tax type for example Taxes sure les supports audio. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutyFeeTaxDescription - # - # # The current tax or duty rate percentage applicable to the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dutyFeeTaxRate - # - # # The quantity including unit of measure for which the offer for good or service is valid. If this is not specified, an eligible quantity of 1 should be assumed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleQuantity - # - # # The maximum quantity including unit of measure for which the offer for good or service is valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleQuantityMaximum - # - # # The minimum quantity including unit of measure for which the offer for good or service is valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleQuantityMinimum - # - # # Creating/sending/receiving of unstructured free text messages or documents using computer network, a mini-computer or an attached modem and regular telephone line or other electronic transmission media. - # # @return [RDF::Vocabulary::Term] - # attr_reader :email - # - # # Energy from Fat per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :energyFromFatPerNutrientBasis - # - # # Energy Per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :energyPerNutrientBasis - # - # # A product which can be substituted for the product based on supplier-defined functional equivalence to the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :equivalentProduct - # - # # The percentage of fat contained in milk content of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fatInMilkContent - # - # # Fat per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fatPerNutrientBasis - # - # # The amount of fat contained in the base product expressed in percentage. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fatpercentageInDryMatter - # - # # Device used for transmitting and reproducing fixed graphic material (as printing) by means of signals over telephone lines or other electronic transmission media. - # # @return [RDF::Vocabulary::Term] - # attr_reader :faxNumber - # - # # Fibre per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fibrePerNutrientBasis - # - # # The specified language to which the digital asset is targeted. It is recommended to use the ISO 639-1 language code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileLanguageCode - # - # # The number of pixels along the vertical axis of the image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :filePixelHeight - # - # # The number of pixels along the horizontal axis of the image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :filePixelWidth - # - # # The type of fish for example Sea bass. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fishType - # - # # Fluoride per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fluoridePerNutrientBasis - # - # # Folic Acid per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :folicAcidPerNutrientBasis - # - # # Identifies whether or not the product requires refrigeration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodBeverageRefrigerationClaim - # - # # The type of meal the food or beverage product is targeted to for example Breakfast. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodBeverageTargetUse - # - # # Something that mechanically joins or affixes two or more parts together in a footwear product for example a shoe lace. - # # @return [RDF::Vocabulary::Term] - # attr_reader :footwearFasteningType - # - # # The descriptive term that is used by the product manufacturer to identify whether the footwear upper is open or closed. Otherwise known as Open or Closed Upper. - # # @return [RDF::Vocabulary::Term] - # attr_reader :footwearUpperType - # - # # A code determining whether the fish originated from the sea or was farmed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :freshOrSeawaterFarmed - # - # # Describes use of the product or service by the consumer. Should help clarify the product classification associated with the GTIN. - # # @return [RDF::Vocabulary::Term] - # attr_reader :functionalName - # - # # A statement of the presence or absence of genetically modified protein or DNA. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geneticallyModifiedDeclaration - # - # # Links to information about geocoordinates for a place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geo - # - # # A Global Location Number (GLN) is the GS1 Identification Key used to identify physical locations or parties. The key comprises a GS1 Company Prefix, Location Reference and Check Digit. For more information see http://www.gs1.org/gln. - # # @return [RDF::Vocabulary::Term] - # attr_reader :globalLocationNumber - # - # # 8-digit code (GPC Brick Value) specifying a product category according to the GS1 Global Product Classification (GPC) standard. For more information see http://www.gs1.org/gpc - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpcCategoryCode - # - # # A description of the code specifying a product category according to the GS1 Global Product Classification (GPC) standard. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gpcCategoryDescription - # - # # Used to identify the gross weight of the product. The gross weight includes all packaging materials of the product. At pallet level the productGrossWeight includes the weight of the pallet itself. For example, 200 grm, value - total pounds, total grams, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :grossWeight - # - # # The process through which fresh produce is grown and cultivated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :growingMethod - # - # # A Global Trade Item Number (GTIN) is the 14 digit GS1 Identification Key used to identify products. The key comprises a GS1 Company Prefix followed by an Item Reference Number and a Check Digit. See http://www.gs1.org/gtin for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin - # - # # links to details of amounts refunded for returnable package in a specified region. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasReturnablePackageDeposit - # - # # A description of health claims according to regulations of the target market. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthClaimDescription - # - # # The height of the product, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :height - # - # # Link to a file containing a visual representation of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :image - # - # # The dimensions of a product including the packaging in which the product was supplied. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inPackageDimensions - # - # # Any included object or device not part of the core product itself but which adds to its functionality or use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedAccessories - # - # # Links to information about ingredients of a specific Food/Beverage/Tobacco product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredient - # - # # Quantity of the ingredient contained in the product as a percentage of the total product ingredients. This is used in conjunction with ingredientName. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredientContentPercentage - # - # # Free text field describing an ingredient or ingredient group. Ingredients include any additives (colourings, preservatives, e-numbers, etc.) that are encompassed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredientName - # - # # Indicates a claim to an ingredient, considered to be a concern for regulatory or other reasons, and which is 'contained' within the product but may not need to specify the amount whether approximate, or an accurate measurement be given. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredientOfConcern - # - # # Integer (1, 2, 3...) indicating the ingredient order by content percentage of the product. (major ingredient = 1, second ingredient = 2) etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredientSequence - # - # # Information on the constituent ingredient make up of the product specified as one string. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredientStatement - # - # # Link to a file containing the Instructions For Use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :instructionsForUse - # - # # Iodine per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :iodinePerNutrientBasis - # - # # Iron per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ironPerNutrientBasis - # - # # Indicates if radiation has been applied to the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :irradiatedCode - # - # # Used to identify whether or not a beverage product is naturally effervescent or has been made effervescent by the addition of carbon dioxide gas. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isCarbonated - # - # # The descriptive term that is used by the product manufacturer to identify whether or not the product contains caffeine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isDecaffeinated - # - # # Used to identify whether or not the product claims to be made from a concentrated formulation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isFromConcentrate - # - # # A The indication whether or not the milk used was actively homogenised. The homogenisation of milk is a technical process in the dairy. The milk fat is milled to such an extent that further creaming is prevented. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isHomogenised - # - # # Determines whether the product is instant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isInstant - # - # # Indicates, with reference to the product branding, labelling or packaging, the descriptive term that is used by the product manufacturer to identify if the product is intended as maternity wear. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isMaternity - # - # # The descriptive term that is used by the product manufacturer to identify whether or not the product has a patterned design. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPatterned - # - # # The descriptive term that is used by the product manufacturer to identify whether or not a fruit or vegetable product has been de-stoned or pitted prior to being offered for sale. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPittedStoned - # - # # An indicator for the product to determine if the Manufacturer or Supplier has recalled the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isProductRecalled - # - # # An indicator whether or not the cheese rind is edible. Some cheeses are coated in plastic or their surface is treated with other traditional substances to increase their shelf life. This can result in the rind no longer being edible. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRindEdible - # - # # Determines whether the product is seedless as grown. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSeedless - # - # # The descriptive term that is used by the product manufacturer to identify whether or not the product or its contents have been shelled/peeled prior to being offered for sale. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isShelledPeeled - # - # # Determines whether the product comes pre-sliced. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSliced - # - # # The descriptive term that is used to identify whether the product is thermal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isThermal - # - # # Identifies whether the product makes claim to being vintage. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isVintage - # - # # Determines whether product has been prewashed and is ready to eat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isWashedReadyToEat - # - # # The descriptive term that is used to identify whether or not the product claims to provide waterproofing to the applied surface. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isWaterproof - # - # # Identifies whether or not the product is intended to be disposed of after single use or a limited period of use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isWearableItemDisposable - # - # # The product included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemOffered - # - # # The job title of the person that can be contacted for example Manager. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobTitle - # - # # The fruit juice content of the product expressed as a percentage. - # # @return [RDF::Vocabulary::Term] - # attr_reader :juiceContentPercent - # - # # Angular distance North or South from the earth's equator measured through 90 degrees. - # # @return [RDF::Vocabulary::Term] - # attr_reader :latitude - # - # # The place associated with an organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :location - # - # # The arc or portion of the earth's equator intersected between the meridian of a given place and the prime meridian and expressed in degrees - # # @return [RDF::Vocabulary::Term] - # attr_reader :longitude - # - # # Magnesium per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :magnesiumPerNutrientBasis - # - # # An offer made by an organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :makesOffer - # - # # Manganese per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :manganesePerNutrientBasis - # - # # The organization that produces the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :manufacturer - # - # # Code indicating the preparation methods that a manufacturer has used in the manufacturing of a product for example DEEP_FRY. - # # @return [RDF::Vocabulary::Term] - # attr_reader :manufacturerPreparationCode - # - # # The warranty associated with the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :manufacturersWarranty - # - # # A physical location consisting of one or more buildings with facilities for manufacturing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :manufacturingPlant - # - # # The method of maturity for the item for example tree ripened or jet fresh. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maturationMethod - # - # # Provides a maximum price value as a floating-point numeric value that is qualified by the corresponding currency. See also gs1:priceCurrency - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxPrice - # - # # The upper limit drinking temperature of the optimum range of the drinking temperature. The optimum range of the drinking temperature is a recommendation and is based on the experience of the individual producer. Allows for the representation of the same value in different units of measure but not multiple values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumOptimumConsumptionTemperature - # - # # The fish, meat, or poultry type for this food and beverage item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :meatPoultryType - # - # # Provides a minimum price value as a floating-point numeric value that is qualified by the corresponding currency. See also gs1:priceCurrency - # # @return [RDF::Vocabulary::Term] - # attr_reader :minPrice - # - # # The minimum amount of fish contained in a food and beverage product expressed as a measurement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumFishContent - # - # # The minimum amount of fish, meat or poultry contained in a food and beverage product expressed as a measurement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumMeatPoultryContent - # - # # The lower limit drinking temperature of the optimum range of the drinking temperature. The optimum range of the drinking temperature is a recommendation and is based on the experience of the individual producer. Allows for the representation of the same value in different units of measure but not multiple values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumOptimumConsumptionTemperature - # - # # Molybdenum per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :molybdenumPerNutrientBasis - # - # # Monounsaturated fat per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :monounsaturatedFatPerNutrientBasis - # - # # The quantity of the product contained by a package, usually as claimed on the label. Indicates the net content of the total product. For fixed value products use the value claimed on the package, to avoid variable fill rate issue that arises with some product which are sold by volume or weight, and whose actual content may vary slightly from batch to batch. - # # @return [RDF::Vocabulary::Term] - # attr_reader :netContent - # - # # Used to identify the net weight of the product. Net Weight excludes all packaging material, including the packaging material of all lower-level GTINs. Example:11.5 kgm. - # # @return [RDF::Vocabulary::Term] - # attr_reader :netWeight - # - # # Niacin per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :niacinPerNutrientBasis - # - # # The total number of servings contained in the package. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfServingsPerPackage - # - # # Code indicating whether the number of servings per package is exact or approximate, for example, 4-6 adults. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfServingsPerPackageMeasurementPrecision - # - # # A free text field specifying a range for the number of servings contained in the package. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfServingsRangeDescription - # - # # Quantity on which the nutrient information has been based; for example, per 100 grams. When specified, nutrientBasisQuantity establishes the basis for all contained nutrient records. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutrientBasisQuantity - # - # # The type of quantity specified in the nutrientBasisQuantity for example measurement, serving size, or container. This is used in conjunction with the nutrientBasisQuantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutrientBasisQuantityType - # - # # The Code indicating whether the specified nutrient content is exact or approximate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutrientMeasurementPrecision - # - # # Code indicating a nutritional claim applicable to the product, for example FAT_FREE. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutritionalClaim - # - # # Free text field for any additional nutritional claims. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutritionalClaimStatement - # - # # A description of the offer including goods or services offered for sale or use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offerDescription - # - # # Relates to an organic claim about the product - # # @return [RDF::Vocabulary::Term] - # attr_reader :organicClaim - # - # # A governing body that creates and maintains standards related to organic products. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organicClaimAgency - # - # # The percent of actual organic materials per weight of the product. This is usually claimed on the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organicPercentClaim - # - # # The name of the organization expressed in text. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organizationName - # - # # Code indicating an organization role. Allowed code values are specified in OrganizationalRole code list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organizationRole - # - # # The dimensions of a product after removal from consumer packaging and assembled (if necessary) for final use. This property can be used for products such as a computer desk; entertainment centre; microwave oven; lawnmower; a floor cleaner; a grouping of table and chairs; stove; telephone; camera; large appliance (e.g. washing machines); small appliance (e.g. food processors). - # # @return [RDF::Vocabulary::Term] - # attr_reader :outOfPackageDimensions - # - # # Details on the packaging for a product including type, weight and materials. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packaging - # - # # Code indicating a feature that facilitates the usage of the product by the consumer, for example a handle. Packaging features do not affect the core composition of the packaging type nor modify its usage. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingFeature - # - # # Code indicating specific functionality for packaging resulting from specific processes or features present in the packaging type,for example, ANTI_TAMPERING. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingFunction - # - # # Indication of which dietary or allergen marks are on the package. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingMarkedDietAllergenType - # - # # Indication of the food ingredients that the package is marked free from. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingMarkedFreeFrom - # - # # A marking that the product received recognition, endorsement, certification by following guidelines by the label issuing agency. This does not represent claims for regulatory purposes on products such as free from markings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingMarkedLabelAccreditation - # - # # links to details about packaging material type, quantity and thickness - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingMaterial - # - # # The quantity of the packaging material of the product. Can be weight, volume or surface, can vary by country. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingMaterialCompositionQuantity - # - # # The thickness of a packaging material. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingMaterialThickness - # - # # The materials used for the packaging of the product for example glass or plastic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingMaterialType - # - # # The process the packaging could undertake for recyclable & sustainability programs. Examples COMPOSTABLE, ENERGY_RECOVERABLE, REUSABLE. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingRecyclingProcessType - # - # # A code determining the recycling scheme the packaging of this product will fall within when recycled. Applies to recyclable packaging with or without deposit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingRecyclingScheme - # - # # A code depicting the shape of a package for example CONE. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingShape - # - # # The dominant means used to transport, store, handle or display the product as defined by the data source. This packaging is not used to describe any manufacturing process.Recommend to use UNECE Rec 21 codes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :packagingType - # - # # Pantothenic Acid per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pantothenicAcidPerNutrientBasis - # - # # The type of payment term expressed as a code, for example Discount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentTerms - # - # # The percentage of alcohol contained in product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentageOfAlcoholByVolume - # - # # Phosphorus per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :phosphorusPerNutrientBasis - # - # # Polyols per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :polyolsPerNutrientBasis - # - # # Polyunsaturated fat per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :polyunsaturatedFatPerNutrientBasis - # - # # The number that identifies a PO box. A PO box is a box in a post office or other postal service location assigned to an organization where postal items may be kept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :postOfficeBoxNumber - # - # # Text specifying the postal code for an address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :postalCode - # - # # Potassium per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :potassiumPerNutrientBasis - # - # # Code specifying the preparation state of the product for which the nutrient information is valid. PREPARED, UNPREPARED. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preparationCode - # - # # Specifies additional precautions to be taken before preparation or consumption of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preparationConsumptionPrecautions - # - # # Links to information about how to prepare a specific Food/Beverage/Tobacco product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preparationInformation - # - # # Free text providing instructions on how to prepare the product before serving. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preparationInstructions - # - # # Code indicating the preservation technique used to preserve the product from deterioration, for example, BRINING. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preservationTechnique - # - # # Provides a price value as a floating-point numeric value that is qualified by the corresponding currency. See also gs1:priceCurrency. The price value indicates the unit price unless the property gs1:eligibleQuantity is specified and indicates multiple units - # # @return [RDF::Vocabulary::Term] - # attr_reader :price - # - # # A string value indicating a currency from ISO 4217 for example USD . - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceCurrency - # - # # The price related to an offer. If the offer is a multi-buy offer for a quantity of product greater than one unit, this should be indicated using the property gs1:eligibleQuantity - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceSpecification - # - # # A product that is similar to the current product but is not exact match. Same form fit function, e.g. same product different colour, different package size, better quality. - # # @return [RDF::Vocabulary::Term] - # attr_reader :primaryAlternateProduct - # - # # An understandable and useable description of a product using brand and other descriptors. This attribute is filled with as little abbreviation as possible, while keeping to a reasonable length. This should be a meaningful description of the product with full spelling to facilitate message processing. Retailers can use this description as the base to fully understand the brand, flavour, scent etc. of the specific product, in order to accurately create a product description as needed for their internal systems. Examples: XYZ Brand Base Invisible Solid Deodorant AP Stick Spring Breeze. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productDescription - # - # # Element for consumer facing marketing content to describe the key features or benefits of the style suitable for display purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productFeatureBenefit - # - # # The physical form or shape of the product. Used, for example, in pharmaceutical industry to indicate the formulation of the product. Defines the form the product takes and is distinct from the form of the packaging. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productFormDescription - # - # # Additional means to the Global Trade Item Number to identify a product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productID - # - # # Marketing message associated with the product. Consumer-friendly marketing detailed description of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productMarketingMessage - # - # # Consumer friendly short description of the product suitable for compact presentation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productName - # - # # A name, used by a Brand Owner, that span multiple consumer categories or uses. E.g. (Waist Watchers). - # # @return [RDF::Vocabulary::Term] - # attr_reader :productRange - # - # # Product quantity after preparation. This can differ based on productYieldType - # # @return [RDF::Vocabulary::Term] - # attr_reader :productYield - # - # # Code indicating the type of yield measurement specified in productYield. Examples: AFTER_DILUTION, DRAINED_WEIGHT. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productYieldType - # - # # Indication of range in percent of the given cooking / roasting loss. Percentage that the actual weight of the product differs upward or downward from the average or estimated product yield. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productYieldVariationPercentage - # - # # Free text assigned by the manufacturer to describe the production variant. Examples are: package series X, package series Y. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionVariantDescription - # - # # The start date of a production variant. The variant applies to products having a date mark (a best before date or expiration date) on the package that comes on or after the effective date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionVariantEffectiveDateTime - # - # # Protein per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proteinPerNutrientBasis - # - # # Free text description of the region or place the product originates from. This is to be specifically used to specify areas such as cities, mountain ranges, regions. Examples: Made in Thüringen Mountains, Made in Paris, From the Napa Valley. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provenanceStatement - # - # # Link to a website containing recipes associated with the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeWebsite - # - # # Link to a file or website containing additional information on product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencedFile - # - # # The date upon which the target of this external link ceases to be effective for use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencedFileEffectiveEndDateTime - # - # # The date upon which the target of this external link begins to be effective for use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencedFileEffectiveStartDateTime - # - # # The size of the file as it is stored in an uncompressed format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencedFileSize - # - # # A Code depicting the purpose or role of file (not a MIME type) that is being referenced, for example PRODUCT_LABEL_IMAGE. This code is used when the purpose of a file is not specified in the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencedFileType - # - # # Simple text string that refers to a resource on the internet, URLs may refer to documents, resources, people, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencedFileURL - # - # # The prescribed, regulated or generic product name or denomination that describes the true nature of the product. For example for a food product in order to distinguish it from other foods according to country specific regulations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :regulatedProductName - # - # # Indicates, with reference to the product branding, labelling or packaging whether a food product which is ready to eat can be reheated if required prior to consumption. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reheatingClaim - # - # # The product which permanently replaces the current product. This product is sent in the record for the original item that is being replaced. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacedByProduct - # - # # Indicates the product identification of an item that is being permanently replaced by this product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacedProduct - # - # # Text further specifying the area of responsibility of the trade contact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :responsibility - # - # # The monetary amount for the individual returnable package. - # # @return [RDF::Vocabulary::Term] - # attr_reader :returnablePackageDepositAmount - # - # # The geographic region associated with the returnable package deposit amount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :returnablePackageDepositRegion - # - # # Riboflavin per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :riboflavinPerNutrientBasis - # - # # Salt per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :saltPerNutrientBasis - # - # # Saturated fat per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :saturatedFatPerNutrientBasis - # - # # The calendar year in which the product is seasonally available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasonCalendarYear - # - # # Element defines the season applicable to the item for example Winter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasonName - # - # # Code indicating the season in which the product is available, e.g. SPRING, WINTER - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasonParameter - # - # # The organization seeking an offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seeker - # - # # Selenium per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seleniumPerNutrientBasis - # - # # The organization seeking to sell a product or service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seller - # - # # Measurement value specifying the serving size in which the information per nutrient has been stated. Example: Per 100 grams. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingSize - # - # # A free text field specifying the serving size for which the nutrient information has been stated for example: per 1/3 cup (42 g). - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingSizeDescription - # - # # Free text field for serving suggestion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingSuggestion - # - # # The descriptive term that is used by the product manufacturer to identify the sharpness of the taste of the product for example EXTRA_SHARP. Usually the longer the aging of the product, the sharper the taste. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sharpnessOfCheese - # - # # Links a wearable product to one or more groupings of gs1:SizeDetails representing size systems, size groups, size type and size dimensions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :size - # - # # Links a product to one or more groupings of gs1:SizeCodeDetails representing the size value from a specified code list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeCode - # - # # Code specifying a size code list. Allowed code values are specified in GS1 Code List SizeCodeListCode . - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeCodeListCode - # - # # A code depicting the size of an object according to a specific code list. The applied code list is specified as additional information together with the size code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeCodeValue - # - # # The numerical size measurement relating to the size type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeDimension - # - # # Code indicating the type of size that is necessary to uniquely specify the size of the item, for example, BOYS. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeGroup - # - # # The system that is being used to define the size for example EUROPE. Size system is used in conjunction with size group to define the size dimension. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeSystem - # - # # The type of size dimension being specified for example SLEEVE. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sizeType - # - # # Sodium per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sodiumPerNutrientBasis - # - # # Code indicating the source of raw material used to produce the food product, for example a GOAT for milk. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceAnimal - # - # # Code indicating the type of sporting activity for which the product is intended to be worn, for example FOOTBALL. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportingActivityType - # - # # Starch per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :starchPerNutrientBasis - # - # # The street address expressed as free form text. The street address is printed on paper as the first lines below the name. For example, the name of the street and the number in the street or the name of a building. - # # @return [RDF::Vocabulary::Term] - # attr_reader :streetAddress - # - # # An attribute that classifies products that share many of the same characteristics (attribute values) that does NOT vary by GTIN, and are presented by the supplier as a single merchandise selection for the buyer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :styleDescription - # - # # Second level of brand. Can be a trademark. It is the primary differentiating factor that a brand owner wants to communicate to the consumer or buyer. E.g. Yummy-Cola Classic. In this example Yummy-Cola is the brand and Classic is the sub-brand. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subBrandName - # - # # Sugars per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sugarsPerNutrientBasis - # - # # Represents the number of days between a product's sell by date and its use by date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplierSpecifiedMinimumConsumerStorageDays - # - # # Identifies the target consumer age range for which a product has been designed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetConsumerAge - # - # # Identifies the target consumer gender for which a product has been designed for example MALE - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetConsumerGender - # - # # Relates to a set of target market details (product release date and associated countries) - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetMarket - # - # # List of countries representing the target market for a particular release date indicated by gs1:consumerFirstAvailabilityDateTime - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetMarketCountries - # - # # Voice/data transmission by telephone. - # # @return [RDF::Vocabulary::Term] - # attr_reader :telephone - # - # # One or more links to information about the materials used in a wearable product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textileMaterial - # - # # A description of the material composition used in conjunction with the material percentage. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textileMaterialContent - # - # # This provides a name or brief description of one material contained within the product, for example Rayon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textileMaterialDescription - # - # # Corresponding net weight percentage of the product material specified via gs1:textileMaterialDescription, e.g. 70. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textileMaterialPercentage - # - # # The quality of material (fabric) of a product based on the total number of vertical and horizontal threads in one square inch. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textileMaterialThreadCount - # - # # The measured weight of the material expressed in ounces per square yard or grams per square meter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textileMaterialWeight - # - # # Thiamin per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :thiaminPerNutrientBasis - # - # # Trans Fat per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :transFatPerNutrientBasis - # - # # A string value indicating a Measurement Unit from UN/ECE Recommendation 20, Units of Measure used in International Trade e.g. GRM = gram - see http://www.unece.org/fileadmin/DAM/cefact/recommendations/rec20/rec20_rev3_Annex3e.pdf - # # @return [RDF::Vocabulary::Term] - # attr_reader :unitCode - # - # # The material(s) used for the upper part of the footwear product. The upper is the part of a shoe, boot, slipper or other item of footwear that is above the sole. - # # @return [RDF::Vocabulary::Term] - # attr_reader :upperMaterialType - # - # # The effective start date of the price . - # # @return [RDF::Vocabulary::Term] - # attr_reader :validFrom - # - # # The effective end date of the price . - # # @return [RDF::Vocabulary::Term] - # attr_reader :validThrough - # - # # A floating-point numeric value that is qualified by the corresponding measurement unit code - see gs1:measurementUnitCode - # # @return [RDF::Vocabulary::Term] - # attr_reader :value - # - # # Free text field used to identify the variant of the product. Variants are the distinguishing characteristics that differentiate products with the same brand and size including such things as the particular flavour, fragrance, taste. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variantDescription - # - # # The person hired by a winery or wine company who is responsible for many of the processes in the preparation, taste and quality of the wine produced. The science of wine making is referred to as oenology. The vintner is the oenologist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vintner - # - # # Vitamin A per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vitaminAPerNutrientBasis - # - # # Vitamin B12 per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vitaminB12PerNutrientBasis - # - # # Vitamin B6 per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vitaminB6PerNutrientBasis - # - # # Vitamin C per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vitaminCPerNutrientBasis - # - # # Vitamin D per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vitaminDPerNutrientBasis - # - # # Vitamin E per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vitaminEPerNutrientBasis - # - # # Vitamin K per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vitaminKPerNutrientBasis - # - # # Warning information is additional information that outlines special requirements, warning and caution information printed on the package. - # # @return [RDF::Vocabulary::Term] - # attr_reader :warningCopyDescription - # - # # The warranty associated with the product, as provided by the manufacturer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :warranty - # - # # The description of warranty available for the product. Allows for the representation of the same value in different languages but not for multiple values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :warrantyScopeDescription - # - # # The width of the product, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :width - # - # # Links a wearable product to one or more groupings of gs1:SizeDetails representing size systems, size groups, size type and size dimensions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yield - # - # # Zinc per specified nutrient basis quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :zincPerNutrientBasis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AllergenTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnatomicalFormCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheeseFirmnessCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ColourCodeListCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConsumerLifestageCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConsumerSalesConditionsCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DietTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodBeverageRefrigerationClaimCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodBeverageTargetUseCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FootwearFasteningTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FreshOrSeawaterFarmedCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GrowingMethodCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LevelOfContainmentCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MaturationMethodCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MeasurementPrecisionCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NonbinaryLogicCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NutrientBasisQuantityCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NutritionalClaimTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganicClaimAgencyCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganizationRoleType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingFeatureCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingFunctionCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingMarkedDietAllergenCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingMarkedFreeFromCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingMarkedLabelAccreditationCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingMaterialTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingRecyclingProcessTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingRecyclingSchemeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PackagingShapeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentMethod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreparationTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreservationTechniqueCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductYieldTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReferencedFileTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SeasonParameterCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SharpnessOfCheeseCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SizeGroupCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SizeSystemCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SizeTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SourceAnimalCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportingActivityTypeCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TargetConsumerGenderCode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :UpperTypeCode - # - # end GS1 = Class.new(RDF::StrictVocabulary("http://gs1.org/voc/")) do # Ontology definition ontology :"http://gs1.org/voc/", - "dc11:description": "The GS1 RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.".freeze, - "dc11:title": "GS1 vocabulary".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/elements/1.1/description": "The GS1 RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.".freeze, + "http://purl.org/dc/elements/1.1/title": "GS1 vocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AdditionalProductClassificationDetails, comment: "A product classification for the product other than the Global Product Classification(GPC brick value).".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Additional Product Classification Details".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :AdditiveDetails, comment: "A set of details about one of the additives within the product.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Additive Details".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :AwardPrizeDetails, comment: "Describes a prize or award won by a product or organization.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Award Prize".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Beverage, comment: "Any potable liquid.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Beverage".freeze, - subClassOf: "gs1:FoodBeverageTobaccoProduct".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Brand, comment: "Information on brands and sub-brands for a product.".freeze, - exactMatch: "schema:Brand".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/Brand".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Brand".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :CertificationDetails, comment: "Information about the type of certification issued by a certifying body.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Certification".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Clothing, comment: " A product that is worn on the body.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Clothing ".freeze, - subClassOf: "gs1:WearableProduct".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/WearableProduct".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ColourCodeDetails, comment: "A set of colour code details (colour code, party controlling the code list) for the product.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Colour Code Details".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ContactPoint, comment: "Information on an individual or department acting as point of contact for an organiation.".freeze, - exactMatch: "schema:ContactPoint".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/ContactPoint".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Contact".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Country, comment: "Country is a complex data type that indicates a country and a country subdivision.".freeze, - exactMatch: "schema:Country".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/Country".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Country".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :DietTypeCodeDetails, comment: "A set of diet type code details (diet type code and diet type sub code) for the product.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Diet Type Code Details".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Dimension, comment: "Provides the length, width, and depth of an item with their associated unit of measure.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Dimension".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FoodAndBeveragePreparationInformation, comment: "Food and Beverage Preparation Information is a complex data type that indicates a preparation state code and preparation instructions.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Food and Beverage Preparation Information".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FoodBeverageTobaccoIngredientDetails, comment: "Food Beverage Tobacco Ingredient is a complex data type that includes an ingredient statement and details.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Food Beverage Tobacco Ingredient".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FoodBeverageTobaccoProduct, comment: "A food, beverage or tobacco product.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Food Beverage Tobacco Product".freeze, - subClassOf: "gs1:Product".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/Product".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Footwear, comment: " Outerwear that is worn on the feet such as shoes or boots.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Footwear ".freeze, - subClassOf: "gs1:WearableProduct".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/WearableProduct".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FruitsVegetables, comment: "Contains properties related specifically to fruit and vegetable products.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Fruits and Vegetables".freeze, - subClassOf: "gs1:FoodBeverageTobaccoProduct".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :GeoCoordinates, comment: "The geographic coordinates of a place or event.".freeze, - exactMatch: "schema:GeoCoordinates".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/GeoCoordinates".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "GeoCoordinates".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :MeatPoultry, comment: "Meat and poultry products.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Meat Poultry".freeze, - subClassOf: "gs1:FoodBeverageTobaccoProduct".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :MilkButterCreamYogurtCheeseEggsSubstitutes, comment: "Milk butter cream yogurts cheese eggs and any substitutes for these products.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Milk Butter Cream Yogurt Cheese Eggs Substitutes".freeze, - subClassOf: "gs1:FoodBeverageTobaccoProduct".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :NutritionMeasurementType, comment: "A class providing nutritional value and intake percent.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Nutrition Measurement Type".freeze, - subClassOf: "gs1:QuantitativeValue".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Offer, comment: "An offer to transfer some rights to an item or to provide a service,for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.".freeze, - exactMatch: "schema:Offer".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/Offer".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Offer".freeze, - subClassOf: "owl:Thing".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OrganicClaimDetails, comment: "A set of organic claim details for the product.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Organic Claim Details".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Organization, comment: "An Organization is any legal or physical entity involved at any point in any supply chain and upon which there is a need to retrieve predefined information. An Organization is uniquely identified by a Global Location Number (GLN).".freeze, - exactMatch: "schema:Organization".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/Organization".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Organization".freeze, - subClassOf: "owl:Thing".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :PackagingDetails, comment: "Details on packaging for a product for example packaging type (bottle), materials, features, recycling, etc..".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :PackagingMaterialDetails, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Place, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PostalAddress, comment: "The location at which a particular organization or person may be found or reached.".freeze, - exactMatch: "schema:PostalAddress".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/PostalAddress".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Address".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :PriceSpecification, comment: "A structured value representing a monetary amount, consisting of a value and currency code.".freeze, - exactMatch: "schema:PriceSpecification".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/PriceSpecification".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Amount Type".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Product, comment: "Any item (product or service) upon which there is a need to retrieve pre-defined information and that may be priced, or ordered, or invoiced at any point in any supply chain.".freeze, - exactMatch: "schema:Product".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product".freeze, - subClassOf: "owl:Thing".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ProductYieldDetails, comment: "A grouping of properties related to the yield of a food or beverage product according to a specified type of preparation.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Yield Details".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :QuantitativeValue, comment: "A point value or interval for product characteristics and other purposes. A unit of measurement is also specified.".freeze, - exactMatch: ["gr:QuantitativeValue".freeze, "schema:QuantitativeValue".freeze], - isDefinedBy: "gs1:".freeze, + exactMatch: ["http://purl.org/goodrelations/v1#QuantitativeValue".freeze, "http://schema.org/QuantitativeValue".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Measurement Type".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ReferencedFileDetails, comment: "Provides URL and other information on a referenced electronic file.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Referenced File".freeze, - subClassOf: ["owl:Thing".freeze, "schema:MediaObject".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: ["http://schema.org/MediaObject".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze], + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ReturnablePackageDepositDetails, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Seafood, comment: "Seafood Products including fish and shellfish.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Seafood".freeze, - subClassOf: "gs1:FoodBeverageTobaccoProduct".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :SizeCodeDetails, comment: "A grouping of properties related to the representing the size of a product, by specifying a value from a specified code list.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Size Code Details".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :SizeDetails, comment: "A grouping of properties related to the size of a wearable product".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Size Details".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :TargetMarketDetails, comment: "A set of target market details (product release date and associated countries) for the product.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Target Market Details".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :TextileMaterialDetails, comment: "Details on the composition of any materials used to make a product using textiles.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Textile Material".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :TypeCode, comment: "A code list.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Type Code".freeze, - subClassOf: "owl:Thing".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :WarrantyPromise, comment: "An assurance that the product is reliable and that repairs or replacement will be done free of charge within a given time limit and under certain conditions in the event of a defect.".freeze, - exactMatch: "schema:WarrantyPromise".freeze, - isDefinedBy: "gs1:".freeze, + exactMatch: "http://schema.org/WarrantyPromise".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Warranty".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :WearableProduct, comment: "Products that are worn on the body.".freeze, - isDefinedBy: "gs1:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Wearable Product".freeze, - subClassOf: "gs1:Product".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://gs1.org/voc/Product".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :acceptedPaymentMethod, comment: "Code indicating a means of payment, for example, BANK_CHEQUE, CASH, etc.".freeze, - domain: "gs1:Offer".freeze, - exactMatch: "schema:acceptedPaymentMethod".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + exactMatch: "http://schema.org/acceptedPaymentMethod".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Accepted Payment Method".freeze, - range: "gs1:PaymentMethod".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PaymentMethod".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :additionalOrganizationIdentificationTypeValue, comment: "The value associated with the Additional Organization Identification Type Value.".freeze, - domain: "gs1:Organization".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Organization".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Additional Organization Identification Type Value".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :additionalProductClassification, comment: "Relates to a set of additional product classification details".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Additional Product Classification".freeze, - range: "gs1:AdditionalProductClassificationDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/AdditionalProductClassificationDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :additionalProductClassificationCode, comment: "Code specifying the applied additional product classification scheme.".freeze, - domain: "gs1:AdditionalProductClassificationDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AdditionalProductClassificationDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Additional Product Classification Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :additionalProductClassificationCodeDescription, comment: "A description related to the additional product classification code value.".freeze, - domain: "gs1:AdditionalProductClassificationDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AdditionalProductClassificationDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Additional Product Classification Code Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :additionalProductClassificationValue, comment: "Code specifying an additional product classification other than the GS1 Global Product Classification. The applied classification scheme is specified as additional information together with the classification value.".freeze, - domain: "gs1:AdditionalProductClassificationDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AdditionalProductClassificationDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Additional Product Classification Value".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :additionalProductDescription, comment: "Additional variants necessary to communicate to the industry to help define the product. Multiple variants can be established for each GTIN for e.g. Style, Colour, and Fragrance .".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Additional Product Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :additive, comment: "Relates to details about any additives that a product may contain.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Additive".freeze, - range: "gs1:AdditiveDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/AdditiveDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :additiveLevelOfContainment, comment: "Code indicating the level of presence of the additive.".freeze, - domain: "gs1:AdditiveDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AdditiveDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Additive Level Of Containment".freeze, - range: "gs1:LevelOfContainmentCode".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/LevelOfContainmentCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :additiveName, comment: "The name of any additive or genetic modification contained or not contained in the product .".freeze, - domain: "gs1:AdditiveDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AdditiveDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Additive Name".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :address, comment: "The postal address for an organization or place.".freeze, - domain: ["gs1:Organization".freeze, "gs1:Place".freeze], - exactMatch: "schema:address".freeze, - isDefinedBy: "gs1:".freeze, + domain: ["http://gs1.org/voc/Organization".freeze, "http://gs1.org/voc/Place".freeze], + exactMatch: "http://schema.org/address".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Postal Address".freeze, - range: "gs1:PostalAddress".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PostalAddress".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :addressCountry, comment: "Code specifying the country (and country subdivision) for the address using ISO 3166-1.".freeze, - domain: "gs1:PostalAddress".freeze, - exactMatch: "schema:addressCountry".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PostalAddress".freeze, + exactMatch: "http://schema.org/addressCountry".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Address Country".freeze, - range: "gs1:Country".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Country".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :addressLocality, comment: "Text specifying the name of the locality, for example a city.".freeze, - domain: "gs1:PostalAddress".freeze, - exactMatch: ["schema:addressLocality".freeze, "vcard:locality".freeze], - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PostalAddress".freeze, + exactMatch: ["http://schema.org/addressLocality".freeze, "http://www.w3.org/2006/vcard/ns#locality".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Address Locality".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :addressRegion, comment: "Text specifying a province or state in abbreviated format for example NJ.".freeze, - domain: "gs1:PostalAddress".freeze, - exactMatch: ["schema:addressRegion".freeze, "vcard:region".freeze], - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PostalAddress".freeze, + exactMatch: ["http://schema.org/addressRegion".freeze, "http://www.w3.org/2006/vcard/ns#region".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Province State Code".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :afterHoursContact, comment: "Links to afterhours contact information for an organization.".freeze, - domain: "gs1:Organization".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Organization".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#broadMatch": "http://schema.org/contactPoint".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has After Hours Contact".freeze, - range: "gs1:ContactPoint".freeze, - "skos:broadMatch": "schema:contactPoint".freeze, - subPropertyOf: ["gs1:contactPoint".freeze, "schema:contactPoint".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ContactPoint".freeze, + subPropertyOf: ["http://gs1.org/voc/contactPoint".freeze, "http://schema.org/contactPoint".freeze], + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :alcoholicBeverageSubregion, comment: "A legally defined geographical region where the grapes for a wine were grown also known as an appellation. It is recommended to populate this property with an ISO 3166-2 code to indicate country and subdivision.".freeze, - domain: "gs1:Beverage".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Beverage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Alcoholic Beverage Sub-region".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :allergenLevelOfContainmentCode, comment: "Code specifying the level of presence of the allergen.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Allergen Level Of Containment".freeze, - range: "gs1:LevelOfContainmentCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/LevelOfContainmentCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :allergenSpecificationAgency, comment: "The agency or other organization that defines or manages the criteria for allergen containment.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Allergen Specification Agency".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :allergenSpecificationName, comment: "Free text field containing the name and version of the regulation or standard that defines the criteria of allergen containment.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Allergen Specification Name".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :allergenStatement, comment: "Textual description of the presence or absence of allergens as governed by local rules and regulations, specified as one string.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Allergen Statement".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :allergenType, comment: "Code specifying the type of allergen.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Allergen Type Code".freeze, - range: "gs1:AllergenTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/AllergenTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :anatomicalForm, comment: "Describes the meat product in terms of whether it is the whole animal or part of the animal which has been cut such as the muscle, bone, organ, or fat. ".freeze, - domain: "gs1:MeatPoultry".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MeatPoultry".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Anatomical Form".freeze, - range: "gs1:AnatomicalFormCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/AnatomicalFormCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :audioFile, comment: "Link to a file containing an audio clip which is relevant to the product. Examples are commercials, or instructional/ how to use audio files.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Audio File".freeze, - range: "gs1:ReferencedFileDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ReferencedFileDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :availabilityEnds, comment: "The date from which the product is no longer available from the information provider, including seasonal or temporary product and services .".freeze, - domain: "gs1:Offer".freeze, - exactMatch: "schema:availabilityEnds".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + exactMatch: "http://schema.org/availabilityEnds".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Offer Effective End Date".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :availabilityStarts, comment: "The date from which the product is available from the information provider, including seasonal or temporary product and services.".freeze, - domain: "gs1:Offer".freeze, - exactMatch: "schema:availabilityStarts".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + exactMatch: "http://schema.org/availabilityStarts".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Offer Effective Start Date".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :availableAtOrFrom, comment: "The location the offered product or service is available from.".freeze, - domain: "gs1:Offer".freeze, - exactMatch: "schema:availableAtOrFrom".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + exactMatch: "http://schema.org/availableAtOrFrom".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Available At/From".freeze, - range: "gs1:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Place".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :availableLanguage, comment: "ISO 639-1 code specifying the language of a specified contact point.".freeze, - domain: "gs1:ContactPoint".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ContactPoint".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Available Language".freeze, - range: "xsd:string".freeze, - related: "schema:ContactPoint".freeze, - subPropertyOf: "schema:availableLanguage".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + related: "http://schema.org/ContactPoint".freeze, + subPropertyOf: "http://schema.org/availableLanguage".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :awardPrize, comment: "An award or prize given to the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Award Prize".freeze, - range: "gs1:AwardPrizeDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/AwardPrizeDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :awardPrizeCode, comment: "Indicates the achievement of the product in relation to a prize or award, e.g. winner, runner-up, shortlisted.".freeze, - domain: "gs1:AwardPrizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AwardPrizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Award Prize Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :awardPrizeCountryCode, comment: "An ISO standard code identifying the country in which a prize or award is given. It is recommended to populate this property with an ISO 3166-1 country code.".freeze, - domain: "gs1:AwardPrizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AwardPrizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Award Prize Country Code".freeze, - range: "gs1:Country".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Country".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :awardPrizeDescription, comment: "Text that describes the awards won.".freeze, - domain: "gs1:AwardPrizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AwardPrizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Award Prize Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :awardPrizeJury, comment: "Free text listing members of the jury that awarded the prize.".freeze, - domain: "gs1:AwardPrizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AwardPrizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Award Prize Jury".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :awardPrizeName, comment: "The name of a prize or award which the product has received.".freeze, - domain: "gs1:AwardPrizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AwardPrizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Award Prize Name".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :awardPrizeYear, comment: "The year in which a prize or award was given.".freeze, - domain: "gs1:AwardPrizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/AwardPrizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Award Prize Year".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#gYear".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :beverageVintage, comment: "The year in which the majority of ingredients are harvested and/or the alcoholic beverage is produced. Determination as to whether the vintage year is the harvest date or production date is according to requirements in the Target Market.".freeze, - domain: "gs1:Beverage".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Beverage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Beverage Vintage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :biotinPerNutrientBasis, comment: "Biotin Acid per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Biotin Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :bonelessClaim, comment: "The descriptive term that is used by the product manufacturer to identify whether the product makes a specific claim to contain no bones. ".freeze, - domain: "gs1:MeatPoultry".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MeatPoultry".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Boneless Claim".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :brand, comment: "The brand of the product that appears on the consumer package.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Brand".freeze, - range: "gs1:Brand".freeze, - subPropertyOf: "schema:brand".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Brand".freeze, + subPropertyOf: "http://schema.org/brand".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :brandName, comment: "The brand name of the product that appears on the consumer package.".freeze, - domain: "gs1:Brand".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Brand".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Brand Name".freeze, - range: "rdf:langString".freeze, - related: "schema:Brand".freeze, - subPropertyOf: "schema:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/Brand".freeze, + subPropertyOf: "http://schema.org/name".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :brandOwner, comment: "The brand owner of the product. The organization that is responsible for allocating the GTIN to the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Brand Owner".freeze, - range: "gs1:Organization".freeze, - subPropertyOf: "schema:brand".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Organization".freeze, + subPropertyOf: "http://schema.org/brand".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :calciumPerNutrientBasis, comment: "Calcium per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Calcium Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :carbohydratesPerNutrientBasis, comment: "Carbohydrates per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Carbohydrates Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :catchZone, comment: "Free text field describing the sea zone from which the product was caught in. ".freeze, - domain: "gs1:Seafood".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Seafood".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Catch Zone".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :certification, comment: "Information on certification to which the product complies.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Certification".freeze, - range: "gs1:CertificationDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/CertificationDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :certificationAgency, comment: "Name of the organization issuing the certification standard or other requirement being met .".freeze, - domain: "gs1:CertificationDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/CertificationDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Certification Agency".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :certificationStandard, comment: "Name of the certification standard. Free text. Example: Egg classification .".freeze, - domain: "gs1:CertificationDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/CertificationDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Certification Standard".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :certificationValue, comment: "The product's certification standard value. Example:4.".freeze, - domain: "gs1:CertificationDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/CertificationDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Certification Value".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :cheeseFirmness, comment: "The firmness of the cheese product for example EXTRA_HARD.".freeze, - domain: "gs1:MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Cheese Firmness".freeze, - range: "gs1:CheeseFirmnessCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/CheeseFirmnessCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :cheeseMaturationPeriodDescription, comment: "A descriptive way to specify a date range as some cheeses are matured over a period of time, but not an exact period. For example 3 to 4 weeks, over 1 year etc. The term maturation is also known in other markets as Aged.".freeze, - domain: "gs1:MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Cheese Maturation Period Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :chloridePerNutrientBasis, comment: "Chloride per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Chloride Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :cholesterolPerNutrientBasis, comment: "Cholesterol per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Cholesterol Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :chromiumPerNutrientBasis, comment: "Chromium per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Chromium Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :clothingCut, comment: "Supplemental information to indicate the clothing cut or silhouette make of the garment. For example, silhouette details for a pair of jeans such as boot cut, or loose fit, comfort fit.".freeze, - domain: "gs1:Clothing".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Clothing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Clothing Cut".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :collarType, comment: "A free text description of the type of collar on the garment.".freeze, - domain: "gs1:Clothing".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Clothing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Collar Type".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :colourCode, comment: "Relates to a set of details about the colour code for a product".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Colour Code".freeze, - range: "gs1:ColourCodeDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ColourCodeDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :colourCodeList, comment: "The parties controlling the colour code lists. Dependent on colour code value.".freeze, - domain: "gs1:ColourCodeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ColourCodeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Colour Code List".freeze, - range: "gs1:ColourCodeListCode".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ColourCodeListCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :colourCodeValue, comment: "A code depicting the colour of an object according to a specific code list. The applied code list is specified as additional information together with the colour code.".freeze, - domain: "gs1:ColourCodeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ColourCodeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Colour Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :colourDescription, comment: "A description of the colour of an object.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://schema.org/color".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Colour Description".freeze, - range: "rdf:langString".freeze, - related: "schema:Product".freeze, - "skos:closeMatch": "schema:color".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/Product".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :consumerFirstAvailabilityDateTime, comment: "The first date/time that the buyer is allowed to sell the product to consumers. Usually related to a specific geography. ISO 8601 date format CCYY-MM-DDTHH:MM:SS.".freeze, - domain: "gs1:TargetMarketDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/TargetMarketDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Consumer First Availability Date Time".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :consumerHandlingStorage, comment: "Link to a website, file, or image containing the manufacturer's recommendations for how the consumer or end user should store and handle the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Consumer Handling Storage".freeze, - range: "gs1:ReferencedFileDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ReferencedFileDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :consumerLifestage, comment: "Indicates, with reference to the product branding, labelling or packaging, the descriptive term that is used by the product manufacturer to identify the period or stage in the consumer's life during which the product is considered to be suitable. ".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Consumer Lifestage".freeze, - range: "gs1:ConsumerLifestageCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ConsumerLifestageCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :consumerPackageDisclaimer, comment: "Additional information that should be used in advertising and in displaying.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Consumer Package Disclaimer".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :consumerSafetyInformation, comment: "Information on consumer safety regarding the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Consumer Safety Information".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :consumerSalesCondition, comment: "A code depicting restrictions imposed on the product regarding how it can be sold to the consumer for example Prescription Required.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Consumer Sales Condition Code".freeze, - range: "gs1:ConsumerSalesConditionsCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ConsumerSalesConditionsCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :consumerStorageInstructions, comment: "Expresses in text the consumer storage instructions of a product which are normally held on the label or accompanying the product. This information may or may not be labelled on the pack.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Consumer Storage Instructions".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :consumerUsageInstructions, comment: "Free text containing the usage instructions of a product, which are normally held on the label or accompanying the product. This information may or may not be labelled on the pack.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Consumer Usage Instructions".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :contactPoint, comment: "Links to information about a business location for an organization.".freeze, - domain: "gs1:Organization".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Organization".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Business Contact".freeze, - range: "gs1:ContactPoint".freeze, - subPropertyOf: "schema:contactPoint".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ContactPoint".freeze, + subPropertyOf: "http://schema.org/contactPoint".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :contactType, comment: "The function or role of a contact for example Customer Support.".freeze, - domain: "gs1:ContactPoint".freeze, - exactMatch: "schema:contactType".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ContactPoint".freeze, + exactMatch: "http://schema.org/contactType".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Contact Type".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :convenienceLevelPercent, comment: "An indication of the ease of preparation for semi-prepared products. The convenience level indicates the level of preparation in percentage required to prepare and helps the consumer to assess how long it will take to prepare the meal.".freeze, - domain: "gs1:FoodAndBeveragePreparationInformation".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodAndBeveragePreparationInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Convenience Level Percent".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :copperPerNutrientBasis, comment: "Copper per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Copper Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :countryCode, comment: ["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.".freeze, "Code specifying the country for the address using ISO 3166-1.".freeze], - domain: "gs1:Country".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Country".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://schema.org/addressCountry".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Country Code".freeze, - range: "xsd:string".freeze, - related: "schema:PostalAddress".freeze, - "skos:closeMatch": "schema:addressCountry".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + related: "http://schema.org/PostalAddress".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :countryOfAssembly, comment: "The place where product is assembled.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Country Of Assembly".freeze, - range: "gs1:Country".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Country".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :countryOfLastProcessing, comment: "The place where the product or ingredient was last processed and tested before importation.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Country Of Last Processing".freeze, - range: "gs1:Country".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Country".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :countryOfOrigin, comment: "Code indicating the country of origin of the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Country Of Origin".freeze, - range: "gs1:Country".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Country".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :countryOfOriginStatement, comment: "A description of the geographic area the item may have originated from or has been processed.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Country Of Origin Statement".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :countrySubdivisionCode, comment: "A short text string code (see values defined in ISO 3166_2) specifying the country subdivision in which an activity is performed, for example processing, bottling, manufacturing.".freeze, - domain: "gs1:Country".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Country".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Country Subdivision Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :countyCode, comment: "A code that identifies a county. A county is a territorial division in some countries, forming the chief unit of local administration. In the US, a county is a political and administrative division of a state.".freeze, - domain: "gs1:PostalAddress".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PostalAddress".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "County Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :crossStreet, comment: "A street intersecting a main street (usually at right angles) and continuing on both sides of it.".freeze, - domain: "gs1:PostalAddress".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PostalAddress".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Cross Street".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :customerSupportCentre, comment: "The organization which provides product support to the trading partner organization to which merchandise is sold.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Customer Support Centre".freeze, - range: "gs1:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :dailyValueIntakePercent, comment: "The percentage of the recommended daily intake of a nutrient as recommended by authorities of the target market. Is expressed relative to the serving size and base daily value intake.".freeze, - domain: "gs1:NutritionMeasurementType".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/NutritionMeasurementType".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Daily Value Intake Percent".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :department, comment: "The name of a division of an organization dealing with a specific activity".freeze, - domain: "gs1:Organization".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Organization".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://schema.org/department".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Department".freeze, - range: "rdf:langString".freeze, - "skos:closeMatch": "schema:department".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :dependentProprietaryProduct, comment: "Dependent products are products which are required to make the current product functional.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://schema.org/isAccessoryOrSparePartFor".freeze, "http://schema.org/isConsumableFor".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#broadMatch": "http://schema.org/isSimilarTo".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Dependent Proprietary Product".freeze, - range: "gs1:Product".freeze, - "rdfs:seeAlso": ["schema:isAccessoryOrSparePartFor".freeze, "schema:isConsumableFor".freeze], - "skos:broadMatch": "schema:isSimilarTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Product".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :depth, comment: "The depth of the product, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details.".freeze, - domain: "gs1:Dimension".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Dimension".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Depth".freeze, - range: "gs1:QuantitativeValue".freeze, - related: "schema:depth".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + related: "http://schema.org/depth".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :descriptiveSize, comment: "An alphanumeric size factor the brand owner wishes to communicate to the consumer. IE Jumbo, Capri, Full Length, Maxi.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Descriptive Size".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :diameter, comment: "The measurement of the diameter of the product at its largest point. For example, 165 mmt.".freeze, - domain: "gs1:Dimension".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Dimension".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Diameter".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :dietCode, comment: "Links to multiple pairs of gs1:DietTypeCode and diet type sub code (free-form text string).".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Diet Code".freeze, - range: "gs1:DietTypeCodeDetails".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/DietTypeCodeDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :dietType, comment: "Code indicating the diet the product is suitable for example Kosher.".freeze, - domain: "gs1:DietTypeCodeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/DietTypeCodeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Diet Type Code".freeze, - range: "gs1:DietTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/DietTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :dietTypeDescription, comment: "Free text for indication of diet not stated in the list of diets.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Diet Type Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :dietTypeSubcode, comment: "Indicates a set of agreements or a certificate name that guarantees the product is permitted in a particular diet. A diet type subcode is a subclassification of a specific diet type. For example, Pareve is a diet type subcode of Kosher.".freeze, - domain: "gs1:DietTypeCodeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/DietTypeCodeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Diet Type Sub-code".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :drainedWeight, comment: "The weight of the product when drained of its liquid. For example 225 grm, Jar of pickles in vinegar.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Drained Weight".freeze, - range: "gs1:QuantitativeValue".freeze, - subPropertyOf: "schema:weight".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + subPropertyOf: "http://schema.org/weight".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :durationOfWarranty, comment: "The time period that the warranty is valid within.".freeze, - domain: "gs1:WarrantyPromise".freeze, - exactMatch: "schema:durationOfWarranty".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WarrantyPromise".freeze, + exactMatch: "http://schema.org/durationOfWarranty".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Duration Of Warranty".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :dutyFeeTaxAmount, comment: "The current tax or duty or fee amount applicable to the product, expressed as a floating-point numeric value that is qualified by the corresponding currency. See also gs1:priceCurrency.".freeze, - domain: "gs1:PriceSpecification".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PriceSpecification".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://gs1.org/voc/priceCurrency".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Duty Fee Tax Amount".freeze, - range: "xsd:float".freeze, - "rdfs:seeAlso": "gs1:priceCurrency".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :dutyFeeTaxDescription, comment: "A description of tax type for example Taxes sure les supports audio.".freeze, - domain: "gs1:PriceSpecification".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PriceSpecification".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Duty Fee Tax Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :dutyFeeTaxRate, comment: "The current tax or duty rate percentage applicable to the product.".freeze, - domain: "gs1:PriceSpecification".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PriceSpecification".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Duty Fee Tax Rate".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :eligibleQuantity, comment: "The quantity including unit of measure for which the offer for good or service is valid. If this is not specified, an eligible quantity of 1 should be assumed.".freeze, - domain: ["gs1:Offer".freeze, "gs1:PriceSpecification".freeze], - exactMatch: "schema:eligibleQuantity".freeze, - isDefinedBy: "gs1:".freeze, + domain: ["http://gs1.org/voc/Offer".freeze, "http://gs1.org/voc/PriceSpecification".freeze], + exactMatch: "http://schema.org/eligibleQuantity".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Eligible Quantity".freeze, - range: "gs1:QuantitativeValue".freeze, - subPropertyOf: "schema:eligibleQuantity".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + subPropertyOf: "http://schema.org/eligibleQuantity".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :eligibleQuantityMaximum, comment: "The maximum quantity including unit of measure for which the offer for good or service is valid.".freeze, - domain: "gs1:Offer".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#broadMatch": "http://schema.org/eligibleQuantity".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Eligible Quantity Maximum".freeze, - range: "gs1:QuantitativeValue".freeze, - "skos:broadMatch": "schema:eligibleQuantity".freeze, - subPropertyOf: "schema:eligibleQuantity".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + subPropertyOf: "http://schema.org/eligibleQuantity".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :eligibleQuantityMinimum, comment: "The minimum quantity including unit of measure for which the offer for good or service is valid.".freeze, - domain: "gs1:Offer".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#broadMatch": "http://schema.org/eligibleQuantity".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Eligible Quantity Minimum".freeze, - range: "gs1:QuantitativeValue".freeze, - "skos:broadMatch": "schema:eligibleQuantity".freeze, - subPropertyOf: "schema:eligibleQuantity".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + subPropertyOf: "http://schema.org/eligibleQuantity".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :email, comment: "Creating/sending/receiving of unstructured free text messages or documents using computer network, a mini-computer or an attached modem and regular telephone line or other electronic transmission media.".freeze, - domain: "gs1:ContactPoint".freeze, - exactMatch: ["schema:email".freeze, "vcard:hasEmail".freeze], - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ContactPoint".freeze, + exactMatch: ["http://schema.org/email".freeze, "http://www.w3.org/2006/vcard/ns#hasEmail".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "email".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :energyFromFatPerNutrientBasis, comment: "Energy from Fat per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Energy from Fat Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :energyPerNutrientBasis, comment: "Energy Per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Energy Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :equivalentProduct, comment: "A product which can be substituted for the product based on supplier-defined functional equivalence to the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Equivalent Product".freeze, - range: "gs1:Product".freeze, - subPropertyOf: "schema:isSimilarTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Product".freeze, + subPropertyOf: "http://schema.org/isSimilarTo".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :fatInMilkContent, comment: "The percentage of fat contained in milk content of the product.".freeze, - domain: "gs1:MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Fat In Milk Content".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :fatPerNutrientBasis, comment: "Fat per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Fat Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :fatpercentageInDryMatter, comment: "The amount of fat contained in the base product expressed in percentage.".freeze, - domain: "gs1:MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Fat In Dry Matter".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :faxNumber, comment: "Device used for transmitting and reproducing fixed graphic material (as printing) by means of signals over telephone lines or other electronic transmission media.".freeze, - domain: "gs1:ContactPoint".freeze, - exactMatch: "schema:faxNumber".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ContactPoint".freeze, + exactMatch: "http://schema.org/faxNumber".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Telefax".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :fibrePerNutrientBasis, comment: "Fibre per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Fibre Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :fileLanguageCode, comment: "The specified language to which the digital asset is targeted. It is recommended to use the ISO 639-1 language code.".freeze, - domain: "gs1:ReferencedFileDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReferencedFileDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "File Language Code".freeze, - range: "xsd:string".freeze, - related: "schema:CreativeWork".freeze, - subPropertyOf: "schema:inLanguage".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + related: "http://schema.org/CreativeWork".freeze, + subPropertyOf: "http://schema.org/inLanguage".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :filePixelHeight, comment: "The number of pixels along the vertical axis of the image.".freeze, - domain: "gs1:ReferencedFileDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReferencedFileDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "File Pixel Height".freeze, - range: "xsd:integer".freeze, - related: "schema:MediaObject".freeze, - subPropertyOf: "schema:height".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + related: "http://schema.org/MediaObject".freeze, + subPropertyOf: "http://schema.org/height".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :filePixelWidth, comment: "The number of pixels along the horizontal axis of the image.".freeze, - domain: "gs1:ReferencedFileDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReferencedFileDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "File Pixel Width".freeze, - range: "xsd:integer".freeze, - related: "schema:MediaObject".freeze, - subPropertyOf: "schema:width".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + related: "http://schema.org/MediaObject".freeze, + subPropertyOf: "http://schema.org/width".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :fishType, comment: "The type of fish for example Sea bass. ".freeze, - domain: "gs1:Seafood".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Seafood".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Fish Type".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :fluoridePerNutrientBasis, comment: "Fluoride per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Fluoride Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :folicAcidPerNutrientBasis, comment: "Folic Acid per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Folic Acid Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :foodBeverageRefrigerationClaim, comment: "Identifies whether or not the product requires refrigeration.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Food Beverage Refrigeration Claim".freeze, - range: "gs1:FoodBeverageRefrigerationClaimCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/FoodBeverageRefrigerationClaimCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :foodBeverageTargetUse, comment: "The type of meal the food or beverage product is targeted to for example Breakfast.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Food Beverage Target Use".freeze, - range: "gs1:FoodBeverageTargetUseCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/FoodBeverageTargetUseCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :footwearFasteningType, comment: "Something that mechanically joins or affixes two or more parts together in a footwear product for example a shoe lace.".freeze, - domain: "gs1:Footwear".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Footwear".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Fastening Type".freeze, - range: "gs1:FootwearFasteningTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/FootwearFasteningTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :footwearUpperType, comment: "The descriptive term that is used by the product manufacturer to identify whether the footwear upper is open or closed. Otherwise known as Open or Closed Upper.".freeze, - domain: "gs1:Footwear".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Footwear".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Footwear Upper Type".freeze, - range: "gs1:UpperTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/UpperTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :freshOrSeawaterFarmed, comment: "A code determining whether the fish originated from the sea or was farmed. ".freeze, - domain: "gs1:Seafood".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Seafood".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Fresh or Seawater Farmed".freeze, - range: "gs1:FreshOrSeawaterFarmedCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/FreshOrSeawaterFarmedCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :functionalName, comment: "Describes use of the product or service by the consumer. Should help clarify the product classification associated with the GTIN.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Functional Name".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :geneticallyModifiedDeclaration, comment: "A statement of the presence or absence of genetically modified protein or DNA.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Genetically Modified Declaration Code".freeze, - range: "gs1:LevelOfContainmentCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/LevelOfContainmentCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :geo, comment: "Links to information about geocoordinates for a place.".freeze, - domain: "gs1:Place".freeze, - exactMatch: "schema:geo".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Place".freeze, + exactMatch: "http://schema.org/geo".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Geocoordinates".freeze, - range: "gs1:GeoCoordinates".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/GeoCoordinates".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :globalLocationNumber, comment: "A Global Location Number (GLN) is the GS1 Identification Key used to identify physical locations or parties. The key comprises a GS1 Company Prefix, Location Reference and Check Digit. For more information see http://www.gs1.org/gln.".freeze, - domain: "gs1:Organization".freeze, - exactMatch: "schema:globalLocationNumber".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Organization".freeze, + exactMatch: "http://schema.org/globalLocationNumber".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Global Location Number (GLN)".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :gpcCategoryCode, comment: "8-digit code (GPC Brick Value) specifying a product category according to the GS1 Global Product Classification (GPC) standard. For more information see http://www.gs1.org/gpc".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "GPC Category Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :gpcCategoryDescription, comment: "A description of the code specifying a product category according to the GS1 Global Product Classification (GPC) standard.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "GPC Category Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :grossWeight, comment: "Used to identify the gross weight of the product. The gross weight includes all packaging materials of the product. At pallet level the productGrossWeight includes the weight of the pallet itself. For example, 200 grm, value - total pounds, total grams, etc.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Gross Weight".freeze, - range: "gs1:QuantitativeValue".freeze, - subPropertyOf: "schema:weight".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + subPropertyOf: "http://schema.org/weight".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :growingMethod, comment: "The process through which fresh produce is grown and cultivated.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Growing Method".freeze, - range: "gs1:GrowingMethodCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/GrowingMethodCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :gtin, comment: "A Global Trade Item Number (GTIN) is the 14 digit GS1 Identification Key used to identify products. The key comprises a GS1 Company Prefix followed by an Item Reference Number and a Check Digit. See http://www.gs1.org/gtin for more details.".freeze, - domain: "gs1:Product".freeze, - exactMatch: "schema:gtin14".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + exactMatch: "http://schema.org/gtin14".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": ["http://schema.org/gtin12".freeze, "http://schema.org/gtin13".freeze, "http://schema.org/gtin8".freeze], + isDefinedBy: "http://gs1.org/voc/".freeze, label: "GTIN".freeze, - range: "xsd:string".freeze, - "skos:closeMatch": ["schema:gtin12".freeze, "schema:gtin13".freeze, "schema:gtin8".freeze], - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasReturnablePackageDeposit, comment: "links to details of amounts refunded for returnable package in a specified region.".freeze, - domain: "gs1:PackagingDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Returnable Package Deposit Details".freeze, - range: "gs1:ReturnablePackageDepositDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ReturnablePackageDepositDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :healthClaimDescription, comment: "A description of health claims according to regulations of the target market.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Health Claim".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :height, comment: "The height of the product, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details.".freeze, - domain: "gs1:Dimension".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Dimension".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Height".freeze, - range: "gs1:QuantitativeValue".freeze, - related: "schema:height".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + related: "http://schema.org/height".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :image, comment: "Link to a file containing a visual representation of the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": ["http://schema.org/image".freeze, "http://xmlns.com/foaf/0.1/depiction".freeze], + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Product Image".freeze, - range: "gs1:ReferencedFileDetails".freeze, - "skos:closeMatch": ["foaf:depiction".freeze, "schema:image".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ReferencedFileDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :inPackageDimensions, comment: "The dimensions of a product including the packaging in which the product was supplied.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has In Package Dimensions".freeze, - range: "gs1:Dimension".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Dimension".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :includedAccessories, comment: "Any included object or device not part of the core product itself but which adds to its functionality or use.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://schema.org/isAccessoryOrSparePartFor".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Included Accessories".freeze, - range: "rdf:langString".freeze, - "rdfs:seeAlso": "schema:isAccessoryOrSparePartFor".freeze, - related: "schema:isAccessoryOrSparePartFor".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/isAccessoryOrSparePartFor".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :ingredient, comment: "Links to information about ingredients of a specific Food/Beverage/Tobacco product.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Food And Beverage Ingredient Information".freeze, - range: "gs1:FoodBeverageTobaccoIngredientDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/FoodBeverageTobaccoIngredientDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :ingredientContentPercentage, comment: "Quantity of the ingredient contained in the product as a percentage of the total product ingredients. This is used in conjunction with ingredientName.".freeze, - domain: "gs1:FoodBeverageTobaccoIngredientDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoIngredientDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Ingredient Content Percentage".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :ingredientName, comment: "Free text field describing an ingredient or ingredient group. Ingredients include any additives (colourings, preservatives, e-numbers, etc.) that are encompassed.".freeze, - domain: "gs1:FoodBeverageTobaccoIngredientDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoIngredientDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Ingredient Name".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :ingredientOfConcern, comment: "Indicates a claim to an ingredient, considered to be a concern for regulatory or other reasons, and which is 'contained' within the product but may not need to specify the amount whether approximate, or an accurate measurement be given.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Ingredient of Concern".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :ingredientSequence, comment: "Integer (1, 2, 3...) indicating the ingredient order by content percentage of the product. (major ingredient = 1, second ingredient = 2) etc.".freeze, - domain: "gs1:FoodBeverageTobaccoIngredientDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoIngredientDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Ingredient Sequence".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :ingredientStatement, comment: "Information on the constituent ingredient make up of the product specified as one string.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Ingredient Statement".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :instructionsForUse, comment: "Link to a file containing the Instructions For Use.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Instructions For Use".freeze, - range: "gs1:ReferencedFileDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ReferencedFileDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :iodinePerNutrientBasis, comment: "Iodine per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Iodine Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :ironPerNutrientBasis, comment: "Iron per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Iron Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :irradiatedCode, comment: "Indicates if radiation has been applied to the product.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Irradiated Code".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isCarbonated, comment: "Used to identify whether or not a beverage product is naturally effervescent or has been made effervescent by the addition of carbon dioxide gas.".freeze, - domain: "gs1:Beverage".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Beverage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "If Carbonated".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isDecaffeinated, comment: "The descriptive term that is used by the product manufacturer to identify whether or not the product contains caffeine.".freeze, - domain: "gs1:Beverage".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Beverage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "If Decaffeinated".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isFromConcentrate, comment: "Used to identify whether or not the product claims to be made from a concentrated formulation.".freeze, - domain: "gs1:Beverage".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Beverage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "If From Concentrate".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isHomogenised, comment: "A The indication whether or not the milk used was actively homogenised. The homogenisation of milk is a technical process in the dairy. The milk fat is milled to such an extent that further creaming is prevented.".freeze, - domain: "gs1:MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Is Homogenised".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isInstant, comment: "Determines whether the product is instant.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "If Instant".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isMaternity, comment: "Indicates, with reference to the product branding, labelling or packaging, the descriptive term that is used by the product manufacturer to identify if the product is intended as maternity wear.".freeze, - domain: "gs1:Clothing".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Clothing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Is Maternity".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isPatterned, comment: "The descriptive term that is used by the product manufacturer to identify whether or not the product has a patterned design. ".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Is Patterned".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isPittedStoned, comment: "The descriptive term that is used by the product manufacturer to identify whether or not a fruit or vegetable product has been de-stoned or pitted prior to being offered for sale. ".freeze, - domain: "gs1:FruitsVegetables".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FruitsVegetables".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "If Pitted Stoned".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isProductRecalled, comment: "An indicator for the product to determine if the Manufacturer or Supplier has recalled the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Is Product Recalled".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :isRindEdible, comment: "An indicator whether or not the cheese rind is edible. Some cheeses are coated in plastic or their surface is treated with other traditional substances to increase their shelf life. This can result in the rind no longer being edible.".freeze, - domain: "gs1:MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Is Rind Edible".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isSeedless, comment: "Determines whether the product is seedless as grown. ".freeze, - domain: "gs1:FruitsVegetables".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FruitsVegetables".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "If Seedless".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isShelledPeeled, comment: "The descriptive term that is used by the product manufacturer to identify whether or not the product or its contents have been shelled/peeled prior to being offered for sale. ".freeze, - domain: "gs1:FruitsVegetables".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FruitsVegetables".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "If Shelled or Peeled".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isSliced, comment: "Determines whether the product comes pre-sliced.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "If Sliced".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isThermal, comment: "The descriptive term that is used to identify whether the product is thermal. ".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Is Thermal".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isVintage, comment: "Identifies whether the product makes claim to being vintage.".freeze, - domain: "gs1:Beverage".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Beverage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "If Vintage".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isWashedReadyToEat, comment: "Determines whether product has been prewashed and is ready to eat. ".freeze, - domain: "gs1:FruitsVegetables".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FruitsVegetables".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Is Washed Ready To Eat".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isWaterproof, comment: "The descriptive term that is used to identify whether or not the product claims to provide waterproofing to the applied surface. ".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Is Waterproof".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isWearableItemDisposable, comment: "Identifies whether or not the product is intended to be disposed of after single use or a limited period of use. ".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Is Wearable Item Disposable".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :itemOffered, comment: "The product included in the offer.".freeze, - domain: "gs1:Offer".freeze, - exactMatch: "schema:itemOffered".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + exactMatch: "http://schema.org/itemOffered".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Item Offered".freeze, - range: "gs1:Product".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Product".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :jobTitle, comment: "The job title of the person that can be contacted for example Manager.".freeze, - domain: "gs1:ContactPoint".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ContactPoint".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://schema.org/jobTitle".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Job Title".freeze, - range: "rdf:langString".freeze, - related: "schema:Person".freeze, - "skos:closeMatch": "schema:jobTitle".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/Person".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :juiceContentPercent, comment: "The fruit juice content of the product expressed as a percentage.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Juice Content Percent".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :latitude, comment: "Angular distance North or South from the earth's equator measured through 90 degrees.".freeze, - domain: "gs1:GeoCoordinates".freeze, - exactMatch: "schema:latitude".freeze, + domain: "http://gs1.org/voc/GeoCoordinates".freeze, + exactMatch: "http://schema.org/latitude".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://www.w3.org/2003/01/geo/wgs84_pos#lat".freeze, isDefinedBy: "http://gs1.org/voc".freeze, label: "Latitude".freeze, - range: "xsd:string".freeze, - "skos:relatedMatch": "geo:lat".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :location, comment: "The place associated with an organization.".freeze, - domain: "gs1:Organization".freeze, - exactMatch: "schema:location".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Organization".freeze, + exactMatch: "http://schema.org/location".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Location".freeze, - range: "gs1:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Place".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :longitude, comment: "The arc or portion of the earth's equator intersected between the meridian of a given place and the prime meridian and expressed in degrees".freeze, - domain: "gs1:GeoCoordinates".freeze, - exactMatch: "schema:longitude".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/GeoCoordinates".freeze, + exactMatch: "http://schema.org/longitude".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://www.w3.org/2003/01/geo/wgs84_pos#lat".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Longitude".freeze, - range: "xsd:string".freeze, - "skos:relatedMatch": "geo:lat".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :magnesiumPerNutrientBasis, comment: "Magnesium per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Magnesium Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :makesOffer, comment: "An offer made by an organization.".freeze, - domain: "gs1:Organization".freeze, - exactMatch: "schema:makesOffer".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Organization".freeze, + exactMatch: "http://schema.org/makesOffer".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Makes Offer".freeze, - range: "gs1:Offer".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Offer".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :manganesePerNutrientBasis, comment: "Manganese per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Manganese Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :manufacturer, comment: "The organization that produces the item.".freeze, - domain: "gs1:Product".freeze, - exactMatch: "schema:manufacturer".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + exactMatch: "http://schema.org/manufacturer".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Manufacturer".freeze, - range: "gs1:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :manufacturerPreparationCode, comment: "Code indicating the preparation methods that a manufacturer has used in the manufacturing of a product for example DEEP_FRY.".freeze, - domain: "gs1:FoodAndBeveragePreparationInformation".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodAndBeveragePreparationInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Manufacturer Preparation Code".freeze, - range: "gs1:PreparationTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PreparationTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :manufacturersWarranty, comment: "The warranty associated with the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://schema.org/warranty".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#broadMatch": "http://schema.org/warranty".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Manufacturer's Warranty".freeze, - range: "gs1:WarrantyPromise".freeze, - "rdfs:seeAlso": "schema:warranty".freeze, - "skos:broadMatch": "schema:warranty".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/WarrantyPromise".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :manufacturingPlant, comment: "A physical location consisting of one or more buildings with facilities for manufacturing.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Manufacturing Plant".freeze, - range: "gs1:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :maturationMethod, comment: "The method of maturity for the item for example tree ripened or jet fresh.".freeze, - domain: "gs1:FruitsVegetables".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FruitsVegetables".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Maturation Method Code".freeze, - range: "gs1:MaturationMethodCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/MaturationMethodCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :maxPrice, comment: "Provides a maximum price value as a floating-point numeric value that is qualified by the corresponding currency. See also gs1:priceCurrency".freeze, - domain: "gs1:PriceSpecification".freeze, - exactMatch: "schema:maxPrice".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PriceSpecification".freeze, + exactMatch: "http://schema.org/maxPrice".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://gs1.org/voc/priceCurrency".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Price Value Maximum".freeze, - range: "xsd:float".freeze, - "rdfs:seeAlso": "gs1:priceCurrency".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :maximumOptimumConsumptionTemperature, comment: "The upper limit drinking temperature of the optimum range of the drinking temperature. The optimum range of the drinking temperature is a recommendation and is based on the experience of the individual producer. Allows for the representation of the same value in different units of measure but not multiple values.".freeze, - domain: "gs1:FoodAndBeveragePreparationInformation".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodAndBeveragePreparationInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Maximum Optimum Consumption Temperature".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :meatPoultryType, comment: "The fish, meat, or poultry type for this food and beverage item.".freeze, - domain: "gs1:MeatPoultry".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MeatPoultry".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Meat Poultry Type Code".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :minPrice, comment: "Provides a minimum price value as a floating-point numeric value that is qualified by the corresponding currency. See also gs1:priceCurrency".freeze, - domain: "gs1:PriceSpecification".freeze, - exactMatch: "schema:minPrice".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PriceSpecification".freeze, + exactMatch: "http://schema.org/minPrice".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://gs1.org/voc/priceCurrency".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Price Value Minimum".freeze, - range: "xsd:float".freeze, - "rdfs:seeAlso": "gs1:priceCurrency".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :minimumFishContent, comment: "The minimum amount of fish contained in a food and beverage product expressed as a measurement. ".freeze, - domain: "gs1:Seafood".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Seafood".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Minimum Fish Content".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :minimumMeatPoultryContent, comment: "The minimum amount of fish, meat or poultry contained in a food and beverage product expressed as a measurement.".freeze, - domain: "gs1:MeatPoultry".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MeatPoultry".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Minimum Meat Poultry Content".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :minimumOptimumConsumptionTemperature, comment: "The lower limit drinking temperature of the optimum range of the drinking temperature. The optimum range of the drinking temperature is a recommendation and is based on the experience of the individual producer. Allows for the representation of the same value in different units of measure but not multiple values.".freeze, - domain: "gs1:FoodAndBeveragePreparationInformation".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodAndBeveragePreparationInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Minimum Optimum Consumption Temperature".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :molybdenumPerNutrientBasis, comment: "Molybdenum per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Molybdenum Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :monounsaturatedFatPerNutrientBasis, comment: "Monounsaturated fat per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Monounsaturated Fat Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :netContent, comment: "The quantity of the product contained by a package, usually as claimed on the label. Indicates the net content of the total product. For fixed value products use the value claimed on the package, to avoid variable fill rate issue that arises with some product which are sold by volume or weight, and whose actual content may vary slightly from batch to batch.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Net Content".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :netWeight, comment: "Used to identify the net weight of the product. Net Weight excludes all packaging material, including the packaging material of all lower-level GTINs. Example:11.5 kgm.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Net Weight".freeze, - range: "gs1:QuantitativeValue".freeze, - subPropertyOf: "schema:weight".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + subPropertyOf: "http://schema.org/weight".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :niacinPerNutrientBasis, comment: "Niacin per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Niacin Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :numberOfServingsPerPackage, comment: "The total number of servings contained in the package.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Number of Servings Per Package".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :numberOfServingsPerPackageMeasurementPrecision, comment: "Code indicating whether the number of servings per package is exact or approximate, for example, 4-6 adults.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Number of Servings Per Package Measurement Precision".freeze, - range: "gs1:MeasurementPrecisionCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/MeasurementPrecisionCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :numberOfServingsRangeDescription, comment: "A free text field specifying a range for the number of servings contained in the package. ".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Number of Servings Range Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :nutrientBasisQuantity, comment: "Quantity on which the nutrient information has been based; for example, per 100 grams. When specified, nutrientBasisQuantity establishes the basis for all contained nutrient records.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Nutrient Basis Quantity".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :nutrientBasisQuantityType, comment: "The type of quantity specified in the nutrientBasisQuantity for example measurement, serving size, or container. This is used in conjunction with the nutrientBasisQuantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Nutrient Basis Quantity Type Code".freeze, - range: "gs1:NutrientBasisQuantityCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutrientBasisQuantityCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :nutrientMeasurementPrecision, comment: "The Code indicating whether the specified nutrient content is exact or approximate.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Nutrient Measurement Precision".freeze, - range: "gs1:MeasurementPrecisionCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/MeasurementPrecisionCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :nutritionalClaim, comment: "Code indicating a nutritional claim applicable to the product, for example FAT_FREE.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Nutritional Claim Code".freeze, - range: "gs1:NutritionalClaimTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :nutritionalClaimStatement, comment: "Free text field for any additional nutritional claims.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Nutritional Claim Statement".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :offerDescription, comment: "A description of the offer including goods or services offered for sale or use.".freeze, - domain: "gs1:Offer".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Offer Description".freeze, - range: "rdf:langString".freeze, - related: "schema:Offer".freeze, - subPropertyOf: "schema:description".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/Offer".freeze, + subPropertyOf: "http://schema.org/description".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :organicClaim, comment: "Relates to an organic claim about the product".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Organic Claim".freeze, - range: "gs1:OrganicClaimDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/OrganicClaimDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :organicClaimAgency, comment: "A governing body that creates and maintains standards related to organic products.".freeze, - domain: "gs1:OrganicClaimDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/OrganicClaimDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Organic Claim Agency Code".freeze, - range: "gs1:OrganicClaimAgencyCode".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :organicPercentClaim, comment: "The percent of actual organic materials per weight of the product. This is usually claimed on the product.".freeze, - domain: "gs1:OrganicClaimDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/OrganicClaimDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Organic Percent Claim".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :organizationName, comment: "The name of the organization expressed in text.".freeze, - domain: ["gs1:Organization".freeze, "gs1:PostalAddress".freeze], - isDefinedBy: "gs1:".freeze, + domain: ["http://gs1.org/voc/Organization".freeze, "http://gs1.org/voc/PostalAddress".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Organization Name".freeze, - range: "rdf:langString".freeze, - related: ["schema:Organization".freeze, "schema:PostalAddress".freeze], - subPropertyOf: "schema:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: ["http://schema.org/Organization".freeze, "http://schema.org/PostalAddress".freeze], + subPropertyOf: "http://schema.org/name".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :organizationRole, comment: "Code indicating an organization role. Allowed code values are specified in OrganizationalRole code list.".freeze, - domain: "gs1:Organization".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Organization".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Organization Role".freeze, - range: "gs1:OrganizationRoleType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/OrganizationRoleType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :outOfPackageDimensions, comment: "The dimensions of a product after removal from consumer packaging and assembled (if necessary) for final use. This property can be used for products such as a computer desk; entertainment centre; microwave oven; lawnmower; a floor cleaner; a grouping of table and chairs; stove; telephone; camera; large appliance (e.g. washing machines); small appliance (e.g. food processors).".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Out of Package Dimensions".freeze, - range: "gs1:Dimension".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Dimension".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packaging, comment: "Details on the packaging for a product including type, weight and materials.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Packaging".freeze, - range: "gs1:PackagingDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingFeature, comment: "Code indicating a feature that facilitates the usage of the product by the consumer, for example a handle. Packaging features do not affect the core composition of the packaging type nor modify its usage.".freeze, - domain: "gs1:PackagingDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Feature".freeze, - range: "gs1:PackagingFeatureCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingFeatureCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingFunction, comment: "Code indicating specific functionality for packaging resulting from specific processes or features present in the packaging type,for example, ANTI_TAMPERING.".freeze, - domain: "gs1:PackagingDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Function".freeze, - range: "gs1:PackagingFunctionCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingFunctionCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingMarkedDietAllergenType, comment: "Indication of which dietary or allergen marks are on the package.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Marked Diet Allergen Type Code".freeze, - range: "gs1:PackagingMarkedDietAllergenCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingMarkedFreeFrom, comment: "Indication of the food ingredients that the package is marked free from.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Marked Free From Code".freeze, - range: "gs1:PackagingMarkedFreeFromCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingMarkedLabelAccreditation, comment: "A marking that the product received recognition, endorsement, certification by following guidelines by the label issuing agency. This does not represent claims for regulatory purposes on products such as free from markings.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Accreditation Code".freeze, - range: "gs1:PackagingMarkedLabelAccreditationCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingMaterial, comment: "links to details about packaging material type, quantity and thickness".freeze, - domain: "gs1:PackagingDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Packaging Material Details".freeze, - range: "gs1:PackagingMaterialDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingMaterialDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingMaterialCompositionQuantity, comment: "The quantity of the packaging material of the product. Can be weight, volume or surface, can vary by country.".freeze, - domain: "gs1:PackagingMaterialDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingMaterialDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Material Composition Quantity".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingMaterialThickness, comment: "The thickness of a packaging material.".freeze, - domain: "gs1:PackagingMaterialDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingMaterialDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Material Thickness".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingMaterialType, comment: "The materials used for the packaging of the product for example glass or plastic.".freeze, - domain: "gs1:PackagingMaterialDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingMaterialDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Material Type".freeze, - range: "gs1:PackagingMaterialTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingRecyclingProcessType, comment: "The process the packaging could undertake for recyclable & sustainability programs. Examples COMPOSTABLE, ENERGY_RECOVERABLE, REUSABLE.".freeze, - domain: "gs1:PackagingDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Recycling Process Type".freeze, - range: "gs1:PackagingRecyclingProcessTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingRecyclingProcessTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingRecyclingScheme, comment: "A code determining the recycling scheme the packaging of this product will fall within when recycled. Applies to recyclable packaging with or without deposit.".freeze, - domain: "gs1:PackagingDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Recycling Scheme".freeze, - range: "gs1:PackagingRecyclingSchemeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingRecyclingSchemeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingShape, comment: "A code depicting the shape of a package for example CONE.".freeze, - domain: "gs1:PackagingDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Shape".freeze, - range: "gs1:PackagingShapeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PackagingShapeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :packagingType, comment: "The dominant means used to transport, store, handle or display the product as defined by the data source. This packaging is not used to describe any manufacturing process.Recommend to use UNECE Rec 21 codes.".freeze, - domain: "gs1:PackagingDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PackagingDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Packaging Type".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :pantothenicAcidPerNutrientBasis, comment: "Pantothenic Acid per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Pantothenic Acid Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :paymentTerms, comment: "The type of payment term expressed as a code, for example Discount.".freeze, - domain: "gs1:Offer".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Payment Terms".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :percentageOfAlcoholByVolume, comment: "The percentage of alcohol contained in product.".freeze, - domain: "gs1:Beverage".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Beverage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Percentage of Alcohol Per Volume".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :phosphorusPerNutrientBasis, comment: "Phosphorus per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Phosphorus Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :polyolsPerNutrientBasis, comment: "Polyols per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Polyols Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :polyunsaturatedFatPerNutrientBasis, comment: "Polyunsaturated fat per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Polyunsaturated Fat Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :postOfficeBoxNumber, comment: "The number that identifies a PO box. A PO box is a box in a post office or other postal service location assigned to an organization where postal items may be kept.".freeze, - domain: "gs1:PostalAddress".freeze, - exactMatch: "schema:postOfficeBoxNumber".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PostalAddress".freeze, + exactMatch: "http://schema.org/postOfficeBoxNumber".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "PO Box Number".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :postalCode, comment: "Text specifying the postal code for an address.".freeze, - domain: "gs1:PostalAddress".freeze, - exactMatch: ["schema:postalCode".freeze, "vcard:postal-code".freeze], - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PostalAddress".freeze, + exactMatch: ["http://schema.org/postalCode".freeze, "http://www.w3.org/2006/vcard/ns#postal-code".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Postal Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :potassiumPerNutrientBasis, comment: "Potassium per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Potassium Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :preparationCode, comment: "Code specifying the preparation state of the product for which the nutrient information is valid. PREPARED, UNPREPARED.".freeze, - domain: "gs1:FoodAndBeveragePreparationInformation".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodAndBeveragePreparationInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Preparation Type Code".freeze, - range: "gs1:PreparationTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PreparationTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :preparationConsumptionPrecautions, comment: "Specifies additional precautions to be taken before preparation or consumption of the product.".freeze, - domain: "gs1:FoodAndBeveragePreparationInformation".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodAndBeveragePreparationInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Preparation Consumption Precautions".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :preparationInformation, comment: "Links to information about how to prepare a specific Food/Beverage/Tobacco product.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Food And Beverage Preparation Information".freeze, - range: "gs1:FoodAndBeveragePreparationInformation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/FoodAndBeveragePreparationInformation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :preparationInstructions, comment: "Free text providing instructions on how to prepare the product before serving.".freeze, - domain: "gs1:FoodAndBeveragePreparationInformation".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodAndBeveragePreparationInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Preparation Instructions".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :preservationTechnique, comment: "Code indicating the preservation technique used to preserve the product from deterioration, for example, BRINING.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Preservation Technique".freeze, - range: "gs1:PreservationTechniqueCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PreservationTechniqueCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :price, comment: "Provides a price value as a floating-point numeric value that is qualified by the corresponding currency. See also gs1:priceCurrency. The price value indicates the unit price unless the property gs1:eligibleQuantity is specified and indicates multiple units".freeze, - domain: "gs1:PriceSpecification".freeze, - exactMatch: "schema:price".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PriceSpecification".freeze, + exactMatch: "http://schema.org/price".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://gs1.org/voc/priceCurrency".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Price Value".freeze, - range: "xsd:float".freeze, - "rdfs:seeAlso": "gs1:priceCurrency".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :priceCurrency, comment: "A string value indicating a currency from ISO 4217 for example USD .".freeze, - domain: "gs1:PriceSpecification".freeze, - exactMatch: "schema:priceCurrency".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PriceSpecification".freeze, + exactMatch: "http://schema.org/priceCurrency".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Currency Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :priceSpecification, comment: "The price related to an offer. If the offer is a multi-buy offer for a quantity of product greater than one unit, this should be indicated using the property gs1:eligibleQuantity".freeze, - domain: "gs1:Offer".freeze, - exactMatch: "schema:priceSpecification".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + exactMatch: "http://schema.org/priceSpecification".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Price Specification".freeze, - range: "gs1:PriceSpecification".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PriceSpecification".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :primaryAlternateProduct, comment: "A product that is similar to the current product but is not exact match. Same form fit function, e.g. same product different colour, different package size, better quality.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Primary Alternate Product".freeze, - range: "gs1:Product".freeze, - subPropertyOf: "schema:isSimilarTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Product".freeze, + subPropertyOf: "http://schema.org/isSimilarTo".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :productDescription, comment: "An understandable and useable description of a product using brand and other descriptors. This attribute is filled with as little abbreviation as possible, while keeping to a reasonable length. This should be a meaningful description of the product with full spelling to facilitate message processing. Retailers can use this description as the base to fully understand the brand, flavour, scent etc. of the specific product, in order to accurately create a product description as needed for their internal systems. Examples: XYZ Brand Base Invisible Solid Deodorant AP Stick Spring Breeze.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Description".freeze, - range: "rdf:langString".freeze, - related: "schema:Product".freeze, - subPropertyOf: "schema:description".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/Product".freeze, + subPropertyOf: "http://schema.org/description".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :productFeatureBenefit, comment: "Element for consumer facing marketing content to describe the key features or benefits of the style suitable for display purposes.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Feature Benefit".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :productFormDescription, comment: "The physical form or shape of the product. Used, for example, in pharmaceutical industry to indicate the formulation of the product. Defines the form the product takes and is distinct from the form of the packaging.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Form Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :productID, comment: "Additional means to the Global Trade Item Number to identify a product.".freeze, - domain: "gs1:Product".freeze, - exactMatch: "schema:productID".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + exactMatch: "http://schema.org/productID".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product ID".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :productMarketingMessage, comment: "Marketing message associated with the product. Consumer-friendly marketing detailed description of the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Marketing Message".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :productName, comment: "Consumer friendly short description of the product suitable for compact presentation.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Name".freeze, - range: "rdf:langString".freeze, - related: "schema:Product".freeze, - subPropertyOf: "schema:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/Product".freeze, + subPropertyOf: "http://schema.org/name".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :productRange, comment: "A name, used by a Brand Owner, that span multiple consumer categories or uses. E.g. (Waist Watchers).".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Range".freeze, - range: "rdf:langString".freeze, - related: "schema:brand".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/brand".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :productYield, comment: "Product quantity after preparation. This can differ based on productYieldType".freeze, - domain: "gs1:ProductYieldDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ProductYieldDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Yield".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :productYieldType, comment: "Code indicating the type of yield measurement specified in productYield. Examples: AFTER_DILUTION, DRAINED_WEIGHT.".freeze, - domain: "gs1:ProductYieldDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ProductYieldDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Yield Type Code".freeze, - range: "gs1:ProductYieldTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ProductYieldTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :productYieldVariationPercentage, comment: "Indication of range in percent of the given cooking / roasting loss. Percentage that the actual weight of the product differs upward or downward from the average or estimated product yield.".freeze, - domain: "gs1:ProductYieldDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ProductYieldDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Product Yield Variation Percentage".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :productionVariantDescription, comment: "Free text assigned by the manufacturer to describe the production variant. Examples are: package series X, package series Y.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Production Variant Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :productionVariantEffectiveDateTime, comment: "The start date of a production variant. The variant applies to products having a date mark (a best before date or expiration date) on the package that comes on or after the effective date.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Production Variant Effective Date Time".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :proteinPerNutrientBasis, comment: "Protein per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Protein Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :provenanceStatement, comment: "Free text description of the region or place the product originates from. This is to be specifically used to specify areas such as cities, mountain ranges, regions. Examples: Made in Thüringen Mountains, Made in Paris, From the Napa Valley.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Provenance Statement".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :recipeWebsite, comment: "Link to a website containing recipes associated with the product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Recipe Website".freeze, - range: "gs1:ReferencedFileDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ReferencedFileDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :referencedFile, comment: "Link to a file or website containing additional information on product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Referenced File".freeze, - range: "gs1:ReferencedFileDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ReferencedFileDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :referencedFileEffectiveEndDateTime, comment: "The date upon which the target of this external link ceases to be effective for use.".freeze, - domain: "gs1:ReferencedFileDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReferencedFileDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Referenced File Effective End Date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "schema:expires".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://schema.org/expires".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :referencedFileEffectiveStartDateTime, comment: "The date upon which the target of this external link begins to be effective for use.".freeze, - domain: "gs1:ReferencedFileDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReferencedFileDetails".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://schema.org/datePublished".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Referenced File Effective Start Date".freeze, - range: "xsd:dateTime".freeze, - "rdfs:seeAlso": "schema:datePublished".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :referencedFileSize, comment: "The size of the file as it is stored in an uncompressed format.".freeze, - domain: "gs1:ReferencedFileDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReferencedFileDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Referenced File Size".freeze, - range: "gs1:QuantitativeValue".freeze, - subPropertyOf: "schema:contentSize".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + subPropertyOf: "http://schema.org/contentSize".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :referencedFileType, comment: "A Code depicting the purpose or role of file (not a MIME type) that is being referenced, for example PRODUCT_LABEL_IMAGE. This code is used when the purpose of a file is not specified in the property.".freeze, - domain: "gs1:ReferencedFileDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReferencedFileDetails".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://schema.org/description".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Referenced File Type".freeze, - range: "gs1:ReferencedFileTypeCode".freeze, - "rdfs:seeAlso": "schema:description".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ReferencedFileTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :referencedFileURL, comment: "Simple text string that refers to a resource on the internet, URLs may refer to documents, resources, people, etc.".freeze, - domain: "gs1:ReferencedFileDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReferencedFileDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Website".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "schema:url".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://schema.org/url".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :regulatedProductName, comment: "The prescribed, regulated or generic product name or denomination that describes the true nature of the product. For example for a food product in order to distinguish it from other foods according to country specific regulations.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + "http://www.w3.org/2004/02/skos/core#broadMatch": "http://schema.org/name".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Regulated Product Name".freeze, - range: "rdf:langString".freeze, - related: "schema:Product".freeze, - "skos:broadMatch": "schema:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/Product".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :reheatingClaim, comment: "Indicates, with reference to the product branding, labelling or packaging whether a food product which is ready to eat can be reheated if required prior to consumption.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Reheating Claim".freeze, - range: "gs1:NonbinaryLogicCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NonbinaryLogicCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :replacedByProduct, comment: "The product which permanently replaces the current product. This product is sent in the record for the original item that is being replaced.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Replaced By Product".freeze, - range: "gs1:Product".freeze, - subPropertyOf: "schema:isSimilarTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Product".freeze, + subPropertyOf: "http://schema.org/isSimilarTo".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :replacedProduct, comment: "Indicates the product identification of an item that is being permanently replaced by this product.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Replaced Product".freeze, - range: "gs1:Product".freeze, - subPropertyOf: "schema:isSimilarTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Product".freeze, + subPropertyOf: "http://schema.org/isSimilarTo".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :responsibility, comment: "Text further specifying the area of responsibility of the trade contact.".freeze, - domain: "gs1:ContactPoint".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ContactPoint".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Responsibility".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :returnablePackageDepositAmount, comment: "The monetary amount for the individual returnable package.".freeze, - domain: "gs1:ReturnablePackageDepositDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReturnablePackageDepositDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Returnable Package Deposit Amount".freeze, - range: "gs1:PriceSpecification".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/PriceSpecification".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :returnablePackageDepositRegion, comment: "The geographic region associated with the returnable package deposit amount.".freeze, - domain: "gs1:ReturnablePackageDepositDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ReturnablePackageDepositDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Returnable Package Deposit Region".freeze, - range: "gs1:Country".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Country".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :riboflavinPerNutrientBasis, comment: "Riboflavin per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Riboflavin Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :saltPerNutrientBasis, comment: "Salt per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Salt Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :saturatedFatPerNutrientBasis, comment: "Saturated fat per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Saturated Fat Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :seasonCalendarYear, comment: "The calendar year in which the product is seasonally available. ".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Season Calendar Year".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#gYear".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :seasonName, comment: "Element defines the season applicable to the item for example Winter. ".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Season Name".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :seasonParameter, comment: "Code indicating the season in which the product is available, e.g. SPRING, WINTER".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Season Parameter".freeze, - range: "gs1:SeasonParameterCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/SeasonParameterCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :seeker, comment: "The organization seeking an offer.".freeze, - domain: "gs1:Offer".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Seeker".freeze, - range: "gs1:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :seleniumPerNutrientBasis, comment: "Selenium per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Selenium Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :seller, comment: "The organization seeking to sell a product or service.".freeze, - domain: "gs1:Offer".freeze, - exactMatch: "schema:seller".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + exactMatch: "http://schema.org/seller".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Seller".freeze, - range: "gs1:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :servingSize, comment: "Measurement value specifying the serving size in which the information per nutrient has been stated. Example: Per 100 grams.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Serving Size".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :servingSizeDescription, comment: "A free text field specifying the serving size for which the nutrient information has been stated for example: per 1/3 cup (42 g).".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Serving Size Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :servingSuggestion, comment: "Free text field for serving suggestion.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Serving Suggestion".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :sharpnessOfCheese, comment: "The descriptive term that is used by the product manufacturer to identify the sharpness of the taste of the product for example EXTRA_SHARP. Usually the longer the aging of the product, the sharper the taste.".freeze, - domain: "gs1:MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/MilkButterCreamYogurtCheeseEggsSubstitutes".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Sharpness Of Cheese".freeze, - range: "gs1:SharpnessOfCheeseCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/SharpnessOfCheeseCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :size, comment: "Links a wearable product to one or more groupings of gs1:SizeDetails representing size systems, size groups, size type and size dimensions.".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Size".freeze, - range: "gs1:SizeDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/SizeDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sizeCode, comment: "Links a product to one or more groupings of gs1:SizeCodeDetails representing the size value from a specified code list.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Yield".freeze, - range: "gs1:SizeCodeDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/SizeCodeDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sizeCodeListCode, comment: "Code specifying a size code list. Allowed code values are specified in GS1 Code List SizeCodeListCode .".freeze, - domain: "gs1:SizeCodeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/SizeCodeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Size Code List Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :sizeCodeValue, comment: "A code depicting the size of an object according to a specific code list. The applied code list is specified as additional information together with the size code.".freeze, - domain: "gs1:SizeCodeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/SizeCodeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Size Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :sizeDimension, comment: "The numerical size measurement relating to the size type.".freeze, - domain: "gs1:SizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/SizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Size Dimension".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sizeGroup, comment: "Code indicating the type of size that is necessary to uniquely specify the size of the item, for example, BOYS.".freeze, - domain: "gs1:SizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/SizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Size Group".freeze, - range: "gs1:SizeGroupCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/SizeGroupCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sizeSystem, comment: "The system that is being used to define the size for example EUROPE. Size system is used in conjunction with size group to define the size dimension.".freeze, - domain: "gs1:SizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/SizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Size System".freeze, - range: "gs1:SizeSystemCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/SizeSystemCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sizeType, comment: "The type of size dimension being specified for example SLEEVE.".freeze, - domain: "gs1:SizeDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/SizeDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Size Type".freeze, - range: "gs1:SizeTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/SizeTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sodiumPerNutrientBasis, comment: "Sodium per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Sodium Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sourceAnimal, comment: "Code indicating the source of raw material used to produce the food product, for example a GOAT for milk.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Source Animal Code".freeze, - range: "gs1:SourceAnimalCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/SourceAnimalCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sportingActivityType, comment: "Code indicating the type of sporting activity for which the product is intended to be worn, for example FOOTBALL.".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Sporting Activity Type".freeze, - range: "gs1:SportingActivityTypeCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/SportingActivityTypeCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :starchPerNutrientBasis, comment: "Starch per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Starch Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :streetAddress, comment: "The street address expressed as free form text. The street address is printed on paper as the first lines below the name. For example, the name of the street and the number in the street or the name of a building.".freeze, - domain: "gs1:PostalAddress".freeze, - exactMatch: ["schema:streetAddress".freeze, "vcard:street-address".freeze], - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PostalAddress".freeze, + exactMatch: ["http://schema.org/streetAddress".freeze, "http://www.w3.org/2006/vcard/ns#street-address".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Street Address".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :styleDescription, comment: "An attribute that classifies products that share many of the same characteristics (attribute values) that does NOT vary by GTIN, and are presented by the supplier as a single merchandise selection for the buyer.".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Style Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :subBrandName, comment: "Second level of brand. Can be a trademark. It is the primary differentiating factor that a brand owner wants to communicate to the consumer or buyer. E.g. Yummy-Cola Classic. In this example Yummy-Cola is the brand and Classic is the sub-brand.".freeze, - domain: "gs1:Brand".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Brand".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Sub-brand Name".freeze, - range: "rdf:langString".freeze, - related: "schema:Brand".freeze, - subPropertyOf: "schema:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + related: "http://schema.org/Brand".freeze, + subPropertyOf: "http://schema.org/name".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :sugarsPerNutrientBasis, comment: "Sugars per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Sugars Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :supplierSpecifiedMinimumConsumerStorageDays, comment: "Represents the number of days between a product's sell by date and its use by date.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Supplier Specified Minimum Consumer Storage Days".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :targetConsumerAge, comment: "Identifies the target consumer age range for which a product has been designed. ".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Target Consumer Age".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :targetConsumerGender, comment: "Identifies the target consumer gender for which a product has been designed for example MALE".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Target Consumer Gender".freeze, - range: "gs1:TargetConsumerGenderCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/TargetConsumerGenderCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :targetMarket, comment: "Relates to a set of target market details (product release date and associated countries)".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Target Market".freeze, - range: "gs1:TargetMarketDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/TargetMarketDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :targetMarketCountries, comment: "List of countries representing the target market for a particular release date indicated by gs1:consumerFirstAvailabilityDateTime".freeze, - domain: "gs1:TargetMarketDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/TargetMarketDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Target Market Countries".freeze, - range: "gs1:Country".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/Country".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :telephone, comment: "Voice/data transmission by telephone.".freeze, - domain: "gs1:ContactPoint".freeze, - exactMatch: ["schema:telephone".freeze, "vcard:hasTelephone".freeze], - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/ContactPoint".freeze, + exactMatch: ["http://schema.org/telephone".freeze, "http://www.w3.org/2006/vcard/ns#hasTelephone".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Telephone".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :textileMaterial, comment: "One or more links to information about the materials used in a wearable product.".freeze, - domain: "gs1:Clothing".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Clothing".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Textile Material".freeze, - range: "gs1:TextileMaterialDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/TextileMaterialDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :textileMaterialContent, comment: "A description of the material composition used in conjunction with the material percentage.".freeze, - domain: "gs1:WearableProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WearableProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Textile Material Content".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :textileMaterialDescription, comment: "This provides a name or brief description of one material contained within the product, for example Rayon. ".freeze, - domain: "gs1:TextileMaterialDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/TextileMaterialDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Textile Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :textileMaterialPercentage, comment: "Corresponding net weight percentage of the product material specified via gs1:textileMaterialDescription, e.g. 70.".freeze, - domain: "gs1:TextileMaterialDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/TextileMaterialDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Textile Material Percentage".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :textileMaterialThreadCount, comment: "The quality of material (fabric) of a product based on the total number of vertical and horizontal threads in one square inch.".freeze, - domain: "gs1:TextileMaterialDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/TextileMaterialDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Textile Material Thread Count".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :textileMaterialWeight, comment: "The measured weight of the material expressed in ounces per square yard or grams per square meter.".freeze, - domain: "gs1:TextileMaterialDetails".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/TextileMaterialDetails".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Textile Material Weight".freeze, - range: "gs1:QuantitativeValue".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :thiaminPerNutrientBasis, comment: "Thiamin per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Thiamin Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :transFatPerNutrientBasis, comment: "Trans Fat per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Trans Fat Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :unitCode, comment: "A string value indicating a Measurement Unit from UN/ECE Recommendation 20, Units of Measure used in International Trade e.g. GRM = gram - see http://www.unece.org/fileadmin/DAM/cefact/recommendations/rec20/rec20_rev3_Annex3e.pdf".freeze, - domain: "gs1:QuantitativeValue".freeze, - exactMatch: "schema:unitCode".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/QuantitativeValue".freeze, + exactMatch: "http://schema.org/unitCode".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Measurement Unit".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :upperMaterialType, comment: "The material(s) used for the upper part of the footwear product. The upper is the part of a shoe, boot, slipper or other item of footwear that is above the sole.".freeze, - domain: "gs1:Footwear".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Footwear".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Upper Material".freeze, - range: "gs1:TextileMaterialDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/TextileMaterialDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :validFrom, comment: "The effective start date of the price .".freeze, - domain: "gs1:PriceSpecification".freeze, - exactMatch: "schema:validFrom".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PriceSpecification".freeze, + exactMatch: "http://schema.org/validFrom".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Price Effective Start Date".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :validThrough, comment: "The effective end date of the price .".freeze, - domain: "gs1:PriceSpecification".freeze, - exactMatch: "schema:validThrough".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/PriceSpecification".freeze, + exactMatch: "http://schema.org/validThrough".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Price Effective End Date".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :value, comment: "A floating-point numeric value that is qualified by the corresponding measurement unit code - see gs1:measurementUnitCode".freeze, - domain: "gs1:QuantitativeValue".freeze, - exactMatch: "schema:value".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/QuantitativeValue".freeze, + exactMatch: "http://schema.org/value".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Measurement Value".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :variantDescription, comment: "Free text field used to identify the variant of the product. Variants are the distinguishing characteristics that differentiate products with the same brand and size including such things as the particular flavour, fragrance, taste.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Variant Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :vintner, comment: "The person hired by a winery or wine company who is responsible for many of the processes in the preparation, taste and quality of the wine produced. The science of wine making is referred to as oenology. The vintner is the oenologist.".freeze, - domain: "gs1:Beverage".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Beverage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Vintner".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :vitaminAPerNutrientBasis, comment: "Vitamin A per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Vitamin A Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :vitaminB12PerNutrientBasis, comment: "Vitamin B12 per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Vitamin B12 Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :vitaminB6PerNutrientBasis, comment: "Vitamin B6 per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Vitamin B6 Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :vitaminCPerNutrientBasis, comment: "Vitamin C per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Vitamin C Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :vitaminDPerNutrientBasis, comment: "Vitamin D per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Vitamin D Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :vitaminEPerNutrientBasis, comment: "Vitamin E per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Vitamin E Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :vitaminKPerNutrientBasis, comment: "Vitamin K per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Vitamin K Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :warningCopyDescription, comment: "Warning information is additional information that outlines special requirements, warning and caution information printed on the package.".freeze, - domain: "gs1:Product".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Product".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Warning Copy Description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :warranty, comment: "The warranty associated with the product, as provided by the manufacturer.".freeze, - domain: "gs1:Offer".freeze, - exactMatch: "schema:warranty".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Offer".freeze, + exactMatch: "http://schema.org/warranty".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Has Offer Warranty".freeze, - range: "gs1:WarrantyPromise".freeze, - subPropertyOf: "schema:warranty".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/WarrantyPromise".freeze, + subPropertyOf: "http://schema.org/warranty".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :warrantyScopeDescription, comment: "The description of warranty available for the product. Allows for the representation of the same value in different languages but not for multiple values.".freeze, - domain: "gs1:WarrantyPromise".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/WarrantyPromise".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://schema.org/WarrantyPromise".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Warranty Scope".freeze, - range: "rdf:langString".freeze, - "rdfs:seeAlso": "schema:WarrantyPromise".freeze, - subPropertyOf: "schema:description".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString".freeze, + subPropertyOf: "http://schema.org/description".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :width, comment: "The width of the product, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details.".freeze, - domain: "gs1:Dimension".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/Dimension".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Width".freeze, - range: "gs1:QuantitativeValue".freeze, - related: "schema:width".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/QuantitativeValue".freeze, + related: "http://schema.org/width".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :yield, comment: "Links a wearable product to one or more groupings of gs1:SizeDetails representing size systems, size groups, size type and size dimensions.".freeze, - domain: "gs1:FoodAndBeveragePreparationInformation".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodAndBeveragePreparationInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Yield".freeze, - range: "gs1:ProductYieldDetails".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/ProductYieldDetails".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :zincPerNutrientBasis, comment: "Zinc per specified nutrient basis quantity.".freeze, - domain: "gs1:FoodBeverageTobaccoProduct".freeze, - isDefinedBy: "gs1:".freeze, + domain: "http://gs1.org/voc/FoodBeverageTobaccoProduct".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://gs1.org/voc/".freeze, label: "Zinc Per Nutrient Basis Quantity".freeze, - range: "gs1:NutritionMeasurementType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze], - "vs:term_status": "testing".freeze + range: "http://gs1.org/voc/NutritionMeasurementType".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] # Extra definitions term :AllergenTypeCode, isDefinedBy: "http://apps.gs1.org/GDD/bms/Version2_8/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:AllergenTypeCodeList&release=1".freeze, label: "Allergen Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"AllergenTypeCode-ALMONDS", comment: "Refers to the presence of almond and almond products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "SA".freeze, + "http://gs1.org/voc/originalCodeValue": "SA".freeze, label: "Almond and Almond Products".freeze, prefLabel: "ALMONDS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-ALPHA_ISOMETHYL_IONONE", comment: "Refers to the presence of Alpha-Isomethyl Ionone as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "AI".freeze, + "http://gs1.org/voc/originalCodeValue": "AI".freeze, label: "Alpha-Isomethyl Ionone".freeze, prefLabel: "ALPHA_ISOMETHYL_IONONE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-AMYLCINNAMYL_ALCOHOL", comment: "Refers to the presence of Amylcinnamyl Alcohol as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "AA".freeze, + "http://gs1.org/voc/originalCodeValue": "AA".freeze, label: "Amylcinnamyl Alcohol".freeze, prefLabel: "AMYLCINNAMYL_ALCOHOL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-AMYL_CINNAMAL", comment: "Refers to the presence of Amyl Cinnamal as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "AL".freeze, + "http://gs1.org/voc/originalCodeValue": "AL".freeze, label: "Amyl Cinnamal".freeze, prefLabel: "AMYL_CINNAMAL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-ANISE_ALCOHOL", comment: "Refers to the presence of Anise Alcohol as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "AH".freeze, + "http://gs1.org/voc/originalCodeValue": "AH".freeze, label: "Anise Alcohol".freeze, prefLabel: "ANISE_ALCOHOL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-BARLEY", comment: "Refers to the presence of Barley and barley products (glutencontaining grain) as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "GB".freeze, + "http://gs1.org/voc/originalCodeValue": "GB".freeze, label: "Barley and Barley Products".freeze, prefLabel: "BARLEY".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-BENZYL_ALCOHOL", comment: "Refers to the presence of Benzyl Alcohol as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "BA".freeze, + "http://gs1.org/voc/originalCodeValue": "BA".freeze, label: "Benzyl Alcohol".freeze, prefLabel: "BENZYL_ALCOHOL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-BENZYL_BENZOATE", comment: "Refers to the presence of Benzyl Benzoate as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "BB".freeze, + "http://gs1.org/voc/originalCodeValue": "BB".freeze, label: "Benzyl Benzoate".freeze, prefLabel: "BENZYL_BENZOATE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-BENZYL_CINNAMATE", comment: "Refers to the presence of Benzyl Cinnamate as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "BI".freeze, + "http://gs1.org/voc/originalCodeValue": "BI".freeze, label: "Benzyl Cinnamate.".freeze, prefLabel: "BENZYL_CINNAMATE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-BENZYL_SALICYLATE", comment: "Refers to the presence of Benzyl Salicylate as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "BS".freeze, + "http://gs1.org/voc/originalCodeValue": "BS".freeze, label: "Benzyl Salicylate".freeze, prefLabel: "BENZYL_SALICYLATE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-BRAZIL_NUTS", comment: "Refers to the presence of brazil nut and brazil nut products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "SR".freeze, + "http://gs1.org/voc/originalCodeValue": "SR".freeze, label: "Brazil Nut and Brazil Nut Products".freeze, prefLabel: "BRAZIL_NUTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-BUTYLPHENYL_METHYLPROPIONATE", comment: "Refers to the presence of Butylphenyl Methylpropionate as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "BE".freeze, + "http://gs1.org/voc/originalCodeValue": "BE".freeze, label: "Butylphenyl Methylpropionate.".freeze, prefLabel: "BUTYLPHENYL_METHYLPROPIONATE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CARROTS", comment: "Refers to the presence of carrot and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "NW".freeze, + "http://gs1.org/voc/originalCodeValue": "NW".freeze, label: "Carrot and Derivatives".freeze, prefLabel: "CARROTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CASHEW_NUTS", comment: "Refers to the presence of cashew and cashew products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "SC".freeze, + "http://gs1.org/voc/originalCodeValue": "SC".freeze, label: "Cashew and Cashew Products".freeze, prefLabel: "CASHEW_NUTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CELERY", comment: "Refers to the presence of celery or their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "BC".freeze, + "http://gs1.org/voc/originalCodeValue": "BC".freeze, label: "Celery or Derivatives".freeze, prefLabel: "CELERY".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CEREALS_CONTAINING_GLUTEN", comment: "Refers to the presence of Cereals containing gluten and their derivatives in the product, as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "AW".freeze, + "http://gs1.org/voc/originalCodeValue": "AW".freeze, label: "Cereals Containing Gluten and Their Derivatives".freeze, prefLabel: "CEREALS_CONTAINING_GLUTEN".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CINNAMAL", comment: "Refers to the presence of Cinnamal as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "CL".freeze, + "http://gs1.org/voc/originalCodeValue": "CL".freeze, label: "Cinnamal".freeze, prefLabel: "CINNAMAL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CINNAMYL_ALCOHOL", comment: "Refers to the presence of Cinnamyl Alcohol as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "CA".freeze, + "http://gs1.org/voc/originalCodeValue": "CA".freeze, label: "Cinnamyl Alcohol".freeze, prefLabel: "CINNAMYL_ALCOHOL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CITRAL", comment: "Refers to the presence of Citral as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "CT".freeze, + "http://gs1.org/voc/originalCodeValue": "CT".freeze, label: "Citral".freeze, prefLabel: "CITRAL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CITRONELLOL", comment: "Refers to the presence of Citronellol as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "CN".freeze, + "http://gs1.org/voc/originalCodeValue": "CN".freeze, label: "Citronellol".freeze, prefLabel: "CITRONELLOL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-COCOA", comment: "Refers to the presence of cocoa and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "NC".freeze, + "http://gs1.org/voc/originalCodeValue": "NC".freeze, label: "Cocoa and Derivatives".freeze, prefLabel: "COCOA".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CORIANDER", comment: "Refers to the presence of coriander and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "NK".freeze, + "http://gs1.org/voc/originalCodeValue": "NK".freeze, label: "Coriander Derivatives".freeze, prefLabel: "CORIANDER".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CORN", comment: "Refers to the presence of corn and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "NM".freeze, + "http://gs1.org/voc/originalCodeValue": "NM".freeze, label: "Corn and Derivatives".freeze, prefLabel: "CORN".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-COUMARIN", comment: "Refers to the presence of Coumarin as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "CO".freeze, + "http://gs1.org/voc/originalCodeValue": "CO".freeze, label: "Coumarin".freeze, prefLabel: "COUMARIN".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-CRUSTACEANS", comment: "Refers to the presence of Crustaceans and their derivatives in the product, as listed as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "AC".freeze, + "http://gs1.org/voc/originalCodeValue": "AC".freeze, label: "Crustaceans and Their Derivatives".freeze, prefLabel: "CRUSTACEANS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-EGGS", comment: "Refers to the presence of eggs and their derivatives in the product, as listed as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "AE".freeze, + "http://gs1.org/voc/originalCodeValue": "AE".freeze, label: "Eggs and Their Derivatives".freeze, prefLabel: "EGGS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-EUGENOL", comment: "Refers to the presence of Eugenol as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "EG".freeze, + "http://gs1.org/voc/originalCodeValue": "EG".freeze, label: "Eugenol".freeze, prefLabel: "EUGENOL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-EVERNIA_FURFURACEA", comment: "Refers to the presence of Evernia Furfuracea as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "EV".freeze, + "http://gs1.org/voc/originalCodeValue": "EV".freeze, label: "Evernia Furfuracea".freeze, prefLabel: "EVERNIA_FURFURACEA".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-EVERNIA_PRUNASTRI", comment: "Refers to the presence of Evernia Prunastri as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "EP".freeze, + "http://gs1.org/voc/originalCodeValue": "EP".freeze, label: "Evernia Prunastri".freeze, prefLabel: "EVERNIA_PRUNASTRI".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-FARNESOL", comment: "Refers to the presence of Farnesol as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "FA".freeze, + "http://gs1.org/voc/originalCodeValue": "FA".freeze, label: "Farnesol".freeze, prefLabel: "FARNESOL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-FISH", comment: "Refers to the presence of Fish and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "AF".freeze, + "http://gs1.org/voc/originalCodeValue": "AF".freeze, label: "Fish and Their Derivatives".freeze, prefLabel: "FISH".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-GERANIOL", comment: "Refers to the presence of Geraniol as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "GE".freeze, + "http://gs1.org/voc/originalCodeValue": "GE".freeze, label: "Geraniol".freeze, prefLabel: "GERANIOL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-GLUTEN", comment: "Refers to the presense of other gluten containing grain and gluten containing grain products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "AX".freeze, + "http://gs1.org/voc/originalCodeValue": "AX".freeze, label: "Gluten".freeze, prefLabel: "GLUTEN".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-HAZELNUTS", comment: "Refers to the presence of hazelnut and hazelnut products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "SH".freeze, + "http://gs1.org/voc/originalCodeValue": "SH".freeze, label: "Hazelnut and Hazelnut Products".freeze, prefLabel: "HAZELNUTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-HEXYL_CINNAMAL", comment: "Refers to the presence of Hexyl Cinnamal as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "HX".freeze, + "http://gs1.org/voc/originalCodeValue": "HX".freeze, label: "Hexyl Cinnamal".freeze, prefLabel: "HEXYL_CINNAMAL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-HYDROXYCITRONELLAL", comment: "Refers to the presence of Hydroxycitronellal as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "HY".freeze, + "http://gs1.org/voc/originalCodeValue": "HY".freeze, label: "Hydroxycitronellal".freeze, prefLabel: "HYDROXYCITRONELLAL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-HYDROXYISOHEXYL_3-CYCLOHEXENE_CARBOXALDEHYDE_ISOEUGENOL_LIMONENE_LINAL", comment: "Refers to the presence of Hydroxyisohexyl 3-Cyclohexene Carboxaldehyde Isoeugenol Limonene Linal as listed in the regulations specified in AllergenSpecificationAgency and llergenSpecificationName.".freeze, - "gs1:originalCodeValue": "HC".freeze, + "http://gs1.org/voc/originalCodeValue": "HC".freeze, label: "Hydroxyisohexyl 3-Cyclohexene Carboxaldehyde Isoeugenol Limonene Linal".freeze, prefLabel: "HYDROXYISOHEXYL_3-CYCLOHEXENE_CARBOXALDEHYDE_ISOEUGENOL_LIMONENE_LINAL".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-KAMUT", comment: "Refers to the presence of kamut and kamut products (glutencontaining grain) as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "GK".freeze, + "http://gs1.org/voc/originalCodeValue": "GK".freeze, label: "Kamut and Kamut Products".freeze, prefLabel: "KAMUT".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-LACTOSE", comment: "Refers to the presence of lactose as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "ML".freeze, + "http://gs1.org/voc/originalCodeValue": "ML".freeze, label: "Lactose".freeze, prefLabel: "LACTOSE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-LUPINE", comment: "Refers to the presence of Lupine and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "NL".freeze, + "http://gs1.org/voc/originalCodeValue": "NL".freeze, label: "Lupine and Derivatives".freeze, prefLabel: "LUPINE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-MACADAMIA_NUTS", comment: "Refers to the presence of macadamia nut and macadamia nut products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "SM".freeze, + "http://gs1.org/voc/originalCodeValue": "SM".freeze, label: "Macadamia Nut and Macadamia Nut Products".freeze, prefLabel: "MACADAMIA_NUTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-METHYL_2_OCTYNOATE", comment: "Refers to the presence of Methyl 2-Octynoate as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "MO".freeze, + "http://gs1.org/voc/originalCodeValue": "MO".freeze, label: "Methyl 2-Octynoate".freeze, prefLabel: "METHYL_2_OCTYNOATE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-MILK", comment: "Refers to the presence of milk and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "AM".freeze, + "http://gs1.org/voc/originalCodeValue": "AM".freeze, label: "Milk and Derivatives".freeze, prefLabel: "MILK".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-MOLLUSCS", comment: "Refers to the presence of molluscs and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "UM".freeze, + "http://gs1.org/voc/originalCodeValue": "UM".freeze, label: "Molluscs and Their Derivatives".freeze, prefLabel: "MOLLUSCS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-MUSTARD", comment: "Refers to the presence of mustard or their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "BM".freeze, + "http://gs1.org/voc/originalCodeValue": "BM".freeze, label: "Mustard and Derivatives ".freeze, prefLabel: "MUSTARD".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-NO_DECLARED_ALLERGENS", comment: "Does not contain declaration obligatory allergens as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "X99".freeze, + "http://gs1.org/voc/originalCodeValue": "X99".freeze, label: "No Declaration Obligatory Allergens".freeze, prefLabel: "NO_DECLARED_ALLERGENS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-OAT", comment: "Refers to the presence of oat and oat products (gluten containing grain) as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "GO".freeze, + "http://gs1.org/voc/originalCodeValue": "GO".freeze, label: "Oat and Oat Products".freeze, prefLabel: "OAT".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-PEANUTS", comment: "Refers to the presence of peanuts and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "AP".freeze, + "http://gs1.org/voc/originalCodeValue": "AP".freeze, label: "Peanuts and Their Derivatives".freeze, prefLabel: "PEANUTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-PEAS", comment: "Refers to the presence of peas and pea products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "NE".freeze, + "http://gs1.org/voc/originalCodeValue": "NE".freeze, label: "Peas and Pea Products".freeze, prefLabel: "PEAS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-PECAN_NUTS", comment: "Refers to the presence of pecan nut and pecan nut products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "SP".freeze, + "http://gs1.org/voc/originalCodeValue": "SP".freeze, label: "Pecan Nut and Pecan Nut".freeze, prefLabel: "PECAN_NUTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-PISTACHIOS", comment: "Refers to the presence of pistachio and pistachio products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "ST".freeze, + "http://gs1.org/voc/originalCodeValue": "ST".freeze, label: "Pistachio and Pistachio Products".freeze, prefLabel: "PISTACHIOS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-POD_FRUITS", comment: "Refers to the presence of pod fruits and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "NP".freeze, + "http://gs1.org/voc/originalCodeValue": "NP".freeze, label: "Pod Fruits Derivatives".freeze, prefLabel: "POD_FRUITS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-QUEENSLAND_NUTS", comment: "Refers to the presence of queensland nut and queensland nut products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "SQ".freeze, + "http://gs1.org/voc/originalCodeValue": "SQ".freeze, label: "Queensland Nut and Queensland Nut Products".freeze, prefLabel: "QUEENSLAND_NUTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-RYE", comment: "Refers to the presence of rye and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "NR".freeze, + "http://gs1.org/voc/originalCodeValue": "NR".freeze, label: "Rye and Derivatives".freeze, prefLabel: "RYE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-SESAME_SEEDS", comment: "Refers to the presence of sesame seeds or their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "AS".freeze, + "http://gs1.org/voc/originalCodeValue": "AS".freeze, label: "Sesame Seeds or Their Derivatives".freeze, prefLabel: "SESAME_SEEDS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-SOYBEANS", comment: "Refers to the presence of soybeans and their derivatives in the product, as listed in as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "AY".freeze, + "http://gs1.org/voc/originalCodeValue": "AY".freeze, label: "Soybeans and Their Derivatives".freeze, prefLabel: "SOYBEANS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-SPELT", comment: "Refers to the presence of spelt and spelt products (gluten containing grain) as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "GS".freeze, + "http://gs1.org/voc/originalCodeValue": "GS".freeze, label: "Spelt and Spelt Products".freeze, prefLabel: "SPELT".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-SULPHUR_DIOXIDE", comment: "Refers to the presence of sulphur dioxide and sulphites as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName.".freeze, - "gs1:originalCodeValue": "AU".freeze, + "http://gs1.org/voc/originalCodeValue": "AU".freeze, label: "Sulphur Dioxide and Sulphites".freeze, prefLabel: "SULPHUR_DIOXIDE".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-TREE_NUTS", comment: "Refers to the presence of tree nuts and their derivatives in the product, as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName. Tree nuts can include almonds, hazelnut, walnut, cashews, etc.".freeze, - "gs1:originalCodeValue": "AN".freeze, + "http://gs1.org/voc/originalCodeValue": "AN".freeze, label: "Tree Nuts and Their Derivatives".freeze, prefLabel: "TREE_NUTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-TREE_NUT_TRACES", comment: "Contains Traces of Tree Nuts, i.e. almonds, various kinds of tree nuts.".freeze, - "gs1:originalCodeValue": "TN".freeze, + "http://gs1.org/voc/originalCodeValue": "TN".freeze, label: "Traces of Tree Nuts".freeze, prefLabel: "TREE_NUT_TRACES".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-WALNUTS", comment: "Refers to the presence of walnut and walnut products as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "SW".freeze, + "http://gs1.org/voc/originalCodeValue": "SW".freeze, label: "Walnut and Walnut Products".freeze, prefLabel: "WALNUTS".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :"AllergenTypeCode-WHEAT", comment: "Refers to the presence of wheat and their derivatives in the product, as listed in the regulations specified in AllergenSpecificationAgency and AllergenSpecificationName".freeze, - "gs1:originalCodeValue": "UW".freeze, + "http://gs1.org/voc/originalCodeValue": "UW".freeze, label: "Wheat and Their Derivatives".freeze, prefLabel: "WHEAT".freeze, - type: "gs1:AllergenTypeCode".freeze + type: "http://gs1.org/voc/AllergenTypeCode".freeze term :AnatomicalFormCode, label: "Anatomical Form Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"AnatomicalFormCode-BELLY", label: "Belly".freeze, prefLabel: "BELLY".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-BLOOD", label: "Blood".freeze, prefLabel: "BLOOD".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-BONE", label: "Bone".freeze, prefLabel: "BONE".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-BRAIN", label: "Brain".freeze, prefLabel: "BRAIN".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-CARCASS_NONPOULTRY", label: "Carcass Nonpoultry".freeze, prefLabel: "CARCASS_NONPOULTRY".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-DIAPHRAM", label: "Diaphram".freeze, prefLabel: "DIAPHRAM".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-ESOPHAGUS", label: "Esophagus".freeze, prefLabel: "ESOPHAGUS".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-FAT", label: "Fat".freeze, prefLabel: "FAT".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-FEET", label: "Feet".freeze, prefLabel: "FEET".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-FOREQUARTER", label: "Forequarter".freeze, prefLabel: "FOREQUARTER".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-GIZZARD", label: "Gizzard".freeze, prefLabel: "GIZZARD".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-HEAD", label: "Head".freeze, prefLabel: "HEAD".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-HEADMEAT_CHEEKMEAT", label: "Headmeat Cheekmeat".freeze, prefLabel: "HEADMEAT_CHEEKMEAT".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-HEART", label: "Heart".freeze, prefLabel: "HEART".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-HINDQUARTER", label: "Hindquarter".freeze, prefLabel: "HINDQUARTER".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-HORN", label: "Horn".freeze, prefLabel: "HORN".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-INTESTINE_LARGE", label: "Intestine Large".freeze, prefLabel: "INTESTINE_LARGE".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-INTESTINE_SMALL", label: "Intenstine Small".freeze, prefLabel: "INTESTINE_SMALL".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-KIDNEY", label: "Kidney".freeze, prefLabel: "KIDNEY".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-LIPS", label: "Lips".freeze, prefLabel: "LIPS".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-LIVER", label: "Liver".freeze, prefLabel: "LIVER".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-LUNGS", label: "Lungs".freeze, prefLabel: "LUNGS".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-MIXED_OFFAL", label: "Mixed Offal".freeze, prefLabel: "MIXED_OFFAL".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-MIXED_PARTS_FOR_GROUNDING_MINCING", label: "Mixed Parts For Grounding or Mincing".freeze, prefLabel: "MIXED_PARTS_FOR_GROUNDING_MINCING".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-NECK", label: "Neck".freeze, prefLabel: "NECK".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-PANCREAS", label: "Pancreas".freeze, prefLabel: "PANCREAS".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-SKIN", label: "Skin".freeze, prefLabel: "SKIN".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-STOMACH", label: "Stomach".freeze, prefLabel: "STOMACH".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-TAIL", label: "Tail".freeze, prefLabel: "TAIL".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-TENDONS", label: "Tendons".freeze, prefLabel: "TENDONS".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-TESTICLES", label: "Testicles".freeze, prefLabel: "TESTICLES".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-THYMUS", label: "Thymus".freeze, prefLabel: "THYMUS".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-TONGUE", label: "Tongue".freeze, prefLabel: "TONGUE".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-TRIPE", label: "Tripe".freeze, prefLabel: "TRIPE".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-UNCLASSIFIED", label: "Unclassified".freeze, prefLabel: "UNCLASSIFIED".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-UNIDENTIFIED", label: "Unidentified".freeze, prefLabel: "UNIDENTIFIED".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-WHOLE_BIRD", label: "Whole Bird".freeze, prefLabel: "WHOLE_BIRD".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-WHOLE_MUSCLE_NONPOULTRY_MEATPART_PIECE", label: "Whole Muscle Nonpoultry Meatpart Piece".freeze, prefLabel: "WHOLE_MUSCLE_NONPOULTRY_MEATPART_PIECE".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-WHOLE_MUSCLE_POULTRY_PART", label: "Whole Muscle Poultry Part".freeze, prefLabel: "WHOLE_MUSCLE_POULTRY_PART".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-WHOLE_MUSCLE_PRIMAL", label: "Whole Muscle Primal".freeze, prefLabel: "WHOLE_MUSCLE_PRIMAL".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-WHOLE_MUSCLE_RIBCUT", label: "Whole Muscle Ribcut".freeze, prefLabel: "WHOLE_MUSCLE_RIBCUT".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-WHOLE_MUSCLE_ROASTCUT", label: "Whole Muscle Roast Cut".freeze, prefLabel: "WHOLE_MUSCLE_ROASTCUT".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-WHOLE_MUSCLE_SLICE_CHOPCUT", prefLabel: "WHOLE_MUSCLE_SLICE_CHOPCUT".freeze term :"AnatomicalFormCode-WHOLE_MUSCLE_SLICE_CUTLET", label: "Whole Muscle Slice Cutlet".freeze, prefLabel: "WHOLE_MUSCLE_SLICE_CUTLET".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-WHOLE_MUSCLE_STEAK_CHOPCUT", label: "Whole Muscle Steak Chop-cut".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :"AnatomicalFormCode-WHOLE_MUSCLE_SUBPRIMAL", label: "Whole Muscle Subprimal".freeze, prefLabel: "WHOLE_MUSCLE_SUBPRIMAL".freeze, - type: "gs1:AnatomicalFormCode".freeze + type: "http://gs1.org/voc/AnatomicalFormCode".freeze term :CheeseFirmnessCode, label: "Cheese Firmness Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"CheeseFirmnessCode-EXTRA_HARD", label: "Extra Hard".freeze, prefLabel: "EXTRA_HARD".freeze, - type: "gs1:CheeseFirmnessCode".freeze + type: "http://gs1.org/voc/CheeseFirmnessCode".freeze term :"CheeseFirmnessCode-FIRM_SEMIHARD", label: "Firm Semi Hard".freeze, prefLabel: "FIRM_SEMIHARD".freeze, - type: "gs1:CheeseFirmnessCode".freeze + type: "http://gs1.org/voc/CheeseFirmnessCode".freeze term :"CheeseFirmnessCode-HARD", label: "Hard".freeze, prefLabel: "HARD".freeze, - type: "gs1:CheeseFirmnessCode".freeze + type: "http://gs1.org/voc/CheeseFirmnessCode".freeze term :"CheeseFirmnessCode-SOFT", label: "Soft".freeze, prefLabel: "SOFT".freeze, - type: "gs1:CheeseFirmnessCode".freeze + type: "http://gs1.org/voc/CheeseFirmnessCode".freeze term :"CheeseFirmnessCode-UNIDENTIFIED", label: "Unidentified".freeze, prefLabel: "UNIDENTIFIED".freeze, - type: "gs1:CheeseFirmnessCode".freeze + type: "http://gs1.org/voc/CheeseFirmnessCode".freeze term :"ColourCodeList-BUYER", comment: "Assigned by buyer.".freeze, - "gs1:originalCodeValue": "6".freeze, + "http://gs1.org/voc/originalCodeValue": "6".freeze, label: "Assigned by Buyer".freeze, prefLabel: "BUYER".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-IFPS", comment: "International Federation for Produce Standards.".freeze, - "gs1:originalCodeValue": "11".freeze, + "http://gs1.org/voc/originalCodeValue": "11".freeze, label: "International Federation for Produce Standards".freeze, prefLabel: "IFPS".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-NCS", comment: "Natural Colour System.".freeze, - "gs1:originalCodeValue": "10".freeze, + "http://gs1.org/voc/originalCodeValue": "10".freeze, label: "Natural Colour System".freeze, prefLabel: "NCS".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-NRF", comment: "National Retail Federation.".freeze, - "gs1:originalCodeValue": "1".freeze, + "http://gs1.org/voc/originalCodeValue": "1".freeze, label: "National Retail Federation.".freeze, prefLabel: "NRF".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-PANTONE_HEXACHROME", comment: "Pantone Hexachrome.".freeze, - "gs1:originalCodeValue": "4".freeze, + "http://gs1.org/voc/originalCodeValue": "4".freeze, label: "Pantone Hexachrome".freeze, prefLabel: "PANTONE_HEXACHROME".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-PANTONE_MATCHING", comment: "Pantone Matching System.".freeze, - "gs1:originalCodeValue": "2".freeze, + "http://gs1.org/voc/originalCodeValue": "2".freeze, label: "Pantone Matching System".freeze, prefLabel: "PANTONE_MATCHING".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-PANTONE_PROCESS_COLOUR", comment: "Pantone Process Colour System.".freeze, - "gs1:originalCodeValue": "3".freeze, + "http://gs1.org/voc/originalCodeValue": "3".freeze, label: "Pantone Process Colour System".freeze, prefLabel: "PANTONE_PROCESS_COLOUR".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-PANTONE_TEXTILE", comment: "Pantone Textile. Same as GS1 ColourCodeList Code 5".freeze, - "gs1:originalCodeValue": "5".freeze, + "http://gs1.org/voc/originalCodeValue": "5".freeze, label: "Pantone Textile".freeze, prefLabel: "PANTONE_TEXTILE".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-RAL", comment: "Farbsystem RAL Colour System.".freeze, - "gs1:originalCodeValue": "9".freeze, + "http://gs1.org/voc/originalCodeValue": "9".freeze, label: "Farbsystem RAL Colour System".freeze, prefLabel: "RAL".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-SELLER", comment: "Assigned by seller.".freeze, - "gs1:originalCodeValue": "7".freeze, + "http://gs1.org/voc/originalCodeValue": "7".freeze, label: "Assigned by Seller".freeze, prefLabel: "SELLER".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :"ColourCodeList-WWS", comment: "Waren Wirtschafts System.".freeze, - "gs1:originalCodeValue": "8".freeze, + "http://gs1.org/voc/originalCodeValue": "8".freeze, label: "Waren Wirtschafts System".freeze, prefLabel: "WWS".freeze, - type: "gs1:ColourCodeListCode".freeze + type: "http://gs1.org/voc/ColourCodeListCode".freeze term :ColourCodeListCode, label: "Colour Code List Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :ConsumerLifestageCode, label: "Consumer Lifestage Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"ConsumerLifestageCode-ADULT", label: "Suitable for Adults".freeze, prefLabel: "ADULT".freeze, - type: "gs1:ConsumerLifestageCode".freeze + type: "http://gs1.org/voc/ConsumerLifestageCode".freeze term :"ConsumerLifestageCode-ALL_AGES", label: "Suitable for All Ages".freeze, prefLabel: "ALL_AGES".freeze, - type: "gs1:ConsumerLifestageCode".freeze + type: "http://gs1.org/voc/ConsumerLifestageCode".freeze term :"ConsumerLifestageCode-BABY_INFANT", label: "Suitable for Babies/Infants".freeze, prefLabel: "BABY_INFANT".freeze, - type: "gs1:ConsumerLifestageCode".freeze + type: "http://gs1.org/voc/ConsumerLifestageCode".freeze term :"ConsumerLifestageCode-CHILD_1_To_2_YEARS", label: "Suitable for Children One to Two Years Old".freeze, prefLabel: "CHILD_1_To_2_YEARS".freeze, - type: "gs1:ConsumerLifestageCode".freeze + type: "http://gs1.org/voc/ConsumerLifestageCode".freeze term :"ConsumerLifestageCode-CHILD_2_YEARS_ONWARDS", label: "Suitable for Children 2 Plus Years of Age".freeze, prefLabel: "CHILD_2_YEARS_ONWARDS".freeze, - type: "gs1:ConsumerLifestageCode".freeze + type: "http://gs1.org/voc/ConsumerLifestageCode".freeze term :"ConsumerLifestageCode-UNCLASSIFIED", label: "Unclassified".freeze, prefLabel: "UNCLASSIFIED".freeze, - type: "gs1:ConsumerLifestageCode".freeze + type: "http://gs1.org/voc/ConsumerLifestageCode".freeze term :"ConsumerLifestageCode-UNIDENTIFIED", label: "Unidentified".freeze, prefLabel: "UNIDENTIFIED".freeze, - type: "gs1:ConsumerLifestageCode".freeze + type: "http://gs1.org/voc/ConsumerLifestageCode".freeze term :ConsumerSalesConditionsCode, isDefinedBy: "http://apps.gs1.org/GDD/bms/Version2_8/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:ConsumerSalesConditionCodeList&release=2".freeze, label: "Consumer Sales Conditions Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"ConsumerSalesConditionsCode-BTC", comment: "Products that are sold without a prescription but must be distributed through a pharmacy.".freeze, label: "Behind the Counter".freeze, prefLabel: "BTC".freeze, - type: "gs1:ConsumerSalesConditionsCode".freeze + type: "http://gs1.org/voc/ConsumerSalesConditionsCode".freeze term :"ConsumerSalesConditionsCode-OTC", comment: "Products that may be sold without a prescription. These products are generally available without restrictions.".freeze, label: "Over the Counter".freeze, prefLabel: "OTC".freeze, - type: "gs1:ConsumerSalesConditionsCode".freeze + type: "http://gs1.org/voc/ConsumerSalesConditionsCode".freeze term :"ConsumerSalesConditionsCode-PRESCRIPTION_REQUIRED", comment: "Product may only be sold or dispensed under the direction of a prescription.".freeze, label: "Prescription Required".freeze, prefLabel: "PRESCRIPTION_REQUIRED".freeze, - type: "gs1:ConsumerSalesConditionsCode".freeze + type: "http://gs1.org/voc/ConsumerSalesConditionsCode".freeze term :"ConsumerSalesConditionsCode-RESTRICTED_TO_SELL_16", comment: "Based upon legal regulatory restrictions it is illegal to sell the product to anyone under the age of 16 years old.".freeze, label: "Restricted To Sell 16".freeze, prefLabel: "RESTRICTED_TO_SELL_16".freeze, - type: "gs1:ConsumerSalesConditionsCode".freeze + type: "http://gs1.org/voc/ConsumerSalesConditionsCode".freeze term :"ConsumerSalesConditionsCode-RESTRICTED_TO_SELL_18", comment: "Based upon legal regulatory restrictions it is illegal to sell the product to anyone under the age of 18 years old.".freeze, label: "Restricted To Sell 18".freeze, prefLabel: "RESTRICTED_TO_SELL_18".freeze, - type: "gs1:ConsumerSalesConditionsCode".freeze + type: "http://gs1.org/voc/ConsumerSalesConditionsCode".freeze term :"ConsumerSalesConditionsCode-RESTRICTED_TO_SELL_21", comment: "Based upon legal regulatory restrictions it is illegal to sell the product to anyone under the age of 21 years old.".freeze, label: "Restricted To Sell 21".freeze, prefLabel: "RESTRICTED_TO_SELL_21".freeze, - type: "gs1:ConsumerSalesConditionsCode".freeze + type: "http://gs1.org/voc/ConsumerSalesConditionsCode".freeze term :DietTypeCode, label: "Diet Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"DietTypeCode-COELIAC", comment: "Denotes a product that can be safely consumed by a person with coeliac disease. Coeliac disease is caused by a reaction to gladin (a gluten protein found in wheat) and similar proteins found in other crops.".freeze, label: "Coeliac".freeze, prefLabel: "COELIAC".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :"DietTypeCode-DIETETIC", comment: "Denotes a product that is specially prepared or processed for people on restrictive diets.".freeze, label: "Dietetic".freeze, prefLabel: "DIETETIC".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :"DietTypeCode-FREE_FROM_GLUTEN", comment: "Denotes a product that can be used in a gluten free diet, as specified by the appropriate authority within a target market.".freeze, label: "Free From Gluten".freeze, prefLabel: "FREE_FROM_GLUTEN".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :"DietTypeCode-HALAL", comment: "Denotes selling or serving food ritually fit according to Islamic dietary laws.".freeze, label: "Halal".freeze, prefLabel: "HALAL".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :"DietTypeCode-KOSHER", comment: "Denotes selling or serving food ritually fit according to Jewish dietary laws.".freeze, label: "Kosher".freeze, prefLabel: "KOSHER".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :"DietTypeCode-ORGANIC", comment: "Denotes a food product that was produced with the use of feed or fertiliser of plant or animal origin, without employment of chemically formulated fertilisers, growth stimulants, antibiotics or pesticides.".freeze, label: "Organic".freeze, prefLabel: "ORGANIC".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :"DietTypeCode-VEGAN", comment: "Denotes a food product which contains no animal food or dairy products.".freeze, label: "Vegan".freeze, prefLabel: "VEGAN".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :"DietTypeCode-VEGETARIAN", comment: "Denotes a product that contains no meat, fish or other animal products.".freeze, label: "Vegetarian".freeze, prefLabel: "VEGETARIAN".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :"DietTypeCode-WITHOUT_BEEF", comment: "Denotes a product that contains no beef or beef-products. Beef is considered to be a taboo food product by some religions most notable Hinduism, Buddhism and Jainism.".freeze, label: "Without Beef".freeze, prefLabel: "WITHOUT_BEEF".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :"DietTypeCode-WITHOUT_PORK", comment: "Denotes a product that contains no pork meat.".freeze, label: "Without Pork".freeze, prefLabel: "WITHOUT_PORK".freeze, - type: "gs1:DietTypeCode".freeze + type: "http://gs1.org/voc/DietTypeCode".freeze term :FoodBeverageRefrigerationClaimCode, label: "Food Beverage Refrigeration Claim Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"FoodBeverageRefrigerationClaimCode-CAN_BE_REFRIGERATED", label: "Can Be Refrigerated.".freeze, prefLabel: "CAN_BE_REFRIGERATED".freeze, - type: "gs1:FoodBeverageRefrigerationClaimCode".freeze + type: "http://gs1.org/voc/FoodBeverageRefrigerationClaimCode".freeze term :"FoodBeverageRefrigerationClaimCode-MUST_BE_REFRIGERATED", label: "Must Be Refrigerated.".freeze, prefLabel: "MUST_BE_REFRIGERATED".freeze, - type: "gs1:FoodBeverageRefrigerationClaimCode".freeze + type: "http://gs1.org/voc/FoodBeverageRefrigerationClaimCode".freeze term :"FoodBeverageRefrigerationClaimCode-SHELF_STABLE", label: "Shelf Stable.".freeze, prefLabel: "SHELF_STABLE".freeze, - type: "gs1:FoodBeverageRefrigerationClaimCode".freeze + type: "http://gs1.org/voc/FoodBeverageRefrigerationClaimCode".freeze term :"FoodBeverageRefrigerationClaimCode-UNIDENTIFIED", label: "Unidentified.".freeze, prefLabel: "UNIDENTIFIED".freeze, - type: "gs1:FoodBeverageRefrigerationClaimCode".freeze + type: "http://gs1.org/voc/FoodBeverageRefrigerationClaimCode".freeze term :FoodBeverageTargetUseCode, label: "Food Beverage Target Use Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"FoodBeverageTargetUseCode-ANY_MEAL", label: "Any Meal".freeze, prefLabel: "ANY_MEAL".freeze, - type: "gs1:FoodBeverageTargetUseCode".freeze + type: "http://gs1.org/voc/FoodBeverageTargetUseCode".freeze term :"FoodBeverageTargetUseCode-BREAKFAST", label: "Breakfast".freeze, prefLabel: "BREAKFAST".freeze, - type: "gs1:FoodBeverageTargetUseCode".freeze + type: "http://gs1.org/voc/FoodBeverageTargetUseCode".freeze term :"FoodBeverageTargetUseCode-MAIN_MEAL", label: "Main Meal".freeze, prefLabel: "MAIN_MEAL".freeze, - type: "gs1:FoodBeverageTargetUseCode".freeze + type: "http://gs1.org/voc/FoodBeverageTargetUseCode".freeze term :"FoodBeverageTargetUseCode-PORTABLE_MEAL", label: "Portable Meal".freeze, prefLabel: "PORTABLE_MEAL".freeze, - type: "gs1:FoodBeverageTargetUseCode".freeze + type: "http://gs1.org/voc/FoodBeverageTargetUseCode".freeze term :"FoodBeverageTargetUseCode-SNACK", label: "Snack".freeze, prefLabel: "SNACK".freeze, - type: "gs1:FoodBeverageTargetUseCode".freeze + type: "http://gs1.org/voc/FoodBeverageTargetUseCode".freeze term :"FoodBeverageTargetUseCode-UNCLASSIFIED", label: "Unclassified".freeze, prefLabel: "UNCLASSIFIED".freeze, - type: "gs1:FoodBeverageTargetUseCode".freeze + type: "http://gs1.org/voc/FoodBeverageTargetUseCode".freeze term :FootwearFasteningTypeCode, label: "Footwear Fastening Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"FootwearFasteningTypeCode-MULTIPLE_FASTENING", label: "Multiple Fastenings".freeze, prefLabel: "MULTIPLE_FASTENING".freeze, - type: "gs1:FootwearFasteningTypeCode".freeze + type: "http://gs1.org/voc/FootwearFasteningTypeCode".freeze term :"FootwearFasteningTypeCode-SHOE_LACE", label: "Shoe Lace".freeze, prefLabel: "SHOE_LACE".freeze, - type: "gs1:FootwearFasteningTypeCode".freeze + type: "http://gs1.org/voc/FootwearFasteningTypeCode".freeze term :"FootwearFasteningTypeCode-SLIP_ON_WITHOUT_ELASTIC", label: "Slip On Without Elastic".freeze, prefLabel: "SLIP_ON_WITHOUT_ELASTIC".freeze, - type: "gs1:FootwearFasteningTypeCode".freeze + type: "http://gs1.org/voc/FootwearFasteningTypeCode".freeze term :"FootwearFasteningTypeCode-SLIP_ON_WITH_ELASTIC", label: "Slip On With Elastic".freeze, prefLabel: "SLIP_ON_WITH_ELASTIC".freeze, - type: "gs1:FootwearFasteningTypeCode".freeze + type: "http://gs1.org/voc/FootwearFasteningTypeCode".freeze term :"FootwearFasteningTypeCode-STRAP", label: "Strap".freeze, prefLabel: "STRAP".freeze, - type: "gs1:FootwearFasteningTypeCode".freeze + type: "http://gs1.org/voc/FootwearFasteningTypeCode".freeze term :"FootwearFasteningTypeCode-UNCLASSIFIED", label: "Unclassified".freeze, prefLabel: "UNCLASSIFIED".freeze, - type: "gs1:FootwearFasteningTypeCode".freeze + type: "http://gs1.org/voc/FootwearFasteningTypeCode".freeze term :"FootwearFasteningTypeCode-UNIDENTIFIED", label: "Unidentified".freeze, prefLabel: "UNIDENTIFIED".freeze, - type: "gs1:FootwearFasteningTypeCode".freeze + type: "http://gs1.org/voc/FootwearFasteningTypeCode".freeze term :"FootwearFasteningTypeCode-VELCRO", label: "Velcro".freeze, prefLabel: "VELCRO".freeze, - type: "gs1:FootwearFasteningTypeCode".freeze + type: "http://gs1.org/voc/FootwearFasteningTypeCode".freeze term :FreshOrSeawaterFarmedCode, label: "Fresh Or Seawater Farmed Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"FreshOrSeawaterFarmedCode-FRESHWATER_FARMED", label: "Freshwater Farmed".freeze, prefLabel: "FRESHWATER_FARMED".freeze, - type: "gs1:FreshOrSeawaterFarmedCode".freeze + type: "http://gs1.org/voc/FreshOrSeawaterFarmedCode".freeze term :"FreshOrSeawaterFarmedCode-SEAWATER_FARMED", label: "Seawater Farmed".freeze, prefLabel: "SEAWATER_FARMED".freeze, - type: "gs1:FreshOrSeawaterFarmedCode".freeze + type: "http://gs1.org/voc/FreshOrSeawaterFarmedCode".freeze term :"FreshOrSeawaterFarmedCode-UNCLASSIFIED", label: "Unclassified".freeze, prefLabel: "UNCLASSIFIED".freeze, - type: "gs1:FreshOrSeawaterFarmedCode".freeze + type: "http://gs1.org/voc/FreshOrSeawaterFarmedCode".freeze term :"FreshOrSeawaterFarmedCode-UNIDENTIFIED", label: "Unidentified".freeze, prefLabel: "UNIDENTIFIED".freeze, - type: "gs1:FreshOrSeawaterFarmedCode".freeze + type: "http://gs1.org/voc/FreshOrSeawaterFarmedCode".freeze term :GrowingMethodCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:GrowingMethodCode&release=1".freeze, label: "Growing Method Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"GrowingMethodCode-CAGE_FREE", comment: "Animal is not confined to a cage.".freeze, label: "Cage Free".freeze, prefLabel: "CAGE_FREE".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-CLONED_FOODS", comment: "Product is a result of genetic engineering.".freeze, label: "Cloned Food".freeze, prefLabel: "CLONED_FOODS".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-CONVENTIONAL", comment: "Foods grown non-organically, either indoors or outdoors without any special processes.".freeze, label: "Conventional".freeze, prefLabel: "CONVENTIONAL".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-FARM_RAISED", comment: "Animal is raised on a farm.".freeze, label: "Farm Raised".freeze, prefLabel: "FARM_RAISED".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-FIELD_GROWN", comment: "Plants Grown Outdoors".freeze, label: "Field Grown".freeze, prefLabel: "FIELD_GROWN".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-FLY_FREE", comment: "Citrus Grown in an area certified to be free of all Caribbean Fruit Flies based on trappings".freeze, label: "Fly Free".freeze, prefLabel: "FLY_FREE".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-FREE_RANGE", comment: "A method that animals are allowed to roam with little restriction to their movements.".freeze, label: "Free Range".freeze, prefLabel: "FREE_RANGE".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-GRASS_FED", comment: "Animal is predominately fed grass or forage. ".freeze, label: "Grass Fed".freeze, prefLabel: "GRASS_FED".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-GREENHOUSE", comment: "Plants that are grown and cultivated in an indoor covered place.".freeze, label: "Greenhouse".freeze, prefLabel: "GREENHOUSE".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-HUMANELY_RAISED", comment: "A process where animals are raised such that the welfare of the animal is a foremost concern.".freeze, label: "Humanely Raised".freeze, prefLabel: "HUMANELY_RAISED".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-HYDROPONIC", comment: "Plants grown using mineral nutrient solutions instead of soil.".freeze, label: "Hydroponic".freeze, prefLabel: "HYDROPONIC".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-INTEGRATED_PEST_MANAGEMENT", comment: "(IPM) Plants grown using a pest control strategy that uses an array of complimentary methods: mechanical devices, physical devices, genetic, biological, legal, cultural management and chemical management. These methods are done in three stages: prevention, observation, and intervention. It is an ecological approach with a main goal of significantly reducing or eliminating the use of pesticides.".freeze, label: "Integrated Pest Management".freeze, prefLabel: "INTEGRATED_PEST_MANAGEMENT".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-ORGANIC", comment: "Foods grown organically, either indoors or outdoors.".freeze, label: "Organic".freeze, prefLabel: "ORGANIC".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-SHADE_GROWN", comment: "Produce which has been grown under shade or grown under cloth.".freeze, label: "Shade Grown".freeze, prefLabel: "SHADE_GROWN".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-SUSTAINABLE", + "http://www.w3.org/2000/01/rdf-schema#comemnt": "A method of growing a resource so that the resource is not depleted or permanently damaged".freeze, label: "Sustainable".freeze, prefLabel: "SUSTAINABLE".freeze, - "rdfs:comemnt": "A method of growing a resource so that the resource is not depleted or permanently damaged".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :"GrowingMethodCode-WILD", comment: "The animal or plant was not inhibited or prohibited from roving, wandering, and not tamed or domesticated. ".freeze, label: "Wild".freeze, prefLabel: "WILD".freeze, - type: "gs1:GrowingMethodCode".freeze + type: "http://gs1.org/voc/GrowingMethodCode".freeze term :LevelOfContainmentCode, isDefinedBy: "http://apps.gs1.org/GDD/bms/Version2_8/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:LevelOfContainmentCodeList&release=1".freeze, label: "Level Of Containment Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"LevelOfContainmentCode-CONTAINS", comment: "Intentionally included in the product.".freeze, label: "Contains".freeze, prefLabel: "CONTAINS".freeze, - type: "gs1:LevelOfContainmentCode".freeze + type: "http://gs1.org/voc/LevelOfContainmentCode".freeze term :"LevelOfContainmentCode-FREE_FROM", comment: "The product is free from the indicated substance.".freeze, label: "Free From".freeze, prefLabel: "FREE_FROM".freeze, - type: "gs1:LevelOfContainmentCode".freeze + type: "http://gs1.org/voc/LevelOfContainmentCode".freeze term :"LevelOfContainmentCode-MAY_CONTAIN", comment: "The substance is not intentionally included, but due to shared production facilities or other reasons, the product may contain the substance.".freeze, label: "May Contain".freeze, prefLabel: "MAY_CONTAIN".freeze, - type: "gs1:LevelOfContainmentCode".freeze + type: "http://gs1.org/voc/LevelOfContainmentCode".freeze term :MaturationMethodCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:MaturationMethodCode&release=1".freeze, label: "Maturation Method Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"MaturationMethodCode-JET_FRESH", comment: "Freshly picked and immediately packed and shipped at mature stage and flown to destination for adequate distribution (i.e. imports from South America, Africa or Europe). Flown by jet to market; the carton will be labelled Jet Fresh, when applicable, stickered Jet Fresh. For the produce industry, most common with berries, stone fruits and pineapples.".freeze, label: "Jet Fresh".freeze, prefLabel: "JET_FRESH".freeze, - type: "gs1:MaturationMethodCode".freeze + type: "http://gs1.org/voc/MaturationMethodCode".freeze term :"MaturationMethodCode-PRECONDITIONED", comment: "Product stored at proper temperature prior to shipment to allow ripening and/or colouring, adequate for distribution and/or consumption. Pre-conditioned product is matured to a specific maturity level as a result of ripening through either temperature, gas treatment, humidity or any combination thereof.".freeze, label: "Preconditioned".freeze, prefLabel: "PRECONDITIONED".freeze, - type: "gs1:MaturationMethodCode".freeze + type: "http://gs1.org/voc/MaturationMethodCode".freeze term :"MaturationMethodCode-TREE_VINE_RIPE", comment: "Product that is picked at optimum maturity or just shy of. It is almost ripe or ready to eat. This fruit will be shipped immediately (imported = flown) from the pack-house and stickered as Tree or Vine Ripe.".freeze, label: "Tree Vine Ripe".freeze, prefLabel: "TREE_VINE_RIPE".freeze, - type: "gs1:MaturationMethodCode".freeze + type: "http://gs1.org/voc/MaturationMethodCode".freeze term :MeasurementPrecisionCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:MeasurementPrecisionCode&release=1".freeze, label: "Measurement Precision Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"MeasurementPrecisionCode-APPROXIMATELY", comment: "The method used to analyse the products resulted in ap-proximate value of the nutritional content.".freeze, label: "Approximately".freeze, prefLabel: "APPROXIMATELY".freeze, - type: "gs1:MeasurementPrecisionCode".freeze + type: "http://gs1.org/voc/MeasurementPrecisionCode".freeze term :"MeasurementPrecisionCode-EXACT", comment: "The method used to analyse the products resulted in exact value of the nutritional content.".freeze, label: "Exact".freeze, prefLabel: "EXACT".freeze, - type: "gs1:MeasurementPrecisionCode".freeze + type: "http://gs1.org/voc/MeasurementPrecisionCode".freeze term :"MeasurementPrecisionCode-LESS_THAN", comment: "To indicate presence when the measurement value is too small to be measured precisely (rule states less than 0.5).".freeze, label: "Less Than".freeze, prefLabel: "LESS_THAN".freeze, - type: "gs1:MeasurementPrecisionCode".freeze + type: "http://gs1.org/voc/MeasurementPrecisionCode".freeze term :NonbinaryLogicCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:NonBinaryLogicEnumeration&release=1".freeze, label: "Nonbinary Logic Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"NonbinaryLogicCode-FALSE", label: "False".freeze, prefLabel: "FALSE".freeze, - type: "gs1:NonbinaryLogicCode".freeze + type: "http://gs1.org/voc/NonbinaryLogicCode".freeze term :"NonbinaryLogicCode-NOT_APPLICABLE", label: "Not Applicable".freeze, prefLabel: "NOT_APPLICABLE".freeze, - type: "gs1:NonbinaryLogicCode".freeze + type: "http://gs1.org/voc/NonbinaryLogicCode".freeze term :"NonbinaryLogicCode-TRUE", label: "True".freeze, prefLabel: "TRUE".freeze, - type: "gs1:NonbinaryLogicCode".freeze + type: "http://gs1.org/voc/NonbinaryLogicCode".freeze term :"NonbinaryLogicCode-UNSPECIFIED", label: "Unspecified".freeze, prefLabel: "UNSPECIFIED".freeze, - type: "gs1:NonbinaryLogicCode".freeze + type: "http://gs1.org/voc/NonbinaryLogicCode".freeze term :NutrientBasisQuantityCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:NutrientBasisQuantityTypeCode&release=1".freeze, label: "Nutrient Basis Quantity Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"NutrientBasisQuantityCode-BY_MEASURE", comment: "Nutrient measurement is based on a measurement value for example grams or ounces.".freeze, label: "By Measure".freeze, prefLabel: "BY_MEASURE".freeze, - type: "gs1:NutrientBasisQuantityCode".freeze + type: "http://gs1.org/voc/NutrientBasisQuantityCode".freeze term :"NutrientBasisQuantityCode-BY_SERVING", comment: "Nutrient measurement is based on a specified serving amount. ".freeze, label: "By Serving".freeze, prefLabel: "BY_SERVING".freeze, - type: "gs1:NutrientBasisQuantityCode".freeze + type: "http://gs1.org/voc/NutrientBasisQuantityCode".freeze term :NutritionalClaimTypeCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:NutritionalClaimTypeCode&release=1".freeze, label: "Nutritional Claim Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"NutritionalClaimTypeCode-ADDITIVE_FREE", comment: "A claim that a food is free from additives. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Additive Free".freeze, prefLabel: "ADDITIVE_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-ARTIFICIALLY_SWEETENED", comment: "A claim that a food contains artificial sweeteners. Artificial sweeteners are sugar substitutes that are synthetic.".freeze, label: "Artificially Sweetened".freeze, prefLabel: "ARTIFICIALLY_SWEETENED".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-CHOLESTEROL_FREE", comment: "A claim that a food is free from Cholesterol. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Cholesterol Free".freeze, prefLabel: "CHOLESTEROL_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-COLOURING_AGENT_FREE", comment: "A claim that a food is free from colouring agents. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Colouring Agent Free".freeze, prefLabel: "COLOURING_AGENT_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-CONTAINS_GLYZYRRHIZIN", comment: "A claim that a food contains glyzyrrhizin. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Contains Glyzyrrhizin".freeze, prefLabel: "CONTAINS_GLYZYRRHIZIN".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-CONTAINS_LIQUORICE", comment: "A claim that a food is contains liquorice. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Contains Liquorice".freeze, prefLabel: "CONTAINS_LIQUORICE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-CONTAINS_SOY", comment: "A claim that a food contains soy. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Contains Soy".freeze, prefLabel: "CONTAINS_SOY".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-EGG_FREE", comment: "A claim that a food is free from egg. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Egg Free".freeze, prefLabel: "EGG_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-ENERGY_FREE", comment: "A claim that a food is energy-free, and any claim likely to have the same meaning for the consumer, may only be made where the product contains less than 4kcal (17kj)/100ml. In the case of energy-free foods, the term naturally may be used as a prefix to this claim.".freeze, label: "Energy Free".freeze, prefLabel: "ENERGY_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-ENERGY_REDUCED", comment: "A claim that a food is energy-reduced, and any claim likely to have the same meaning for the consumer, may only be made where the energy value is reduced by at least 30%, with an indication of the characteristic(s), which make(s) the food reduced in its total energy value.".freeze, label: "Energy Reduced".freeze, prefLabel: "ENERGY_REDUCED".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-ENRICHED_OR_FORTIFIED_IN_VITAMINS_AND_OR_MINERALS", comment: "A claim that a food is enriched or fortified in vitamins and/or minerals, and any claim likely to have the same meaning for the consumer, may only be made where the product contains the vitamins and/or minerals in at least a significant amount as defined in the Annex of Directive 90/496/EEC.".freeze, label: "Enriched or Fortified in Vitamins Minerals".freeze, prefLabel: "ENRICHED_OR_FORTIFIED_IN_VITAMINS_AND_OR_MINERALS".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-FAT_FREE", comment: "A claim that a food is fat-free, and any claim likely to have the same meaning for the consumer, may only be made where the product contains no more than 0.5g of fat per 100g or 100ml. However, claims expressed as X% fat-free shall be prohibited. In the case of foods naturally fat-free, the term naturally may be used as a prefix to this claim.".freeze, label: "Fat Free".freeze, prefLabel: "FAT_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-FREE_FROM_GLUTEN", comment: "A claim that a food is free from Gluten. Any claim likely to have the same meaning for the consumer, may only be made where the product contains an amount less than or equal to 20 mg/kg gluten according to the Commission Regulation (EC) No 41/2009".freeze, label: "Free From Gluten".freeze, prefLabel: "FREE_FROM_GLUTEN".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-GUARANTEED_LACTOSE_FREE", comment: "A claim that a food is regularly analysed to guarantee that the product is free from lactose.".freeze, label: "Guarantee Lactose Free".freeze, prefLabel: "GUARANTEED_LACTOSE_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-HIGH_FIBRE", comment: "A claim that a food is high in fibre, and any claim likely to have the same meaning for the consumer, may only be made where the product contains at least 6g of fibre per 100g or at least 3g of fibre per 100 kcal. In the case of foods naturally high in fibre, the term naturally may be used as a prefix to this claim.".freeze, label: "High Fibre".freeze, prefLabel: "HIGH_FIBRE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-HIGH_PROTEIN", comment: "A claim that a food is high in protein, and any claim likely to have the same meaning for the consumer, may only be made where at least 20% of the energy value of the food is provided by protein. In the case of foods naturally high in protein, the term naturally may be used as a prefix to this claim.".freeze, label: "High Protein".freeze, prefLabel: "HIGH_PROTEIN".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-HIGH_VITAMINS_AND_OR_MINERALS", comment: "A claim that a food is high in vitamins and or minerals, and any claim likely to have the same meaning for the consumer, may only be made where the product contains at least twice the value of source of vitamins and minerals. In case of foods naturally high in vitamins and/or minerals, the term naturally may be used as a prefix to this claim.".freeze, label: "High in Vitamins Minerals".freeze, prefLabel: "HIGH_VITAMINS_AND_OR_MINERALS".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-LACTOSE_FREE", comment: "A claim that a food is free of lactose. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Lactose Free".freeze, prefLabel: "LACTOSE_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-LIGHT_LITE", comment: "A claim stating that a product is light or lite, and any claim likely to have the same meaning for the consumer, shall follow the same conditions as those set for the term reduced; the claim shall also be accompanied by an indication of the characteristic(s) which make the food light or lite.".freeze, label: "Light or Lite".freeze, prefLabel: "LIGHT_LITE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-LOW_ENERGY", comment: "A claim that a food is low in energy, and any claim likely to have the same meaning for the consumer, may only be made where the product contains less than 40 kcal (170 kj)/100g and less than 20kcal (80kj)/100ml. In the case of foods naturally low in energy, the term naturally may be used as a prefix to this claim.".freeze, label: "Low Energy".freeze, prefLabel: "LOW_ENERGY".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-LOW_FAT", comment: "A claim that a food is low in fat, and any claim likely to have the same meaning for the consumer, may only be made where the product contains no more than 3g of fat per 100g or 1.5g of fat per 100ml. In the case of foods naturally low in fat, the term naturally may be used as a prefix to this claim.".freeze, label: "Low in Fat".freeze, prefLabel: "LOW_FAT".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-LOW_LACTOSE", comment: "A claim that a food is low in lactose. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Low in Lactose".freeze, prefLabel: "LOW_LACTOSE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-LOW_PROTEIN", comment: "A claim that a food contains low levels of protein. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Low Protein".freeze, prefLabel: "LOW_PROTEIN".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-LOW_SATURATED_FAT", comment: "A claim that a food is low in saturated fat, and any claim likely to have the same meaning for the consumer, may only be made where the product contains no more than 1.5g of saturates per 100g for solids or, 0.75g of saturates per 100ml for liquids and in either case saturated fat must not provide more than 10% of energy. In the case of foods naturally low in saturated fat, the term naturally may be used as a prefix to this claim.".freeze, label: "Low in Saturated Fat".freeze, prefLabel: "LOW_SATURATED_FAT".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-LOW_SODIUM_SALT", comment: "A claim that a food is low in sodium, and any claim likely to have the same meaning for the consumer, may only be made where the product contains no more than 0.12g of sodium, or the equivalent value for salt, per 100g or per 100ml. In the case of foods naturally low in sodium, the term naturally may be used as a prefix to this claim.".freeze, label: "Low in Sodium".freeze, prefLabel: "LOW_SODIUM_SALT".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-LOW_SUGARS", comment: "A claim that a food is low in sugars, and any claim likely to have the same meaning for the consumer, may only be made where the product contains no more than 5g of sugars per 100g or 100ml. In the case of foods naturally low in sugars, the term naturally may be used as a prefix to this claim.".freeze, label: "Low in sugars".freeze, prefLabel: "LOW_SUGARS".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-MILK_FREE", comment: "A claim that a food is free from milk. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Milk Free".freeze, prefLabel: "MILK_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-MILK_PROTEIN_FREE", comment: "A claim that a food is free from milk proteins. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Milk Protein Free".freeze, prefLabel: "MILK_PROTEIN_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-NATURAL_SOURCE_OF_VITAMINS_AND_OR_MINERALS", comment: "A claim that a food is a natural source of vitamins and/or minerals, and any claim likely to have the same meaning for the consumer, may only be made where the product contains at least 15% of the recommended daily allowance specified in the Annex of Council Directive 90/496/EEC per 100 g or 100 ml.".freeze, label: "Natural Source of Vitamins Minerals".freeze, prefLabel: "NATURAL_SOURCE_OF_VITAMINS_AND_OR_MINERALS".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-NON_ALCOHOLIC", comment: "A claim that a food contains no alcohol. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Non-alcoholic".freeze, prefLabel: "NON_ALCOHOLIC".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-NUT_FREE", comment: "A claim that a food is free from nuts. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Nut Free".freeze, prefLabel: "NUT_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-PEANUT_FREE", comment: "A claim that a food is free from peanuts. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Peanut Free".freeze, prefLabel: "PEANUT_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-PRESERVATIVE_FREE", comment: "A claim that a food is free from preservatives. A preservative is a natural or synthetic substance or chemical that is added to products to prevent decomposition by microbial growth or by undesirable chemical changes. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Preservative Free".freeze, prefLabel: "PRESERVATIVE_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SATURATED_FAT_FREE", comment: "A claim that a food does not contain saturated fat, and any claim likely to have the same meaning for the consumer, may only be made where the product contains no more than 0.1g of saturated fat per 100g or 100ml. In the case of foods naturally saturated fat-free, the term naturally may be used as a prefix to this claim.".freeze, label: "Saturated Fat Free".freeze, prefLabel: "SATURATED_FAT_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SODIUM_FREE_OR_SALT_FREE", comment: "A claim that a food is sodium-free, and any claim likely to have the same meaning for the consumer, may only be made where the product contains no more than 0.005g of sodium, or the equivalent value for salt, per 100g. In the case of foods naturally sodium-free, the term naturally may be used as a prefix to this claim.".freeze, label: "Sodium of Salt Free".freeze, prefLabel: "SODIUM_FREE_OR_SALT_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SOURCE_OF_FIBRE", comment: "A claim that a food is a source of fibre, and any claim likely to have the same meaning for the consumer, may only be made where the product contains at least 3g of fibre per 100g or at least 1.5g of fibre per 100kcal. In the case of foods that are naturally sources of fibre, the term naturally may be used as a prefix to this claim.".freeze, label: "Source of Fibre".freeze, prefLabel: "SOURCE_OF_FIBRE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SOURCE_OF_PROTEIN", comment: "A claim that a food is a source of protein, and any claim likely to have the same meaning for the consumer, may only be made where at least 12% of the energy value of the food is provided by protein. In the case of foods that are naturally sources of protein, the term naturally may be used as a prefix to this claim.".freeze, label: "Source of Protein".freeze, prefLabel: "SOURCE_OF_PROTEIN".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SOY_FREE", comment: "A claim that a food is free from Soy. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Soy Free".freeze, prefLabel: "SOY_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-STRONGLY_SALTED", comment: "A claim that a food has a high sodium content. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Strongly Salted".freeze, prefLabel: "STRONGLY_SALTED".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SUGARS_FREE", comment: "A claim that a food is sugars-free, and any claim likely to have the same meaning for the consumer, may only be made where the product contains no more than 0.5g of sugars per 100g or 100ml. In the case of foods naturally sugars-free, the term naturally may be used as a prefix to this claim.".freeze, label: "Sugar Free".freeze, prefLabel: "SUGARS_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_AGAVE_SYRUP", comment: "A claim that a food is sweetened with syrup from the Agave plant.".freeze, label: "Sweetened With Agave Syrup".freeze, prefLabel: "SWEETENED_WITH_AGAVE_SYRUP".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_CANE_SUGAR", comment: "A claim that a food is sweetened with sugar from sugar cane.".freeze, label: "Sweetened With Came Sugar".freeze, prefLabel: "SWEETENED_WITH_CANE_SUGAR".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_CORN_SYRUP", comment: "A claim that a food is sweetened with corn syrup.".freeze, label: "Sweetened With Corn Syrup".freeze, prefLabel: "SWEETENED_WITH_CORN_SYRUP".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_FRUCTOSE", comment: "A claim that a food is sweetened with fructose.".freeze, label: "Sweetened With Fructose".freeze, prefLabel: "SWEETENED_WITH_FRUCTOSE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_FRUIT_JUICE", comment: "A claim that a food is sweetened with fruit juice.".freeze, label: "Sweetened With Fruit Juice".freeze, prefLabel: "SWEETENED_WITH_FRUIT_JUICE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_FRUIT_SYRUP", comment: "A claim that a food is sweetened with fruit syrup. Fruit syrup is made from fruit and other ingredients such as sugar, corn syrup and water.".freeze, label: "Sweetened With Fruit Syrup".freeze, prefLabel: "SWEETENED_WITH_FRUIT_SYRUP".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_HONEY", comment: "A claim that a food is sweetened with honey.".freeze, label: "Sweetened With Honey".freeze, prefLabel: "SWEETENED_WITH_HONEY".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_MALT", comment: "A claim that a food is sweetened with malt.".freeze, label: "Sweetened With Malt".freeze, prefLabel: "SWEETENED_WITH_MALT".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_RAW_BEET_SUGAR", comment: "A claim that a food is sweetened with raw sugar derived from the sugar beet.".freeze, label: "Sweetened With Raw Beet Sugar".freeze, prefLabel: "SWEETENED_WITH_RAW_BEET_SUGAR".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-SWEETENED_WITH_WHITE_SUGAR", comment: "A claim that a food is sweetened with white sugar. White or granulated sugar is refined sugar (pure white crystalline sucrose) ground to granules or grains.".freeze, label: "Sweetened With White Sugar".freeze, prefLabel: "SWEETENED_WITH_WHITE_SUGAR".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-VERY_LOW_GLUTEN", comment: "A claim that a food contains a low level of gluten which is defined as 21 - 100 mg/kg gluten according to the Commission Regulation (EC) No 41/2009".freeze, label: "Very Low Gluten".freeze, prefLabel: "VERY_LOW_GLUTEN".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-VERY_LOW_SODIUM_SALT", comment: "A claim that a food is very low in sodium, and any claim likely to have the same meaning for the consumer, may only be made where the product contains no more than 0.04g of sodium, or the equivalent value for salt, per 100g or per 100 ml. In the case of foods naturally very low in sodium, the term naturally may be used as a prefix to this claim.".freeze, label: "Very Low in Sodium Salt".freeze, prefLabel: "VERY_LOW_SODIUM_SALT".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-WHEAT_FREE", comment: "A claim that a food is free from wheat. Note the amount that determines containment or lack of containment is based on target market regulations.".freeze, label: "Wheat Free".freeze, prefLabel: "WHEAT_FREE".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :"NutritionalClaimTypeCode-WITH_NO_ADDED_SUGARS", comment: "A claim stating that sugar has not been added to a food, and any claim likely to have the same meaning for the consumer, may only be made where the product does not contain any added mono- or disaccharides or any other food used for its sweetening properties.".freeze, label: "No Added Sugar".freeze, prefLabel: "WITH_NO_ADDED_SUGARS".freeze, - type: "gs1:NutritionalClaimTypeCode".freeze + type: "http://gs1.org/voc/NutritionalClaimTypeCode".freeze term :OrganicClaimAgencyCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:OrganicClaimAgencyCode&release=1".freeze, label: "Organic Claim Agency Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"OrganicClaimAgencyCode-BFA", comment: "Biological Farmers of Australia".freeze, label: "Biological Farmers of Australia".freeze, prefLabel: "BFA".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-BIOLAND", comment: "Bioland: The leading organic farmers' association in Germany for the economy of organic-based businesses without synthetic pesticides and synthetic chemical nitrogen fertilizer. The animals are kept humanely and processed food carefully. This provides an environmentally sound and sustainable food production. http://www.bioland.de.".freeze, label: "Bioland".freeze, prefLabel: "BIOLAND".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-BIOPARK", comment: "Biopark is an organic farmers’ association based in the North of Germany, in Mecklenburg-Vorpommerania. Same as GS1 code 13".freeze, label: "Biopark".freeze, prefLabel: "BIOPARK".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-DEMETER_BUND", comment: "The Demeter movement as an entrepreneurial network promotes the development of bio-dynamic economy, to secure the livelihoods of the world and to strengthen the positive people in his ministry. In cooperation contribute producers, processors, traders and consumers in partnership to shape the market.".freeze, label: "Demeter-Bund".freeze, prefLabel: "DEMETER_BUND".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-DEMETER_INTERNATIONAL", comment: "Demeter International Demeter-International e. V. is a non profit organisation and its member organisations work together in the spirit of an international confederation with democratic principles. Membership requires a functioning Demeter certification programme. Same as GS1 Code 16".freeze, label: "Demeter International".freeze, prefLabel: "DEMETER_INTERNATIONAL".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-ECOLAND", comment: "Ecoland is a membership organisation whose members elect a governing Board which is responsible for the design and implementation of the organic certification system.".freeze, label: "Ecoland".freeze, prefLabel: "ECOLAND".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-ECOVIN", comment: "ECOVIN Federation Organic Viticulture Association: ECOVIN largest merger in 1985 as ecologically-working wine estates in Germany was founded. Approximately 220 member companies currently manage 1,600 hectares of vineyards in 11 German wine-growing areas. Same as GS1 code 14".freeze, label: "Ecovin".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-EPA", comment: "US Environmental Protection Agency. Same as GS1 Code 1".freeze, label: "US Environmental Protection Agency".freeze, prefLabel: "EPA".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-EVOVIN", prefLabel: "ECOVIN".freeze term :"OrganicClaimAgencyCode-FDA", comment: "FDA US Food and Drug Agency".freeze, label: "FDA US Food and Drug Agency".freeze, prefLabel: "FDA".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-FSA", comment: "UK Food Standards Agency".freeze, label: "FSA".freeze, prefLabel: "FSA".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-GAA", comment: "GÃA is a diverse farming association for farmers, processors and traders inside.Focal point is Germany. Gäa is a special design for the structure of the organic farming. Biokreis- The Biokreis is an association for organic farming. Currently more than 800 farms, 80 and 200 processors, consumers are members of Biokreis, committed to working together on more than 33,000 for organic and sustainable farming.".freeze, label: "GAA".freeze, prefLabel: "GAA".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-IFOA", comment: "International Foundation for Organic Agriculture".freeze, label: "International Foundation for Organic Agriculture".freeze, prefLabel: "IFOA".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-IFOAM", comment: "The International Federation of Organic Agriculture Movements (IFOAM) is a grassroots and democratic organization that currently unites 750 member organizations in 116 countries. Same as GS1 code 15".freeze, label: "International Federation of Organic Agriculture Movements.".freeze, prefLabel: "IFOAM".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-NATURLAND", comment: "Naturland - Naturland is active the world over in promoting organic agriculture. Its members are farmers who produce a wide range of valuable products: coffee from Mexico and Peru, olive oil from Greece, tea from the slopes of India’s mountains, pineapple and other tropical fruit from Uganda, spices from Sri Lanka. Organic agriculture safeguards the existence of smallholders and helps with the sustainable management of what are often fragile ecosystems. On a global scale, over 50,000 Naturland farmers are cultivating an area of over 142,000 hectares.Same as GS1 Code 12".freeze, label: "Naturland".freeze, prefLabel: "NATURLAND".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-QAI", comment: "Quality Assurance International. QAI is a leading USDA-accredited organic product certifying agency.".freeze, label: "Quality Assurance International".freeze, prefLabel: "QAI".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-SUDITIROL", comment: "Bioland Association of South Tyrol The Association of South Tyrol is the largest organic association for organic farmers having to farmers in South Tyrol and the only active in association with a national association office Terlan.".freeze, label: "Südtirol Bioland".freeze, prefLabel: "SUDITIROL".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :"OrganicClaimAgencyCode-USDA", comment: "US Department of Agriculture.".freeze, label: "US Department of Agriculture".freeze, prefLabel: "USDA".freeze, - type: "gs1:OrganicClaimAgencyCode".freeze + type: "http://gs1.org/voc/OrganicClaimAgencyCode".freeze term :OrganizationRoleType, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PartyRoleCode&release=2".freeze, label: "Organization Role Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"OrganizationRoleType-ACCEPTING_PARTY", comment: "Organization accepting goods, products, services etc.".freeze, label: "Accepting Organization".freeze, prefLabel: "ACCEPTING_PARTY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-BILL_OF_LADING_RECIPIENT", comment: "Organization to receive Bill of Lading.".freeze, label: "Bill of Lading Recipient".freeze, prefLabel: "BILL_OF_LADING_RECIPIENT".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-BILL_TO", comment: "Organization which receives goods and invoice.".freeze, label: "Bill To".freeze, prefLabel: "BILL_TO".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-BRAND_OWNER", comment: "The organisation that owns the specifications of the Organization regardless of where and by whom it is manufactured is normally responsible for the allocation of the Global Trade Item Number (GTIN).".freeze, label: "Brand Owner".freeze, prefLabel: "BRAND_OWNER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-BREEDER", comment: "The organization which breeds the animal.".freeze, label: "Breeder".freeze, prefLabel: "BREEDER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-BROKER_AGENT", comment: "A person who buys or sells for another entity without having title to the property.".freeze, label: "Broker Agent".freeze, prefLabel: "BROKER_AGENT".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-BUYER", comment: "Organization to which merchandise are sold.".freeze, label: "Buyer".freeze, prefLabel: "BUYER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-BUYERS_AGENT_REPRESENTATIVE", comment: "Third party who arranged the purchase of merchandise on behalf of the actual buyer.".freeze, label: "Buyers Agent Representative".freeze, prefLabel: "BUYERS_AGENT_REPRESENTATIVE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CARRIER", comment: "A company, which physically transports goods from one place to another.".freeze, label: "Carrier".freeze, prefLabel: "CARRIER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CENTRAL_PAYMENT_SERVICE", comment: "Master of the conveyance. An organization providing central (or consolidated payment) services.".freeze, label: "Central Payment Service".freeze, prefLabel: "CENTRAL_PAYMENT_SERVICE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CHECKING_PARTY", comment: "Organization or contact designated on behalf of carrier or his agent to establish the actual figures for quantities, weight, volume and/or (cube) measurements of goods or containers which are to appear in the transport contract and on which charges will be based".freeze, label: "Checking Organization".freeze, prefLabel: "CHECKING_PARTY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CHEQUE_ORDER", comment: "Organization to which the cheque will be ordered, when different from the beneficiary.".freeze, label: "Cheque Order".freeze, prefLabel: "CHEQUE_ORDER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CONSIGNEE", comment: "Organization to which goods are consigned.".freeze, label: "Consignee.".freeze, prefLabel: "CONSIGNEE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CONSOLIDATOR", comment: "Organization consolidating various consignments, payments etc.".freeze, label: "Consolidator".freeze, prefLabel: "CONSOLIDATOR".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CONSUMER", comment: "The end user of a product or a service.".freeze, label: "Consumer".freeze, prefLabel: "CONSUMER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CORPORATE_IDENTITY", comment: "Identity of the organization to whom all other parties of the same commercial organization are linked.".freeze, label: "Corporate Identity".freeze, prefLabel: "CORPORATE_IDENTITY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CUSTOMS", comment: "Identification of customs authority relevant to the transaction or shipment.".freeze, label: "Customs".freeze, prefLabel: "CUSTOMS".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CUSTOMS_BROKER", comment: "Organization responsible for the preparation of documents and/or electronic submissions, the calculation on behalf of the client of taxes, duties and excises, and facilitating communication between the importer/exporter and governmental authorities.".freeze, label: "Customs Broker".freeze, prefLabel: "CUSTOMS_BROKER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-CUTTER", comment: "One engaged in carving meat (In EANCOM as Meat Cutter).".freeze, label: "Cutter".freeze, prefLabel: "CUTTER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-DECLARANTS_AGENT_REPRESENTATIVE", comment: "Any natural or legal person who makes a declaration to an official body on behalf of another natural or legal person, where legally permitted (CCC).".freeze, label: "Declarants Agent Representative".freeze, prefLabel: "DECLARANTS_AGENT_REPRESENTATIVE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-DELIVERY_PARTY", comment: "Organization to which goods are delivered.".freeze, label: "Delivery Organization".freeze, prefLabel: "DELIVERY_PARTY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-DESIGNER", comment: "A Organization who designs.".freeze, label: "Designer".freeze, prefLabel: "DESIGNER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-DESPATCH_PARTY", comment: "Organization where goods are collected or taken over by the carrier.".freeze, label: "Despatch Organization".freeze, prefLabel: "DESPATCH_PARTY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-DISTRIBUTOR", comment: "Organization distributing goods, financial payments or documents.".freeze, label: "Distributor".freeze, prefLabel: "DISTRIBUTOR".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-DOCK_DOOR", comment: "A door or collection of doors where trucks or rail cars are loaded (shipping) or unloaded (receiving). Used to load or unload products for logistics.".freeze, label: "Dock Door".freeze, prefLabel: "DOCK_DOOR".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-EMPTY_EQUIPMENT_DESPATCH_PARTY", comment: "Organization from whose premises empty equipment will be or has been despatched.".freeze, label: "Empty Equipment Despatch Organization".freeze, prefLabel: "EMPTY_EQUIPMENT_DESPATCH_PARTY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-EMPTY_EQUIPMENT_RETURN_PARTY", comment: "Organization from whose premises empty equipment will be or has been returned.".freeze, label: "Empty Equipment Return Organization".freeze, prefLabel: "EMPTY_EQUIPMENT_RETURN_PARTY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-EQUIPMENT_OWNER", comment: "Owner of equipment (container, etc.).".freeze, label: "Equipment Owner".freeze, prefLabel: "EQUIPMENT_OWNER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-EXPORTER", comment: "Organization who makes - or on whose behalf a Customs clearing agent or other authorized person makes - an export declaration. This may include a manufacturer, seller or other person. Within a Customs union, consignor may have the same meaning as exporter".freeze, label: "Exporter".freeze, prefLabel: "EXPORTER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-FACTOR", comment: "An organization that purchases financial receiving instruments e.g. invoices".freeze, label: "Factor".freeze, prefLabel: "FACTOR".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-FATTENER", comment: "The Organization which fattens the animal.".freeze, label: "Fattener".freeze, prefLabel: "FATTENER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-FREIGHT_FORWARDER", comment: "A person or firm that arranges for a pick up or deliver goods by a carrier on instructions of a shipper or consignee from or to a point by various necessary conveyances and common carriers.".freeze, label: "Freight Forwarder".freeze, prefLabel: "FREIGHT_FORWARDER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-GOODS_OWNER", comment: "The organization which owns the goods.".freeze, label: "Goods Owner".freeze, prefLabel: "GOODS_OWNER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-GROWER", comment: "An organization which is responsible for the growth or production of the unit specifically refers to vegetation. This organization may or may not be a producer or packer.".freeze, label: "Grower".freeze, prefLabel: "GROWER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-HEAD_OFFICE", comment: "The executive or main office of an enterprise.".freeze, label: "Head Office".freeze, prefLabel: "HEAD_OFFICE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-IMPORTER", comment: "Organization who makes - or on whose behalf a Customs clearing agent or other authorized person makes - an import declaration. This may include a person who has possession of the goods or to whom the goods are consigned.".freeze, label: "Importer".freeze, prefLabel: "IMPORTER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-INFORMATION_PROVIDER", comment: "The Organization providing the information contained in the document.".freeze, label: "Information Provider".freeze, prefLabel: "INFORMATION_PROVIDER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-INSURER", comment: "A person or company offering insurance policies for premiums.".freeze, label: "Insurer".freeze, prefLabel: "INSURER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-INTERMEDIARY_BANK_1", comment: "A financial institution between the ordered bank and the beneficiary's bank.".freeze, label: "Intermediary Bank 1".freeze, prefLabel: "INTERMEDIARY_BANK_1".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-INTERMEDIARY_BANK_2", comment: "A financial institution between the ordered bank and the beneficiary's bank.".freeze, label: "Intermediary Bank 2".freeze, prefLabel: "INTERMEDIARY_BANK_2".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-INVENTORY_CONTROLLER", comment: "To specifically identify the organisation in charge of inventory control.".freeze, label: "Inventory Controller".freeze, prefLabel: "INVENTORY_CONTROLLER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-INVENTORY_REPORTING_PARTY", comment: "Organization reporting inventory information.".freeze, label: "Inventory Reporting Organization".freeze, prefLabel: "INVENTORY_REPORTING_PARTY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-INVOICEE", comment: "Organization issuing an invoice.".freeze, label: "Invoicee".freeze, prefLabel: "INVOICEE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-ISSUER_OF_INVOICE", comment: "Organization which issues an invoice.".freeze, label: "Issuer of Invoice".freeze, prefLabel: "ISSUER_OF_INVOICE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-LOGISTICS_SERVICE_PROVIDER", comment: "An umbrella term for an entity, which provides a combination of many different logistics services for another entity.".freeze, label: "Logistics Service Provider".freeze, prefLabel: "LOGISTICS_SERVICE_PROVIDER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-MANUFACTURER_OF_GOODS", comment: "Organization who manufactures the goods.".freeze, label: "Manufacturer of Goods".freeze, prefLabel: "MANUFACTURER_OF_GOODS".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-MANUFACTURING_PLANT", comment: "A physical location consisting of one or more buildings with facilities for manufacturing.".freeze, label: "Manufacturing Plant".freeze, prefLabel: "MANUFACTURING_PLANT".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-MARK_FOR", comment: "The ultimate destination of a unit load or transport package of goods where the Ship-To is a different location.".freeze, label: "Mark For".freeze, prefLabel: "MARK_FOR".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-MESSAGE_FROM", comment: "Organization where the message comes from.".freeze, label: "Message From.".freeze, prefLabel: "MESSAGE_FROM".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-MESSAGE_RECIPIENT", comment: "Organization receiving the message.".freeze, label: "Message Recipient".freeze, prefLabel: "MESSAGE_RECIPIENT".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-MINCER", comment: "One engaged in the cutting or chopping of meat into very small pieces".freeze, label: "Mincer".freeze, prefLabel: "MINCER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-OPERATING_DIVISION", comment: "An entity that is part of another entity. For example, a Regional Marketing Office. Operating Divisions may have multiple days and times of operation.".freeze, label: "Operating Division".freeze, prefLabel: "OPERATING_DIVISION".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-OPERATOR", comment: "A person or persons who own or operate a business establishment, which services consumers directly. For example a restaurant owner as part of a chain or an independent operation.".freeze, label: "Operator".freeze, prefLabel: "OPERATOR".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-ORDERING_PARTY", comment: "To be used only if ordering organization and buyer are not identical.".freeze, label: "Ordering Organization".freeze, prefLabel: "ORDERING_PARTY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-OWNER_OF_EQUIPMENT", comment: "Organization who owns equipment.".freeze, label: "Owner of equipment".freeze, prefLabel: "OWNER_OF_EQUIPMENT".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-OWNER_OF_MEANS_OF_TRANSPORT", comment: "Organization owning the means of transport. Not a synonym of carrier".freeze, label: "Owner of Means of Transport".freeze, prefLabel: "OWNER_OF_MEANS_OF_TRANSPORT".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PARTY_DECLARING_THE_VALUE_ADDED_TAX", comment: "A code to identify the organization who is responsible for declaring the Value Added Tax (VAT) on the sale of goods or services.".freeze, label: "Organization Declaring the Value Added Tax".freeze, prefLabel: "PARTY_DECLARING_THE_VALUE_ADDED_TAX".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PARTY_FOR_WHOM_ITEM_IS_ULTIMATELY_INTENDED", label: "Organization For Whom Item is Ultimately Intended".freeze, prefLabel: "PARTY_FOR_WHOM_ITEM_IS_ULTIMATELY_INTENDED".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PARTY_RECEIVING_PRIVATE_DATA", comment: "The organization who is allowed access to master data information by the data owner when the data is viewed as private.".freeze, label: "Organization Receiving Private Data".freeze, prefLabel: "PARTY_RECEIVING_PRIVATE_DATA".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PARTY_RECOVERING_THE_VALUE_ADDED_TAX", comment: "A code to identify the organization who is eligible to recover the Value Added Tax (VAT) on the sale of goods or services.".freeze, label: "Organization Recovering the Value Added Tax".freeze, prefLabel: "PARTY_RECOVERING_THE_VALUE_ADDED_TAX".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PARTY_TO_RECEIVE_ALL_DOCUMENTS", comment: "An organization which is named to be the recipient of all documents.".freeze, label: "Organization to Receive All Documents".freeze, prefLabel: "PARTY_TO_RECEIVE_ALL_DOCUMENTS".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PARTY_TO_RECEIVE_COMMERCIAL_INVOICE", comment: "Organization to whom payment for a commercial invoice or bill should be remitted.".freeze, label: "Organization to Receive Commercial Invoice".freeze, prefLabel: "PARTY_TO_RECEIVE_COMMERCIAL_INVOICE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PARTY_TO_RECEIVE_ELECTRONIC_MEMO_OF_INVOICE", comment: "Organization being informed about invoice issue (via EDI).".freeze, label: "Organization to Receive Electronic Memo of Invoice".freeze, prefLabel: "PARTY_TO_RECEIVE_ELECTRONIC_MEMO_OF_INVOICE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PARTY_TO_RECEIVE_FREIGHT_BILL", comment: "Organization to whom the freight bill should be sent.".freeze, label: "Organization to Receive Freight Bill".freeze, prefLabel: "PARTY_TO_RECEIVE_FREIGHT_BILL".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PARTY_TO_RECEIVE_REFUND", comment: "Organization to whom a refund is given.".freeze, label: "Organization to Receive Refund".freeze, prefLabel: "PARTY_TO_RECEIVE_REFUND".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PAYEE", comment: "Organization, which receives payment.".freeze, label: "Payee".freeze, prefLabel: "PAYEE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PAYER", comment: "Organization which initiates payment.".freeze, label: "Payer".freeze, prefLabel: "PAYER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-POINT_OF_SALE", comment: "Refers to the retail type checkout where bar code symbols are normally scanned.".freeze, label: "Point Of Sale".freeze, prefLabel: "POINT_OF_SALE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PRICE_LOCATION_PARTY", comment: "An organization to which a price for a product is applicable. Within the context of GDSN Price Synchronization, it is also known as the 'Price Location' which is a GLN.".freeze, label: "Price Location Organization".freeze, prefLabel: "PRICE_LOCATION_PARTY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PROXY", comment: "A company that is selected by the Brand Owner to maintain their baseline attributes and Administrative Records in the GDSN.".freeze, label: "Proxy".freeze, prefLabel: "PROXY".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PUBLIC_WAREHOUSE", comment: "A building, or a part of one, where storage space is offered to other companies for compensation (fee), for the storage of their goods, merchandise, etc.".freeze, label: "Public Warehouse".freeze, prefLabel: "PUBLIC_WAREHOUSE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-PURCHASE_ORDER_RECEIVER", comment: "The organization that receives the purchase order for the goods or services.".freeze, label: "Purchase Order Receiver".freeze, prefLabel: "PURCHASE_ORDER_RECEIVER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-REGISTERED_AGENT", comment: "The organization having legal responsibility for the product in the target market for example a company to which market authorization has been issued. ".freeze, label: "Registered Agent ".freeze, prefLabel: "REGISTERED_AGENT".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-REMIT_TO", comment: "Organization to whom funds are directed for payment of a commercial invoice.".freeze, label: "Remit To".freeze, prefLabel: "REMIT_TO".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-RETURNABLE_ASSET_SERVICE_CENTRE", comment: "The location where a returnable asset is serviced.".freeze, label: "Returnable Asset Service Centre".freeze, prefLabel: "RETURNABLE_ASSET_SERVICE_CENTRE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-SELLER", comment: "Organization which sells products or services to a buyer.".freeze, label: "Seller".freeze, prefLabel: "SELLER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-SERVICE_PROVIDER", comment: "An organization providing services for another organization (e.g re- packing supplier’s products).".freeze, label: "Service Provider".freeze, prefLabel: "SERVICE_PROVIDER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-SHIP_FROM", comment: "Organization from where goods will be or have been shipped.".freeze, label: "Ship From".freeze, prefLabel: "SHIP_FROM".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-SHIP_TO", comment: "Organization which receives goods and invoices.".freeze, label: "Ship To".freeze, prefLabel: "SHIP_TO".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-SLAUGHTERER", comment: "The Organization who has undertaken or will undertake a slaughter.".freeze, label: "Slaughterer".freeze, prefLabel: "SLAUGHTERER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-STORE", comment: "A physical entity that sells products to a consumer.".freeze, label: "Store".freeze, prefLabel: "STORE".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-SUBSTITUTE_SUPPLIER", comment: "Organization which may be in a position to supply products or services should the main usual supplier be unable to do so.".freeze, label: "Substitute Supplier".freeze, prefLabel: "SUBSTITUTE_SUPPLIER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-SUPPLIER", comment: "An organization that provides goods or services.".freeze, label: "Supplier".freeze, prefLabel: "SUPPLIER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-TRANSPORTATION_CARRIER", comment: "Organization undertaking or arranging transport of goods between named points.".freeze, label: "Transportation Carrier".freeze, prefLabel: "TRANSPORTATION_CARRIER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-VISITING_ADDRESS", comment: "An enterprise’s physical location where guests are received during set working hours".freeze, label: "Visiting Address".freeze, prefLabel: "VISITING_ADDRESS".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-WAREHOUSE_AND_OR_DEPOT", comment: "Industrial department of a company equipped with appropriate equipment and fit-tings in which goods are stored in appropriate conditions.".freeze, label: "Warehouse and or Depot".freeze, prefLabel: "WAREHOUSE_AND_OR_DEPOT".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-WAREHOUSE_KEEPER", comment: "Organization taking responsibility for goods entered into a warehouse.".freeze, label: "Warehouse Keeper".freeze, prefLabel: "WAREHOUSE_KEEPER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :"OrganizationRoleType-WHOLESALER", comment: "Seller of articles, often in large quantities, to be retailed by others.".freeze, label: "WholeSaler".freeze, prefLabel: "WHOLESALER".freeze, - type: "gs1:OrganizationRoleType".freeze + type: "http://gs1.org/voc/OrganizationRoleType".freeze term :PackagingFeatureCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PackagingFeatureCode&release=1".freeze, label: "Packaging Feature Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PackagingFeatureCode-BASE", comment: "A general term applied to the support or pedestal of an object.".freeze, label: "Base".freeze, prefLabel: "BASE".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-BEAM", comment: "Long sturdy piece of squared timber or metal used in house-building etc.".freeze, label: "Beam".freeze, prefLabel: "BEAM".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-BUNG_SEAL", comment: "A bung is an apparatus used to seal a container, such as a bottle, barrel or tubeâ€\u009D (or in this case). A bung is partially inserted inside the container to act as a seal. The most common every-day example of a bung is the stopper of a wine bottle.".freeze, label: "Bung Seal".freeze, prefLabel: "BUNG_SEAL".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-CAP", comment: "A cap that seals a bottle or other form of packaging.".freeze, label: "Cap".freeze, prefLabel: "CAP".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-CARRIER", comment: "A device of various types attached to or hung from trolleys to support the load.".freeze, label: "Carrier".freeze, prefLabel: "CARRIER".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-CONSUMPTION_UTENSIL", comment: "An item which allows the user to extract and/or consume the content of a container.".freeze, label: "Consumption Utensil".freeze, prefLabel: "CONSUMPTION_UTENSIL".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-CORE", comment: "A tubular shape around which flexible material such as plastic film or paper are wound for purposes of transport and handling.".freeze, label: "Core".freeze, prefLabel: "CORE".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-CREEL", comment: "A creel is a device for holding the required number of roving spools or other supply packages of reinforcement fibers for Fiber Reinforced Plastics manufacturing. This device holds the rovings in the desired position for unwinding in continuous processes like Pultrusion and Filament Winding.".freeze, label: "Creel".freeze, prefLabel: "CREEL".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-EDGE_PROTECTION", comment: "A right-angle piece placed over the outermost perimeter edges of a container to distribute pressure and prevent collapse or cutting from banding, strapping, or handling.".freeze, label: "Edge Protection".freeze, prefLabel: "EDGE_PROTECTION".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-HANDLE", comment: "A grip attached to an object for using or moving the object, usually with the hands.".freeze, label: "Handle".freeze, prefLabel: "HANDLE".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-INNER_CONTAINER", comment: "Inner Container".freeze, label: "Inner Container".freeze, prefLabel: "INNER_CONTAINER".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-INTERNAL_DIVIDER", comment: "An internal divider is an object, either flat or custom-shaped, used to separate the content of a container or to prevent the content from mixing.".freeze, label: "Internal Divider".freeze, prefLabel: "INTERNAL_DIVIDER".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-LABEL", comment: "A label is a piece of paper, polymer, cloth, metal, or other material affixed to a container or article (or printed directly upon it), which usually carries information about the article to.which it has been attached.".freeze, label: "Label".freeze, prefLabel: "LABEL".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-LID", comment: "In packaging, the top or bottom of a container, usually the part that closes the opening; may also be known as cap, over, or top".freeze, label: "Lid".freeze, prefLabel: "LID".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-LINER", comment: "An internal chamber within a container which separates the content of the container from the walls. Inner liners provide additional isolation and protection to the content of a container. Sometimes coatings of certain materials may be applied as an alternative to inner liners.".freeze, label: "Liner".freeze, prefLabel: "LINER".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-LUG", comment: "A small indentation or raised portion on the surface of a bottle, provided as an indexing means for operations such as multi-pass decoration or labeling.".freeze, label: "Lug".freeze, prefLabel: "LUG".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-NESTING_EDGE", comment: "Edges which allow items of the same size to be partially stacked within one another in any direction thus reducing the space required in order to stack them.".freeze, label: "Nesting Edge".freeze, prefLabel: "NESTING_EDGE".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-PEG", comment: "A fastener which allows a product to be hanged.".freeze, label: "Peg".freeze, prefLabel: "PEG".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-PULL_OFF_TAB", comment: "A flexible cover which can be easily removed in order to open a container.".freeze, label: "Pull Off Tab".freeze, prefLabel: "PULL_OFF_TAB".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-RING_HOLDER", comment: "A hollow circular band of material wound around itself.".freeze, label: "Ring Holder".freeze, prefLabel: "RING_HOLDER".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-RIVET", comment: "A permanent fastener which consists of a cylindrical shaft with a head on one end and tail which is deformed to fixate the rivet in place.".freeze, label: "Rivet".freeze, prefLabel: "RIVET".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-SLEEVE", comment: "A tubular form, open at both ends, that is slipped over an item or package.".freeze, label: "Sleeve".freeze, prefLabel: "SLEEVE".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-SPOUT", comment: "A spout is a protruding edge which allows the lifting and pouring of liquids contained within a container.".freeze, label: "Spout".freeze, prefLabel: "SPOUT".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-TAG", comment: "A hanging card made of any material which is used to identify or provide additional information of a product.".freeze, label: "Tag".freeze, prefLabel: "TAG".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-WICKER_OUTER_CONTAINER", comment: "An outer container made of wicker which is fitted to the bottle usually a little less than half way up from the bottom of the bottle and is used to hold, hang or support the bottle.".freeze, label: "Wicker Outer Container".freeze, prefLabel: "WICK_OUTER_CONTAINER".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :"PackagingFeatureCode-WRAP", comment: "A layer of any material which completely enclose a product. A wrap can have many purposes, from providing additional protection to an item to serving as a gift-wrap.".freeze, label: "Wrap".freeze, prefLabel: "WRAP".freeze, - type: "gs1:PackagingFeatureCode".freeze + type: "http://gs1.org/voc/PackagingFeatureCode".freeze term :PackagingFunctionCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PackagingFunctionCode&release=1".freeze, label: "Packaging Function Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PackagingFunctionCode-ANTISEPTIC", comment: "The process by which a sterile (aseptic) product (typically food or pharmaceutical) is packaged in a sterile container in a way which maintains sterility.".freeze, label: "Antiseptic".freeze, prefLabel: "ANTISEPTIC".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-ANTI_TAMPERING", comment: "A methodology used to hinder, or deter unauthorized access to a device.".freeze, label: "Anti-tampering".freeze, prefLabel: "ANTI_TAMPERING".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-COATED", comment: "Covered with a material (paraffin, wax) that protects the product or packaging.".freeze, label: "Coated".freeze, prefLabel: "COATED".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-COMPRESSED", comment: "Content has been pressed together to the maximum possible way.".freeze, label: "Compressed".freeze, prefLabel: "COMPRESSED".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-DISPENSER", comment: "A device or mechanism to supply or extract contents.".freeze, label: "Dispenser".freeze, prefLabel: "DISPENSER".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-GIFT_WRAPPED", comment: "Packaging is wrapped in a decorative way for the purposes of the consumer giving it as a gift.".freeze, label: "Gift Wrapped".freeze, prefLabel: "GIFT_WRAPPED".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-ISOTHERMIC", comment: "Thermal carry container designed for the carriage of temperature controlled goods such as vaccines, pharmaceuticals, and medicines.".freeze, label: "Isothermic".freeze, prefLabel: "ISOTHERMIC".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-MODIFIED_ATMOSPHERE", comment: "The practice of modifying the composition of the internal atmosphere of a package, (commonly food packages, and drugs) in order to improve the shelf life.".freeze, label: "Modified Atmosphere".freeze, prefLabel: "MODIFIED_ATMOSPHERE".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-OXYGEN_INFUSED", comment: "A barrier packaging material for an infusion solution, i.e., oxygen.".freeze, label: "Oxygen Infused".freeze, prefLabel: "OXYGEN_INFUSED".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-PEEL_OFF", comment: "A section of the packaging can be detached with ease in order to have access to the content or product, e.g. peel-off Lids used for packing Milk, Coffee and Cacao Powder.".freeze, label: "Peel Off".freeze, prefLabel: "PEEL_OFF".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-PINPACK", comment: "The package is equipped to be hung up on a hook.".freeze, label: "Pinpack".freeze, prefLabel: "PINPACk".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-PROTECTED", comment: "Functionality to keep from being damaged, attacked, stolen, or injured; guard.".freeze, label: "Protected".freeze, prefLabel: "PROTECTED".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-REINFORCED", comment: "A component is added to a container for a particular application to lend additional support under severe applications.".freeze, label: "Reinforced".freeze, prefLabel: "REINFORCED".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-SIFT_PROOF", comment: "Packaging is designed to prevent leaking of the content specially when it is on powdered or liquid state.".freeze, label: "Sift Proof".freeze, prefLabel: "SIFT_PROOF".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-TAMPER_EVIDENT", comment: "The packaging is designed to show when there has been some interference with the original sealing or configuration of the packaging.".freeze, label: "Tamper Evident".freeze, prefLabel: "TAMPER_EVIDENT".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :"PackagingFunctionCode-WATER_RESISTANT", comment: "Coated with materials that make the packaging impervious to the effects of water.".freeze, label: "Water Resistant".freeze, prefLabel: "WATER_RESISTANT".freeze, - type: "gs1:PackagingFunctionCode".freeze + type: "http://gs1.org/voc/PackagingFunctionCode".freeze term :PackagingMarkedDietAllergenCode, isDefinedBy: "http://apps.gs1.org/GDD/bms/Version2_8/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PackageMarksDietAllergenCodeList&release=1".freeze, label: "Packaging Marked Diet Allergen Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PackagingMarkedDietAllergenCode-APPROVED_BY_ASTHMA_AND_ALLERGY_ASSOC", comment: "Definitions made by the asthma and allergist association.".freeze, label: "Asthma and Allergist Association".freeze, prefLabel: "APPROVED_BY_ASTHMA_AND_ALLERGY_ASSOC".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-APPROVED_FOR_TUBE_FEEDING", comment: "The item is physically marked that it is approved for tube feeding by the appropriate authority of the target market.".freeze, label: "Approved for Tube Feeding".freeze, prefLabel: "APPROVED_FOR_TUBE_FEEDING".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-BIOLOGICAL", comment: "Indicates the product has been marked as a biological item which indicates a food product that was produced with the use of feed or fertilizer of plant or animal origin, without employment of chemically formulated fertilizers, growth stimulants, antibiotics or pesticides.".freeze, label: "Biological".freeze, prefLabel: "BIOLOGICAL".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-CALORIES_PER_PORTION", comment: "Indicates the product has a marking with the calories per portion contained in the product.".freeze, label: "Calories Per Portion".freeze, prefLabel: "CALORIES_PER_PORTION".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-CONTAINS_LATEX", comment: "The item is physically marked as containing Latex (rubber).".freeze, label: "Contains Latex".freeze, prefLabel: "CONTAINS_LATEX".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-CONTAINS_PVC", comment: "The item is physically marked as containing PVC (Polyvinyl chloride). Phthalate content is unspecified.".freeze, label: "Contains PVC".freeze, prefLabel: "CONTAINS_PVC".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-CONTAINS_PVC_WITHOUT_PHTHALATES", comment: "The item is physically marked as containing PVC (Polyvinyl chloride) without phthalates.".freeze, label: "Contains PVC Without Phthalates".freeze, prefLabel: "CONTAINS_PVC_WITHOUT_PHTHALATES".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-CONTAINS_PVC_WITH_PHTHALATES", comment: "The item is physically marked as containing PVC (Polyvinyl chloride) with phthalates.".freeze, label: "Contains PVC With Phthalates".freeze, prefLabel: "CONTAINS_PVC_WITH_PHTHALATES".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-DIET_PRODUCT_450_800_KCAL_PER_DAY", comment: "The item is physically marked that it is approved for a 450-800 kilocalorie/day diet by the appropriate authority of the target market.".freeze, label: "450-800 Kilocalorie Per Day Diet".freeze, prefLabel: "DIET_PRODUCT_450_800_KCAL_PER_DAY".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-DIET_PRODUCT_800_1200_KCAL_PER_DAY", comment: "The item is physically marked that it is approved for a 800-1200 kilocalorie/day diet by the appropriate authority of the target market.".freeze, label: "800-1200 Kilocalorie Per Day Diet".freeze, prefLabel: "DIET_PRODUCT_800_1200_KCAL_PER_DAY".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-GEZONDE_KEUZE_KLAVERTJE", comment: "Health symbol used in the Netherlands Target Market which indicates that the item is a cholesterol-reducing product.".freeze, label: "Gezonde Keuze Klavertje".freeze, prefLabel: "GEZONDE_KEUZE_KLAVERTJE".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-HALAL", comment: "Indicates the product has been marked as Halal which denotes selling or serving food ritually fit according to Islamic dietary laws.".freeze, label: "Halal".freeze, prefLabel: "HALAL".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-IK_KIES_BEWUST", comment: "Conscious choice symbol used in the Netherlands Target Market which may be used for products low in saturated fat, trans fatty acids, sugar and salt.".freeze, label: "Ik Kies Bewust".freeze, prefLabel: "IK_KIES_BEWUST".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-KOSHER", comment: "Indicates the product has been marked as Kosher which denotes selling or serving food ritually fit according to Jewish dietary laws.".freeze, label: "Kosher".freeze, prefLabel: "KOSHER".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-LACTASE_ENZYME", comment: "The item is physically marked that it is approved as lactase enzyme by the appropriate authority of the target market.".freeze, label: "Lactase Enzyme".freeze, prefLabel: "LACTASE_ENZYME".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-LOW_ON_PHENYLALANINE", comment: "The item is physically marked as containing a low level of phenylalanine as approved by the appropriate authority of the target market.".freeze, label: "Low in Phenylalanine".freeze, prefLabel: "LOW_ON_PHENYLALANINE".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-LOW_ON_SUGAR", comment: "The item is physically marked as containing a low level of sugar as approved by the appropriate authority of the target market.".freeze, label: "Low Sugar".freeze, prefLabel: "LOW_ON_SUGAR".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-MOTHERS_MILK_SUBSTITUTE", comment: "The item is physically marked that it is approved as substitute mother's milk the appropriate authority of the target market.".freeze, label: "Mother's Milk Substitute".freeze, prefLabel: "MOTHERS_MILK_SUBSTITUTE".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-NUTRITION_SUPPLEMENT", comment: "The item is physically marked that it is approved as nutrition supplement by the appropriate authority of the target market.".freeze, label: "Nutrition Supplement".freeze, prefLabel: "NUTRITION_SUPPLEMENT".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-NYCKELHAL_MARK", comment: "Lean product.".freeze, label: "Nyckelhal Mark".freeze, prefLabel: "NYCKELHAL_MARK".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :"PackagingMarkedDietAllergenCode-VEGETARIAN", comment: "Indicates the product has been marked as vegetarian which denotes a product that contains no meat, fish or other animal products.".freeze, label: "Vegetarian".freeze, prefLabel: "VEGETARIAN".freeze, - type: "gs1:PackagingMarkedDietAllergenCode".freeze + type: "http://gs1.org/voc/PackagingMarkedDietAllergenCode".freeze term :PackagingMarkedFreeFromCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PackagingMarkedFreeFromCode&release=1".freeze, label: "Packaging Marked Free From Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_ARTIFICIAL_COLOURING", comment: "The item is physically marked as having no artificial colouring.".freeze, label: "Free From Artificial Colouring".freeze, prefLabel: "FREE_FROM_ARTIFICIAL_COLOURING".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_ARTIFICIAL_FLAVOURING", comment: "The item is physically marked as having no artificial flavouring.".freeze, label: "Free From Artificial Flavouring".freeze, prefLabel: "FREE_FROM_ARTIFICIAL_FLAVOURING".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_ARTIFICIAL_PRESERVATIVES", comment: "The item is physically marked as having no artificial preservatives.".freeze, label: "Free From Artificial Preservatives".freeze, prefLabel: "FREE_FROM_ARTIFICIAL_PRESERVATIVES".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_CHOLESTEROL", comment: "The item is physically marked as having no Cholesterol.".freeze, label: "Free From Cholesterol".freeze, prefLabel: "FREE_FROM_CHOLESTEROL".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_CLONED_FOOD", comment: "The item is physically marked as being free from cloned food.".freeze, label: "Free From Cloned Food".freeze, prefLabel: "FREE_FROM_CLONED_FOOD".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_DAIRY", comment: "The item is physically marked as being free from dairy and dairy products, as approved by the appropriate authority of the target market.".freeze, label: "Free From Dairy and Dairy Products".freeze, prefLabel: "FREE_FROM_DAIRY".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_EGG", comment: "The item is physically marked as free from egg.".freeze, label: "Free From Egg".freeze, prefLabel: "FREE_FROM_EGG".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_FISH", comment: "The item is physically marked as being free from fish.".freeze, label: "Free From Fish".freeze, prefLabel: "FREE_FROM_FISH".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_GLUTEN", comment: "The item is physically marked as free from gluten. This level of containment is frequently determined through regulation.".freeze, label: "Free From Gluten".freeze, prefLabel: "FREE_FROM_GLUTEN".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_LACTOSE", comment: "The item is physically marked as being free of lactose.".freeze, label: "Free Of Lactose".freeze, prefLabel: "FREE_FROM_LACTOSE".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_LATEX", comment: "The item is physically marked being free from Latex (rubber).".freeze, label: "Free From Latex".freeze, prefLabel: "FREE_FROM_LATEX".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_LEGUME_PROTEIN", comment: "The item is physically marked as being free from legume protein.".freeze, label: "Free From Legume Protein".freeze, prefLabel: "FREE_FROM_LEGUME_PROTEIN".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_MILK", comment: "The item is physically marked as being free from milk and any of its derivatives.".freeze, label: "Free From Milk".freeze, prefLabel: "FREE_FROM_MILK".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_MILK_PROTEIN", comment: "The item is physically marked as being free from milk protein.".freeze, label: "Free From Milk Protein".freeze, prefLabel: "FREE_FROM_MILK_PROTEIN".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_NATURAL_GLUTEN", comment: "The item is physically marked as being naturally free from gluten and not extracted as part of the manufacturing process.".freeze, label: "Naturally Free From Gluten".freeze, prefLabel: "FREE_FROM_NATURAL_GLUTEN".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_PEANUTS", comment: "The item is physically marked as being free from peanuts.".freeze, label: "Free From Peanuts".freeze, prefLabel: "FREE_FROM_PEANUTS".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_PROTEIN", comment: "The item is physically marked as being free from protein.".freeze, label: "Free from Frotein".freeze, prefLabel: "FREE_FROM_PROTEIN".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_PVC", comment: "The item is physically marked as being free from PVC (Polyvinyl chloride).".freeze, label: "Free from PVC".freeze, prefLabel: "FREE_FROM_PVC".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_SOYA", comment: "The item is physically marked as being free from soya.".freeze, label: "Free From Soya".freeze, prefLabel: "FREE_FROM_SOYA".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_SUGAR", comment: "The item is physically marked as being free from sugar.".freeze, label: "Free From Sugar".freeze, prefLabel: "FREE_FROM_SUGAR".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-FREE_FROM_TRANSFAT", comment: "The item is physically marked being free from Trans Fatty Acids (Trans Fat)".freeze, label: "Free from Trans Fatty Acids".freeze, prefLabel: "FREE_FROM_TRANSFAT".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-REDUCED_LACTOSE", comment: "The item is physically marked as having a reduced amount of lactose".freeze, label: "Reduced Amount of Lactose".freeze, prefLabel: "REDUCED_LACTOSE".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-REDUCED_PROTEIN", comment: "The item is physically marked as containing a low level of protein.".freeze, label: "Low Level of Protein".freeze, prefLabel: "REDUCED_PROTEIN".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-REDUCED_TRANSFAT", comment: "The item is physically marked as having a reduced amount of transfats (unsaturated).".freeze, label: "Reduced Amount of Transfats".freeze, prefLabel: "REDUCED_TRANSFAT".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-VERY_LOW_GLUTEN", comment: "The item is physically marked as as a very low amount of gluten. Very low is frequently determined through regulation for example, per EU Regulation (EC) No 41/2009 [of 20 January 2009], this is defined as containing between 20 and 100 mg/kg).".freeze, label: "Very Low Amount of Gluten".freeze, prefLabel: "VERY_LOW_GLUTEN".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-WITHOUT_ADDED_SALT", comment: "The item is physically marked that no salt has been added when manufacturing the product but it still can contain salt that is naturally part of the ingredients, as approved by the appropriate authority of the target market.".freeze, label: "Without Added Salt".freeze, prefLabel: "WITHOUT_ADDED_SALT".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-WITHOUT_ADDED_SUGAR", comment: "The item is physically marked that no sugar has been added when manufacturing the product but it still can contain sugars that are naturally part of the ingredients, as approved by the appropriate authority of the target market.".freeze, label: "Without Added Sugar".freeze, prefLabel: "WITHOUT_ADDED_SUGAR".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :"PackagingMarkedFreeFromCode-WITHOUT_ADDED_SWEETENER", comment: "The item is physically marked that no sweetener has been added when manufacturing the product.".freeze, label: "Without Added Sweetener".freeze, prefLabel: "WITHOUT_ADDED_SWEETENER".freeze, - type: "gs1:PackagingMarkedFreeFromCode".freeze + type: "http://gs1.org/voc/PackagingMarkedFreeFromCode".freeze term :PackagingMarkedLabelAccreditationCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PackagingMarkedLabelAccreditationCode&release=1".freeze, label: "Packaging Marked Label Accreditation Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PackagingMarkedLabelAccreditationCode-AMA_ORGANIC_SEAL", comment: "Austria Ministry of Agriculture Organic Label, AMA Marketing licenses the AMA organic logo. Red, white and black indicates the majority of ingredients are of Austrian origin.".freeze, label: "Austria Ministry of Agriculture Organic Label".freeze, prefLabel: "AMA_ORGANIC_SEAL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-AUS_KAUP_ESTONIA", comment: "Used to specify Estonia Meat in their product.".freeze, label: "Aus Kaup Estonia".freeze, prefLabel: "AUS_KAUP_ESTONIA".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BDIH_LOGO", label: "BDIH Germany guidelines for Certified Natural Cosmetics".freeze, prefLabel: "BDIH_LOGO".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BETER_LEVEN_1_STER", comment: "The one-star Beter Leven (better life) mark indicates that the product comes from a company that cares that animals are kept according to the minimal requirements for sanitation and wel-being for the cattle industry.".freeze, label: "Beter Leven One Star Mark".freeze, prefLabel: "BETER_LEVEN_1_STER".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BETER_LEVEN_2_STER", comment: "The two-star Beter Leven (better life) mark indicates that the product comes from a company that provides for a higher well-being of animals than that established by the minimal requirements for sanitation and wel-being for the cattle industry, yet the conditions are inferior to those of Biological-class products.".freeze, label: "Beter Leven Two Star Mark".freeze, prefLabel: "BETER_LEVEN_2_STER".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BETER_LEVEN_3_STER", comment: "The three-star Beter Leven (better life) mark is awarded to products that come from companies that excel in keeping animals according to top guidelines for Biological-class products. In some cases this mark is accompanied by an EKO indication.".freeze, label: "Beter Leven Three Star Mark".freeze, prefLabel: "BETER_LEVEN_3_STER".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BIO_AUSTRIA_LABEL", label: "Bio Austria".freeze, prefLabel: "BIO_AUSTRIA_LABEL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BIO_LABEL_GERMAN", label: "German national organic certification label (Bio-Siegel)".freeze, prefLabel: "BIO_LABEL_GERMAN".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BIO_SUISSE_BUD_SEAL", label: "Represents interests of Swiss organic farmers".freeze, prefLabel: "BIO_SUISSE_BUD_SEAL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BLUE_ANGEL", comment: "The Blue Angel is awarded to companies as kind of a reward for their commitment to environmental protection. They use it to professionally promote their eco-friendly products in the market. The Blue Angel is an ecological beacon showing the consumer the way to the ecologically superior product and promotes environmentally conscious consumption.".freeze, label: "Blue Angel".freeze, prefLabel: "BLUE_ANGEL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BORD_BIA_APPROVED", comment: "The Bord Bia Approved logo is awarded to a company which has been audited by Bord Bia to verify that processes, from farm to fork, comply with the highest Quality Assurance Standards. These standards include animal welfare, traceability, environment, safety, feed, water, testing, inspection, hygiene and good manufacturing practice. Bord Bia Approved is awarded to a company where all the ingredients including meat content satisfy the Bord Bia requirements.".freeze, label: "Bord Bia Approved Logo".freeze, prefLabel: "BORD_BIA_APPROVED".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BORD_BIA_APPROVED_MEAT", comment: "Bord Bia Approved - Meat Content Only applies to companies where only the meat content satisfies certain conditions detailed in the Bord Bia requirements document.".freeze, label: "Bord Bia Approved - Meat Content Only".freeze, prefLabel: "BORD_BIA_APPROVED_MEAT".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-BRA_MILJOVAL_LABEL_SWEDISH", comment: "Bra Miljöval Bra Miljöval is the ecolabel of SSNC. It is referred to as Good Environmental Choice in English. SSNC started ecolabelling.".freeze, label: "Bra Miljöval Bra Miljöval".freeze, prefLabel: "BRA_MILJOVAL_LABEL_SWEDISH".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-CROSSED_GRAIN_SYMBOL", comment: "Crossed grain logo is a trademark owned and administered by Coeliac. It is a worldwide symbol for safe gluten-free foods. Each country has their own Coeliac".freeze, label: "Crossed grain logo".freeze, prefLabel: "CROSSED_GRAIN_SYMBOL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-DEMETER_LABEL", comment: "Demeter International trademark for products of certified biodynamic production.".freeze, label: "Demeter International Trademark".freeze, prefLabel: "DEMETER_LABEL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-ECOCERT_CERTIFICATE", comment: "ECOCERT is a certification body for sustainable development.".freeze, label: "ECOCERT Certification".freeze, prefLabel: "ECOCERT_CERTIFICATE".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-ECO_LABEL_LADYBUG", comment: "This is a Finnish label used by the Organic union, which represents the entire Finnish organic industry, consumers and producers in a common interest group. They work as a neutral voice in various working groups and consultations, and prepare position papers and presentations. The Federation also organizes training events and professional seminars. The Organic Federation also publishes the magazine Organic. ".freeze, label: "Eco Label Ladybug".freeze, prefLabel: "ECO_LABEL_LADYBUG".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-EC_NATIONAL_HEALTH_MARK", comment: "The package is physically marked with EC National Health Mark. The EC National Health Mark is the health mark for specific hygiene regulations for food of animal origin. The regulation (EC) Nr. 853/2004 of 29. April 2004 of the European Parliament on hygiene rules for food of animal origin demands that companies handling products of animal origin are authorised according to this regulation. The official body responsible for this authorisation assigns a health mark to the food producing company".freeze, label: "EC National Health Mark".freeze, prefLabel: "EC_NATIONAL_HEALTH_MARK".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-EESTI_OKOMARK", comment: "Estonian Eco Label: Ministry of Agriculture Ökomärk (Label of Organic Food).".freeze, label: "Ökomärk (Label of Organic Food)".freeze, prefLabel: "EESTI_OKOMARK".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-EESTI_PARIM_TOIDUAINE", comment: "Best Food Association of Estonia Food Industry http://www.toiduliit.ee/. An organisation that supports and promote Estonian food industry and economy, and contribute to a balanced and appropriate ethics to members of a favourable business environment for development.".freeze, label: "Best Food Association of Estonia Food Industry".freeze, prefLabel: "EESTI_PARIM_TOIDUAINE".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-EKO", comment: "This symbol stands for organic production certified by Skal that meets the requirements of the EU-regulation for organic production. Skal is the inspection body for the organic production in the Netherlands.".freeze, label: "Skal EKO Label".freeze, prefLabel: "EKO".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-EU_ECO_LABEL", comment: "The item is physically marked with the European Union Eco label a European environmental initiative supported by the European Commission.".freeze, label: "European Union Eco Label".freeze, prefLabel: "EU_ECO_LABEL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-EU_ORGANIC_FARMING", comment: "New EU organic logo the EU introduced a new organic logo to ensure consumer protection and common standards. ".freeze, label: "EU Organic Farming Logo".freeze, prefLabel: "EU_ORGANIC_FARMING".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-FAIR_TRADE_MARK", comment: "The Fair Trade Mark certifies that products meet the social, economic and environmental International Fair trade Standards. The Fair Trade Mark is usually supported by a local Fair Trade Labelling Organization and certifies products not companies. It does not cover the companies or organizations selling the product".freeze, label: "The Fair Trade Mark".freeze, prefLabel: "FAIR_TRADE_MARK".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-FALKEN", label: "Falken".freeze, prefLabel: "FALKEN".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-FINNISH_HEART_SYMBOL", comment: "The heart symbol to inform the consumer at one glance that the product marked with this symbol is a preferred choice in its product group with regard to fat and sodium. Finnish Heart Association ".freeze, label: "Finnish Heart Symbol ".freeze, prefLabel: "FINNISH_HEART_SYMBOL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-FOREST_STEWARDSHIP_COUNCIL_LABEL", comment: "The item is physically marked with the Forest Stewardship Council label.".freeze, label: "Forest Stewardship Council Label".freeze, prefLabel: "FOREST_STEWARDSHIP_COUNCIL_LABEL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-GMO_MARKED", comment: "The item is physically marked as of genetically modified origin.".freeze, label: "GMO Marked".freeze, prefLabel: "GMO_MARKED".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-GOODS_FROM_FINLAND_BLUE_SWAN", label: "Finfood Suomen Ruokatieto Ry".freeze, prefLabel: "GOODS_FROM_FINLAND_BLUE_SWAN".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-GREEN_DOT", label: "Green Dot".freeze, prefLabel: "GREEN_DOT".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-GREEN_RESTAURANT_ASSOCIATION_ENDORSED", comment: "The item is physically marked with the Green Restaurant Association Endorsed symbol.".freeze, label: "Green Restaurant Association Endorsed symbol".freeze, prefLabel: "GREEN_RESTAURANT_ASSOCIATION_ENDORSED".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-GREEN_SEAL_CERTIFIED", comment: "The item is physically marked with the Green Seal Certified symbol.".freeze, label: "Green Seal Certified Symbol".freeze, prefLabel: "GREEN_SEAL_CERTIFIED".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-GUARANTEED_IRISH", comment: "Ireland: The Guaranteed Irish symbol makes shopping for Irish products and services a lot easier. Shoppers know that when they buy a product or service featuring the guaranteed Irish logo they are supporting Irish companies and safeguarding Irish jobs. ".freeze, label: "Guaranteed Irish Symbol".freeze, prefLabel: "GUARANTEED_IRISH".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-KRAV_MARK", label: "KRAV Mark".freeze, prefLabel: "KRAV_MARK".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-LABEL_OF_THE_ALLERGY_AND_ASTHMA_FEDERATION", comment: "Allergy and Asthma Federation is a non-profit public health organisation. Our aim is to improve quality of life of the allergy and asthma patients. ".freeze, label: "Allergy and Asthma Federation".freeze, prefLabel: "LABEL_OF_THE_ALLERGY_AND_ASTHMA_FEDERATION".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-LEAPING_BUNNY", comment: "The Coalition for Consumer Information on Cosmetics’ (CCIC) Leaping Bunny Program administers a cruelty-free standard and the internationally recognized Leaping Bunny Logo for companies producing cosmetic, personal care, and household products. The Leaping Bunny Program provides the best assurance that no new animal testing is used in any phase of product development by the company, its laboratories, or suppliers.".freeze, label: "Leaping Bunny Program".freeze, prefLabel: "LEAPING_BUNNY".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-LOODUSSOBRALIK_TOODE_ESTONIA", comment: "Eco-friendly product The sign eco-friendly product is designed to make environmentally friendly products on store shelves more as significant. When it comes to food shall be used for agriculture, natural farming methods. No use of mineral fertilizers, insect control and plant poisons. ".freeze, label: "Loodussobralik Toode Estonia".freeze, prefLabel: "LOODUSSOBRALIK_TOODE_ESTONIA".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-LOVE_IRISH_FOOD", comment: "Love Irish Food - a promotional label printed on the product packaging to indicate to the consumer that the food is manufactured in Ireland using Irish ingredients.".freeze, label: "Love Irish Food".freeze, prefLabel: "LOVE_IRISH_FOOD".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-MADE_IN_FINLAND_FLAG_WITH_KEY", comment: "Made in Finland Products that are made in Finland Avainlippu (Key Flag) Suomalaisen Työn ".freeze, label: "Made in Finland".freeze, prefLabel: "MADE_IN_FINLAND_FLAG_WITH_KEY".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-MARINE_STEWARDSHIP_COUNCIL_LABEL", label: "Marine Stewardship Council label".freeze, prefLabel: "MARINE_STEWARDSHIP_COUNCIL_LABEL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-MAX_HAVELAAR", comment: "Fair trade symbol used in the Netherlands Target Market awarded to manufacturers which contribute to improving the living and working conditions of small farmers and agricultural workers in disadvantaged regions.".freeze, label: "Max Havelaar".freeze, prefLabel: "MAX_HAVELAAR".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-NATRUE_LABEL", comment: "The NATRUE Label guarantees that the products that carry it are made only with natural and organic ingredients, through soft manufacturing processes and environmentally friendly practices. The NATRUE Label is awarded by NATRUE, a non-profit organisation committed to promote and protect high standards of quality and environmental integrity.".freeze, label: "NATRUE Label".freeze, prefLabel: "NATRUE_LABEL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-NYCKELHALET", comment: "The green key hole is to be put on the healthy foods in Sweden, Denmark, and Norway within certain product groups in order to make it easier for the customers to make a healthy choice. http://www.norden.org/".freeze, label: "Green Key Hole".freeze, prefLabel: "NYCKELHALET".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-OEKO_TEX_LABEL", comment: "Confidence in textiles – this has been the motto of the independent test institutes of the International Oeko-Tex Association since 1992, with their tests for harmful substances according to Oeko-Tex® Standard 100 for textile products of all types which pose no risk whatsoever to health. ".freeze, label: "Confidence in Textiles Oeko-Tex".freeze, prefLabel: "OEKO_TEX_LABEL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-OFFICIAL_ECO_LABEL_SUN", comment: "Luomo Sun Sign Denotes controlled organic production. The official label of the Finnish inspection authorities; owned by the Ministry of Agriculture and Forestry.".freeze, label: "Luomo Sun Sign".freeze, prefLabel: "OFFICIAL_ECO_LABEL_SUN".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-PEFC", comment: "Programme for Endorsement of Forest Certification (PEFCC_ is an international non-profit, non-governmental organisation dedicated to promoting Sustainable Forest Management (SFM) through independent third-party certification".freeze, label: "Programme for Endorsement of Forest Certification".freeze, prefLabel: "PEFC".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-PROTECTED_DESIGNATION_OF_ORIGIN", comment: "The Protected designation of origin is the name of an area, a specific place or, in exceptional cases, the name of a country, used as a designation for an agricultural product or a foodstuff, the entire product must be traditionally and ENTIRELY manufactured (prepared, processed AND produced) within the specific region and thus acquire unique properties. Protected Geographical Status (PGS) is a legal framework defined in European Union law to protect the names of regional foods.".freeze, label: "Protected Designation of Origin".freeze, prefLabel: "PROTECTED_DESIGNATION_OF_ORIGIN".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-PROTECTED_GEOGRAPHICAL_INDICATION", comment: "The Protected geographical indication is the name of an area, a specific place or, in exceptional cases, the name of a country, used as a description of an agricultural product or a foodstuff, the entire product must be traditionally and at least PARTIALLY manufactured (prepared, processed OR produced) within the specific region and thus acquire unique properties. Protected Geographical Status (PGS) is a legal framework[1] defined in European Union law to protect the names of regional foods.".freeze, label: "Protected Geographical Indication".freeze, prefLabel: "PROTECTED_GEOGRAPHICAL_INDICATION".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-PROTECTED_HARVEST_CERTIFIED", comment: "The item is physically marked with the Protected Harvest Certified symbol.".freeze, label: "Protected Harvest Certified Symbol".freeze, prefLabel: "PROTECTED_HARVEST_CERTIFIED".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-QUALITY_MARK_IRELAND", comment: "Control IMO Organic farming is an alternative, environmentally friendly method of food production. It forbids the use of chemicals and requires production methods that respect animal welfare and do not damage the environment. The term ‘organic’ can only be used on food labels in Ireland if the food product meets strict Irish and EU organic standards and is licensed by an approved certification body.".freeze, label: "Quality Mark Ireland".freeze, prefLabel: "QUALITY_MARK_IRELAND".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-RAINFOREST_ALLIANCE", comment: "The item is physically marked with the Rainforest Alliance Certified symbol.".freeze, label: "Rainforest Alliance Certified Symbol".freeze, prefLabel: "RAINFOREST_ALLIANCE".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-SCHARRELVLEES", comment: "A symbol used in the Netherlands Target Market intended for meat based products which guarantees that the animals has been growth without the use of antibiotics.".freeze, label: "Scharrelvlees".freeze, prefLabel: "SCHARRELVLEES".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-SOIL_ASSOCIATION_ORGANIC_SYMBOL", comment: "The Soil Association Organic Symbol is a symbol used in the UK to show that products meet a strict set of organic standards that protect health, sustainability and the environment.".freeze, label: "Soil Association Organic Symbol".freeze, prefLabel: "SOIL_ASSOCIATION_ORGANIC_SYMBOL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-SUSTAINABLE_PALM_OIL_RSPO", comment: "In response to the urgent and pressing global call for sustainably produced palm oil, the Roundtable on Sustainable Palm Oil (RSPO) was formed in 2004 with the objective of promoting the growth and use of sustainable oil palm products through credible global standards and engagement of stakeholders.".freeze, label: "Sustainably Produced Palm Oil".freeze, prefLabel: "SUSTAINABLE_PALM_OIL_RSPO".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-SVANEN", comment: "The Swan is the Nordic environmental label. It was established by the Nordic Council of Ministers in 1989 and Denmark joined in 1997. The Swan is used in all Nordic countries, i.e. Denmark, Norway, Sweden, Finland and Iceland. ".freeze, label: "Svanen".freeze, prefLabel: "SVANEN".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-SWEDISH_SEAL_OF_QUALITY", comment: "The item is physically marked with the Swedish Seal of Quality label which intends to guarantee the responsibility for the environment of the product.".freeze, label: "Swedish Seal of Quality Label".freeze, prefLabel: "SWEDISH_SEAL_OF_QUALITY".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-TRADITIONAL_SPECIALTY_GUARANTEED", comment: "The Traditional specialty guaranteed is a trademark for an agricultural product or a foodstuff, which has a certain feature or a set of features, setting it clearly apart from other similar products or foodstuffs belonging to the same category. The product or foodstuff must be manufactured using traditional ingredients or must be characteristic for its traditional composition, production process, or processing reflecting a traditional type of manufacturing or processing.".freeze, label: "Traditional Specialty Guaranteed".freeze, prefLabel: "TRADITIONAL_SPECIALTY_GUARANTEED".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-TUNNUSTATUD_EESTI_MAITSE", comment: "Approved Estonian Taste - Quality/Tradition/Origin/Traceability for Estonian products. All raw materials must be 100% Estonian. Estonian Chamber of Agriculture and Commerce.".freeze, label: "Approved Estonian Taste".freeze, prefLabel: "TUNNUSTATUD_EESTI_MAITSE".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-TUNNUSTATUD_MAITSE", comment: "Approved Taste label (designed as a barn swallow) denoting Estonian origin and high quality was introduced. This label has been given to products for Food quality and safety. Estonian Chamber of Agriculture and Commerce (ECAC).".freeze, label: "Tunnustatud Maitse".freeze, prefLabel: "TUNNUSTATUD_MAITSE".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-UNIQUELY_FINNISH", comment: "Uniquely Finnish http://www.maakuntienparhaat.fi/en/ The Uniquely Finnish label is a national quality label for small entrepreneurs. ProAgria Association of Rural Advisory Centres grants the label to qualified foodstuff, handicraft and rural tourism companies based on applications.".freeze, label: "Uniquely Finnish".freeze, prefLabel: "UNIQUELY_FINNISH".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-USDA", label: "US Department of Agriculture".freeze, prefLabel: "USDA".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-UTZ_CERTIFIED", comment: "A certification which is intended to assure the social and environmental quality in coffee production. Coffee based products may be marked with this certification.".freeze, label: "UTZ Certified".freeze, prefLabel: "UTZ_CERTIFIED".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-VAELG_FULDKORN_FORST", comment: "Grain based foods (bread, breakfast products, baking articles etc.) which have got a high content of whole grain will be puffed with a nutritional puff from the beginning of 2009: Please choose whole grain first.".freeze, label: "Vaelg Fuldkorn forst".freeze, prefLabel: "VAELG_FULDKORN_FORST".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :"PackagingMarkedLabelAccreditationCode-WWF_PANDA_LABEL", comment: "Products that support the World Wildlife Federation.".freeze, label: "World Wildlife Federation Panda".freeze, prefLabel: "WWF_PANDA_LABEL".freeze, - type: "gs1:PackagingMarkedLabelAccreditationCode".freeze + type: "http://gs1.org/voc/PackagingMarkedLabelAccreditationCode".freeze term :PackagingMaterialTypeCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PackagingMaterialTypeCode&release=1".freeze, label: "Packaging Material Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PackagingMaterialTypeCode-CERAMIC", label: "Ceramic".freeze, prefLabel: "CERAMIC".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-CLOTH_OR_FABRIC", label: "Cloth of Fabric".freeze, prefLabel: "CLOTH_OR_FABRIC".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-COMPOSITE", label: "Composite".freeze, prefLabel: "COMPOSITE".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-CORRUGATED_BOARD_DOUBLE_WALL", label: "Corrugated Board Double Wall".freeze, prefLabel: "CORRUGATED_BOARD_DOUBLE_WALL".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-CORRUGATED_BOARD_OTHER", label: "Corrugated Board Other".freeze, prefLabel: "CORRUGATED_BOARD_OTHER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-CORRUGATED_BOARD_SINGLE_WALL", label: "Corrugated Board Single Wall".freeze, prefLabel: "CORRUGATED_BOARD_SINGLE_WALL".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-CORRUGATED_BOARD_TRIPLE_WALL", label: "Corrugated Board Triple Wall".freeze, prefLabel: "CORRUGATED_BOARD_TRIPLE_WALL".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-FIBRE_BURLAP", label: "Fibre Burlap".freeze, prefLabel: "FIBRE_BURLAP".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-FIBRE_COTTON", label: "Fibre Cotton".freeze, prefLabel: "FIBRE_COTTON".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-FIBRE_FLAX", label: "Fibre Flax".freeze, prefLabel: "FIBRE_FLAX".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-FIBRE_HEMP", label: "Fibre Hemp".freeze, prefLabel: "FIBRE_HEMP".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-FIBRE_JUTE", label: "Fibre Jute".freeze, prefLabel: "FIBRE_JUTE".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-FIBRE_OTHER", label: "Fibre Other".freeze, prefLabel: "FIBRE_OTHER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-FOAM", label: "Foam".freeze, prefLabel: "FOAM".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-GLASS", label: "Glass".freeze, prefLabel: "GLASS".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-GLASS_COLOURED", label: "Glass Coloured".freeze, prefLabel: "GLASS_COLOURED".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-LAMINATED_CARTON", label: "Laminated Carton".freeze, prefLabel: "LAMINATED_CARTON".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-METAL_ALUMINUM", label: "Metal Aluminum".freeze, prefLabel: "METAL_ALUMINUM".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-METAL_BRASS", label: "Metal Brass".freeze, prefLabel: "METAL_BRASS".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-METAL_IRON", label: "Metal Iron".freeze, prefLabel: "METAL_IRON".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-METAL_LEAD", label: "Metal Lead".freeze, prefLabel: "METAL_LEAD".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-METAL_OTHER", label: "Metal Other".freeze, prefLabel: "METAL_OTHER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-METAL_STAINLESS_STEEL", label: "Metal Stainless Steel".freeze, prefLabel: "METAL_STAINLESS_STEEL".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-METAL_STEEL", label: "Metal Steel".freeze, prefLabel: "METAL_STEEL".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-METAL_TIN", label: "Metal Tin".freeze, prefLabel: "METAL_TIN".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-MINERAL_CALCIUM_CARBONATE", label: "Mineral Calcium Carbonate".freeze, prefLabel: "MINERAL_CALCIUM_CARBONATE".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-MINERAL_OTHER", label: "Mineral Other".freeze, prefLabel: "MINERAL_OTHER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-MINERAL_TALC", label: "Mineral Talc".freeze, prefLabel: "MINERAL_TALC".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-NATURAL_RUBBER", label: "Natural Rubber".freeze, prefLabel: "NATURAL_RUBBER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-OTHER", label: "Other".freeze, prefLabel: "OTHER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-PAPER_CORRUGATED", label: "Paper Corrugated".freeze, prefLabel: "PAPER_CORRUGATED".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-PAPER_MOLDED_PULP", label: "Paper Molded Pulp".freeze, prefLabel: "PAPER_MOLDED_PULP".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-PAPER_OTHER", label: "Paper Other".freeze, prefLabel: "PAPER_OTHER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-PAPER_PAPER", label: "Paper".freeze, prefLabel: "PAPER_PAPER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-PAPER_PAPERBOARD", label: "Paper Paperboard".freeze, prefLabel: "PAPER_PAPERBOARD".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-PAPER_RAYON", label: "Paper Rayon".freeze, prefLabel: "PAPER_RAYON".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-PLASTIC_BIOPLASTIC", label: "Plastic Bioplastic".freeze, prefLabel: "PLASTIC_BIOPLASTIC".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-PLASTIC_OTHER", label: "Plastic Other".freeze, prefLabel: "PLASTIC_OTHER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-PLASTIC_THERMOPLASTICS", label: "Plastic Thermoplastics".freeze, prefLabel: "PLASTIC_THERMOPLASTICS".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_CELLULOSE_ACETATE", label: "Polymer Cellulose Acetate".freeze, prefLabel: "POLYMER_CELLULOSE_ACETATE".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_EPOXY", label: "Polymer Epoxy".freeze, prefLabel: "POLYMER_EPOXY".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_EVA", label: "Polymer Eva".freeze, prefLabel: "POLYMER_EVA".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_EVOH", label: "Polymer EVOH".freeze, prefLabel: "POLYMER_EVOH".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_HDPE", label: "Polymer HDPE".freeze, prefLabel: "POLYMER_HDPE".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_LDPE", label: "Polymer LDPE".freeze, prefLabel: "POLYMER_LDPE".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_LLDPE", label: "Polymer LLDPE".freeze, prefLabel: "POLYMER_LLDPE".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_MDPE", label: "Polymer MDPE".freeze, prefLabel: "POLYMER_MDPE".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_NYLON", label: "Polymer Nylon".freeze, prefLabel: "POLYMER_NYLON".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_OTHER", label: "Polymer Other".freeze, prefLabel: "POLYMER_OTHER".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PAN", label: "Polymer PAN".freeze, prefLabel: "POLYMER_PAN".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PC", label: "Polymer PC".freeze, prefLabel: "POLYMER_PC".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PCL", label: "Polymer PCL".freeze, prefLabel: "POLYMER_PCL".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PE", label: "Polymer PE".freeze, prefLabel: "POLYMER_PE".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PEN", label: "Polymer PEN".freeze, prefLabel: "POLYMER_PEN".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PET", label: "Polymer PET".freeze, prefLabel: "POLYMER_PET".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PHA", label: "Polymer PHA".freeze, prefLabel: "POLYMER_PHA".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PLA", label: "Polymer PLA".freeze, prefLabel: "POLYMER_PLA".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PP", label: "Polymer PP".freeze, prefLabel: "POLYMER_PP".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PS", label: "Polymer PS".freeze, prefLabel: "POLYMER_PS".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PU", label: "Polymer PU".freeze, prefLabel: "POLYMER_PU".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PVA", label: "Polymer PVA".freeze, prefLabel: "POLYMER_PVA".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PVC", label: "Polymer PVC".freeze, prefLabel: "POLYMER_PVC".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_PVDC", label: "Polymer PVDC".freeze, prefLabel: "POLYMER_PVDC".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :"PackagingMaterialTypeCode-POLYMER_TPS", label: "Polymer TPS".freeze, prefLabel: "POLYMER_TPS".freeze, - type: "gs1:PackagingMaterialTypeCode".freeze + type: "http://gs1.org/voc/PackagingMaterialTypeCode".freeze term :PackagingRecyclingProcessTypeCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PackagingRecyclingProcessTypeCode&release=1".freeze, label: "Packaging Recycling Process Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PackagingRecyclingProcessTypeCode-COMPOSTABLE", comment: "Packaging that can biodegrade generating a relatively homogeneous and stable humus-like substance.".freeze, label: "Compostable".freeze, prefLabel: "COMPOSTABLE".freeze, - type: "gs1:PackagingRecyclingProcessTypeCode".freeze + type: "http://gs1.org/voc/PackagingRecyclingProcessTypeCode".freeze term :"PackagingRecyclingProcessTypeCode-ENERGY_RECOVERABLE", comment: "Packaging which allows for a net calorific gain in energy recovery operations.".freeze, label: "Energy Recoverable".freeze, prefLabel: "ENERGY_RECOVERABLE".freeze, - type: "gs1:PackagingRecyclingProcessTypeCode".freeze + type: "http://gs1.org/voc/PackagingRecyclingProcessTypeCode".freeze term :"PackagingRecyclingProcessTypeCode-RECYCLABLE", comment: "Packaging material and format which can be diverted from the waste stream through available processes and programmes and can be collected, processed and returned to use in the form of raw materials or products.".freeze, label: "Recyclable".freeze, prefLabel: "RECYCLABLE".freeze, - type: "gs1:PackagingRecyclingProcessTypeCode".freeze + type: "http://gs1.org/voc/PackagingRecyclingProcessTypeCode".freeze term :"PackagingRecyclingProcessTypeCode-REUSABLE", comment: "Packaging that has been conceived and designed to accomplished within its life cycle a certain number of trips, rotations or uses for the same purpose for which it was conceived.".freeze, label: "Reusable".freeze, prefLabel: "REUSABLE".freeze, - type: "gs1:PackagingRecyclingProcessTypeCode".freeze + type: "http://gs1.org/voc/PackagingRecyclingProcessTypeCode".freeze term :PackagingRecyclingSchemeCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PackagingRecyclingSchemeCode&release=1".freeze, label: "Packaging Recycling Scheme Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PackagingRecyclingSchemeCode-ALKO", comment: "Alko inc. is an independent, entirely State-owned company. Alko is administered and supervised by the Ministry of Social Affairs and Health. They have own recycling system for alcohol products bottles called Alko. This is a recycling system used in Finland".freeze, label: "Alko Inc".freeze, prefLabel: "ALKO".freeze, - type: "gs1:PackagingRecyclingSchemeCode".freeze + type: "http://gs1.org/voc/PackagingRecyclingSchemeCode".freeze term :"PackagingRecyclingSchemeCode-A_PULLO", comment: "PALPA stands for Suomen Palautuspakkaus Oy. PALPA administers the recycling of beverage containers and promotes recycling in Finland. A-pullo is one of the recycling systems PALPA is admnister. This is a recycling system used in Finland.".freeze, label: "A Pullo".freeze, prefLabel: "A_PULLO".freeze, - type: "gs1:PackagingRecyclingSchemeCode".freeze + type: "http://gs1.org/voc/PackagingRecyclingSchemeCode".freeze term :"PackagingRecyclingSchemeCode-EKO_PULLO", comment: "PALPA Standas for Suomen Palautuspakkaus Oy. PALPA administers the recycling of beverage containes and promotes recycling in Finland. EKO-pullo is one of the recycling systems PALPA is administer. This is a recycling system used in Finland.".freeze, label: "EKO Pullo".freeze, prefLabel: "EKO_PULLO".freeze, - type: "gs1:PackagingRecyclingSchemeCode".freeze + type: "http://gs1.org/voc/PackagingRecyclingSchemeCode".freeze term :"PackagingRecyclingSchemeCode-PALPA", comment: "PALPA stands for Suomen Palautuspakkaus Oy. PALPA administers the recycling of beverage containers and promotes recycling in Finland. PALPA is on of the recycling systems PALPA is administer. This is a recycling system used in Finland.".freeze, label: "PALPA".freeze, prefLabel: "PALPA".freeze, - type: "gs1:PackagingRecyclingSchemeCode".freeze + type: "http://gs1.org/voc/PackagingRecyclingSchemeCode".freeze term :PackagingShapeCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PackagingShapeCode&release=1".freeze, label: "Packaging Shape Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PackagingShapeCode-BAR", comment: "A relatively long, evenly shaped piece of some solid substance".freeze, label: "Bar".freeze, prefLabel: "BAR".freeze, - type: "gs1:PackagingShapeCode".freeze + type: "http://gs1.org/voc/PackagingShapeCode".freeze term :"PackagingShapeCode-COIL", comment: "A spiral structure made by winding a material into a series of loops. A coil may or may not have a spindle around which the loops are formed.".freeze, label: "Coil".freeze, prefLabel: "COIL".freeze, - type: "gs1:PackagingShapeCode".freeze + type: "http://gs1.org/voc/PackagingShapeCode".freeze term :"PackagingShapeCode-CONE", comment: "A cone is a three-dimensional geometric shape that tapers smoothly from a flat, round base to a point.".freeze, label: "Cone".freeze, prefLabel: "CONE".freeze, - type: "gs1:PackagingShapeCode".freeze + type: "http://gs1.org/voc/PackagingShapeCode".freeze term :"PackagingShapeCode-CYLINDRICAL", comment: "A long shape that has a circular base and an equally-sized circular top.".freeze, label: "Cylindrical".freeze, prefLabel: "CYLINDRICAL".freeze, - type: "gs1:PackagingShapeCode".freeze + type: "http://gs1.org/voc/PackagingShapeCode".freeze term :"PackagingShapeCode-POLYGON", comment: "A plane figure that is bounded by a closed path or circuit composed of a finite sequence of equally-sized straight line segments. A polygon may have a varying number of segments or ‘faces’ resulting in different configurations, for example a 5-faced polygon: pentagon, 6-faced: hexagon, 8-faced: octagon, 12-faced: dodecahedron, etc.".freeze, label: "Polygon".freeze, prefLabel: "POLYGON".freeze, - type: "gs1:PackagingShapeCode".freeze + type: "http://gs1.org/voc/PackagingShapeCode".freeze term :"PackagingShapeCode-RECTANGULAR", comment: "A closed planar quadrilateral with four right angles.".freeze, label: "Rectangular".freeze, prefLabel: "RECTANGULAR".freeze, - type: "gs1:PackagingShapeCode".freeze + type: "http://gs1.org/voc/PackagingShapeCode".freeze term :"PackagingShapeCode-SPHERICAL", comment: "A perfectly round geometrical object in three-dimensional space, such as the shape of a round ball. Like a circle in two dimensions, a perfect sphere is completely symmetrical around its centre, with all points on the surface lying the same distance from the centre point.".freeze, label: "Spherical".freeze, prefLabel: "SPHERICAL".freeze, - type: "gs1:PackagingShapeCode".freeze + type: "http://gs1.org/voc/PackagingShapeCode".freeze term :"PackagingShapeCode-TABLET", comment: "The result of different materials being compressed into a solid block usually of small dimensions.".freeze, label: "Tablet".freeze, prefLabel: "TABLET".freeze, - type: "gs1:PackagingShapeCode".freeze + type: "http://gs1.org/voc/PackagingShapeCode".freeze term :"PackagingShapeCode-UNSPECIFIED", comment: "Shape is not currently specified in the list. To be used as a temporary means until a specific missing value is added to the list.".freeze, label: "Unspecified".freeze, prefLabel: "UNSPECIFIED".freeze, - type: "gs1:PackagingShapeCode".freeze + type: "http://gs1.org/voc/PackagingShapeCode".freeze term :PaymentMethod, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PaymentMethod&release=1".freeze, label: "Payment Method Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PaymentMethod-BANKERS_DRAFT", comment: "Issue of a banker's draft in payment of the funds.".freeze, label: "Bankers Draft".freeze, prefLabel: "BANKERS_DRAFT".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-BANK_CHEQUE", comment: "Payment by a pre-printed form, which has been completed by a financial institution, on which instructions are given to an account holder (a bank or building society) to pay a stated sum to a named recipient.".freeze, label: "Bank Cheque".freeze, prefLabel: "BANK_CHEQUE".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-BANK_GIRO", comment: "The payment was originally made by bankgiro.".freeze, label: "Bank Giro".freeze, prefLabel: "BANK_GIRO".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-BOOKENTRY_CREDIT", comment: "house credit.".freeze, label: "Book Entry Credit".freeze, prefLabel: "BOOKENTRY_CREDIT".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-BOOKENTRY_DEBIT", comment: "house debit.".freeze, label: "Book Entry Debit".freeze, prefLabel: "BOOKENTRY_DEBIT".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-BOP", label: "BOP".freeze, prefLabel: "BOP".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-CASH", comment: "Payment by currency (including bills and coins) in circulation, including checking account deposits.".freeze, label: "Cash".freeze, prefLabel: "CASH".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-CERTIFIED_CHEQUE", comment: "Payment by a pre-printed form stamped with the paying bank's certification on which instructions are given to an account holder (a bank or building society) to pay a stated sum to a named recipient .".freeze, label: "Certified Cheque".freeze, prefLabel: "CERTIFIED_CHEQUE".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-CHEQUE", comment: "Payment by a pre-printed form on which instructions are given to an account holder (a bank or building society) to pay a stated sum to a named recipient.".freeze, label: "Cheque".freeze, prefLabel: "CHEQUE".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-CREDIT_CARD", comment: "Payment by means of a card issued by a bank or other financial institution.".freeze, label: "Credit Card".freeze, prefLabel: "CREDIT_CARD".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-DEBIT_CARD", comment: "The amount is to be, or has been, directly debited to the customer's bank account through a bank card.".freeze, label: "Debit Card".freeze, prefLabel: "DEBIT_CARD".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-ELECTRONIC_CREDIT_ACH", comment: "A credit transaction made through the automated clearing house system".freeze, label: "Electronic Credit ACH".freeze, prefLabel: "ELECTRONIC_CREDIT_ACH".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-ELECTRONIC_DEBIT_ACH", comment: "A debit transaction made through the automated clearing house system.".freeze, label: "Electronic Debit ACH".freeze, prefLabel: "ELECTRONIC_DEBIT_ACH".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-FED_WIRE_NON_REPETITIVE", comment: "Fedwire is a real time gross settlement funds transfer system operated by the Federal Reserve Banks that enables financial institutions to electronically transfer funds between its participants.".freeze, label: "Fedwire Non-repetitive".freeze, prefLabel: "FED_WIRE_NON_REPETITIVE".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-FED_WIRE_REPETITIVE", comment: "Repetitive Fedwire is a real time gross settlement funds transfer system operated by the Federal Reserve Banks that enables financial institutions to electronically transfer funds between its participants. Repetitive wire transfers are sent by the same party to the same recipient through the same financial institution with the same wiring instructions ".freeze, label: "Fedwire Repetitive".freeze, prefLabel: "FED_WIRE_REPETITIVE".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-INTERNATIONAL_WIRE", label: "International Wire".freeze, prefLabel: "INTERNATIONAL_WIRE".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-LETTER_OF_CREDIT", comment: "The financial operation is a letter of credit.".freeze, label: "Letter of Credit".freeze, prefLabel: "LETTER_OF_CREDIT".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-POSTGIRO", comment: "The financial operation has been done by postgiro.".freeze, label: "Postgiro".freeze, prefLabel: "POSTGIRO".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-WIRE_TRANSFER_CREDIT", label: "Wire Transfer Credit".freeze, prefLabel: "WIRE_TRANSFER_CREDIT".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :"PaymentMethod-WIRE_TRANSFER_DEBIT", label: "Wire Transfer Debit".freeze, prefLabel: "WIRE_TRANSFER_DEBIT".freeze, - type: "gs1:PaymentMethod".freeze + type: "http://gs1.org/voc/PaymentMethod".freeze term :PreparationTypeCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PreparationTypeCode&release=1".freeze, label: "Preparation Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PreparationTypeCode-AS_DRAINED", comment: "The state of the product after it has been separated from any liquid within the package. For example, a can of apricots in syrup would have a different nutritional composition if the apricots are consumed with the syrup rather than if the syrup is drained before consuming the apricots (because of the high sugar and energy content of the syrup).".freeze, label: "As Drained".freeze, prefLabel: "AS_DRAINED".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-BAKE", comment: "Cooking food in an oven by dry heat applied evenly throughout the oven".freeze, label: "Bake".freeze, prefLabel: "BAKE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-BARBECUE", comment: "Method of cooking meat with the heat and hot gasses of a fire".freeze, label: "Barbecue".freeze, prefLabel: "BARBECUE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-BLANCH", comment: "Food preparation wherein the food substance is rapidly plunged into boiling water and then removed after a brief, timed interval and then plunged into iced water or placed under cold running water".freeze, label: "Blanch".freeze, prefLabel: "BLANCH".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-BLIND_BAKE", comment: "Baking a pie crust or other pastry without the filling".freeze, label: "Blind Bake".freeze, prefLabel: "BLIND_BAKE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-BOIL", comment: "Cooking food in boiling water, or other water-based liquid such as stock or milk".freeze, label: "Boil".freeze, prefLabel: "BOIL".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-BRAISE", comment: "Cooking with moist heat, typically in a covered pot with a small amount of liquid".freeze, label: "Braise".freeze, prefLabel: "BRAISE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-BROIL", comment: "Cooking food with high heat with the heat applied directly to the food, most commonly from above. Heat transfer to the food is primarily via radiant heat".freeze, label: "Broil".freeze, prefLabel: "BROIL".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-DEEP_FRY", comment: "Cooking method whereby food is submerged in hot oil or fat.".freeze, label: "Deep Fry".freeze, prefLabel: "DEEP_FRY".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-DOUBLE_STEAM", comment: "Cooking technique to prepare delicate food such as bird nests, shark fins etc. The food is covered with water and put in a covered ceramic jar".freeze, label: "Double Steam".freeze, prefLabel: "DOUBLE_STEAM".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-FREEZE", comment: "Convert the product from room temperature to a frozen state.Simple".freeze, label: "Freeze".freeze, prefLabel: "FREEZE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-FRY", comment: "Cooking of food in fat.".freeze, label: "Fry".freeze, prefLabel: "FRY".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-GRIDDLE_FRY", comment: "Form of cooking where the food is fried with its own fat.".freeze, label: "Griddle Fry".freeze, prefLabel: "GRIDDLE_FRY".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-GRILL", comment: "Form of cooking that involves direct heat. The definition varies widely by region and culture".freeze, label: "Grill".freeze, prefLabel: "GRILL".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-HEAT_AND_SERVE", comment: "Prepare the item by simply heating or warming to a desired temperature or visual state prior to serving".freeze, label: "Heat and Serve".freeze, prefLabel: "HEAT_AND_SERVE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-MICROWAVE", comment: "Cooking food by employing microwave radiation".freeze, label: "Microwave".freeze, prefLabel: "MICROWAVE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-PAN_FRY", comment: "Form of frying characterised by the use of less cooking oil than deep frying".freeze, label: "Pan Fry".freeze, prefLabel: "PAN_FRY".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-POACH", comment: "Cooking food by gently simmering food in liquid, generally water, stock or wine".freeze, label: "Poach".freeze, prefLabel: "POACH".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-PREPARED", comment: "The state of the product after preparation (e.g. after adding milk or water).".freeze, label: "Prepared".freeze, prefLabel: "PREPARED".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-PRESSURE_COOK", comment: "Method of cooking in a sealed vessel that does not permit air or liquids to escape below a preset pressure".freeze, label: "Pressure Cook".freeze, prefLabel: "PRESSURE_COOK".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-PRESSURE_FRY", comment: "Meat and cooking oil are brought to high temperatures while pressure is held high enough that the water within is prevented from boiling off".freeze, label: "Pressure Fry".freeze, prefLabel: "PRESSURE_FRY".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-READY_TO_DRINK", comment: "No Preparation. The product is ready for use after being taken out of the packaging (if packaging exists) without the need of any further action prior to consumption or use".freeze, label: "Ready To Drink".freeze, prefLabel: "READY_TO_DRINK".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-READY_TO_EAT", comment: "Besides unpacking no additional preparation required.".freeze, label: "Ready To Eat".freeze, prefLabel: "READY_TO_EAT".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-RECONSTITUTE", comment: "Restore a dry or concentrated food to its original strength or consistency by adding water.".freeze, label: "Reconstitute".freeze, prefLabel: "RECONSTITUTE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-REFRIGERATE", comment: "Convert the product from room temperature to a chilled state.".freeze, label: "Refrigerate".freeze, prefLabel: "REFRIGERATE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-ROAST", comment: "Cooking method that uses dry heat, whether an open flame, oven, or other heat source.".freeze, label: "Roast.".freeze, prefLabel: "ROAST".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-ROTISSERIE", comment: "Style of roasting where meat is skewered on a spit and revolves over a flame".freeze, label: "Rotisserie".freeze, prefLabel: "ROTISSERIE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-SAUTE", comment: "Cooking food using a small amount of fat in a shallow pan over relatively high heat".freeze, label: "Saute".freeze, prefLabel: "SAUTE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-SEAR", comment: "Technique used in grilling, roasting, braising, sautéing, etc. That cooks the surface of the food (usually meat, poultry or fish) at high temperature so that a caramelised crust forms".freeze, label: "Sear".freeze, prefLabel: "SEAR".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-SIMMER", comment: "Cook food by heating it in water kept just below the boiling point (same as coddling)".freeze, label: "Simmer".freeze, prefLabel: "SIMMER".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-SMOKE", comment: "Process of curing, cooking, or seasoning food by exposing it for long periods of time to the smoke from a wood fire".freeze, label: "Smoke".freeze, prefLabel: "SMOKE".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-STEAM", comment: "Cooking by first boiling the water so it will evaporate into steam, then the steam will carry heat to the food, thus achieving heating the food".freeze, label: "Steam".freeze, prefLabel: "STEAM".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-STEW", comment: "Preparing meat cut into smaller pieces or cubes by simmering it in liquid, usually together with vegetables".freeze, label: "Stew".freeze, prefLabel: "STEW".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-STIR_FRY", comment: "Chinese cooking technique used because of its fast cooking speed".freeze, label: "Stir Fry".freeze, prefLabel: "STIR_FRY".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-THAW", comment: "Convert the product from a frozen state to a chilled or room temperature state.".freeze, label: "Thaw".freeze, prefLabel: "THAW".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-UNPREPARED", comment: "The initial state of the product.".freeze, label: "Unprepared".freeze, prefLabel: "UNPREPARED".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :"PreparationTypeCode-UNSPECIFIED", comment: "Unknown, not applicable".freeze, label: "Unknown".freeze, prefLabel: "UNSPECIFIED".freeze, - type: "gs1:PreparationTypeCode".freeze + type: "http://gs1.org/voc/PreparationTypeCode".freeze term :PreservationTechniqueCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:PreservationTechniqueTypeCode&release=1".freeze, label: "Preservation Technique Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"PreservationTechniqueCode-ACIDIFICATION", comment: "Dropping pH of food".freeze, label: "Acidification".freeze, prefLabel: "ACIDIFICATION".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-ALCOHOL_CURING", comment: "Treatment of food by adding alcohol in order to preserve the product".freeze, label: "Alcohol Curing".freeze, prefLabel: "ALCOHOL_CURING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-ATTESTED_MILK", comment: "Raw Milk (without heat treatment)".freeze, label: "Attested Milk".freeze, prefLabel: "ATTESTED_MILK".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-BOILING", comment: "Cooking".freeze, label: "Cooking".freeze, prefLabel: "BOILING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-BRINING", comment: "Water saturating or strongly impregnating with salt".freeze, label: "Brining".freeze, prefLabel: "BRINING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-CANNING", comment: "Preserved in a sealed airtight container, usually made of tin-coated iron".freeze, label: "Canning".freeze, prefLabel: "CANNING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-COLD_SMOKE_CURING", comment: "To smoke the food at between 70 degrees to 90 degrees F.".freeze, label: "Cold Smoke Curing".freeze, prefLabel: "COLD_SMOKE_CURING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-CONSERVE", comment: "Keep from harm or damage".freeze, label: "Conserve".freeze, prefLabel: "CONSERVE".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-DEHYDRATION", comment: "To remove water from food".freeze, label: "Dehydration".freeze, prefLabel: "DEHYDRATION".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-DRYING", comment: "Making with moisture having evaporated, drained away".freeze, label: "Drying".freeze, prefLabel: "DRYING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-FERMENTATION", comment: "Any of a group of chemical reactions induced by living or nonliving ferments that split complex organic compounds into relatively simple substance".freeze, label: "Fermentation".freeze, prefLabel: "FERMENTATION".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-FREEZE_DRYING", comment: "Preserving food by freezing and then drying in a vacuum".freeze, label: "Freeze Drying".freeze, prefLabel: "FREEZE_DRYING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-FREEZING", comment: "Turning into ice or another solid by cold".freeze, label: "Freezing".freeze, prefLabel: "FREEZING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-HIGH_TEMPERATURE_TREATED_MILK", comment: "Legally also pasteurisation, MHD for longer (about 2 to 3 weeks), ESL-milk".freeze, label: "High Temperature Treated Milk".freeze, prefLabel: "HIGH_TEMPERATURE_TREATED_MILK".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-HOT_SMOKE_CURING", comment: "Hot-smoking partially or totally cooks the food by treating it at temperatures ranging from 100 degrees to 190 degrees F.".freeze, label: "Hot Smoke Curing".freeze, prefLabel: "HOT_SMOKE_CURING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-IONISATION", comment: "To convert into an ion or ions".freeze, label: "Ionisation".freeze, prefLabel: "IONISATION".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-IRRADIATION", comment: "Food irradiation is the process of exposing food to ionising radiation in order to disinfest, sterilise, or preserve food.".freeze, label: "Irradiation".freeze, prefLabel: "IRRADIATION".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-PASTEURISATION", comment: "Partially sterilisation by heating".freeze, label: "Pasteurisation".freeze, prefLabel: "PASTEURISATION".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-QUICK_FREEZING", comment: "Freezing (food) rapidly so as to preserve its qualities".freeze, label: "Quick Freezing".freeze, prefLabel: "QUICK_FREEZING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-SALT_CURING", comment: "Preserving by using a salt brine".freeze, label: "Salt Curing".freeze, prefLabel: "SALT_CURING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-SOUS_VIDE", comment: "Low temperature long time cooking under vacuum".freeze, label: "Sous Vide".freeze, prefLabel: "SOUS_VIDE".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-STERILISATION", comment: "A process that effectively kills or eliminates transmissibleagents (such as fungi, bacteria, viruses, spore forms, etc.).".freeze, label: "Sterilisation".freeze, prefLabel: "STERILISATION".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-SUGAR_CURING", comment: "Treatment of food by adding sugar in order to preserve the product".freeze, label: "Sugar Curing".freeze, prefLabel: "SUGAR_CURING".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-ULTRA_HIGH_TEMPERATURE", comment: "Ultra heat treated (especially for milk)".freeze, label: "Ultra High Temperature".freeze, prefLabel: "ULTRA_HIGH_TEMPERATURE".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-UNDER_MODIFIED_ATMOSPHERE", comment: "Packed with a gas with protective proprieties".freeze, label: "Under Modified Atmosphere".freeze, prefLabel: "UNDER_MODIFIED_ATMOSPHERE".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :"PreservationTechniqueCode-VACUUM_PACKED", comment: "Sealed after the partial removal of air".freeze, label: "Vacuum Packed".freeze, prefLabel: "VACUUM_PACKED".freeze, - type: "gs1:PreservationTechniqueCode".freeze + type: "http://gs1.org/voc/PreservationTechniqueCode".freeze term :ProductYieldTypeCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:ProductYieldTypeCode&release=1".freeze, label: "Product Yield Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"ProductYieldTypeCode-AFTER_COOKING", comment: "Weight or volume of food product after it has been prepared.".freeze, label: "After Cooking".freeze, prefLabel: "AFTER_COOKING".freeze, - type: "gs1:ProductYieldTypeCode".freeze + type: "http://gs1.org/voc/ProductYieldTypeCode".freeze term :"ProductYieldTypeCode-AFTER_DILUTION", comment: "Volume of food product after a fluid has been added.".freeze, label: "After Dilution".freeze, prefLabel: "AFTER_DILUTION".freeze, - type: "gs1:ProductYieldTypeCode".freeze + type: "http://gs1.org/voc/ProductYieldTypeCode".freeze term :"ProductYieldTypeCode-DRAINED_WEIGHT", comment: "Weight of food product after the fluid in which the food product was preserved has been removed.".freeze, label: "Drained Weight".freeze, prefLabel: "DRAINED_WEIGHT".freeze, - type: "gs1:ProductYieldTypeCode".freeze + type: "http://gs1.org/voc/ProductYieldTypeCode".freeze term :"ProductYieldTypeCode-UNSPECIFIED", comment: "Product yield type is unknown or irrelevant".freeze, label: "Unspecified".freeze, prefLabel: "UNSPECIFIED".freeze, - type: "gs1:ProductYieldTypeCode".freeze + type: "http://gs1.org/voc/ProductYieldTypeCode".freeze term :ReferencedFileTypeCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:ReferencedFileTypeCode&release=1".freeze, label: "Referenced File Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"ReferencedFileTypeCode-DIET_CERTIFICATE", comment: "Link to a website or file containing a diet certificate granted to the product.".freeze, label: "Diet Certificate".freeze, prefLabel: "DIET_CERTIFICATE".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-DOCUMENT", comment: "Link to a document or text file containing product information. Examples of this type could be an instruction manual, assembly guide, or warranty document.".freeze, label: "Document".freeze, prefLabel: "DOCUMENT".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-GROUP_CHARACTERISTIC_SHEET", label: "Group Characteristics Sheet".freeze, prefLabel: "GROUP_CHARACTERISTIC_SHEET".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-LOGO", comment: "Link to a file containing the Manufacturer or Brand Logo(s) associated with the product.".freeze, label: "Logo".freeze, prefLabel: "LOGO".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-MARKETING_INFORMATION", comment: "Link to a file with product information associated with selling a product or service.".freeze, label: "Marketing Information".freeze, prefLabel: "MARKETING_INFORMATION".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-OUT_OF_PACKAGE_IMAGE", comment: "Link to an image of an item out of its packaging and, if necessary, assembled ready for use by the end user. This type of file is subject the current version of the GDSN Product Image Specification Standard.".freeze, label: "Out of Package Image".freeze, prefLabel: "OUT_OF_PACKAGE_IMAGE".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-PLANOGRAM", comment: "Link to a file illustrating how and where retail products should be displayed.".freeze, label: "Planogram".freeze, prefLabel: "PLANOGRAM".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-PRODUCT_LABEL_IMAGE", comment: "Link to a file containing a visual representation of the product label.".freeze, label: "Product Label Image".freeze, prefLabel: "PRODUCT_LABEL_IMAGE".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-SAFETY_DATA_SHEET", comment: "Link to a file containing the product's Safety Data Sheet (SDS). This file can be either an image or a document".freeze, label: "Safety Data Sheet".freeze, prefLabel: "SAFETY_DATA_SHEET".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-SAFETY_SUMMARY_SHEET", comment: "A link to a summary sheet document that is available to workers to understand how to deal with chemicals in an emergency situation.".freeze, label: "Safety Summary Sheet".freeze, prefLabel: "SAFETY_SUMMARY_SHEET".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-TRADE_ITEM_DESCRIPTION", comment: "Identifies the reference to an external description of a product. The link (e.g. URL) to the external description. will be in the appropriate attribute".freeze, label: "Trade Item Description".freeze, prefLabel: "TRADE_ITEM_DESCRIPTION".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-VIDEO", comment: "Link to a file containing a video clip which is relevant to the product. Examples are commercials, trailers, or instructional/ how to use video files.".freeze, label: "Video".freeze, prefLabel: "VIDEO".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-WARRANTY_INFORMATION", comment: "Link to a file with information associated with any guarantee given by a company stating that a product is reliable and free from known defects and that the seller will, without charge, repair or replace defective parts within a given time limit and under certain conditions.".freeze, label: "Warranty Information".freeze, prefLabel: "WARRANTY_INFORMATION".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :"ReferencedFileTypeCode-WEBSITE", comment: "Link to a website containing product or manufacturer information.".freeze, label: "Website".freeze, prefLabel: "WEBSITE".freeze, - type: "gs1:ReferencedFileTypeCode".freeze + type: "http://gs1.org/voc/ReferencedFileTypeCode".freeze term :SeasonParameterCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:SeasonParameterCode&release=1".freeze, label: "Season Parameter Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"SeasonParameterCode-ALL_YEAR", comment: "All Year".freeze, label: "All Year".freeze, prefLabel: "ALL_YEAR".freeze, - type: "gs1:SeasonParameterCode".freeze + type: "http://gs1.org/voc/SeasonParameterCode".freeze term :"SeasonParameterCode-AUTUMN", comment: "For products that are seasonal in nature and apply to the Autumn selling season only".freeze, label: "Autumn".freeze, prefLabel: "AUTUMN".freeze, - type: "gs1:SeasonParameterCode".freeze + type: "http://gs1.org/voc/SeasonParameterCode".freeze term :"SeasonParameterCode-AUTUMN_WINTER", comment: "For products that are seasonal in nature and apply to both the Autumn and Winter selling seasons".freeze, label: "Autumn and Winter".freeze, prefLabel: "AUTUMN_WINTER".freeze, - type: "gs1:SeasonParameterCode".freeze + type: "http://gs1.org/voc/SeasonParameterCode".freeze term :"SeasonParameterCode-SPRING", comment: "For products that are seasonal in nature and apply to the Spring selling season only".freeze, label: "Spring".freeze, prefLabel: "SPRING".freeze, - type: "gs1:SeasonParameterCode".freeze + type: "http://gs1.org/voc/SeasonParameterCode".freeze term :"SeasonParameterCode-SPRING_SUMMER", comment: "For products that are seasonal in nature and apply to both the Spring and Summer selling seasons".freeze, label: "Spring and Summer".freeze, prefLabel: "SPRING_SUMMER".freeze, - type: "gs1:SeasonParameterCode".freeze + type: "http://gs1.org/voc/SeasonParameterCode".freeze term :"SeasonParameterCode-SUMMER", comment: "For products that are seasonal in nature and apply to the Summer selling season only".freeze, label: "Summer".freeze, prefLabel: "SUMMER".freeze, - type: "gs1:SeasonParameterCode".freeze + type: "http://gs1.org/voc/SeasonParameterCode".freeze term :"SeasonParameterCode-WINTER", comment: "For products that are seasonal in nature and apply to the Winter selling season only".freeze, label: "Winter".freeze, prefLabel: "WINTER".freeze, - type: "gs1:SeasonParameterCode".freeze + type: "http://gs1.org/voc/SeasonParameterCode".freeze term :SharpnessOfCheeseCode, isDefinedBy: "http://vocab.gs1.org/SharpnessOfCheeseCode".freeze, label: "Sharpness of Cheese Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"SharpnessOfCheeseCode-EXTRA_EXTRA_SHARP", label: "Extra Extra Sharp".freeze, prefLabel: "EXTRA_EXTRA_SHARP".freeze, - type: "gs1:SharpnessOfCheeseCode".freeze + type: "http://gs1.org/voc/SharpnessOfCheeseCode".freeze term :"SharpnessOfCheeseCode-EXTRA_SHARP", label: "Extra Sharp".freeze, prefLabel: "EXTRA_SHARP".freeze, - type: "gs1:SharpnessOfCheeseCode".freeze + type: "http://gs1.org/voc/SharpnessOfCheeseCode".freeze term :"SharpnessOfCheeseCode-MILD", label: "Mild".freeze, prefLabel: "MILD".freeze, - type: "gs1:SharpnessOfCheeseCode".freeze + type: "http://gs1.org/voc/SharpnessOfCheeseCode".freeze term :"SharpnessOfCheeseCode-REGULAR", label: "Regular".freeze, prefLabel: "REGULAR".freeze, - type: "gs1:SharpnessOfCheeseCode".freeze + type: "http://gs1.org/voc/SharpnessOfCheeseCode".freeze term :"SharpnessOfCheeseCode-SHARP", label: "Sharp".freeze, prefLabel: "SHARP".freeze, - type: "gs1:SharpnessOfCheeseCode".freeze + type: "http://gs1.org/voc/SharpnessOfCheeseCode".freeze term :"SharpnessOfCheeseCode-UNCLASSIFIED", label: "Unclassified".freeze, prefLabel: "UNCLASSIFIED".freeze, - type: "gs1:SharpnessOfCheeseCode".freeze + type: "http://gs1.org/voc/SharpnessOfCheeseCode".freeze term :SizeGroupCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:SizeGroupCode&release=1".freeze, label: "Size Group Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"SizeGroupCode-BOYS", label: "Boys".freeze, prefLabel: "BOYS".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-GIRLS", label: "Girls".freeze, prefLabel: "GIRLS".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-INFANTS", label: "Infants".freeze, prefLabel: "INFANTS".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-JUNIORS", label: "Juniors".freeze, prefLabel: "JUNIORS".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-MATERNITY", label: "Maternity".freeze, prefLabel: "MATERNITY".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-MENS", label: "Mens".freeze, prefLabel: "MENS".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-MENS_TALL", label: "Mens Tall".freeze, prefLabel: "MENS_TALL".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-MISSES", label: "Misses".freeze, prefLabel: "MISSES".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-PETITE", label: "Petite".freeze, prefLabel: "PETITE".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-WOMENS", label: "Womens".freeze, prefLabel: "WOMENS".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :"SizeGroupCode-WOMENS_TALL", label: "Womens Tall".freeze, prefLabel: "WOMENS_TALL".freeze, - type: "gs1:SizeGroupCode".freeze + type: "http://gs1.org/voc/SizeGroupCode".freeze term :SizeSystemCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:SizeSystemCode&release=1".freeze, label: "Size System Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"SizeSystemCode-AUSTRALIA", label: "Australia".freeze, prefLabel: "AUSTRALIA".freeze, - type: "gs1:SizeSystemCode".freeze + type: "http://gs1.org/voc/SizeSystemCode".freeze term :"SizeSystemCode-CONTINENTAL", label: "Continental".freeze, prefLabel: "CONTINENTAL".freeze, - type: "gs1:SizeSystemCode".freeze + type: "http://gs1.org/voc/SizeSystemCode".freeze term :"SizeSystemCode-EUROPE", label: "Europe".freeze, prefLabel: "EUROPE".freeze, - type: "gs1:SizeSystemCode".freeze + type: "http://gs1.org/voc/SizeSystemCode".freeze term :"SizeSystemCode-JAPAN", label: "Japan".freeze, prefLabel: "JAPAN".freeze, - type: "gs1:SizeSystemCode".freeze + type: "http://gs1.org/voc/SizeSystemCode".freeze term :"SizeSystemCode-MEXICO", label: "Mexico".freeze, prefLabel: "MEXICO".freeze, - type: "gs1:SizeSystemCode".freeze + type: "http://gs1.org/voc/SizeSystemCode".freeze term :"SizeSystemCode-UK", label: "UK".freeze, prefLabel: "UK".freeze, - type: "gs1:SizeSystemCode".freeze + type: "http://gs1.org/voc/SizeSystemCode".freeze term :"SizeSystemCode-US", label: "US".freeze, prefLabel: "US".freeze, - type: "gs1:SizeSystemCode".freeze + type: "http://gs1.org/voc/SizeSystemCode".freeze term :SizeTypeCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:SizeTypeCode&release=1".freeze, label: "Size Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"SizeTypeCode-BACK", label: "Back".freeze, prefLabel: "BACK".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-CHEST_BUST", comment: "The measurement around the widest part of the chest/bust.".freeze, label: "Chest or Bust".freeze, prefLabel: "CHEST_BUST".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-COLLAR", label: "Collar".freeze, prefLabel: "COLLAR".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-CUP", label: "Cup".freeze, prefLabel: "CUP".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-HIPS", comment: "The measurement around the fullest part of the hips.".freeze, label: "Hips".freeze, prefLabel: "HIPS".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-INSEAM", label: "Inseam".freeze, prefLabel: "INSEAM".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-LENGTH", label: "Length".freeze, prefLabel: "LENGTH".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-ONE_DIMENSION", label: "One Dimension".freeze, prefLabel: "ONE_DIMENSION".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-OUTSIDE_LEG", comment: "The measurement of the outside leg seam. This is the distance from the waist to the bottom of the trousers.".freeze, label: "Outside Leg".freeze, prefLabel: "OUTSIDE_LEG".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-SLEEVE", label: "Sleeve".freeze, prefLabel: "SLEEVE".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-WAIST", label: "Waist".freeze, prefLabel: "WAIST".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :"SizeTypeCode-WIDTH", label: "Width".freeze, prefLabel: "WIDTH".freeze, - type: "gs1:SizeTypeCode".freeze + type: "http://gs1.org/voc/SizeTypeCode".freeze term :SourceAnimalCode, isDefinedBy: "http://apps.gs1.org/GDD/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:SourceAnimalCode&release=1".freeze, label: "Source Animal Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"SourceAnimalCode-ALLIGATOR", comment: "A crocodilian in the genus Alligator of the family Alligatoridae.".freeze, label: "Alligator".freeze, prefLabel: "ALLIGATOR".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-ASS", comment: "A domesticated member of the horse family.".freeze, label: "Ass".freeze, prefLabel: "ASS".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-BEAR", comment: "Mammals of the family Ursidae.".freeze, label: "Bear".freeze, prefLabel: "BEAR".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-BEEF_COW", comment: "Cattle raised principally for meat production, other uses include leather and products used in shampoo and cosmetics.".freeze, label: "Beef Cow".freeze, prefLabel: "BEEF_COW".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-BOAR", comment: "A wild relative of the domestic pig.".freeze, label: "Boar".freeze, prefLabel: "BOAR".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-BUFFALO", comment: "A large bovine animal, frequently used as livestock.".freeze, label: "Buffalo".freeze, prefLabel: "BUFFALO".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-CALF", comment: "A general term for a juvenile member of any species of domestic cattle which is intentionally raised to be processed at a young age.".freeze, label: "Calf".freeze, prefLabel: "CALF".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-CAMEL", comment: "Even-toed ungulates within the genus Camelus.".freeze, label: "Camel".freeze, prefLabel: "CAMEL".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-CHICKEN", comment: "A domesticated fowl.".freeze, label: "Chicken".freeze, prefLabel: "CHICKEN".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-COCKEREL", comment: "A male chicken.".freeze, label: "Cockerel".freeze, prefLabel: "COCKEREL".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-COW", comment: "A domesticated member of the subfamily Bovinae.".freeze, label: "Cow".freeze, prefLabel: "COW".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-CROCODILE", comment: "Any species belonging to the family Crocodylidae.".freeze, label: "Crocodile".freeze, prefLabel: "CROCODILE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-DEER", comment: "Ruminant mammals forming the family Cervidae.".freeze, label: "Deer".freeze, prefLabel: "DEER".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-DOG", comment: "A domesticated form of the Wolf, a member of the Canidae family of the order Carnivora.".freeze, label: "Dog".freeze, prefLabel: "DOG".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-DUCK", comment: "Aquatic birds, mostly smaller than the swans and geese, and may be found in both fresh water and sea water.".freeze, label: "Duck".freeze, prefLabel: "DUCK".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-DUCKLING", comment: "A young duck.".freeze, label: "Duckling".freeze, prefLabel: "DUCKLING".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-FISH", comment: "Fresh or sea water fish.".freeze, label: "Fish".freeze, prefLabel: "FISH".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-FOWL", comment: "Non-domesticated birds in general but usually refers to birds belonging to one of two biological orders, namely the gamefowl or landfowl and the waterfowl.".freeze, label: "Fowl".freeze, prefLabel: "FOWL".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-FROG", comment: "Amphibians in the order Anura.".freeze, label: "Frog".freeze, prefLabel: "FROG".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-GOAT", comment: "A member of the Bovidae family and is closely related to the sheep.".freeze, label: "Goat".freeze, prefLabel: "GOAT".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-GOOSE", comment: "A bird belonging to the family Anatidae".freeze, label: "Goose".freeze, prefLabel: "GOOSE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-GROUSE", comment: "A group of birds from the order Galliformes.".freeze, label: "Grouse".freeze, prefLabel: "GROUSE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-GUINEAFOWL", comment: "A family of birds in the Galliformes order".freeze, label: "Guinea Fowl".freeze, prefLabel: "GUINEAFOWL".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-HARE", comment: "Leporidaes belonging to the genus Lepus.".freeze, label: "Hare".freeze, prefLabel: "HARE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-HORSE", comment: "a hoofed (ungulate) mammal, a subspecies of one of seven extant species of the family Equidae.".freeze, label: "Horse".freeze, prefLabel: "HORSE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-INVERTEBRATE", comment: "Fresh or sea water invertebrate.".freeze, label: "Invertebrate".freeze, prefLabel: "INVERTEBRATE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-LAMB", comment: "A young domestic sheep.".freeze, label: "Lamb".freeze, prefLabel: "LAMB".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-LAND_SNAIL", comment: "A member of the molluscan class Gastropoda that have coiled shells in the adult stage and live on land.".freeze, label: "Land Snail".freeze, prefLabel: "LAND_SNAIL".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-MILK_COW", comment: "Also referred to Milk Cattle, this cow is bred to produce large quantities of Milk, from which dairy products are made.".freeze, label: "Milk Cow".freeze, prefLabel: "MILK_COW".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-MOOSE", comment: "The largest extant species in the deer family.".freeze, label: "Moose".freeze, prefLabel: "MOOSE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-OSTRICH", comment: "Large flightless bird native to Africa.".freeze, label: "Ostrich".freeze, prefLabel: "OSTRICH".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-OTHER", comment: "Other animal not specified on this list.".freeze, label: "Other".freeze, prefLabel: "OTHER".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-PARTRIDGE", comment: "Medium-sized birds, intermediate between the larger pheasants and the smaller quails.".freeze, label: "Partridge".freeze, prefLabel: "PARTRIDGE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-PHEASANT", comment: "A bird in the subfamily of Phasianidae in the order Galliformes.".freeze, label: "Pheasant".freeze, prefLabel: "PHEASANT".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-PIGEON", comment: "A bird in the family Columbidae.".freeze, label: "Pigeon".freeze, prefLabel: "PIGEON".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-PORK", comment: "Meat from the domestic pig".freeze, label: "Pork".freeze, prefLabel: "PORK".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-POUSSIN", comment: "A young chicken, less than 28 days old at slaughter".freeze, label: "Poussin".freeze, prefLabel: "POUSSIN".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-QUAIL", comment: "Several genus of mid-sized birds in the pheasant family.".freeze, label: "Quail".freeze, prefLabel: "QUAIL".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-RABBIT", comment: "Small mammals in the family Leporidae of the order Lagomorpha".freeze, label: "Rabbit".freeze, prefLabel: "RABBIT".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-RAT", comment: "Rats are various medium-sized, long-tailed rodents of the superfamily Muroidea.".freeze, label: "Rat".freeze, prefLabel: "RAT".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-REINDEER", comment: "An Arctic and Subarctic-dwelling deer, widespread and numerous across the Arctic and Subarctic.".freeze, label: "Reindeer".freeze, prefLabel: "REINDEER".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-ROE_DEER", comment: "A deer species of Europe, Asia Minor, and Caspian coastal regions.".freeze, label: "Roe Deer".freeze, prefLabel: "ROE_DEER".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-SHEEP", comment: "Small ruminants, usually with a crimped hair called wool and often with horns forming a lateral spiral.".freeze, label: "Sheep".freeze, prefLabel: "SHEEP".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-SHELLFISH", comment: "A fresh or sea water animal, such as a mollusk or crustacean, that has a shell or shell-like exoskeleton.".freeze, label: "Shellfish".freeze, prefLabel: "SHELLFISH".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-SNAKE", comment: "Elongate legless carnivorous reptiles of the suborder Serpentes.".freeze, label: "Snake".freeze, prefLabel: "SNAKE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-SNIPE", comment: "Any of nearly 20 wading bird species in three genera in the family Scolopacidae.".freeze, label: "Snipe".freeze, prefLabel: "SNIPE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-SPARROW", comment: "Small passerine birds in the family Passeridae.".freeze, label: "Sparrow".freeze, prefLabel: "SPARROW".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-THRUSH", comment: "Plump, soft-plumaged, small to medium-sized passerine birds.".freeze, label: "Thrush".freeze, prefLabel: "THRUSH".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-TURKEY", comment: "A large bird in the genus Meleagris.".freeze, label: "Turkey".freeze, prefLabel: "TURKEY".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-TURTLE", comment: "Reptiles characterised by a special bony or cartilaginous shell developed from their ribs that acts as a shield.".freeze, label: "Turtle".freeze, prefLabel: "TURTLE".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-WOODCOCK", comment: "The woodcocks are a group of seven or eight very similar living species of wading birds in the genus Scolopax.".freeze, label: "Woodcock".freeze, prefLabel: "WOODCOCK".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :"SourceAnimalCode-YAK", comment: "A long-haired bovine found throughout the Himalayan region of south Central Asia, the Tibetan Plateau and as far north as Mongolia.".freeze, label: "Yak".freeze, prefLabel: "YAK".freeze, - type: "gs1:SourceAnimalCode".freeze + type: "http://gs1.org/voc/SourceAnimalCode".freeze term :SportingActivityTypeCode, label: "Sporting Activity Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"SportingActivityTypeCode-AMERICAN_FOOTBALL", label: "American Football".freeze, prefLabel: "AMERICAN_FOOTBALL".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-ARCHERY", label: "Archery".freeze, prefLabel: "ARCHERY".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-BADMINTON", label: "Badminton".freeze, prefLabel: "BADMINTON".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-BASEBALL", label: "Baseball".freeze, prefLabel: "BASEBALL".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-BASKETBALL", label: "Basketball".freeze, prefLabel: "BASKETBALL".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-BOXING", label: "Boxing".freeze, prefLabel: "BOXING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-CLIMBING", label: "Climbing".freeze, prefLabel: "CLIMBING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-CRICKET", label: "Cricket".freeze, prefLabel: "CRICKET".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-CYCLING", label: "Cycling".freeze, prefLabel: "CYCLING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-DIVING", label: "Diving".freeze, prefLabel: "DIVING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-EQUESTRIAN", label: "Equestrian".freeze, prefLabel: "EQUESTRIAN".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-FENCING", label: "Fencing".freeze, prefLabel: "FENCING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-FISHING", label: "Fishing".freeze, prefLabel: "FISHING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-FOOTBALL", label: "Football".freeze, prefLabel: "FOOTBALL".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-GOLF", label: "Golf".freeze, prefLabel: "GOLF".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-GYMNASTICS", label: "Gymnastics".freeze, prefLabel: "GYMNASTICS".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-HOCKEY", label: "Hockey".freeze, prefLabel: "HOCKEY".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-ICE_HOCKEY", label: "Ice Hockey".freeze, prefLabel: "ICE_HOCKEY".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-ICE_SKATING", label: "Ice Skating".freeze, prefLabel: "ICE_SKATING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-MOTOR_CYCLING", label: "Motor Cycling".freeze, prefLabel: "MOTOR_CYCLING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-RUGBY", label: "Rugby".freeze, prefLabel: "RUGBY".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-RUNNING", label: "Running".freeze, prefLabel: "RUNNING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-SKIING", label: "Skiing".freeze, prefLabel: "SKIING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-SQUASH", label: "Squash".freeze, prefLabel: "SQUASH".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-SURFING", label: "Surfing".freeze, prefLabel: "SURFING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-SWIMMING", label: "Swimming".freeze, prefLabel: "SWIMMING".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-TENNIS", label: "Tennis".freeze, prefLabel: "TENNIS".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-UNCLASSIFIED", label: "Unclassified".freeze, prefLabel: "UNCLASSIFIED".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :"SportingActivityTypeCode-UNIDENTIFIED", label: "Unidentified".freeze, prefLabel: "UNIDENTIFIED".freeze, - type: "gs1:SportingActivityTypeCode".freeze + type: "http://gs1.org/voc/SportingActivityTypeCode".freeze term :TargetConsumerGenderCode, isDefinedBy: "http://apps.gs1.org/GDD/bms/Version2_8/Pages/clDetails.aspx?semanticURN=urn:gs1:gdd:cl:TargetConsumerGenderList&release=1".freeze, label: "Target Consumer Gender Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"TargetConsumerGenderCode-FEMALE", label: "Female".freeze, prefLabel: "FEMALE".freeze, - type: "gs1:TargetConsumerGenderCode".freeze + type: "http://gs1.org/voc/TargetConsumerGenderCode".freeze term :"TargetConsumerGenderCode-MALE", label: "Male".freeze, prefLabel: "MALE".freeze, - type: "gs1:TargetConsumerGenderCode".freeze + type: "http://gs1.org/voc/TargetConsumerGenderCode".freeze term :"TargetConsumerGenderCode-UNISEX", label: "Unisex".freeze, prefLabel: "UNISEX".freeze, - type: "gs1:TargetConsumerGenderCode".freeze + type: "http://gs1.org/voc/TargetConsumerGenderCode".freeze term :UpperTypeCode, label: "Upper Type Code".freeze, - subClassOf: "gs1:TypeCode".freeze + subClassOf: "http://gs1.org/voc/TypeCode".freeze term :"UpperTypeCode-CLOSED_TOE_CLOSED_BACK_OPEN_INSTEP", label: "Closed Toe Closed Back Open Instep".freeze, prefLabel: "CLOSED_TOE_CLOSED_BACK_OPEN_INSTEP".freeze, - type: "gs1:UpperTypeCode".freeze + type: "http://gs1.org/voc/UpperTypeCode".freeze term :"UpperTypeCode-CLOSED_TOE_OPEN_BACK", label: "Closed Toe Open Back".freeze, prefLabel: "CLOSED_TOE_OPEN_BACK".freeze, - type: "gs1:UpperTypeCode".freeze + type: "http://gs1.org/voc/UpperTypeCode".freeze term :"UpperTypeCode-CLOSED_TOE_STRAP_BACK", label: "Closed Toe Strap Back".freeze, prefLabel: "CLOSED_TOE_STRAP_BACK".freeze, - type: "gs1:UpperTypeCode".freeze + type: "http://gs1.org/voc/UpperTypeCode".freeze term :"UpperTypeCode-FULLY_CLOSED", label: "Fully Closed".freeze, prefLabel: "FULLY_CLOSED".freeze, - type: "gs1:UpperTypeCode".freeze + type: "http://gs1.org/voc/UpperTypeCode".freeze term :"UpperTypeCode-OPEN_TOE_FULLY_CLOSED_BACK", label: "Open Toe Fully Closed Back".freeze, prefLabel: "OPEN_TOE_FULLY_CLOSED_BACK".freeze, - type: "gs1:UpperTypeCode".freeze + type: "http://gs1.org/voc/UpperTypeCode".freeze term :"UpperTypeCode-OPEN_TOE_OPEN_BACK", label: "Open Toe Open Back".freeze, prefLabel: "OPEN_TOE_OPEN_BACK".freeze, - type: "gs1:UpperTypeCode".freeze + type: "http://gs1.org/voc/UpperTypeCode".freeze term :"UpperTypeCode-OPEN_TOE_STRAP_BACK", label: "Open Toe Strap Back".freeze, prefLabel: "OPEN_TOE_STRAP_BACK".freeze, - type: "gs1:UpperTypeCode".freeze + type: "http://gs1.org/voc/UpperTypeCode".freeze term :"UpperTypeCode-UNCLASSIFIED", label: "Unclassified".freeze, prefLabel: "UNCLASSIFIED".freeze, - type: "gs1:UpperTypeCode".freeze + type: "http://gs1.org/voc/UpperTypeCode".freeze end end diff --git a/lib/rdf/vocab/ht.rb b/lib/rdf/vocab/ht.rb index 3183cd2..9abe1ba 100644 --- a/lib/rdf/vocab/ht.rb +++ b/lib/rdf/vocab/ht.rb @@ -3,411 +3,244 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2011/http# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # HTTP in RDF - # # - # # 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/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] - # attr_reader :Connection - # - # # An entity header in an HTTP message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EntityHeader - # - # # A general header in an HTTP message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeneralHeader - # - # # A part of a deconstructed header value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HeaderElement - # - # # A header name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HeaderName - # - # # An HTTP message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Message - # - # # A header in an HTTP message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MessageHeader - # - # # The HTTP method used for the request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Method - # - # # A parameter for a part of a header value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Parameter - # - # # An HTTP request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Request - # - # # A header in an HTTP request message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RequestHeader - # - # # An HTTP response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Response - # - # # A header in an HTTP response message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResponseHeader - # - # # The status code of an HTTP response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StatusCode - # - # # The absolute path sort of request URI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :absolutePath - # - # # The absolute request URI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :absoluteURI - # - # # The authority sort of request URI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :authority - # - # # The entity body of an HTTP message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :body - # - # # The authority of a connection used for the HTTP transfer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :connectionAuthority - # - # # The name of a header element. - # # @return [RDF::Vocabulary::Term] - # attr_reader :elementName - # - # # The value of a header element. - # # @return [RDF::Vocabulary::Term] - # attr_reader :elementValue - # - # # The name of an HTTP header field. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fieldName - # - # # The value of an HTTP header field. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fieldValue - # - # # The name of an HTTP header. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hdrName - # - # # The deconstructed parts of an HTTP header value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :headerElements - # - # # The headers in an HTTP message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :headers - # - # # The HTTP version of an HTTP message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :httpVersion - # - # # The HTTP method name used for the HTTP request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :methodName - # - # # The HTTP method used for the HTTP request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mthd - # - # # The name of a parameter in a part of a deconstructed HTTP header value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paramName - # - # # The value of a parameter in a part of a deconstructed HTTP header value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paramValue - # - # # The parameters in a part of a deconstructed HTTP header value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :params - # - # # The reason phrase (status text) of an HTTP response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reasonPhrase - # - # # The request URI of an HTTP request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :requestURI - # - # # The HTTP requests made via a connection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :requests - # - # # The HTTP response sent in answer to an HTTP request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resp - # - # # The status code of an HTTP response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sc - # - # # The status code number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :statusCodeNumber - # - # # The status code value of an HTTP response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :statusCodeValue - # - # end HT = Class.new(RDF::StrictVocabulary("http://www.w3.org/2011/http#")) do # Ontology definition ontology :"http://www.w3.org/2011/http#", comment: "A namespace for describing HTTP messages (http://www.w3.org/Protocols/rfc2616/rfc2616.html)".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://www.w3.org/TR/Content-in-RDF/".freeze, "http://www.w3.org/WAI/intro/earl".freeze], + "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/dc/terms/".freeze, "http://www.w3.org/2011/content#".freeze], + "http://www.w3.org/2002/07/owl#versionInfo": "Working Draft 29 April 2011".freeze, isDefinedBy: "http://www.w3.org/TR/HTTP-in-RDF/".freeze, label: "HTTP in RDF".freeze, - "owl:imports": ["cnt:".freeze, "dc:".freeze], - "owl:versionInfo": "Working Draft 29 April 2011".freeze, - "rdfs:seeAlso": ["http://www.w3.org/TR/Content-in-RDF/".freeze, "http://www.w3.org/WAI/intro/earl".freeze], - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Connection, comment: "A connection used for HTTP transfer.".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Connection".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :EntityHeader, comment: "An entity header in an HTTP message.".freeze, label: "Entity Header".freeze, - subClassOf: "ht:MessageHeader".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2011/http#MessageHeader".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :GeneralHeader, comment: "A general header in an HTTP message.".freeze, label: "General Header".freeze, - subClassOf: "ht:MessageHeader".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2011/http#MessageHeader".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :HeaderElement, comment: "A part of a deconstructed header value.".freeze, label: "Header Element".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :HeaderName, comment: "A header name.".freeze, label: "Header Name".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Message, comment: "An HTTP message.".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Message".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :MessageHeader, comment: "A header in an HTTP message.".freeze, label: "Message Header".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Method, comment: "The HTTP method used for the request.".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Method".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Parameter, comment: "A parameter for a part of a header value.".freeze, label: "Parameter".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Request, comment: "An HTTP request.".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Request".freeze, - subClassOf: "ht:Message".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2011/http#Message".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :RequestHeader, comment: "A header in an HTTP request message.".freeze, label: "Request Header".freeze, - subClassOf: "ht:MessageHeader".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2011/http#MessageHeader".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Response, comment: "An HTTP response.".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Response".freeze, - subClassOf: "ht:Message".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2011/http#Message".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ResponseHeader, comment: "A header in an HTTP response message.".freeze, label: "Response Header".freeze, - subClassOf: "ht:MessageHeader".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2011/http#MessageHeader".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :StatusCode, comment: "The status code of an HTTP response.".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Status code".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :absolutePath, comment: "The absolute path sort of request URI.".freeze, label: "Absolute path".freeze, - subPropertyOf: "ht:requestURI".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2011/http#requestURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :absoluteURI, comment: "The absolute request URI.".freeze, label: "Absolute URI".freeze, - subPropertyOf: "ht:requestURI".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2011/http#requestURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :authority, comment: "The authority sort of request URI.".freeze, label: "Authority".freeze, - subPropertyOf: "ht:requestURI".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2011/http#requestURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :body, comment: "The entity body of an HTTP message.".freeze, - domain: "ht:Message".freeze, + domain: "http://www.w3.org/2011/http#Message".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Entity Body".freeze, - range: "cnt:ContentAsBase64".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2011/content#ContentAsBase64".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :connectionAuthority, comment: "The authority of a connection used for the HTTP transfer.".freeze, - domain: "ht:Connection".freeze, + domain: "http://www.w3.org/2011/http#Connection".freeze, label: "Connection authority".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :elementName, comment: "The name of a header element.".freeze, - domain: "ht:HeaderElement".freeze, + domain: "http://www.w3.org/2011/http#HeaderElement".freeze, label: "Header element name".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :elementValue, comment: "The value of a header element.".freeze, - domain: "ht:HeaderElement".freeze, + domain: "http://www.w3.org/2011/http#HeaderElement".freeze, label: "Header element value".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :fieldName, comment: "The name of an HTTP header field.".freeze, - domain: "ht:MessageHeader".freeze, + domain: "http://www.w3.org/2011/http#MessageHeader".freeze, label: "Field name".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :fieldValue, comment: "The value of an HTTP header field.".freeze, - domain: "ht:MessageHeader".freeze, + domain: "http://www.w3.org/2011/http#MessageHeader".freeze, label: "Field value".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hdrName, comment: "The name of an HTTP header.".freeze, - domain: "ht:MessageHeader".freeze, + domain: "http://www.w3.org/2011/http#MessageHeader".freeze, label: "Header name".freeze, - range: "ht:HeaderName".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2011/http#HeaderName".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :headerElements, comment: "The deconstructed parts of an HTTP header value.".freeze, - domain: "ht:MessageHeader".freeze, + domain: "http://www.w3.org/2011/http#MessageHeader".freeze, label: "Header elements".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :headers, comment: "The headers in an HTTP message.".freeze, - domain: "ht:Message".freeze, + domain: "http://www.w3.org/2011/http#Message".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Headers".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :httpVersion, comment: "The HTTP version of an HTTP message.".freeze, - domain: "ht:Message".freeze, + domain: "http://www.w3.org/2011/http#Message".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "HTTP version".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :methodName, comment: "The HTTP method name used for the HTTP request.".freeze, - domain: "ht:Request".freeze, + domain: "http://www.w3.org/2011/http#Request".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Method name".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :mthd, comment: "The HTTP method used for the HTTP request.".freeze, - domain: "ht:Request".freeze, + domain: "http://www.w3.org/2011/http#Request".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Method".freeze, - range: "ht:Method".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2011/http#Method".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :paramName, comment: "The name of a parameter in a part of a deconstructed HTTP header value.".freeze, - domain: "ht:Parameter".freeze, + domain: "http://www.w3.org/2011/http#Parameter".freeze, label: "Parameter name".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :paramValue, comment: "The value of a parameter in a part of a deconstructed HTTP header value.".freeze, - domain: "ht:Parameter".freeze, + domain: "http://www.w3.org/2011/http#Parameter".freeze, label: "Parameter value".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :params, comment: "The parameters in a part of a deconstructed HTTP header value.".freeze, - domain: "ht:HeaderElement".freeze, + domain: "http://www.w3.org/2011/http#HeaderElement".freeze, label: "Header parameters".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :reasonPhrase, comment: "The reason phrase (status text) of an HTTP response.".freeze, - domain: "ht:Response".freeze, + domain: "http://www.w3.org/2011/http#Response".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Reason phrase".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :requestURI, comment: "The request URI of an HTTP request.".freeze, - domain: "ht:Request".freeze, + domain: "http://www.w3.org/2011/http#Request".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Request URI".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :requests, comment: "The HTTP requests made via a connection.".freeze, - domain: "ht:Connection".freeze, + domain: "http://www.w3.org/2011/http#Connection".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Requests".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :resp, comment: "The HTTP response sent in answer to an HTTP request.".freeze, - domain: "ht:Request".freeze, + domain: "http://www.w3.org/2011/http#Request".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Response".freeze, - range: "ht:Response".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2011/http#Response".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sc, comment: "The status code of an HTTP response.".freeze, - domain: "ht:Response".freeze, + domain: "http://www.w3.org/2011/http#Response".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Status code".freeze, - range: "ht:StatusCode".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2011/http#StatusCode".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :statusCodeNumber, comment: "The status code number.".freeze, - domain: "ht:StatusCode".freeze, + domain: "http://www.w3.org/2011/http#StatusCode".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Status code".freeze, - range: "xsd:int".freeze, - subPropertyOf: "dc:identifier".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :statusCodeValue, comment: "The status code value of an HTTP response.".freeze, - domain: "ht:Response".freeze, + domain: "http://www.w3.org/2011/http#Response".freeze, isDefinedBy: "http://www.ietf.org/rfc/rfc2616.txt".freeze, label: "Status code".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] end end diff --git a/lib/rdf/vocab/hydra.rb b/lib/rdf/vocab/hydra.rb index a5d01ca..05289c1 100644 --- a/lib/rdf/vocab/hydra.rb +++ b/lib/rdf/vocab/hydra.rb @@ -3,744 +3,483 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/hydra/core# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The Hydra Core Vocabulary - # # - # # A lightweight vocabulary for hypermedia-driven Web APIs - # # - # # The Hydra Core Vocabulary is a lightweight vocabulary to create hypermedia-driven Web APIs. By specifying a number of concepts commonly used in Web APIs it enables the creation of generic API clients. - # class HYDRA < RDF::StrictVocabulary - # # The Hydra API documentation class - # # @return [RDF::Vocabulary::Term] - # attr_reader :ApiDocumentation - # - # # Provides a base abstract for base Uri source for Iri template resolution. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BaseUriSource - # - # # The class of Hydra classes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Class - # - # # A collection holding references to a number of related resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # A runtime error, used to report information beyond the returned status code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Error - # - # # The class of IRI templates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IriTemplate - # - # # A mapping from an IRI template variable to a property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IriTemplateMapping - # - # # The class of properties representing links. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Link - # - # # An operation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Operation - # - # # A PartialCollectionView describes a partial view of a Collection. Multiple PartialCollectionViews can be connected with the the next/previous properties to allow a client to retrieve all members of the collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PartialCollectionView - # - # # The class of dereferenceable resources by means a client can attempt to dereference; however, the received responses should still be verified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resource - # - # # Additional information about a status code that might be returned. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Status - # - # # A property known to be supported by a Hydra class. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SupportedProperty - # - # # A templated link. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TemplatedLink - # - # # A representation specifies how to serialize variable values into strings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VariableRepresentation - # - # # A description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # Specification of the header expected by the operation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expectsHeader - # - # # A property representing a freetext query. - # # @return [RDF::Vocabulary::Term] - # attr_reader :freetextQuery - # - # # Instructs to limit set only to N elements. - # # @return [RDF::Vocabulary::Term] - # attr_reader :limit - # - # # A variable-to-property mapping of the IRI template. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mapping - # - # # The HTTP method. - # # @return [RDF::Vocabulary::Term] - # attr_reader :method - # - # # Instructs to skip N elements of the set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offset - # - # # Instructs to provide a specific page of the collection at a given index. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageIndex - # - # # Instructs to provide a specific page reference of the collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageReference - # - # # A property - # # @return [RDF::Vocabulary::Term] - # attr_reader :property - # - # # True if the client can retrieve the property's value, false otherwise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :readable - # - # # True if the property is required, false otherwise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :required - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :resolveRelativeUsing - # - # # Name of the header returned by the operation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :returnsHeader - # - # # The HTTP status code - # # @return [RDF::Vocabulary::Term] - # attr_reader :statusCode - # - # # A templated string with placeholders. The literal's datatype indicates the template syntax; if not specified, hydra:Rfc6570Template is assumed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :template - # - # # A title, often used along with a description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # The total number of items referenced by a collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalItems - # - # # An IRI template variable - # # @return [RDF::Vocabulary::Term] - # attr_reader :variable - # - # # The representation format to use when expanding the IRI template. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variableRepresentation - # - # # True if the client can change the property's value, false otherwise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :writable - # - # # An IRI template as defined by RFC6570. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rfc6570Template - # - # # A representation that serializes just the lexical form of a variable value, but omits language and type information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BasicRepresentation - # - # # A representation that serializes a variable value including its language and type information and thus differentiating between IRIs and literals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExplicitRepresentation - # - # # States that the link's context IRI, as defined in RFC 5988, should be used as the base Uri - # # @return [RDF::Vocabulary::Term] - # attr_reader :LinkContext - # - # # States that the base Uri should be established using RFC 3986 reference resolution algorithm specified in section 5. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rfc3986 - # - # # A link to the API documentation - # # @return [RDF::Vocabulary::Term] - # attr_reader :apiDocumentation - # - # # Collections somehow related to this resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collection - # - # # A link to main entry point of the Web API - # # @return [RDF::Vocabulary::Term] - # attr_reader :entrypoint - # - # # The information expected by the Web API. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expects - # - # # The first resource of an interlinked set of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :first - # - # # The last resource of an interlinked set of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :last - # - # # This predicate is left for compatibility purposes and hydra:memberAssertion should be used instead. - # # @return [RDF::Vocabulary::Term] - # attr_reader :manages - # - # # A member of the collection - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # Semantics of each member provided by the collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memberAssertion - # - # # The resource following the current instance in an interlinked set of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :next - # - # # The object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :object - # - # # An operation supported by the Hydra resource - # # @return [RDF::Vocabulary::Term] - # attr_reader :operation - # - # # A status that might be returned by the Web API (other statuses should be expected and properly handled as well) - # # @return [RDF::Vocabulary::Term] - # attr_reader :possibleStatus - # - # # The resource preceding the current instance in an interlinked set of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :previous - # - # # The information returned by the Web API on success - # # @return [RDF::Vocabulary::Term] - # attr_reader :returns - # - # # A IRI template that can be used to query a collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :search - # - # # The subject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subject - # - # # A class known to be supported by the Web API - # # @return [RDF::Vocabulary::Term] - # attr_reader :supportedClass - # - # # An operation supported by instances of the specific Hydra class or the target of the Hydra link - # # @return [RDF::Vocabulary::Term] - # attr_reader :supportedOperation - # - # # The properties known to be supported by a Hydra class - # # @return [RDF::Vocabulary::Term] - # attr_reader :supportedProperty - # - # # A specific view of a resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :view - # - # # This property is left for compatibility purposes and hydra:writable should be used instead. - # # @return [RDF::Vocabulary::Term] - # attr_reader :writeable - # - # end HYDRA = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/hydra/core#")) do # Ontology definition ontology :"http://www.w3.org/ns/hydra/core#", - "cc:attributionName": "Hydra W3C Community Group".freeze, - "cc:attributionURL": "http://www.hydra-cg.com/".freeze, - "cc:license": "http://creativecommons.org/licenses/by/4.0/".freeze, comment: "A lightweight vocabulary for hypermedia-driven Web APIs".freeze, - "dc:description": "The Hydra Core Vocabulary is a lightweight vocabulary to create hypermedia-driven Web APIs. By specifying a number of concepts commonly used in Web APIs it enables the creation of generic API clients.".freeze, - "dc:publisher": "Hydra W3C Community Group".freeze, - "dc:rights": "Copyright © 2012-2014 the Contributors to the Hydra Core Vocabulary Specification".freeze, + "http://creativecommons.org/ns#attributionName": "Hydra W3C Community Group".freeze, + "http://creativecommons.org/ns#attributionURL": "http://www.hydra-cg.com/".freeze, + "http://creativecommons.org/ns#license": "http://creativecommons.org/licenses/by/4.0/".freeze, + "http://purl.org/dc/terms/description": "The Hydra Core Vocabulary is a lightweight vocabulary to create hypermedia-driven Web APIs. By specifying a number of concepts commonly used in Web APIs it enables the creation of generic API clients.".freeze, + "http://purl.org/dc/terms/publisher": "Hydra W3C Community Group".freeze, + "http://purl.org/dc/terms/rights": "Copyright © 2012-2014 the Contributors to the Hydra Core Vocabulary Specification".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "hydra".freeze, label: "The Hydra Core Vocabulary".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :ApiDocumentation, comment: "The Hydra API documentation class".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "ApiDocumentation".freeze, - subClassOf: "hydra:Resource".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/ns/hydra/core#Resource".freeze, + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :BaseUriSource, comment: "Provides a base abstract for base Uri source for Iri template resolution.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Base Uri source".freeze, - subClassOf: "hydra:Resource".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/ns/hydra/core#Resource".freeze, + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :Class, comment: "The class of Hydra classes.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Hydra Class".freeze, - subClassOf: "rdfs:Class".freeze, - type: ["hydra:Resource".freeze, "rdfs:Class".freeze], - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/ns/hydra/core#Resource".freeze] term :Collection, comment: "A collection holding references to a number of related resources.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Collection".freeze, - subClassOf: "hydra:Resource".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/ns/hydra/core#Resource".freeze, + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :Error, comment: "A runtime error, used to report information beyond the returned status code.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Error".freeze, - subClassOf: "hydra:Status".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/ns/hydra/core#Status".freeze, + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :IriTemplate, comment: "The class of IRI templates.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "IRI Template".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :IriTemplateMapping, comment: "A mapping from an IRI template variable to a property.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "IriTemplateMapping".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :Link, comment: "The class of properties representing links.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Link".freeze, - subClassOf: ["hydra:Resource".freeze, "rdf:Property".freeze], - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/ns/hydra/core#Resource".freeze], + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :Operation, comment: "An operation.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Operation".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :PartialCollectionView, comment: "A PartialCollectionView describes a partial view of a Collection. Multiple PartialCollectionViews can be connected with the the next/previous properties to allow a client to retrieve all members of the collection.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "PartialCollectionView".freeze, - subClassOf: "hydra:Resource".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: "http://www.w3.org/ns/hydra/core#Resource".freeze, + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :Resource, comment: "The class of dereferenceable resources by means a client can attempt to dereference; however, the received responses should still be verified.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Hydra Resource".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :Status, comment: "Additional information about a status code that might be returned.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Status code description".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :SupportedProperty, comment: "A property known to be supported by a Hydra class.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Supported Property".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :TemplatedLink, comment: "A templated link.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Templated Link".freeze, - subClassOf: ["hydra:Resource".freeze, "rdf:Property".freeze], - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/ns/hydra/core#Resource".freeze], + type: "http://www.w3.org/ns/hydra/core#Class".freeze term :VariableRepresentation, comment: "A representation specifies how to serialize variable values into strings.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "VariableRepresentation".freeze, - type: "hydra:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#Class".freeze # Property definitions property :description, comment: "A description.".freeze, - domainIncludes: ["hydra:ApiDocumentation".freeze, "hydra:Class".freeze, "hydra:Link".freeze, "hydra:Operation".freeze, "hydra:Status".freeze, "hydra:SupportedProperty".freeze, "hydra:TemplatedLink".freeze], + domainIncludes: ["http://www.w3.org/ns/hydra/core#ApiDocumentation".freeze, "http://www.w3.org/ns/hydra/core#Class".freeze, "http://www.w3.org/ns/hydra/core#Link".freeze, "http://www.w3.org/ns/hydra/core#Operation".freeze, "http://www.w3.org/ns/hydra/core#Status".freeze, "http://www.w3.org/ns/hydra/core#SupportedProperty".freeze, "http://www.w3.org/ns/hydra/core#TemplatedLink".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "description".freeze, - range: "xsd:string".freeze, - subPropertyOf: "rdfs:comment".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#comment".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expectsHeader, comment: "Specification of the header expected by the operation.".freeze, - domain: "hydra:Operation".freeze, + domain: "http://www.w3.org/ns/hydra/core#Operation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "expects header".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :freetextQuery, comment: "A property representing a freetext query.".freeze, - domain: "hydra:Resource".freeze, + domain: "http://www.w3.org/ns/hydra/core#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "freetext query".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :limit, comment: "Instructs to limit set only to N elements.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "take".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mapping, comment: "A variable-to-property mapping of the IRI template.".freeze, - domain: "hydra:IriTemplate".freeze, + domain: "http://www.w3.org/ns/hydra/core#IriTemplate".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "mapping".freeze, - range: "hydra:IriTemplateMapping".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#IriTemplateMapping".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :method, comment: "The HTTP method.".freeze, - domain: "hydra:Operation".freeze, + domain: "http://www.w3.org/ns/hydra/core#Operation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "method".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offset, comment: "Instructs to skip N elements of the set.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "skip".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageIndex, comment: "Instructs to provide a specific page of the collection at a given index.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "page index".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "hydra:pageReference".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + subPropertyOf: "http://www.w3.org/ns/hydra/core#pageReference".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageReference, comment: "Instructs to provide a specific page reference of the collection.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "page reference".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :property, comment: "A property".freeze, - domainIncludes: ["hydra:IriTemplateMapping".freeze, "hydra:SupportedProperty".freeze], + domainIncludes: ["http://www.w3.org/ns/hydra/core#IriTemplateMapping".freeze, "http://www.w3.org/ns/hydra/core#SupportedProperty".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "property".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :readable, comment: "True if the client can retrieve the property's value, false otherwise.".freeze, - domain: "hydra:SupportedProperty".freeze, + domain: "http://www.w3.org/ns/hydra/core#SupportedProperty".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "readable".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :required, comment: "True if the property is required, false otherwise.".freeze, - domainIncludes: ["hydra:IriTemplateMapping".freeze, "hydra:SupportedProperty".freeze], + domainIncludes: ["http://www.w3.org/ns/hydra/core#IriTemplateMapping".freeze, "http://www.w3.org/ns/hydra/core#SupportedProperty".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "required".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resolveRelativeUsing, - domain: "hydra:IriTemplate".freeze, + domain: "http://www.w3.org/ns/hydra/core#IriTemplate".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "relative Uri resolution".freeze, - range: "hydra:BaseUriSource".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#BaseUriSource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :returnsHeader, comment: "Name of the header returned by the operation.".freeze, - domain: "hydra:Operation".freeze, + domain: "http://www.w3.org/ns/hydra/core#Operation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "returns header".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :statusCode, - comment: "The HTTP status code".freeze, - domain: "hydra:Status".freeze, + comment: "The HTTP status code. Please note it may happen this value will be different to actual status code received.".freeze, + domain: "http://www.w3.org/ns/hydra/core#Status".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "status code".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :template, comment: "A templated string with placeholders. The literal's datatype indicates the template syntax; if not specified, hydra:Rfc6570Template is assumed.".freeze, - domain: "hydra:IriTemplate".freeze, + domain: "http://www.w3.org/ns/hydra/core#IriTemplate".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/hydra/core#Rfc6570Template".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "template".freeze, - range: "hydra:Rfc6570Template".freeze, - "rdfs:seeAlso": "hydra:Rfc6570Template".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Rfc6570Template".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, comment: "A title, often used along with a description.".freeze, - domainIncludes: ["hydra:ApiDocumentation".freeze, "hydra:Class".freeze, "hydra:Link".freeze, "hydra:Operation".freeze, "hydra:Status".freeze, "hydra:SupportedProperty".freeze, "hydra:TemplatedLink".freeze], + domainIncludes: ["http://www.w3.org/ns/hydra/core#ApiDocumentation".freeze, "http://www.w3.org/ns/hydra/core#Class".freeze, "http://www.w3.org/ns/hydra/core#Link".freeze, "http://www.w3.org/ns/hydra/core#Operation".freeze, "http://www.w3.org/ns/hydra/core#Status".freeze, "http://www.w3.org/ns/hydra/core#SupportedProperty".freeze, "http://www.w3.org/ns/hydra/core#TemplatedLink".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "title".freeze, - range: "xsd:string".freeze, - subPropertyOf: "rdfs:label".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalItems, comment: "The total number of items referenced by a collection.".freeze, - domain: "hydra:Collection".freeze, + domain: "http://www.w3.org/ns/hydra/core#Collection".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "total items".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :variable, comment: "An IRI template variable".freeze, - domain: "hydra:IriTemplateMapping".freeze, + domain: "http://www.w3.org/ns/hydra/core#IriTemplateMapping".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "variable".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :variableRepresentation, comment: "The representation format to use when expanding the IRI template.".freeze, - domain: "hydra:IriTemplateMapping".freeze, + domain: "http://www.w3.org/ns/hydra/core#IriTemplateMapping".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "variable representation".freeze, - range: "hydra:VariableRepresentation".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#VariableRepresentation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :writable, comment: "True if the client can change the property's value, false otherwise.".freeze, - domain: "hydra:SupportedProperty".freeze, + domain: "http://www.w3.org/ns/hydra/core#SupportedProperty".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "writable".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Datatype definitions term :Rfc6570Template, comment: "An IRI template as defined by RFC6570.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://tools.ietf.org/html/rfc6570".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "RFC6570 IRI template".freeze, - range: "xsd:string".freeze, - "rdfs:seeAlso": "http://tools.ietf.org/html/rfc6570".freeze, - type: "rdfs:Datatype".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze # Extra definitions term :BasicRepresentation, comment: "A representation that serializes just the lexical form of a variable value, but omits language and type information.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "BasicRepresentation".freeze, - type: "hydra:VariableRepresentation".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#VariableRepresentation".freeze term :ExplicitRepresentation, comment: "A representation that serializes a variable value including its language and type information and thus differentiating between IRIs and literals.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "ExplicitRepresentation".freeze, - type: "hydra:VariableRepresentation".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#VariableRepresentation".freeze term :LinkContext, comment: "States that the link's context IRI, as defined in RFC 5988, should be used as the base Uri".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "Link context".freeze, - type: "hydra:BaseUriSource".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#BaseUriSource".freeze term :Rfc3986, comment: "States that the base Uri should be established using RFC 3986 reference resolution algorithm specified in section 5.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "RFC 3986 based".freeze, - type: "hydra:BaseUriSource".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#BaseUriSource".freeze term :apiDocumentation, comment: "A link to the API documentation".freeze, - domain: "hydra:Resource".freeze, + domain: "http://www.w3.org/ns/hydra/core#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "apiDocumentation".freeze, - range: "hydra:ApiDocumentation".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#ApiDocumentation".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :collection, comment: "Collections somehow related to this resource.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "collection".freeze, - range: "hydra:Collection".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Collection".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :entrypoint, comment: "A link to main entry point of the Web API".freeze, - domain: "hydra:ApiDocumentation".freeze, + domain: "http://www.w3.org/ns/hydra/core#ApiDocumentation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "entrypoint".freeze, - range: "hydra:Resource".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Resource".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :expects, comment: "The information expected by the Web API.".freeze, - domain: "hydra:Operation".freeze, + domain: "http://www.w3.org/ns/hydra/core#Operation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "expects".freeze, - rangeIncludes: ["hydra:Class".freeze, "hydra:Resource".freeze, "rdfs:Class".freeze, "rdfs:Resource".freeze], - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + rangeIncludes: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, "http://www.w3.org/ns/hydra/core#Class".freeze, "http://www.w3.org/ns/hydra/core#Resource".freeze], + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :first, comment: "The first resource of an interlinked set of resources.".freeze, - domain: "hydra:Resource".freeze, + domain: "http://www.w3.org/ns/hydra/core#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "first".freeze, - range: "hydra:Resource".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Resource".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :last, comment: "The last resource of an interlinked set of resources.".freeze, - domain: "hydra:Resource".freeze, + domain: "http://www.w3.org/ns/hydra/core#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "last".freeze, - range: "hydra:Resource".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Resource".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :manages, comment: "This predicate is left for compatibility purposes and hydra:memberAssertion should be used instead.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "manages".freeze, - subPropertyOf: "hydra:memberAssertion".freeze, - "vs:term_status": "archaic".freeze + subPropertyOf: "http://www.w3.org/ns/hydra/core#memberAssertion".freeze term :member, comment: "A member of the collection".freeze, - domain: "hydra:Collection".freeze, + domain: "http://www.w3.org/ns/hydra/core#Collection".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "member".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :memberAssertion, comment: "Semantics of each member provided by the collection.".freeze, - domain: "hydra:Collection".freeze, + domain: "http://www.w3.org/ns/hydra/core#Collection".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, - label: "member assertion".freeze, - "vs:term_status": "testing".freeze + label: "member assertion".freeze term :next, comment: "The resource following the current instance in an interlinked set of resources.".freeze, - domain: "hydra:Resource".freeze, + domain: "http://www.w3.org/ns/hydra/core#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "next".freeze, - range: "hydra:Resource".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Resource".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :object, comment: "The object.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, - label: "object".freeze, - "vs:term_status": "testing".freeze + label: "object".freeze term :operation, comment: "An operation supported by the Hydra resource".freeze, - domain: "hydra:Resource".freeze, + domain: "http://www.w3.org/ns/hydra/core#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "operation".freeze, - range: "hydra:Operation".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Operation".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :possibleStatus, comment: "A status that might be returned by the Web API (other statuses should be expected and properly handled as well)".freeze, - domainIncludes: ["hydra:ApiDocumentation".freeze, "hydra:Operation".freeze], + domainIncludes: ["http://www.w3.org/ns/hydra/core#ApiDocumentation".freeze, "http://www.w3.org/ns/hydra/core#Operation".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "possible status".freeze, - range: "hydra:Status".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Status".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :previous, comment: "The resource preceding the current instance in an interlinked set of resources.".freeze, - domain: "hydra:Resource".freeze, + domain: "http://www.w3.org/ns/hydra/core#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "previous".freeze, - range: "hydra:Resource".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Resource".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :returns, comment: "The information returned by the Web API on success".freeze, - domain: "hydra:Operation".freeze, + domain: "http://www.w3.org/ns/hydra/core#Operation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "returns".freeze, - rangeIncludes: ["hydra:Class".freeze, "hydra:Resource".freeze, "rdfs:Class".freeze, "rdfs:Resource".freeze], - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + rangeIncludes: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, "http://www.w3.org/ns/hydra/core#Class".freeze, "http://www.w3.org/ns/hydra/core#Resource".freeze], + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :search, comment: "A IRI template that can be used to query a collection.".freeze, - domain: "hydra:Resource".freeze, + domain: "http://www.w3.org/ns/hydra/core#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "search".freeze, - range: "hydra:IriTemplate".freeze, - type: "hydra:TemplatedLink".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#IriTemplate".freeze, + type: "http://www.w3.org/ns/hydra/core#TemplatedLink".freeze term :subject, comment: "The subject.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, - label: "subject".freeze, - "vs:term_status": "testing".freeze + label: "subject".freeze term :supportedClass, comment: "A class known to be supported by the Web API".freeze, - domain: "hydra:ApiDocumentation".freeze, + domain: "http://www.w3.org/ns/hydra/core#ApiDocumentation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "supported classes".freeze, - range: "rdfs:Class".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :supportedOperation, comment: "An operation supported by instances of the specific Hydra class or the target of the Hydra link".freeze, - domainIncludes: ["hydra:Class".freeze, "hydra:Link".freeze, "hydra:SupportedProperty".freeze, "hydra:TemplatedLink".freeze, "rdfs:Class".freeze], + domainIncludes: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/ns/hydra/core#Class".freeze, "http://www.w3.org/ns/hydra/core#Link".freeze, "http://www.w3.org/ns/hydra/core#SupportedProperty".freeze, "http://www.w3.org/ns/hydra/core#TemplatedLink".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "supported operation".freeze, - range: "hydra:Operation".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#Operation".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :supportedProperty, comment: "The properties known to be supported by a Hydra class".freeze, - domain: "rdfs:Class".freeze, + domain: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "supported properties".freeze, - range: "hydra:SupportedProperty".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/ns/hydra/core#SupportedProperty".freeze, + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :view, comment: "A specific view of a resource.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "view".freeze, - type: "hydra:Link".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/ns/hydra/core#Link".freeze term :writeable, comment: "This property is left for compatibility purposes and hydra:writable should be used instead.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze, label: "writable".freeze, - subPropertyOf: "hydra:writable".freeze, - "vs:term_status": "archaic".freeze + subPropertyOf: "http://www.w3.org/ns/hydra/core#writable".freeze end end diff --git a/lib/rdf/vocab/iana.rb b/lib/rdf/vocab/iana.rb index 4469ca8..463b842 100644 --- a/lib/rdf/vocab/iana.rb +++ b/lib/rdf/vocab/iana.rb @@ -3,525 +3,292 @@ # This file generated automatically using rdf vocabulary format from http://www.iana.org/assignments/relation/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class IANA < RDF::StrictVocabulary - # # Refers to a resource that is the subject of the link's context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :about - # - # # Refers to a substitute for this context - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternate - # - # # Refers to an appendix. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appendix - # - # # Refers to a collection of records, documents, or other materials of historical interest. - # # @return [RDF::Vocabulary::Term] - # attr_reader :archives - # - # # Refers to the context's author. - # # @return [RDF::Vocabulary::Term] - # attr_reader :author - # - # # Gives a permanent link to use for bookmarking purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookmark - # - # # Designates the preferred version of a resource (the IRI and its contents). - # # @return [RDF::Vocabulary::Term] - # attr_reader :canonical - # - # # Refers to a chapter in a collection of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :chapter - # - # # The target IRI points to a resource which represents the collection resource for the context IRI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collection - # - # # Refers to a table of contents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contents - # - # # Refers to a copyright statement that applies to the link's context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyright - # - # # Refers to a resource containing the most recent item(s) in a collection of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :current - # - # # The target IRI points to a resource from which this material was derived. - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivedfrom - # - # # Refers to a resource providing information about the link's context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :describedby - # - # # The relationship A 'describes' B asserts that resource A provides a description of resource B. There are no constraints on the format or representation of either A or B, neither are there any further constraints on either resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :describes - # - # # Refers to a list of patent disclosures made with respect to material for which 'disclosure' relation is specified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :disclosure - # - # # Refers to a resource whose available representations are byte-for-byte identical with the corresponding representations of the context IRI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duplicate - # - # # Refers to a resource that can be used to edit the link's context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :edit - # - # # Identifies a related resource that is potentially large and might require special handling. - # # @return [RDF::Vocabulary::Term] - # attr_reader :enclosure - # - # # An IRI that refers to the furthest preceding resource in a series of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :first - # - # # Refers to a glossary of terms. - # # @return [RDF::Vocabulary::Term] - # attr_reader :glossary - # - # # Refers to context-sensitive help. - # # @return [RDF::Vocabulary::Term] - # attr_reader :help - # - # # Refers to a resource hosted by the server indicated by the link context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hosts - # - # # Refers to a hub that enables registration for notification of updates to the context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hub - # - # # Refers to an icon representing the link's context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :icon - # - # # Refers to an index. - # # @return [RDF::Vocabulary::Term] - # attr_reader :index - # - # # The target IRI points to a resource that is a member of the collection represented by the context IRI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :item - # - # # An IRI that refers to the furthest following resource in a series of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :last - # - # # Refers to a license associated with this context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :license - # - # # Refers to further information about the link's context, expressed as a LRDD ("Link-based Resource Descriptor Document") resource. See [RFC6415] for information about processing this relation type in host-meta documents. When used elsewhere, it refers to additional links and other metadata. Multiple instances indicate additional LRDD resources. LRDD resources MUST have an "application/xrd+xml" representation, and MAY have others. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lrdd - # - # # The Target IRI points to a Memento, a fixed resource that will not change state anymore. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memento - # - # # Refers to a resource that can be used to monitor changes in an HTTP resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :monitor - # - # # Indicates that the link's context is a part of a series, and that the next in the series is the link target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :next - # - # # Indicates that the context’s original author or publisher does not endorse the link target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nofollow - # - # # Indicates that no referrer information is to be leaked when following the link. - # # @return [RDF::Vocabulary::Term] - # attr_reader :noreferrer - # - # # The Target IRI points to an Original Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :original - # - # # Indicates a resource where payment is accepted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :payment - # - # # Indicates that the link target should be preemptively cached. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefetch - # - # # Indicates that the link's context is a part of a series, and that the previous in the series is the link target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prev - # - # # Refers to a resource that provides a preview of the link's context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preview - # - # # Refers to the previous resource in an ordered series of resources. Synonym for "prev". - # # @return [RDF::Vocabulary::Term] - # attr_reader :previous - # - # # Identifying that a resource representation conforms to a certain profile, without affecting the non-profile semantics of the resource representation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :profile - # - # # Identifies a related resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :related - # - # # Identifies a resource that is a reply to the context of the link. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replies - # - # # Refers to a resource that can be used to search through the link's context and related resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :search - # - # # Refers to a section in a collection of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :section - # - # # Conveys an identifier for the link's context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :self - # - # # Indicates a URI that can be used to retrieve a service document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :service - # - # # Refers to the first resource in a collection of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :start - # - # # Refers to a stylesheet. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stylesheet - # - # # Refers to a resource serving as a subsection in a collection of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subsection - # - # # Gives a tag (identified by the given address) that applies to the current document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tag - # - # # The Target IRI points to a TimeGate for an Original Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timegate - # - # # The Target IRI points to a TimeMap for an Original Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timemap - # - # # Refers to a resource identifying the abstract semantic type of which the link's context is considered to be an instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :type - # - # # Refers to a parent document in a hierarchy of documents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :up - # - # # Identifies a resource that is the source of the information in the link's context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :via - # - # end IANA = Class.new(RDF::StrictVocabulary("http://www.iana.org/assignments/relation/")) do # Property definitions property :about, comment: "Refers to a resource that is the subject of the link's context.".freeze, label: "about".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alternate, comment: "Refers to a substitute for this context".freeze, label: "alternate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appendix, comment: "Refers to an appendix.".freeze, label: "appendix".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :archives, comment: "Refers to a collection of records, documents, or other\n materials of historical interest.".freeze, label: "archives".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :author, comment: "Refers to the context's author.".freeze, label: "author".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookmark, comment: "Gives a permanent link to use for bookmarking purposes.".freeze, label: "bookmark".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :canonical, comment: "Designates the preferred version of a resource (the IRI and its contents).".freeze, label: "canonical".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :chapter, comment: "Refers to a chapter in a collection of resources.".freeze, label: "chapter".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :collection, comment: "The target IRI points to a resource which represents the collection resource for the context IRI.".freeze, label: "collection".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contents, comment: "Refers to a table of contents.".freeze, label: "contents".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :copyright, comment: "Refers to a copyright statement that applies to the\n link's context.".freeze, label: "copyright".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"create-form", comment: "The target IRI points to a resource where a submission form can be obtained.".freeze, label: "create-form".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :current, comment: "Refers to a resource containing the most recent\n item(s) in a collection of resources.".freeze, label: "current".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :derivedfrom, comment: "The target IRI points to a resource from which this material was derived.".freeze, label: "derivedfrom".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :describedby, comment: "Refers to a resource providing information about the\n link's context.".freeze, label: "describedby".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :describes, comment: "The relationship A 'describes' B asserts that\n resource A provides a description of resource B. There are no\n constraints on the format or representation of either A or B,\n neither are there any further constraints on either resource.".freeze, label: "describes".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :disclosure, comment: "Refers to a list of patent disclosures made with respect to material for which 'disclosure' relation is specified.".freeze, label: "disclosure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duplicate, comment: "Refers to a resource whose available representations\n are byte-for-byte identical with the corresponding representations of\n the context IRI.".freeze, label: "duplicate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :edit, comment: "Refers to a resource that can be used to edit the\n link's context.".freeze, label: "edit".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"edit-form", comment: "The target IRI points to a resource where a submission form for\n editing associated resource can be obtained.".freeze, label: "edit-form".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"edit-media", comment: "Refers to a resource that can be used to edit media\n associated with the link's context.".freeze, label: "edit-media".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :enclosure, comment: "Identifies a related resource that is potentially\n large and might require special handling.".freeze, label: "enclosure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :first, comment: "An IRI that refers to the furthest preceding resource\n in a series of resources.".freeze, label: "first".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :glossary, comment: "Refers to a glossary of terms.".freeze, label: "glossary".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :help, comment: "Refers to context-sensitive help.".freeze, label: "help".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hosts, comment: "Refers to a resource hosted by the server indicated by\n the link context.".freeze, label: "hosts".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hub, comment: "Refers to a hub that enables registration for\n notification of updates to the context.".freeze, label: "hub".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :icon, comment: "Refers to an icon representing the link's context.".freeze, label: "icon".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :index, comment: "Refers to an index.".freeze, label: "index".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :item, comment: "The target IRI points to a resource that is a member of the collection represented by the context IRI.".freeze, label: "item".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :last, comment: "An IRI that refers to the furthest following resource\n in a series of resources.".freeze, label: "last".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"latest-version", comment: "Points to a resource containing the latest (e.g.,\n current) version of the context.".freeze, label: "latest-version".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :license, comment: "Refers to a license associated with this context.".freeze, label: "license".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lrdd, comment: "Refers to further information about the link's context,\n expressed as a LRDD (\"Link-based Resource Descriptor Document\")\n resource. See [RFC6415] for information about\n processing this relation type in host-meta documents. When used\n elsewhere, it refers to additional links and other metadata.\n Multiple instances indicate additional LRDD resources. LRDD\n resources MUST have an \"application/xrd+xml\" representation, and\n MAY have others.".freeze, label: "lrdd".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :memento, comment: "The Target IRI points to a Memento, a fixed resource that will not change state anymore.".freeze, label: "memento".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :monitor, comment: "Refers to a resource that can be used to monitor changes in an HTTP resource.".freeze, label: "monitor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"monitor-group", comment: "Refers to a resource that can be used to monitor changes in a specified group of HTTP resources.".freeze, label: "monitor-group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :next, comment: "Indicates that the link's context is a part of a series, and\n that the next in the series is the link target.".freeze, label: "next".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"next-archive", comment: "Refers to the immediately following archive resource.".freeze, label: "next-archive".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nofollow, comment: "Indicates that the context’s original author or publisher does not endorse the link target.".freeze, label: "nofollow".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :noreferrer, comment: "Indicates that no referrer information is to be leaked when following the link.".freeze, label: "noreferrer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :original, comment: "The Target IRI points to an Original Resource.".freeze, label: "original".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :payment, comment: "Indicates a resource where payment is accepted.".freeze, label: "payment".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"predecessor-version", comment: "Points to a resource containing the predecessor\n version in the version history.".freeze, label: "predecessor-version".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prefetch, comment: "Indicates that the link target should be preemptively cached.".freeze, label: "prefetch".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prev, comment: "Indicates that the link's context is a part of a series, and\n that the previous in the series is the link target.".freeze, label: "prev".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"prev-archive", comment: "Refers to the immediately preceding archive resource.".freeze, label: "prev-archive".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :preview, comment: "Refers to a resource that provides a preview of the link's context.".freeze, label: "preview".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :previous, comment: "Refers to the previous resource in an ordered series\n of resources. Synonym for \"prev\".".freeze, label: "previous".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"privacy-policy", comment: "Refers to a privacy policy associated with the link's context.".freeze, label: "privacy-policy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :profile, comment: "Identifying that a resource representation conforms\nto a certain profile, without affecting the non-profile semantics\nof the resource representation.".freeze, label: "profile".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :related, comment: "Identifies a related resource.".freeze, label: "related".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :replies, comment: "Identifies a resource that is a reply to the context\n of the link.".freeze, label: "replies".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :search, comment: "Refers to a resource that can be used to search through\n the link's context and related resources.".freeze, label: "search".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :section, comment: "Refers to a section in a collection of resources.".freeze, label: "section".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :self, comment: "Conveys an identifier for the link's context.".freeze, label: "self".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :service, comment: "Indicates a URI that can be used to retrieve a\n service document.".freeze, label: "service".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :start, comment: "Refers to the first resource in a collection of\n resources.".freeze, label: "start".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stylesheet, comment: "Refers to a stylesheet.".freeze, label: "stylesheet".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subsection, comment: "Refers to a resource serving as a subsection in a\n collection of resources.".freeze, label: "subsection".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"successor-version", comment: "Points to a resource containing the successor version\n in the version history.".freeze, label: "successor-version".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tag, comment: "Gives a tag (identified by the given address) that applies to\n the current document.".freeze, label: "tag".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"terms-of-service", comment: "Refers to the terms of service associated with the link's context.".freeze, label: "terms-of-service".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timegate, comment: "The Target IRI points to a TimeGate for an Original Resource.".freeze, label: "timegate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timemap, comment: "The Target IRI points to a TimeMap for an Original Resource.".freeze, label: "timemap".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :type, comment: "Refers to a resource identifying the abstract semantic type of which the link's context is considered to be an instance.".freeze, label: "type".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :up, comment: "Refers to a parent document in a hierarchy of\n documents.".freeze, label: "up".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"version-history", comment: "Points to a resource containing the version history\n for the context.".freeze, label: "version-history".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :via, comment: "Identifies a resource that is the source of the\n information in the link's context.".freeze, label: "via".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"working-copy", comment: "Points to a working copy for this resource.".freeze, label: "working-copy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"working-copy-of", comment: "Points to the versioned resource from which this\n working copy was obtained.".freeze, label: "working-copy-of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/ical.rb b/lib/rdf/vocab/ical.rb index f645464..2d434f2 100644 --- a/lib/rdf/vocab/ical.rb +++ b/lib/rdf/vocab/ical.rb @@ -3,1497 +3,1032 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2002/12/cal/icaltzd# require 'rdf' 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 - # # @see http://esw.w3.org/topic/RdfCalendar - # # @see http://lists.w3.org/Archives/Public/www-rdf-calendar/ - # # @see http://www.w3.org/2002/12/cal/ - # class ICAL < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :DomainOf_rrule - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :List_of_Float - # - # # Provide a grouping of component properties that define an alarm. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Valarm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Value_DATE - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Value_DURATION - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Value_PERIOD - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Value_RECUR - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vcalendar - # - # # Provide a grouping of component properties that describe an event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vevent - # - # # Provide a grouping of component properties that describe either a request for free/busy time, describe a response to a request for free/busy time or describe a published set of busy time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vfreebusy - # - # # Provide a grouping of component properties that describe a journal entry. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vjournal - # - # # Provide a grouping of component properties that defines a time zone. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vtimezone - # - # # Provide a grouping of calendar properties that describe a to-do. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vtodo - # - # # value type: TEXT - # # - # # This property defines the action to be invoked when an alarm is triggered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :action - # - # # To specify an alternate text representation for the property value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :altrep - # - # # The property provides the capability to associate a document object with a calendar component. - # # - # # default value type: URI - # # @return [RDF::Vocabulary::Term] - # attr_reader :attach - # - # # The property defines an "Attendee" within a calendar component. - # # - # # value type: CAL-ADDRESS - # # @return [RDF::Vocabulary::Term] - # attr_reader :attendee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :byday - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :byhour - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :byminute - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bymonth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bysecond - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bysetpos - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :byweekno - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :byyearday - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :calAddress - # - # # 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 - # - # # value type: TEXT - # # - # # This property defines the categories for a calendar component. - # # @return [RDF::Vocabulary::Term] - # attr_reader :categories - # - # # value type: TEXT - # # - # # This property defines the access classification for a calendar component. - # # @return [RDF::Vocabulary::Term] - # attr_reader :class - # - # # To specify the common name to be associated with the calendar user specified by the property. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :comment - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contact - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :count - # - # # 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 - # - # # To specify the type of calendar user specified by the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cutype - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :daylight - # - # # To specify the calendar users that have delegated their participation to the calendar user specified by the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :delegatedFrom - # - # # To specify the calendar users to whom the calendar user specified by the property has delegated participation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :delegatedTo - # - # # value type: TEXT - # # - # # This property provides a more complete description of the calendar component, than that provided by the "SUMMARY" property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # To specify reference to a directory entry associated with the calendar user specified by the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dir - # - # # This property specifies the date and time that a calendar component ends. - # # - # # default value type: DATE-TIME - # # @return [RDF::Vocabulary::Term] - # attr_reader :dtend - # - # # value type: DATE-TIME - # # - # # The property indicates the date/time that the instance of the iCalendar object was created. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dtstamp - # - # # This property specifies when the calendar component begins. - # # - # # default value type: DATE-TIME - # # @return [RDF::Vocabulary::Term] - # attr_reader :dtstart - # - # # 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 - # - # # value type: DURATION - # # - # # The property specifies a positive duration of time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # To specify an alternate inline encoding for the property value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encoding - # - # # 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 - # - # # 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 - # - # # To specify the free or busy time type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fbtype - # - # # To specify the content type of a referenced object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fmttype - # - # # The property defines one or more free or busy time intervals. - # # - # # value type: PERIOD - # # @return [RDF::Vocabulary::Term] - # attr_reader :freebusy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :freq - # - # # This property specifies information related to the global position for the activity specified by a calendar component. - # # - # # value type: list of FLOAT - # # @return [RDF::Vocabulary::Term] - # attr_reader :geo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :interval - # - # # To specify the language for text values in a property or property parameter. - # # @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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastModified - # - # # value type: TEXT - # # - # # The property defines the intended venue for the activity defined by a calendar component. - # # @return [RDF::Vocabulary::Term] - # attr_reader :location - # - # # To specify the group or list membership of the calendar user specified by the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # value type: TEXT - # # - # # This property defines the iCalendar object method associated with the calendar object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :method - # - # # The property defines the organizer for a calendar component. - # # - # # value type: CAL-ADDRESS - # # @return [RDF::Vocabulary::Term] - # attr_reader :organizer - # - # # To specify the participation status for the calendar user specified by the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partstat - # - # # value type: INTEGER - # # - # # This property is used by an assignee or delegatee of a to-do to convey the percent completion of a to-do to the Organizer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentComplete - # - # # value type: INTEGER - # # - # # The property defines the relative priority for a calendar component. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priority - # - # # value type: TEXT - # # - # # This property specifies the identifier for the product that created the iCalendar object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prodid - # - # # To specify the effective range of recurrence instances from the instance specified by the recurrence identifier specified by the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :range - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :recurrenceId - # - # # To specify the relationship of the alarm trigger with respect to the start or end of the calendar component. - # # @return [RDF::Vocabulary::Term] - # attr_reader :related - # - # # value type: TEXT - # # - # # The property is used to represent a relationship or reference between one calendar component and another. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedTo - # - # # To specify the type of hierarchical relationship associated with the calendar component specified by the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reltype - # - # # 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. - # # @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.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resources - # - # # To specify the participation role for the calendar user specified by the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # 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 - # - # # To specify whether there is an expectation of a favor of a reply from the calendar user specified by the property value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rsvp - # - # # To specify the calendar user that is acting on behalf of the calendar user specified by the property. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sequence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :standard - # - # # value type: TEXT - # # - # # This property defines the overall status or confirmation for the calendar component. - # # @return [RDF::Vocabulary::Term] - # attr_reader :status - # - # # value type: TEXT - # # - # # This property defines a short summary or subject for the calendar component. - # # @return [RDF::Vocabulary::Term] - # attr_reader :summary - # - # # value type: TEXT - # # - # # This property defines whether an event is transparent or not to busy time searches. - # # @return [RDF::Vocabulary::Term] - # attr_reader :transp - # - # # This property specifies when an alarm will trigger. - # # - # # default value type: DURATION - # # @return [RDF::Vocabulary::Term] - # attr_reader :trigger - # - # # This property specifies the text value that uniquely identifies the "VTIMEZONE" calendar component. - # # - # # value type: TEXT - # # - # # To specify the identifier for the time zone definition for a time component in the property value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tzid - # - # # value type: TEXT - # # - # # This property specifies the customary designation for a time zone description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tzname - # - # # value type: UTC-OFFSET - # # - # # This property specifies the offset which is in use prior to this time zone observance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tzoffsetfrom - # - # # value type: UTC-OFFSET - # # - # # This property specifies the offset which is in use in this time zone observance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tzoffsetto - # - # # The TZURL provides a means for a VTIMEZONE component to point to a network location that can be used to retrieve an up-to- date version of itself. - # # - # # value type: URI - # # @return [RDF::Vocabulary::Term] - # attr_reader :tzurl - # - # # value type: TEXT - # # - # # This property defines the persistent, globally unique identifier for the calendar component. - # # @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 - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wkst - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateTime - # - # end ICAL = Class.new(RDF::StrictVocabulary("http://www.w3.org/2002/12/cal/icaltzd#")) do # Ontology definition ontology :"http://www.w3.org/2002/12/cal/icaltzd#", - "dc11:source": "http://www.ietf.org/rfc/rfc2445.txt".freeze, - "owl:versionInfo": ["$Id: icaltzd.rdf,v 1.6 2007/06/28 18:22:09 connolly Exp $".freeze, "subject to change with notice to www-rdf-calendar@w3.org".freeze], - "rdfs:seeAlso": ["http://esw.w3.org/topic/RdfCalendar".freeze, "http://lists.w3.org/Archives/Public/www-rdf-calendar/".freeze, "http://www.w3.org/2002/12/cal/".freeze], - type: "owl:Thing".freeze + "http://purl.org/dc/elements/1.1/source": "http://www.ietf.org/rfc/rfc2445.txt".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://esw.w3.org/topic/RdfCalendar".freeze, "http://lists.w3.org/Archives/Public/www-rdf-calendar/".freeze, "http://www.w3.org/2002/12/cal/".freeze], + "http://www.w3.org/2002/07/owl#versionInfo": ["$Id: icaltzd.rdf,v 1.6 2007/06/28 18:22:09 connolly Exp $".freeze, "subject to change with notice to www-rdf-calendar@w3.org".freeze], + type: "http://www.w3.org/2002/07/owl#Thing".freeze # Class definitions term :DomainOf_rrule, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :List_of_Float, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Valarm, comment: "Provide a grouping of component properties that define an alarm.".freeze, subClassOf: [term( minCardinality: "0".freeze, - onProperty: "ical:action".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#action".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:attach".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#attach".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:attendee".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#attendee".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:description".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#description".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:duration".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#duration".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:repeat".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#repeat".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:summary".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#summary".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:trigger".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#trigger".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :"Value_CAL-ADDRESS", - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Value_DATE, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Value_DURATION, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Value_PERIOD, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Value_RECUR, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Vcalendar, label: "VCALENDAR".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Vevent, comment: "Provide a grouping of component properties that describe an event.".freeze, label: "Event".freeze, subClassOf: [term( minCardinality: "0".freeze, - onProperty: "ical:attach".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#attach".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:attendee".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#attendee".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:categories".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#categories".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:class".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#class".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:comment".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#comment".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:contact".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#contact".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:created".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#created".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:description".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#description".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtend".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtend".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtstamp".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtstamp".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtstart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtstart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:duration".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#duration".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:exdate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#exdate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:exrule".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#exrule".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:geo".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#geo".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:lastModified".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#lastModified".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:location".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#location".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:organizer".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#organizer".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:priority".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#priority".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:rdate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#rdate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:recurrenceId".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#recurrenceId".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:relatedTo".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:requestStatus".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#requestStatus".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:resources".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#resources".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:rrule".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#rrule".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:sequence".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#sequence".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:status".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#status".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:summary".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#summary".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:transp".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#transp".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:trigger".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#trigger".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:uid".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#uid".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:url".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#url".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Vfreebusy, comment: "Provide a grouping of component properties that describe either a request for free/busy time, describe a response to a request for free/busy time or describe a published set of busy time.".freeze, subClassOf: [term( minCardinality: "0".freeze, - onProperty: "ical:attendee".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#attendee".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:comment".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#comment".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:contact".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#contact".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtend".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtend".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtstamp".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtstamp".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtstart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtstart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:duration".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#duration".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:freebusy".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#freebusy".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:organizer".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#organizer".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:requestStatus".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#requestStatus".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:uid".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#uid".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:url".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#url".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Vjournal, comment: "Provide a grouping of component properties that describe a journal entry.".freeze, subClassOf: [term( minCardinality: "0".freeze, - onProperty: "ical:attach".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#attach".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:attendee".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#attendee".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:categories".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#categories".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:class".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#class".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:comment".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#comment".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:contact".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#contact".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:created".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#created".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:description".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#description".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtstamp".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtstamp".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:exdate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#exdate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:exrule".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#exrule".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:lastModified".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#lastModified".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:organizer".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#organizer".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:rdate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#rdate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:recurrenceId".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#recurrenceId".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:relatedTo".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:requestStatus".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#requestStatus".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:rrule".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#rrule".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:sequence".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#sequence".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:status".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#status".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:summary".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#summary".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:uid".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#uid".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:url".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#url".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Vtimezone, comment: "Provide a grouping of component properties that defines a time zone.".freeze, subClassOf: [term( minCardinality: "0".freeze, - onProperty: "ical:comment".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#comment".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtstart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtstart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:exdate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#exdate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:lastModified".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#lastModified".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:rdate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#rdate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:recurrenceId".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#recurrenceId".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:rrule".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#rrule".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:tzid".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#tzid".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:tzname".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#tzname".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:tzoffsetfrom".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#tzoffsetfrom".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:tzoffsetto".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#tzoffsetto".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:tzurl".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#tzurl".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Vtodo, comment: "Provide a grouping of calendar properties that describe a to-do.".freeze, label: "To-do".freeze, subClassOf: [term( minCardinality: "0".freeze, - onProperty: "ical:attach".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#attach".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:attendee".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#attendee".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:categories".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#categories".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:class".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#class".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:comment".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#comment".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:completed".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#completed".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:contact".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#contact".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:created".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#created".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:description".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#description".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtstamp".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtstamp".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:dtstart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#dtstart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:due".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#due".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:duration".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#duration".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:exdate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#exdate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:exrule".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#exrule".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:geo".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#geo".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:lastModified".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#lastModified".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:location".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#location".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:organizer".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#organizer".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:percentComplete".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#percentComplete".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:priority".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#priority".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:rdate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#rdate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:recurrenceId".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#recurrenceId".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:relatedTo".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#relatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:requestStatus".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#requestStatus".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:resources".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#resources".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:rrule".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#rrule".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:sequence".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#sequence".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:status".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#status".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:summary".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#summary".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:trigger".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#trigger".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:uid".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#uid".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "0".freeze, - onProperty: "ical:url".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2002/12/cal/icaltzd#url".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :"X-", comment: ["This class of property provides a framework for defining non-standard properties.".freeze, "\n\t value type: TEXT".freeze], "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :action, comment: ["This property defines the action to be invoked when an alarm is triggered.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Valarm".freeze, "ical:Valarm".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :altrep, comment: "To specify an alternate text representation for the property value.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :attach, comment: ["The property provides the capability to associate a document object with a calendar component.".freeze, "\n\t default value type: URI".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Valarm".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Valarm".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "URI".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :attendee, comment: ["The property defines an \"Attendee\" within a calendar component.".freeze, "\n\t value type: CAL-ADDRESS".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Valarm".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vfreebusy".freeze, "ical:Valarm".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "CAL-ADDRESS".freeze, label: "attendee".freeze, - range: "ical:Value_CAL-ADDRESS".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_CAL-ADDRESS".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :byday, label: "BYDAY".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :byhour, label: "BYHOUR".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :byminute, label: "BYMINUTE".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :bymonth, label: "BYMONTH".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :bysecond, label: "BYSECOND".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :bysetpos, label: "BYSETPOS".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :byweekno, label: "BYWEEKNO".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :byyearday, label: "BYYEARDAY".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :calAddress, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :calscale, comment: ["This property defines the calendar scale used for the calendar information specified in the iCalendar object.".freeze, "\n\t value type: TEXT".freeze], "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :categories, comment: ["This property defines the categories for a calendar component.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :class, comment: ["This property defines the access classification for a calendar component.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :cn, comment: "To specify the common name to be associated with the calendar user specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :comment, comment: ["This property specifies non-processing information intended to provide a comment to the calendar user.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vtimezone".freeze, "ical:Vfreebusy".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :completed, comment: ["This property defines the date and time that a to-do was actually completed.".freeze, "\n\t value type: DATE-TIME".freeze], - domain: "ical:Vtodo".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, - range: "ical:Value_DATE-TIME".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_DATE-TIME".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :component, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :contact, comment: ["The property is used to represent contact information or alternately a reference to contact information associated with the calendar component.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vfreebusy".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :count, label: "COUNT".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :created, comment: ["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.".freeze, "\n\t value type: DATE-TIME".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, - range: "ical:Value_DATE-TIME".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_DATE-TIME".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :cutype, comment: "To specify the type of calendar user specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :daylight, label: "DAYLIGHT".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :delegatedFrom, comment: "To specify the calendar users that have delegated their participation to the calendar user specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :delegatedTo, comment: "To specify the calendar users to whom the calendar user specified by the property has delegated participation.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :description, comment: ["This property provides a more complete description of the calendar component, than that provided by the \"SUMMARY\" property.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Valarm".freeze, "ical:Vjournal".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Valarm".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :dir, comment: "To specify reference to a directory entry associated with the calendar user specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :dtend, comment: ["This property specifies the date and time that a calendar component ends.".freeze, "\n\t default value type: DATE-TIME".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vfreebusy".freeze, "ical:Vevent".freeze, "ical:Vfreebusy".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, label: "end".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :dtstamp, comment: ["The property indicates the date/time that the instance of the iCalendar object was created.".freeze, "\n\t value type: DATE-TIME".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vfreebusy".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, - range: "ical:Value_DATE-TIME".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_DATE-TIME".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :dtstart, comment: ["This property specifies when the calendar component begins.".freeze, "\n\t default value type: DATE-TIME".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vfreebusy".freeze, "ical:Vtimezone".freeze, "ical:Vevent".freeze, "ical:Vevent".freeze, "ical:Vfreebusy".freeze, "ical:Vtimezone".freeze, "ical:Vtimezone".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, label: "start".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :due, comment: ["This property defines the date and time that a to-do is expected to be completed.".freeze, "\n\t default value type: DATE-TIME".freeze], - domain: "ical:Vtodo".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :duration, comment: ["The property specifies a positive duration of time.".freeze, "\n\t value type: DURATION".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vfreebusy".freeze, "ical:Valarm".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vfreebusy".freeze, "ical:Valarm".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DURATION".freeze, - range: "ical:Value_DURATION".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_DURATION".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :encoding, comment: "To specify an alternate inline encoding for the property value.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :exdate, comment: ["This property defines the list of date/time exceptions for a recurring calendar component.".freeze, "\n\t default value type: DATE-TIME".freeze], - domain: "ical:DomainOf_rrule".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#DomainOf_rrule".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :exrule, comment: ["This property defines a rule or repeating pattern for an exception to a recurrence set.".freeze, "\n\t value type: RECUR".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "RECUR".freeze, - range: "ical:Value_RECUR".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_RECUR".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :fbtype, comment: "To specify the free or busy time type.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :fmttype, comment: "To specify the content type of a referenced object.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :freebusy, comment: ["The property defines one or more free or busy time intervals.".freeze, "\n\t value type: PERIOD".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vfreebusy".freeze, "ical:Vfreebusy".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "PERIOD".freeze, - range: "ical:Value_PERIOD".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_PERIOD".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :freq, label: "FREQ".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :geo, comment: ["This property specifies information related to the global position for the activity specified by a calendar component.".freeze, "\n\t value type: list of FLOAT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueListType": "FLOAT".freeze, - range: "ical:List_of_Float".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#List_of_Float".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :interval, label: "INTERVAL".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :language, comment: "To specify the language for text values in a property or property parameter.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :lastModified, comment: ["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.".freeze, "\n\t value type: DATE-TIME".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vtimezone".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, - range: "ical:Value_DATE-TIME".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_DATE-TIME".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :location, comment: ["The property defines the intended venue for the activity defined by a calendar component.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, label: "location".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :member, comment: "To specify the group or list membership of the calendar user specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :method, comment: ["This property defines the iCalendar object method associated with the calendar object.".freeze, "\n\t value type: TEXT".freeze], "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :organizer, comment: ["The property defines the organizer for a calendar component.".freeze, "\n\t value type: CAL-ADDRESS".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vfreebusy".freeze, "ical:Vfreebusy".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "CAL-ADDRESS".freeze, - range: "ical:Value_CAL-ADDRESS".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_CAL-ADDRESS".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :partstat, comment: "To specify the participation status for the calendar user specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :percentComplete, comment: ["This property is used by an assignee or delegatee of a to-do to convey the percent completion of a to-do to the Organizer.".freeze, "\n\t value type: INTEGER".freeze], - domain: "ical:Vtodo".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "INTEGER".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :priority, comment: ["The property defines the relative priority for a calendar component.".freeze, "\n\t value type: INTEGER".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "INTEGER".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :prodid, comment: ["This property specifies the identifier for the product that created the iCalendar object.".freeze, "\n\t value type: TEXT".freeze], "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :range, comment: "To specify the effective range of recurrence instances from the instance specified by the recurrence identifier specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :rdate, comment: ["This property defines the list of date/times for a recurrence set.".freeze, "\n\t default value type: DATE-TIME".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vtimezone".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :recurrenceId, comment: ["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.".freeze, "\n\t default value type: DATE-TIME".freeze], - domain: "ical:DomainOf_rrule".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#DomainOf_rrule".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DATE-TIME".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :related, comment: "To specify the relationship of the alarm trigger with respect to the start or end of the calendar component.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :relatedTo, comment: ["The property is used to represent a relationship or reference between one calendar component and another.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :reltype, comment: "To specify the type of hierarchical relationship associated with the calendar component specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :repeat, comment: ["This property defines the number of time the alarm should be repeated, after the initial trigger.".freeze, "\n\t value type: INTEGER".freeze], - domain: "ical:Valarm".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "INTEGER".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :requestStatus, comment: ["This property defines the status code returned for a scheduling request.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vfreebusy".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :resources, comment: ["This property defines the equipment or resources anticipated for an activity specified by a calendar entity..".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :role, comment: "To specify the participation role for the calendar user specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :rrule, comment: ["This property defines a rule or repeating pattern for recurring events, to-dos, or time zone definitions.".freeze, "\n\t value type: RECUR".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vtimezone".freeze, "ical:Vtimezone".freeze, "ical:Vtimezone".freeze, "ical:Vtimezone".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "RECUR".freeze, - range: "ical:Value_RECUR".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2002/12/cal/icaltzd#Value_RECUR".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :rsvp, comment: "To specify whether there is an expectation of a favor of a reply from the calendar user specified by the property value.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :sentBy, comment: "To specify the calendar user that is acting on behalf of the calendar user specified by the property.".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :sequence, comment: ["This property defines the revision sequence number of the calendar component within a sequence of revisions.".freeze, "\n\t value type: integer".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "integer".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :standard, label: "STANDARD".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :status, comment: ["This property defines the overall status or confirmation for the calendar component.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :summary, comment: ["This property defines a short summary or subject for the calendar component.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Valarm".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Valarm".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, label: "summary".freeze, - range: "xsd:string".freeze, - subPropertyOf: "rdfs:label".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :transp, comment: ["This property defines whether an event is transparent or not to busy time searches.".freeze, "\n\t value type: TEXT".freeze], - domain: "ical:Vevent".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :trigger, comment: ["This property specifies when an alarm will trigger.".freeze, "\n\t default value type: DURATION".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Valarm".freeze, "ical:Valarm".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Valarm".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "DURATION".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("ical:Value_DURATION".freeze, "ical:Value_DATE".freeze, "ical:Value_DATE".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Value_DURATION".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Value_DATE".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Value_DATE".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :tzid, comment: ["This property specifies the text value that uniquely identifies the \"VTIMEZONE\" calendar component.".freeze, "To specify the identifier for the time zone definition for a time component in the property value.".freeze, "\n\t value type: TEXT".freeze], - domain: "ical:Vtimezone".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :tzname, comment: ["This property specifies the customary designation for a time zone description.".freeze, "\n\t value type: TEXT".freeze], - domain: "ical:Vtimezone".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :tzoffsetfrom, comment: ["This property specifies the offset which is in use prior to this time zone observance.".freeze, "\n\t value type: UTC-OFFSET".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vtimezone".freeze, "ical:Vtimezone".freeze, "ical:Vtimezone".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "UTC-OFFSET".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :tzoffsetto, comment: ["This property specifies the offset which is in use in this time zone observance.".freeze, "\n\t value type: UTC-OFFSET".freeze], - domain: "ical:Vtimezone".freeze, + domain: "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icalSpec#valueType": "UTC-OFFSET".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :tzurl, comment: ["The TZURL provides a means for a VTIMEZONE component to point to a network location that can be used to retrieve an up-to- date version of itself.".freeze, "\n\t value type: URI".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vtimezone".freeze, "ical:Vtimezone".freeze, "ical:Vtimezone".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtimezone".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "URI".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :uid, comment: ["This property defines the persistent, globally unique identifier for the calendar component.".freeze, "\n\t value type: TEXT".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vfreebusy".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :until, label: "UNTIL".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :url, comment: ["This property defines a Uniform Resource Locator (URL) associated with the iCalendar object.".freeze, "\n\t value type: URI".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("ical:Vevent".freeze, "ical:Vtodo".freeze, "ical:Vjournal".freeze, "ical:Vfreebusy".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2002/12/cal/icaltzd#Vevent".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vtodo".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vjournal".freeze, "http://www.w3.org/2002/12/cal/icaltzd#Vfreebusy".freeze) ), "http://www.w3.org/2002/12/cal/icalSpec#valueType": "URI".freeze, label: "see also".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :version, comment: ["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.".freeze, "\n\t value type: TEXT".freeze], "http://www.w3.org/2002/12/cal/icalSpec#valueType": "TEXT".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :wkst, label: "WKST".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze # Datatype definitions term :"Value_DATE-TIME", - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :dateTime, - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze end end diff --git a/lib/rdf/vocab/identifiers.rb b/lib/rdf/vocab/identifiers.rb index 9f0efbc..43cb309 100644 --- a/lib/rdf/vocab/identifiers.rb +++ b/lib/rdf/vocab/identifiers.rb @@ -3,317 +3,14 @@ # This file generated automatically using rdf vocabulary format from http://id.loc.gov/vocabulary/identifiers/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Standard Identifier Schemes - # # - # # Standard Identifiers Scheme lists standard number or code systems and assigns a URI to each database or publication that defines or contains the identifiers. The purpose of these source codes is to enable the type of standard numbers or codes in resource descriptions to be indicated by URI. - # class Identifiers < RDF::StrictVocabulary - # # Generic Identifier property. It is expected that one will use one of its many subproperties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :id - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agrovoc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :allmovie - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :allmusic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :allocine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amnbo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ansi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :artsy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bdusc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bfi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bnfcg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cantic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cgndb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :danacode - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :datoses - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :discogs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dkfilm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :doi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ean - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eidr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fast - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :filmport - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :findagr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :freebase - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gec - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geogndb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :geonames - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gettytgn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gettyulan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gnis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hdl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ibdb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :idref - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :imdb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isbn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isbnre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ismn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isni - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iso - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isrc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :issn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :istc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :iswc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :kinipo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lccn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lcmd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :libaus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :local - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :moma - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :munzing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :natgazfid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nga - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nipo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nndb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :npg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :odnb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :opensm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orcid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oxforddnb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :porthu - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rbmsbt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rbmsgt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rbmspe - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rbmsppe - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rbmspt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rbmsrd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rbmste - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rkda - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :saam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scholaru - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scope - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scopus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sici - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spotify - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sprfbsb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sprfbsk - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sprfcbb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sprfcfb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sprfhoc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sprfoly - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sprfpfb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :strn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :svfilm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tatearid - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :theatr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trove - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :upc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :uri - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :urn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :viaf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikidata - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wndla - # - # end Identifiers = Class.new(RDF::StrictVocabulary("http://id.loc.gov/vocabulary/identifiers/")) do # Ontology definition ontology :"http://id.loc.gov/vocabulary/identifiers/", comment: "Standard Identifiers Scheme lists standard number or code systems and assigns a URI to each database or publication that defines or contains the identifiers. The purpose of these source codes is to enable the type of standard numbers or codes in resource descriptions to be indicated by URI.".freeze, + "http://www.loc.gov/mads/rdf/v1#hasMADSSchemeMember": ["http://id.loc.gov/vocabulary/identifiers/agrovoc".freeze, "http://id.loc.gov/vocabulary/identifiers/allmovie".freeze, "http://id.loc.gov/vocabulary/identifiers/allmusic".freeze, "http://id.loc.gov/vocabulary/identifiers/allocine".freeze, "http://id.loc.gov/vocabulary/identifiers/amnbo".freeze, "http://id.loc.gov/vocabulary/identifiers/ansi".freeze, "http://id.loc.gov/vocabulary/identifiers/artsy".freeze, "http://id.loc.gov/vocabulary/identifiers/bdusc".freeze, "http://id.loc.gov/vocabulary/identifiers/bfi".freeze, "http://id.loc.gov/vocabulary/identifiers/bnfcg".freeze, "http://id.loc.gov/vocabulary/identifiers/cantic".freeze, "http://id.loc.gov/vocabulary/identifiers/cgndb".freeze, "http://id.loc.gov/vocabulary/identifiers/danacode".freeze, "http://id.loc.gov/vocabulary/identifiers/datoses".freeze, "http://id.loc.gov/vocabulary/identifiers/discogs".freeze, "http://id.loc.gov/vocabulary/identifiers/dkfilm".freeze, "http://id.loc.gov/vocabulary/identifiers/doi".freeze, "http://id.loc.gov/vocabulary/identifiers/ean".freeze, "http://id.loc.gov/vocabulary/identifiers/eidr".freeze, "http://id.loc.gov/vocabulary/identifiers/fast".freeze, "http://id.loc.gov/vocabulary/identifiers/filmport".freeze, "http://id.loc.gov/vocabulary/identifiers/findagr".freeze, "http://id.loc.gov/vocabulary/identifiers/freebase".freeze, "http://id.loc.gov/vocabulary/identifiers/gec".freeze, "http://id.loc.gov/vocabulary/identifiers/geogndb".freeze, "http://id.loc.gov/vocabulary/identifiers/geonames".freeze, "http://id.loc.gov/vocabulary/identifiers/gettytgn".freeze, "http://id.loc.gov/vocabulary/identifiers/gettyulan".freeze, "http://id.loc.gov/vocabulary/identifiers/gnd".freeze, "http://id.loc.gov/vocabulary/identifiers/gnis".freeze, "http://id.loc.gov/vocabulary/identifiers/gtin-14".freeze, "http://id.loc.gov/vocabulary/identifiers/hdl".freeze, "http://id.loc.gov/vocabulary/identifiers/ibdb".freeze, "http://id.loc.gov/vocabulary/identifiers/idref".freeze, "http://id.loc.gov/vocabulary/identifiers/imdb".freeze, "http://id.loc.gov/vocabulary/identifiers/isan".freeze, "http://id.loc.gov/vocabulary/identifiers/isbn".freeze, "http://id.loc.gov/vocabulary/identifiers/isbn-a".freeze, "http://id.loc.gov/vocabulary/identifiers/isbnre".freeze, "http://id.loc.gov/vocabulary/identifiers/isil".freeze, "http://id.loc.gov/vocabulary/identifiers/ismn".freeze, "http://id.loc.gov/vocabulary/identifiers/isni".freeze, "http://id.loc.gov/vocabulary/identifiers/iso".freeze, "http://id.loc.gov/vocabulary/identifiers/isrc".freeze, "http://id.loc.gov/vocabulary/identifiers/issn".freeze, "http://id.loc.gov/vocabulary/identifiers/issn-l".freeze, "http://id.loc.gov/vocabulary/identifiers/issue-number".freeze, "http://id.loc.gov/vocabulary/identifiers/istc".freeze, "http://id.loc.gov/vocabulary/identifiers/iswc".freeze, "http://id.loc.gov/vocabulary/identifiers/itar".freeze, "http://id.loc.gov/vocabulary/identifiers/kinipo".freeze, "http://id.loc.gov/vocabulary/identifiers/lccn".freeze, "http://id.loc.gov/vocabulary/identifiers/lcmd".freeze, "http://id.loc.gov/vocabulary/identifiers/libaus".freeze, "http://id.loc.gov/vocabulary/identifiers/local".freeze, "http://id.loc.gov/vocabulary/identifiers/matrix-number".freeze, "http://id.loc.gov/vocabulary/identifiers/moma".freeze, "http://id.loc.gov/vocabulary/identifiers/munzing".freeze, "http://id.loc.gov/vocabulary/identifiers/music-plate".freeze, "http://id.loc.gov/vocabulary/identifiers/music-publisher".freeze, "http://id.loc.gov/vocabulary/identifiers/musicb".freeze, "http://id.loc.gov/vocabulary/identifiers/natgazfid".freeze, "http://id.loc.gov/vocabulary/identifiers/nga".freeze, "http://id.loc.gov/vocabulary/identifiers/nipo".freeze, "http://id.loc.gov/vocabulary/identifiers/nndb".freeze, "http://id.loc.gov/vocabulary/identifiers/npg".freeze, "http://id.loc.gov/vocabulary/identifiers/odnb".freeze, "http://id.loc.gov/vocabulary/identifiers/opensm".freeze, "http://id.loc.gov/vocabulary/identifiers/orcid".freeze, "http://id.loc.gov/vocabulary/identifiers/oxforddnb".freeze, "http://id.loc.gov/vocabulary/identifiers/porthu".freeze, "http://id.loc.gov/vocabulary/identifiers/rbmsbt".freeze, "http://id.loc.gov/vocabulary/identifiers/rbmsgt".freeze, "http://id.loc.gov/vocabulary/identifiers/rbmspe".freeze, "http://id.loc.gov/vocabulary/identifiers/rbmsppe".freeze, "http://id.loc.gov/vocabulary/identifiers/rbmspt".freeze, "http://id.loc.gov/vocabulary/identifiers/rbmsrd".freeze, "http://id.loc.gov/vocabulary/identifiers/rbmste".freeze, "http://id.loc.gov/vocabulary/identifiers/rid".freeze, "http://id.loc.gov/vocabulary/identifiers/rkda".freeze, "http://id.loc.gov/vocabulary/identifiers/saam".freeze, "http://id.loc.gov/vocabulary/identifiers/scholaru".freeze, "http://id.loc.gov/vocabulary/identifiers/scope".freeze, "http://id.loc.gov/vocabulary/identifiers/scopus".freeze, "http://id.loc.gov/vocabulary/identifiers/sici".freeze, "http://id.loc.gov/vocabulary/identifiers/spotify".freeze, "http://id.loc.gov/vocabulary/identifiers/sprfbsb".freeze, "http://id.loc.gov/vocabulary/identifiers/sprfbsk".freeze, "http://id.loc.gov/vocabulary/identifiers/sprfcbb".freeze, "http://id.loc.gov/vocabulary/identifiers/sprfcfb".freeze, "http://id.loc.gov/vocabulary/identifiers/sprfhoc".freeze, "http://id.loc.gov/vocabulary/identifiers/sprfoly".freeze, "http://id.loc.gov/vocabulary/identifiers/sprfpfb".freeze, "http://id.loc.gov/vocabulary/identifiers/stock-number".freeze, "http://id.loc.gov/vocabulary/identifiers/strn".freeze, "http://id.loc.gov/vocabulary/identifiers/svfilm".freeze, "http://id.loc.gov/vocabulary/identifiers/tatearid".freeze, "http://id.loc.gov/vocabulary/identifiers/theatr".freeze, "http://id.loc.gov/vocabulary/identifiers/trove".freeze, "http://id.loc.gov/vocabulary/identifiers/upc".freeze, "http://id.loc.gov/vocabulary/identifiers/uri".freeze, "http://id.loc.gov/vocabulary/identifiers/urn".freeze, "http://id.loc.gov/vocabulary/identifiers/viaf".freeze, "http://id.loc.gov/vocabulary/identifiers/videorecording-identifier".freeze, "http://id.loc.gov/vocabulary/identifiers/wikidata".freeze, "http://id.loc.gov/vocabulary/identifiers/wndla".freeze], label: "Standard Identifier Schemes".freeze, - "mads:hasMADSSchemeMember": ["identifiers:agrovoc".freeze, "identifiers:allmovie".freeze, "identifiers:allmusic".freeze, "identifiers:allocine".freeze, "identifiers:amnbo".freeze, "identifiers:ansi".freeze, "identifiers:artsy".freeze, "identifiers:bdusc".freeze, "identifiers:bfi".freeze, "identifiers:bnfcg".freeze, "identifiers:cantic".freeze, "identifiers:cgndb".freeze, "identifiers:danacode".freeze, "identifiers:datoses".freeze, "identifiers:discogs".freeze, "identifiers:dkfilm".freeze, "identifiers:doi".freeze, "identifiers:ean".freeze, "identifiers:eidr".freeze, "identifiers:fast".freeze, "identifiers:filmport".freeze, "identifiers:findagr".freeze, "identifiers:freebase".freeze, "identifiers:gec".freeze, "identifiers:geogndb".freeze, "identifiers:geonames".freeze, "identifiers:gettytgn".freeze, "identifiers:gettyulan".freeze, "identifiers:gnd".freeze, "identifiers:gnis".freeze, "identifiers:gtin-14".freeze, "identifiers:hdl".freeze, "identifiers:ibdb".freeze, "identifiers:idref".freeze, "identifiers:imdb".freeze, "identifiers:isan".freeze, "identifiers:isbn".freeze, "identifiers:isbn-a".freeze, "identifiers:isbnre".freeze, "identifiers:isil".freeze, "identifiers:ismn".freeze, "identifiers:isni".freeze, "identifiers:iso".freeze, "identifiers:isrc".freeze, "identifiers:issn".freeze, "identifiers:issn-l".freeze, "identifiers:issue-number".freeze, "identifiers:istc".freeze, "identifiers:iswc".freeze, "identifiers:itar".freeze, "identifiers:kinipo".freeze, "identifiers:lccn".freeze, "identifiers:lcmd".freeze, "identifiers:libaus".freeze, "identifiers:local".freeze, "identifiers:matrix-number".freeze, "identifiers:moma".freeze, "identifiers:munzing".freeze, "identifiers:music-plate".freeze, "identifiers:music-publisher".freeze, "identifiers:musicb".freeze, "identifiers:natgazfid".freeze, "identifiers:nga".freeze, "identifiers:nipo".freeze, "identifiers:nndb".freeze, "identifiers:npg".freeze, "identifiers:odnb".freeze, "identifiers:opensm".freeze, "identifiers:orcid".freeze, "identifiers:oxforddnb".freeze, "identifiers:porthu".freeze, "identifiers:rbmsbt".freeze, "identifiers:rbmsgt".freeze, "identifiers:rbmspe".freeze, "identifiers:rbmsppe".freeze, "identifiers:rbmspt".freeze, "identifiers:rbmsrd".freeze, "identifiers:rbmste".freeze, "identifiers:rid".freeze, "identifiers:rkda".freeze, "identifiers:saam".freeze, "identifiers:scholaru".freeze, "identifiers:scope".freeze, "identifiers:scopus".freeze, "identifiers:sici".freeze, "identifiers:spotify".freeze, "identifiers:sprfbsb".freeze, "identifiers:sprfbsk".freeze, "identifiers:sprfcbb".freeze, "identifiers:sprfcfb".freeze, "identifiers:sprfhoc".freeze, "identifiers:sprfoly".freeze, "identifiers:sprfpfb".freeze, "identifiers:stock-number".freeze, "identifiers:strn".freeze, "identifiers:svfilm".freeze, "identifiers:tatearid".freeze, "identifiers:theatr".freeze, "identifiers:trove".freeze, "identifiers:upc".freeze, "identifiers:uri".freeze, "identifiers:urn".freeze, "identifiers:viaf".freeze, "identifiers:videorecording-identifier".freeze, "identifiers:wikidata".freeze, "identifiers:wndla".freeze], - type: ["mads:MADSScheme".freeze, "skos:ConceptScheme".freeze] + type: ["http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze, "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze] # Property definitions property :id, @@ -323,319 +20,319 @@ module RDF::Vocab # Extra definitions term :agrovoc, - "mads:authoritativeLabel": "AGROVOC multilingual agricultural thesaurus".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "AGROVOC multilingual agricultural thesaurus".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :allmovie, - "mads:authoritativeLabel": "AllMovie".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "AllMovie".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :allmusic, - "mads:authoritativeLabel": "AllMusic".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "AllMusic".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :allocine, - "mads:authoritativeLabel": "AlloCiné".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "AlloCiné".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :amnbo, - "mads:authoritativeLabel": "American National Biography Online".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "American National Biography Online".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ansi, - "mads:authoritativeLabel": "American National Standards Institute and National Information Standards Organisation number for an ANSI or ANSI/NISO standard".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "American National Standards Institute and National Information Standards Organisation number for an ANSI or ANSI/NISO standard".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :artsy, - "mads:authoritativeLabel": "Artsy".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Artsy".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bdusc, - "mads:authoritativeLabel": "Biographical Directory of the United States Congress".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Biographical Directory of the United States Congress".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bfi, - "mads:authoritativeLabel": "BFI - British Film Institute".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "BFI - British Film Institute".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bnfcg, - "mads:authoritativeLabel": "BnF catalogue général".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "BnF catalogue général".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cantic, - "mads:authoritativeLabel": "CANTIC (Biblioteca de Catalunya)".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "CANTIC (Biblioteca de Catalunya)".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cgndb, - "mads:authoritativeLabel": "Canadian Geographical Names Database".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Canadian Geographical Names Database".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :danacode, - "mads:authoritativeLabel": "Danacode".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Danacode".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :datoses, - "mads:authoritativeLabel": "datos.bne.es".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "datos.bne.es".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :discogs, - "mads:authoritativeLabel": "Discogs".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Discogs".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dkfilm, - "mads:authoritativeLabel": "Det Danske Filminstitut Filmdatabasen".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Det Danske Filminstitut Filmdatabasen".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :doi, - "mads:authoritativeLabel": "Digital Object Identifier".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Digital Object Identifier".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ean, - "mads:authoritativeLabel": "International Article Number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Article Number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :eidr, - "mads:authoritativeLabel": "EIDR: Entertainment Identifier Registry".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "EIDR: Entertainment Identifier Registry".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fast, - "mads:authoritativeLabel": "FAST - Faceted Application of Subject Terminology".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "FAST - Faceted Application of Subject Terminology".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :filmport, - "mads:authoritativeLabel": "filmportal.de".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "filmportal.de".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :findagr, - "mads:authoritativeLabel": "Find a Grave".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Find a Grave".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :freebase, - "mads:authoritativeLabel": "Freebase".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Freebase".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :gec, - "mads:authoritativeLabel": "Gran enciclopèdia catalana".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Gran enciclopèdia catalana".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :geogndb, - "mads:authoritativeLabel": "Geographic Names Database".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Geographic Names Database".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :geonames, - "mads:authoritativeLabel": "GeoNames".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "GeoNames".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :gettytgn, - "mads:authoritativeLabel": "Getty Thesaurus of Geographic Names Online".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Getty Thesaurus of Geographic Names Online".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :gettyulan, - "mads:authoritativeLabel": "Union List of Artist Names Online".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Union List of Artist Names Online".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :gnd, - "mads:authoritativeLabel": "Gemeinsame Normdatei".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Gemeinsame Normdatei".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :gnis, - "mads:authoritativeLabel": "Geographic Names Information System (United States Geological Survey, Board on Geographic Names)".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Geographic Names Information System (United States Geological Survey, Board on Geographic Names)".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :"gtin-14", - "mads:authoritativeLabel": "Global Trade Identification Number 14".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Global Trade Identification Number 14".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :hdl, - "mads:authoritativeLabel": "Handle".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Handle".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ibdb, - "mads:authoritativeLabel": "IBDB - Internet Broadway Database".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "IBDB - Internet Broadway Database".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :idref, - "mads:authoritativeLabel": "IdRef: le référentiel des autorités Sudoc".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "IdRef: le référentiel des autorités Sudoc".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :imdb, - "mads:authoritativeLabel": "IMDb - Internet Movie Database".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "IMDb - Internet Movie Database".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :isan, - "mads:authoritativeLabel": "International Standard Audiovisual Number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Standard Audiovisual Number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :isbn, - "mads:authoritativeLabel": "International Standard Book Number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Standard Book Number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :isbnre, - "mads:authoritativeLabel": "ISBN registrant element [Note: Refers to the part of the ISBN number that is stable for a publisher's publications (the registrant element).]".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "ISBN registrant element [Note: Refers to the part of the ISBN number that is stable for a publisher's publications (the registrant element).]".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :isil, - "mads:authoritativeLabel": "ISIL".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "ISIL".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ismn, - "mads:authoritativeLabel": "International Standard Music Number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Standard Music Number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :isni, - "mads:authoritativeLabel": "International Standard Name Identifier".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Standard Name Identifier".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :iso, - "mads:authoritativeLabel": "International Organization for Standardization number for an ISO standard".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Organization for Standardization number for an ISO standard".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :isrc, - "mads:authoritativeLabel": "International Standard Recording Code".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Standard Recording Code".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :issn, - "mads:authoritativeLabel": "International Standard Serial Number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Standard Serial Number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :"issn-l", - "mads:authoritativeLabel": "Linking International Standard Serial Number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Linking International Standard Serial Number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :"issue-number", - "mads:authoritativeLabel": "Sound recording issue number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sound recording issue number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :istc, - "mads:authoritativeLabel": "International Standard Text Code".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Standard Text Code".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :iswc, - "mads:authoritativeLabel": "International Standard Musical Work Code".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "International Standard Musical Work Code".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :itar, - "mads:authoritativeLabel": "ITAR".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "ITAR".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :kinipo, - "mads:authoritativeLabel": "КиноПоиск = KinoPoisk".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "КиноПоиск = KinoPoisk".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lccn, - "mads:authoritativeLabel": "Library of Congress Control Number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Library of Congress Control Number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lcmd, - "mads:authoritativeLabel": "Library of Congress Manuscript Division".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Library of Congress Manuscript Division".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :libaus, - "mads:authoritativeLabel": "Libraries Australia".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Libraries Australia".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :local, - "mads:authoritativeLabel": "Locally defined identifier".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Locally defined identifier".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :"matrix-number", - "mads:authoritativeLabel": "Sound recording matrix number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sound recording matrix number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :moma, - "mads:authoritativeLabel": "Museum of Modern Art".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Museum of Modern Art".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :munzing, - "mads:authoritativeLabel": "Munzinger".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Munzinger".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :"music-plate", - "mads:authoritativeLabel": "Publisher's music plate number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Publisher's music plate number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :"music-publisher", - "mads:authoritativeLabel": "Publisher-assigned music number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Publisher-assigned music number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :musicb, - "mads:authoritativeLabel": "MusicBrainz".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "MusicBrainz".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :natgazfid, - "mads:authoritativeLabel": "U.S. National Gazetteer Feature Name Identifier".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "U.S. National Gazetteer Feature Name Identifier".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :nga, - "mads:authoritativeLabel": "National Gallery of Art".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "National Gallery of Art".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :nipo, - "mads:authoritativeLabel": "Número de Identificación de las Publicaciones Oficiales".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Número de Identificación de las Publicaciones Oficiales".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :nndb, - "mads:authoritativeLabel": "NNDB".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "NNDB".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :npg, - "mads:authoritativeLabel": "National Portrait Gallery".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "National Portrait Gallery".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :odnb, - "mads:authoritativeLabel": "Oxford Dictionary of National Biography".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Oxford Dictionary of National Biography".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :opensm, - "mads:authoritativeLabel": "OpenStreetMap".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "OpenStreetMap".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :orcid, - "mads:authoritativeLabel": "Open Researcher and Contributor Identifier".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Open Researcher and Contributor Identifier".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :oxforddnb, - "mads:authoritativeLabel": "Oxford Biography Index".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Oxford Biography Index".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :porthu, - "mads:authoritativeLabel": "PORT.hu".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "PORT.hu".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rbmsbt, - "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Binding Terms".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "RBMS Controlled Vocabularies: Binding Terms".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rbmsgt, - "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Genre Terms".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "RBMS Controlled Vocabularies: Genre Terms".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rbmspe, - "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Provenance Evidence".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "RBMS Controlled Vocabularies: Provenance Evidence".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rbmsppe, - "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Printing and Publishing Terms".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "RBMS Controlled Vocabularies: Printing and Publishing Terms".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rbmspt, - "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Paper Terms".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "RBMS Controlled Vocabularies: Paper Terms".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rbmsrd, - "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Relationship Designators".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "RBMS Controlled Vocabularies: Relationship Designators".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rbmste, - "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Type Evidence".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "RBMS Controlled Vocabularies: Type Evidence".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rid, - "mads:authoritativeLabel": "ResearcherID".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "ResearcherID".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rkda, - "mads:authoritativeLabel": "RKDartists&".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "RKDartists&".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :saam, - "mads:authoritativeLabel": "Smithsonian American Art Museum".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Smithsonian American Art Museum".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :scholaru, - "mads:authoritativeLabel": "Scholar Universe".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Scholar Universe".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :scope, - "mads:authoritativeLabel": "Scope".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Scope".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :scopus, - "mads:authoritativeLabel": "Scopus Author Identifier".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Scopus Author Identifier".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sici, - "mads:authoritativeLabel": "Serial Item and Contribution Identifier".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Serial Item and Contribution Identifier".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :spotify, - "mads:authoritativeLabel": "Spotify".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Spotify".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sprfbsb, - "mads:authoritativeLabel": "Sports Reference: Baseball".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sports Reference: Baseball".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sprfbsk, - "mads:authoritativeLabel": "Sports Reference: Basketball".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sports Reference: Basketball".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sprfcbb, - "mads:authoritativeLabel": "Sports Reference: College Basketball".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sports Reference: College Basketball".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sprfcfb, - "mads:authoritativeLabel": "Sports Reference: College Football".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sports Reference: College Football".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sprfhoc, - "mads:authoritativeLabel": "Sports Reference: Hockey".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sports Reference: Hockey".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sprfoly, - "mads:authoritativeLabel": "Sports Reference: Olympic Sports".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sports Reference: Olympic Sports".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sprfpfb, - "mads:authoritativeLabel": "Sports Reference: Pro Football".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sports Reference: Pro Football".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :"stock-number", - "mads:authoritativeLabel": "Publisher, distributor, or vendor stock number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Publisher, distributor, or vendor stock number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :strn, - "mads:authoritativeLabel": "Standard Technical Report Number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Standard Technical Report Number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :svfilm, - "mads:authoritativeLabel": "Svensk Filmdatabas".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Svensk Filmdatabas".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :tatearid, - "mads:authoritativeLabel": "Tate Artist Identifier".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Tate Artist Identifier".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :theatr, - "mads:authoritativeLabel": "Theatricalia".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Theatricalia".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :trove, - "mads:authoritativeLabel": "Trove".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Trove".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :upc, - "mads:authoritativeLabel": "Universal Product Code".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Universal Product Code".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :uri, - "mads:authoritativeLabel": "Uniform Resource Identifier".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Uniform Resource Identifier".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :urn, - "mads:authoritativeLabel": "Uniform Resource Name".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Uniform Resource Name".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :viaf, - "mads:authoritativeLabel": "Virtual International Authority File number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Virtual International Authority File number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :"videorecording-identifier", - "mads:authoritativeLabel": "Publisher-assigned videorecording number".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Publisher-assigned videorecording number".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wikidata, - "mads:authoritativeLabel": "Wikidata".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Wikidata".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wndla, - "mads:authoritativeLabel": "Web NDL Authorities )".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Web NDL Authorities )".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze end end diff --git a/lib/rdf/vocab/iiif.rb b/lib/rdf/vocab/iiif.rb index a934da6..f0f061c 100644 --- a/lib/rdf/vocab/iiif.rb +++ b/lib/rdf/vocab/iiif.rb @@ -3,320 +3,181 @@ # This file generated automatically using rdf vocabulary format from http://iiif.io/api/presentation/2# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # @version 2015-12-13 23:00:00Z - # class IIIF < RDF::StrictVocabulary - # # AnnotationLists are an ordered list of Annotation objects. Typically all Annnotations in a list target the same Canvas - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnnotationList - # - # # The canvas represents an individual page or view and acts as a central point for laying out the different content resources that make up the display. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Canvas - # - # # Collections are used to list the manifests available for viewing, and to describe the structures, hierarchies or collections that the physical objects are part of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # Layers are lists of AnnotationLists to group them together, for example to create the set of lists that make up a particular translation/edition of a text - # # @return [RDF::Vocabulary::Term] - # attr_reader :Layer - # - # # The manifest resource represents a single object and any intellectual work or works embodied within that object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manifest - # - # # Ranges describe additional structure within an object, such as newspaper articles that span pages, the range of non-content-bearing pages at the beginning of a work, or chapters within a book - # # @return [RDF::Vocabulary::Term] - # attr_reader :Range - # - # # The sequence conveys the ordering of the views of the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sequence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ViewingDirection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ViewingHint - # - # # Used to group annotations together in an area of a Canvas, for example to model columns, foldouts or palimpsests; Note that Zones are not currently used in the IIIF Presentation API. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Zone - # - # # A string containing an attribution description that must be displayed when using the resource - # # @return [RDF::Vocabulary::Term] - # attr_reader :attributionLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAnnotations - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCanvases - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCollections - # - # # A link from a Range to a Layer that provides the content resources of that Range - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContentLayer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasImageAnnotations - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLists - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasManifests - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRanges - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSequences - # - # # A link from a Manifest or Sequence to the Canvas that the rendering agent should initialize their view with. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStartCanvas - # - # # An rdf:List of label/value pairs providing descriptive metadata about the resource, intended for human audience - # # @return [RDF::Vocabulary::Term] - # attr_reader :metadataLabels - # - # # References the sc:ViewingDirection that defines the direction that the resource should be viewed in - # # @return [RDF::Vocabulary::Term] - # attr_reader :viewingDirection - # - # # A hint to a user agent as to how to render the resource - # # @return [RDF::Vocabulary::Term] - # attr_reader :viewingHint - # - # # Bottom-to-Top Viewing Direction - # # @return [RDF::Vocabulary::Term] - # attr_reader :bottomToTopDirection - # - # # Each canvas represents a segment of a continuous object such as a long scroll - # # @return [RDF::Vocabulary::Term] - # attr_reader :continuousHint - # - # # Canvases with this hint depict both parts of an opening. - # # @return [RDF::Vocabulary::Term] - # attr_reader :facingPagesHint - # - # # Each canvas represents a separate individual object, and should not have transitions - # # @return [RDF::Vocabulary::Term] - # attr_reader :individualsHint - # - # # Left-to-Right Viewing Direction - # # @return [RDF::Vocabulary::Term] - # attr_reader :leftToRightDirection - # - # # Collections with this hint consist of multiple manifests that each form part of a logical whole. - # # @return [RDF::Vocabulary::Term] - # attr_reader :multiPartHint - # - # # Viewing Hint that the Canvas MUST NOT be presented in a page turner - # # @return [RDF::Vocabulary::Term] - # attr_reader :nonPagedHint - # - # # Viewing Hint that object has canvases that represent pages that can be turned - # # @return [RDF::Vocabulary::Term] - # attr_reader :pagedHint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :painting - # - # # Right-to-Left Viewing Direction - # # @return [RDF::Vocabulary::Term] - # attr_reader :rightToLeftDirection - # - # # The topmost range in a nested hierarchy, such as a table of contents - # # @return [RDF::Vocabulary::Term] - # attr_reader :topHint - # - # # Top-to-Bottom Viewing Direction - # # @return [RDF::Vocabulary::Term] - # attr_reader :topToBottomDirection - # - # end IIIF = Class.new(RDF::StrictVocabulary("http://iiif.io/api/presentation/2#")) do # Ontology definition ontology :"http://iiif.io/api/presentation/2#", - "owl:versionInfo": "2015-12-13 23:00:00Z".freeze, - type: "owl:Ontology".freeze + "http://www.w3.org/2002/07/owl#versionInfo": "2015-12-13 23:00:00Z".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AnnotationList, comment: "AnnotationLists are an ordered list of Annotation objects. Typically all Annnotations in a list target the same Canvas".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "AnnotationList".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Canvas, comment: "The canvas represents an individual page or view and acts as a central point for laying out the different content resources that make up the display.".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "Canvas".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Collection, comment: "Collections are used to list the manifests available for viewing, and to describe the structures, hierarchies or collections that the physical objects are part of.".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "Collection".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Layer, comment: "Layers are lists of AnnotationLists to group them together, for example to create the set of lists that make up a particular translation/edition of a text".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "Layer".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Manifest, comment: "The manifest resource represents a single object and any intellectual work or works embodied within that object".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "Manifest".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Range, comment: "Ranges describe additional structure within an object, such as newspaper articles that span pages, the range of non-content-bearing pages at the beginning of a work, or chapters within a book".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "Range".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Sequence, comment: "The sequence conveys the ordering of the views of the object.".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "Sequence".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ViewingDirection, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "ViewingDirection".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ViewingHint, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "ViewingHint".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Zone, comment: "Used to group annotations together in an area of a Canvas, for example to model columns, foldouts or palimpsests; Note that Zones are not currently used in the IIIF Presentation API.".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "Zone".freeze, - subClassOf: "iiif:Canvas".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://iiif.io/api/presentation/2#Canvas".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :attributionLabel, comment: "A string containing an attribution description that must be displayed when using the resource".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "attributionLabel".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAnnotations, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasAnnotations".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCanvases, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasCanvases".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCollections, - domain: "iiif:Collection".freeze, - isDefinedBy: "iiif:".freeze, + domain: "http://iiif.io/api/presentation/2#Collection".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasCollections".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasContentLayer, comment: "A link from a Range to a Layer that provides the content resources of that Range".freeze, - domain: "iiif:Range".freeze, - isDefinedBy: "iiif:".freeze, + domain: "http://iiif.io/api/presentation/2#Range".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasContentLayer".freeze, - range: "iiif:Layer".freeze, - type: "rdf:Property".freeze + range: "http://iiif.io/api/presentation/2#Layer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasImageAnnotations, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasImageAnnotations".freeze, - range: "rdf:List".freeze, - subPropertyOf: "iiif:hasAnnotations".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + subPropertyOf: "http://iiif.io/api/presentation/2#hasAnnotations".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLists, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasLists".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasManifests, - domain: "iiif:Collection".freeze, - isDefinedBy: "iiif:".freeze, + domain: "http://iiif.io/api/presentation/2#Collection".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasManifests".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRanges, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasRanges".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSequences, - domain: "iiif:Manifest".freeze, - isDefinedBy: "iiif:".freeze, + domain: "http://iiif.io/api/presentation/2#Manifest".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasSequences".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasStartCanvas, comment: "A link from a Manifest or Sequence to the Canvas that the rendering agent should initialize their view with.".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "hasStartCanvas".freeze, - range: "iiif:Canvas".freeze, - type: "rdf:Property".freeze + range: "http://iiif.io/api/presentation/2#Canvas".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :metadataLabels, comment: "An rdf:List of label/value pairs providing descriptive metadata about the resource, intended for human audience".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "metadataLabels".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :viewingDirection, comment: "References the sc:ViewingDirection that defines the direction that the resource should be viewed in".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "viewingDirection".freeze, - range: "iiif:ViewingDirection".freeze, - type: "rdf:Property".freeze + range: "http://iiif.io/api/presentation/2#ViewingDirection".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :viewingHint, comment: "A hint to a user agent as to how to render the resource".freeze, - isDefinedBy: "iiif:".freeze, + isDefinedBy: "http://iiif.io/api/presentation/2#".freeze, label: "viewingHint".freeze, - range: "iiif:ViewingHint".freeze, - type: "rdf:Property".freeze + range: "http://iiif.io/api/presentation/2#ViewingHint".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :bottomToTopDirection, comment: "Bottom-to-Top Viewing Direction".freeze, - type: "iiif:ViewingDirection".freeze + type: "http://iiif.io/api/presentation/2#ViewingDirection".freeze term :continuousHint, comment: "Each canvas represents a segment of a continuous object such as a long scroll".freeze, - type: "iiif:ViewingHint".freeze + type: "http://iiif.io/api/presentation/2#ViewingHint".freeze term :facingPagesHint, comment: "Canvases with this hint depict both parts of an opening.".freeze, - type: "iiif:ViewingHint".freeze + type: "http://iiif.io/api/presentation/2#ViewingHint".freeze term :individualsHint, comment: "Each canvas represents a separate individual object, and should not have transitions".freeze, - type: "iiif:ViewingHint".freeze + type: "http://iiif.io/api/presentation/2#ViewingHint".freeze term :leftToRightDirection, comment: "Left-to-Right Viewing Direction".freeze, - type: "iiif:ViewingDirection".freeze + type: "http://iiif.io/api/presentation/2#ViewingDirection".freeze term :multiPartHint, comment: "Collections with this hint consist of multiple manifests that each form part of a logical whole.".freeze, - type: "iiif:ViewingHint".freeze + type: "http://iiif.io/api/presentation/2#ViewingHint".freeze term :nonPagedHint, comment: "Viewing Hint that the Canvas MUST NOT be presented in a page turner".freeze, - type: "iiif:ViewingHint".freeze + type: "http://iiif.io/api/presentation/2#ViewingHint".freeze term :pagedHint, comment: "Viewing Hint that object has canvases that represent pages that can be turned".freeze, - type: "iiif:ViewingHint".freeze + type: "http://iiif.io/api/presentation/2#ViewingHint".freeze term :painting, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :rightToLeftDirection, comment: "Right-to-Left Viewing Direction".freeze, - type: "iiif:ViewingDirection".freeze + type: "http://iiif.io/api/presentation/2#ViewingDirection".freeze term :topHint, comment: "The topmost range in a nested hierarchy, such as a table of contents".freeze, - type: "iiif:ViewingHint".freeze + type: "http://iiif.io/api/presentation/2#ViewingHint".freeze term :topToBottomDirection, comment: "Top-to-Bottom Viewing Direction".freeze, - type: "iiif:ViewingDirection".freeze + type: "http://iiif.io/api/presentation/2#ViewingDirection".freeze end end diff --git a/lib/rdf/vocab/jsonld.rb b/lib/rdf/vocab/jsonld.rb index ae7b8b6..b949093 100644 --- a/lib/rdf/vocab/jsonld.rb +++ b/lib/rdf/vocab/jsonld.rb @@ -3,393 +3,251 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/json-ld# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # 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/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`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Context - # - # # A string ([simple term definition](http://www.w3.org/TR/json-ld11/#dfn-simple-term-definitions)), expanding to an IRI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrefixDefinition - # - # # A [term definition](http://www.w3.org/TR/json-ld11/#dfn-term-definitions) is an entry in a [context](#Context), where the key defines a term which may be used within a dictionary as a key, type, or elsewhere that a string is interpreted as a vocabulary item. Its value is an [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions). An [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definition) MUST be a map composed of zero or more keys from `@id`, `@reverse`, `@type`, `@language`, `@container`, `@context`, `@prefix`, `@propagate`, or `@protected`. An expanded term definition SHOULD NOT contain any other keys. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TermDefinition - # - # # If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) has an `@base` key, its value MUST be an _IRI reference_, or `null`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :base - # - # # The associated `@container` value in an [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions). 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, or a combination of `@set` and any of `@index`, `@id`, `@graph`, `@type`, `@language` in any order. `@container` may also be an array containing `@graph` along with either `@id` or `@index` and also optionally including `@set`. If the value is `@language`, when the term is used outside of the `@context`, the associated value MUST be a language map. If the value is `@index`, when the term is used outside of the `@context`, the associated value MUST be an index map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :container - # - # # As an IRI, this link relation is used to associate a JSON-LD context with a JSON document so that it can be interpreted as JSON-LD. In an HTTP request header, specifies the location of a context to use for compaction. As a Context, defines an inline `context definition`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :context - # - # # Term definition(s) associated with this context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :definition - # - # # If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) has an `@direction` key, its value MUST be one of `"ltr"` or `"rtl"`, or be `null`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :direction - # - # # The `@id` mapping of a [term definition](#TermDefinition). - # # @return [RDF::Vocabulary::Term] - # attr_reader :id - # - # # If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) contains the `@import` keyword, its value MUST be an _IRI reference_. When used as a reference from an `@import`, the referenced context definition MUST NOT include an `@import` key, itself. - # # @return [RDF::Vocabulary::Term] - # attr_reader :import - # - # # The [default language](https://www.w3.org/TR/json-ld11/#dfn-default-language) is set in the context using the `@language` key whose value MUST be a string representing a [BCP47](https://tools.ietf.org/html/bcp47) language code or null. - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # If the [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions) contains the `@nest` keyword, its value MUST be either `@nest`, or a _term_ which expands to `@nest`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nest - # - # # With the value `true`, allows this term to be used to construct a compact IRI when compacting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefix - # - # # If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) contains the `@propagate` keyword, its value MUST be `true` or `false`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :propagate - # - # # If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) contains the `@protected` keyword, its value MUST be `true` or `false`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :protected - # - # # The `@reverse` mapping of an [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions). - # # @return [RDF::Vocabulary::Term] - # attr_reader :reverse - # - # # The term associated with a [term definition](#TermDefinition). - # # @return [RDF::Vocabulary::Term] - # attr_reader :term - # - # # If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) contains the `@type` keyword, its value MUST be a map with only the entry `@container` set to `@set`, and optionally an entry `@protected`. If the [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions) contains the `@type` keyword, its value MUST be an _IRI reference_, a _term_, `null`, or one of the keywords `@id`, `@json`, `@none`, or `@vocab`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :type - # - # # The [processing mode](https://www.w3.org/TR/json-ld11/#dfn-processing-mode) defines how a JSON-LD document is processed. By default, all documents are assumed to be conformant with [JSON-LD 1.1`](http://www.w3.org/TR/json-ld11). By defining a different version via explicit API option, other processing modes can be accessed. This specification defines extensions for the `json-ld-1.1` processing mode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # # Used to expand properties and values in `@type` with a common prefix IRI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vocab - # - # # This profile IRI is used to request or specify compacted JSON-LD document form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :compacted - # - # # This profile URI is used to request or specify expanded JSON-LD document form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expanded - # - # # This profile URI is used to request or specify flattened JSON-LD document form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :flattened - # - # # As an IRI, this link relation is used to associate a JSON-LD frame with a JSON-LD document. In an HTTP request header, specifies the location of a frame to use for framing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frame - # - # # This profile URI is used to request or specify framed JSON-LD document form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :framed - # - # # 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 :graphContainerType - # - # # 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 :idContainerType - # - # # 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 :indexContainerType - # - # # 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 :languageContainerType - # - # # 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 :listContainerType - # - # # 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 :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 - # - # end JSONLD = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/json-ld#")) do # Ontology definition ontology :"http://www.w3.org/ns/json-ld#", - "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/dfd1827c95a66bc36c01368e10b6e4f4bbb5c8b3".freeze, - "rdfs:seeAlso": "http://www.w3.org/TR/json-ld11".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/terms/date": "2020-03-30".freeze, + "http://purl.org/dc/terms/description": "This is a vocabulary document and is used to achieve certain features of the JSON-LD language.".freeze, + "http://purl.org/dc/terms/title": "The JSON-LD Vocabulary".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/TR/json-ld11".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "https://github.com/w3c/json-ld-wg/commit/dfd1827c95a66bc36c01368e10b6e4f4bbb5c8b3".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Context, comment: "Defines term definitions and other aspects of a JSON-LD `Context`.\n\nA [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`.".freeze, - isDefinedBy: "jsonld:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "Context".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PrefixDefinition, comment: "A string ([simple term definition](http://www.w3.org/TR/json-ld11/#dfn-simple-term-definitions)), expanding to an IRI.".freeze, - isDefinedBy: "jsonld:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-term-definition".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "Prefix Definition".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-term-definition".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TermDefinition, comment: "A [term definition](http://www.w3.org/TR/json-ld11/#dfn-term-definitions) is an entry in a [context](#Context), where the key defines a term which may be used within a dictionary as a key, type, or elsewhere that a string is interpreted as a vocabulary item. Its value is an [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions).\n\n\n\nAn [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definition) MUST be a map composed of zero or more keys from `@id`, `@reverse`, `@type`, `@language`, `@container`, `@context`, `@prefix`, `@propagate`, or `@protected`. An expanded term definition SHOULD NOT contain any other keys.".freeze, - isDefinedBy: "jsonld:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-term-definition".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "Term Definition".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-term-definition".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :base, comment: "If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) has an `@base` key, its value MUST be an _IRI reference_, or `null`.".freeze, - domainIncludes: "jsonld:Context".freeze, - isDefinedBy: "jsonld:".freeze, + domainIncludes: "http://www.w3.org/ns/json-ld#Context".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "base".freeze, - rangeIncludes: "xsd:anyUri".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#anyUri".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :container, comment: "The associated `@container` value in an [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions).\n\nIf 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, or a combination of `@set` and any of `@index`, `@id`, `@graph`, `@type`, `@language` in any order.\n\n`@container` may also be an array containing `@graph` along with either `@id` or `@index` and also optionally including `@set`.\n\nIf the value is `@language`, when the term is used outside of the `@context`, the associated value MUST be a language map.\n\nIf the value is `@index`, when the term is used outside of the `@context`, the associated value MUST be an index map.".freeze, - domainIncludes: "jsonld:TermDefinition".freeze, - isDefinedBy: "jsonld:".freeze, + domainIncludes: "http://www.w3.org/ns/json-ld#TermDefinition".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "container".freeze, - rangeIncludes: "jsonld:ContainerType".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/ns/json-ld#ContainerType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :context, comment: "As an IRI, this link relation is used to associate a JSON-LD context with a JSON document so that it can be interpreted as JSON-LD. In an HTTP request header, specifies the location of a context to use for compaction. As a Context, defines an inline `context definition`.".freeze, - isDefinedBy: "jsonld:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#interpreting-json-as-json-ld".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "context".freeze, - rangeIncludes: ["jsonld:Context".freeze, "xsd:anyUri".freeze], - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#interpreting-json-as-json-ld".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://www.w3.org/2001/XMLSchema#anyUri".freeze, "http://www.w3.org/ns/json-ld#Context".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :definition, comment: "Term definition(s) associated with this context.".freeze, - domainIncludes: "jsonld:Context".freeze, - isDefinedBy: "jsonld:".freeze, + domainIncludes: "http://www.w3.org/ns/json-ld#Context".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "definition".freeze, - rangeIncludes: ["jsonld:PrefixDefinition".freeze, "jsonld:TermDefinition".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://www.w3.org/ns/json-ld#PrefixDefinition".freeze, "http://www.w3.org/ns/json-ld#TermDefinition".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :direction, comment: "If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) has an `@direction` key, its value MUST be one of `\"ltr\"` or `\"rtl\"`, or be `null`.".freeze, - domainIncludes: ["jsonld:Context".freeze, "jsonld:TermDefinition".freeze], - isDefinedBy: "jsonld:".freeze, + domainIncludes: ["http://www.w3.org/ns/json-ld#Context".freeze, "http://www.w3.org/ns/json-ld#TermDefinition".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "direction".freeze, - rangeIncludes: "xsd:string".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :id, comment: "The `@id` mapping of a [term definition](#TermDefinition).".freeze, - domainIncludes: ["jsonld:PrefixDefinition".freeze, "jsonld:TermDefinition".freeze], - isDefinedBy: "jsonld:".freeze, + domainIncludes: ["http://www.w3.org/ns/json-ld#PrefixDefinition".freeze, "http://www.w3.org/ns/json-ld#TermDefinition".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "id".freeze, - rangeIncludes: "xsd:anyUri".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#anyUri".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :import, comment: "If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) contains the `@import` keyword, its value MUST be an _IRI reference_. When used as a reference from an `@import`, the referenced context definition MUST NOT include an `@import` key, itself.".freeze, - domainIncludes: "jsonld:Context".freeze, - isDefinedBy: "jsonld:".freeze, + domainIncludes: "http://www.w3.org/ns/json-ld#Context".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "import".freeze, - rangeIncludes: "xsd:anyUri".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#anyUri".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :language, comment: "The [default language](https://www.w3.org/TR/json-ld11/#dfn-default-language) is set in the context using the `@language` key whose value MUST be a string representing a [BCP47](https://tools.ietf.org/html/bcp47) language code or null.".freeze, - domainIncludes: ["jsonld:Context".freeze, "jsonld:TermDefinition".freeze], - isDefinedBy: "jsonld:".freeze, + domainIncludes: ["http://www.w3.org/ns/json-ld#Context".freeze, "http://www.w3.org/ns/json-ld#TermDefinition".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-default-language".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "language".freeze, - rangeIncludes: "xsd:string".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-default-language".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nest, comment: "If the [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions) contains the `@nest` keyword, its value MUST be either `@nest`, or a _term_ which expands to `@nest`.".freeze, - domainIncludes: "jsonld:TermDefinition".freeze, - isDefinedBy: "jsonld:".freeze, + domainIncludes: "http://www.w3.org/ns/json-ld#TermDefinition".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "nest".freeze, - rangeIncludes: "xsd:string".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prefix, comment: "With the value `true`, allows this term to be used to construct a compact IRI when compacting.".freeze, - domainIncludes: "jsonld:TermDefinition".freeze, - isDefinedBy: "jsonld:".freeze, + domainIncludes: "http://www.w3.org/ns/json-ld#TermDefinition".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "prefix".freeze, - rangeIncludes: "xsd:boolean".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :propagate, comment: "If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) contains the `@propagate` keyword, its value MUST be `true` or `false`.".freeze, - domainIncludes: ["jsonld:Context".freeze, "jsonld:TermDefinition".freeze], - isDefinedBy: "jsonld:".freeze, + domainIncludes: ["http://www.w3.org/ns/json-ld#Context".freeze, "http://www.w3.org/ns/json-ld#TermDefinition".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "propagate".freeze, - rangeIncludes: "xsd:boolean".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :protected, comment: "If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) contains the `@protected` keyword, its value MUST be `true` or `false`.".freeze, - domainIncludes: ["jsonld:Context".freeze, "jsonld:TermDefinition".freeze], - isDefinedBy: "jsonld:".freeze, + domainIncludes: ["http://www.w3.org/ns/json-ld#Context".freeze, "http://www.w3.org/ns/json-ld#TermDefinition".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "protected".freeze, - rangeIncludes: "xsd:boolean".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reverse, comment: "The `@reverse` mapping of an [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions).".freeze, - domainIncludes: "jsonld:TermDefinition".freeze, - isDefinedBy: "jsonld:".freeze, + domainIncludes: "http://www.w3.org/ns/json-ld#TermDefinition".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "reverse".freeze, - rangeIncludes: "xsd:anyUri".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#expanded-term-definition".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#anyUri".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :term, comment: "The term associated with a [term definition](#TermDefinition).".freeze, - domainIncludes: ["jsonld:PrefixDefinition".freeze, "jsonld:TermDefinition".freeze], - isDefinedBy: "jsonld:".freeze, + domainIncludes: ["http://www.w3.org/ns/json-ld#PrefixDefinition".freeze, "http://www.w3.org/ns/json-ld#TermDefinition".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-term".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "term".freeze, - rangeIncludes: "xsd:string".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-term".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :type, comment: "If the [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) contains the `@type` keyword, its value MUST be a map with only the entry `@container` set to `@set`, and optionally an entry `@protected`.\n\n\n\nIf the [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions) contains the `@type` keyword, its value MUST be an _IRI reference_, a _term_, `null`, or one of the keywords `@id`, `@json`, `@none`, or `@vocab`.".freeze, - domainIncludes: ["jsonld:Context".freeze, "jsonld:TermDefinition".freeze], - isDefinedBy: "jsonld:".freeze, + domainIncludes: ["http://www.w3.org/ns/json-ld#Context".freeze, "http://www.w3.org/ns/json-ld#TermDefinition".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "type".freeze, - rangeIncludes: ["xsd:anyUri".freeze, "xsd:string".freeze], - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://www.w3.org/2001/XMLSchema#anyUri".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :version, comment: "The [processing mode](https://www.w3.org/TR/json-ld11/#dfn-processing-mode) defines how a JSON-LD document is processed. By default, all documents are assumed to be conformant with [JSON-LD 1.1`](http://www.w3.org/TR/json-ld11). By defining a different version via explicit API option, other processing modes can be accessed. This specification defines extensions for the `json-ld-1.1` processing mode.".freeze, - domainIncludes: "jsonld:Context".freeze, - isDefinedBy: "jsonld:".freeze, + domainIncludes: "http://www.w3.org/ns/json-ld#Context".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-processing-mode".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "version".freeze, - rangeIncludes: "xsd:decimal".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#dfn-processing-mode".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vocab, comment: "Used to expand properties and values in `@type` with a common prefix IRI.".freeze, - domainIncludes: "jsonld:Context".freeze, - isDefinedBy: "jsonld:".freeze, + domainIncludes: "http://www.w3.org/ns/json-ld#Context".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#default-vocabulary".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "vocab".freeze, - rangeIncludes: "xsd:anyUri".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#default-vocabulary".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#anyUri".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :compacted, comment: "This profile IRI is used to request or specify compacted JSON-LD document form.".freeze, - isDefinedBy: "jsonld:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "compacted".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, - type: "owl:NamedIndividual".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :expanded, comment: "This profile URI is used to request or specify expanded JSON-LD document form.".freeze, - isDefinedBy: "jsonld:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "expanded".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, - type: "owl:NamedIndividual".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :flattened, comment: "This profile URI is used to request or specify flattened JSON-LD document form.".freeze, - isDefinedBy: "jsonld:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "flattened".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, - type: "owl:NamedIndividual".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :frame, comment: "As an IRI, this link relation is used to associate a JSON-LD frame with a JSON-LD document. In an HTTP request header, specifies the location of a frame to use for framing.".freeze, - isDefinedBy: "jsonld:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "frame".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, - type: "owl:NamedIndividual".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :framed, comment: "This profile URI is used to request or specify framed JSON-LD document form.".freeze, - isDefinedBy: "jsonld:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "framed".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#iana-considerations".freeze, - type: "owl:NamedIndividual".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :graphContainerType, 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, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "@graph".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, type: "http://www.w3.org/ns/ContainerType".freeze term :idContainerType, 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, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "@id".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, type: "http://www.w3.org/ns/ContainerType".freeze term :indexContainerType, 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, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "@index".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, type: "http://www.w3.org/ns/ContainerType".freeze term :languageContainerType, 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, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "@language".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, type: "http://www.w3.org/ns/ContainerType".freeze term :listContainerType, 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, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "@list".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, type: "http://www.w3.org/ns/ContainerType".freeze term :setContainerType, 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, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, 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, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11-streaming/#streaming-profile".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "streaming".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11-streaming/#streaming-profile".freeze, - type: "owl:NamedIndividual".freeze + type: "http://www.w3.org/2002/07/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, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, + isDefinedBy: "http://www.w3.org/ns/json-ld#".freeze, label: "@type".freeze, - "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, type: "http://www.w3.org/ns/ContainerType".freeze end end diff --git a/lib/rdf/vocab/ldp.rb b/lib/rdf/vocab/ldp.rb index bf3e186..4505abe 100644 --- a/lib/rdf/vocab/ldp.rb +++ b/lib/rdf/vocab/ldp.rb @@ -3,374 +3,241 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/ldp# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The W3C Linked Data Platform (LDP) Vocabulary - # # - # # W3C Linked Data Platform (LDP) - # # - # # 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/2012/ldp - # # @see http://www.w3.org/TR/ldp-paging/ - # # @see http://www.w3.org/2011/09/LinkedData/ - # class LDP < RDF::Vocabulary - # # An LDPC that uses a predefined predicate to simply link to its contained resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BasicContainer - # - # # A Linked Data Platform RDF Source (LDP-RS) that also conforms to additional patterns and conventions for managing membership. Readers should refer to the specification defining this ontology for the list of behaviors associated with it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Container - # - # # An LDPC that is similar to a LDP-DC but it allows an indirection with the ability to list as member a resource, such as a URI representing a real-world object, that is different from the resource that is created. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DirectContainer - # - # # An LDPC that has the flexibility of choosing what form the membership triples take. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IndirectContainer - # - # # A Linked Data Platform Resource (LDPR) whose state is NOT represented as RDF. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NonRDFSource - # - # # URI signifying that the resource is an in-sequence page resource, as defined by LDP Paging. Typically used on Link rel='type' response headers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Page - # - # # Element in the list of sorting criteria used by the server to assign container members to pages. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PageSortCriterion - # - # # A Linked Data Platform Resource (LDPR) whose state is represented as RDF. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RDFSource - # - # # A HTTP-addressable resource whose lifecycle is managed by a LDP server. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resource - # - # # Links a resource with constraints that the server requires requests like creation and update to conform to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :constrainedBy - # - # # Links a container with resources created through the container. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contains - # - # # Indicates which predicate is used in membership triples, and that the membership triple pattern is < membership-constant-URI , object-of-hasMemberRelation, member-URI >. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMemberRelation - # - # # Links a resource to a container where notifications for the resource can be created and discovered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inbox - # - # # Indicates which triple in a creation request should be used as the member-URI value in the membership triple added when the creation request is successful. - # # @return [RDF::Vocabulary::Term] - # attr_reader :insertedContentRelation - # - # # Indicates which predicate is used in membership triples, and that the membership triple pattern is < member-URI , object-of-isMemberOfRelation, membership-constant-URI >. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isMemberOfRelation - # - # # LDP servers should use this predicate as the membership predicate if there is no obvious predicate from an application vocabulary to use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # Indicates the membership-constant-URI in a membership triple. Depending upon the membership triple pattern a container uses, as indicated by the presence of ldp:hasMemberRelation or ldp:isMemberOfRelation, the membership-constant-URI might occupy either the subject or object position in membership triples. - # # @return [RDF::Vocabulary::Term] - # attr_reader :membershipResource - # - # # Link to a page sequence resource, as defined by LDP Paging. Typically used to communicate the sorting criteria used to allocate LDPC members to pages. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageSequence - # - # # The collation used to order the members across pages in a page sequence when comparing strings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageSortCollation - # - # # Link to the list of sorting criteria used by the server in a representation. Typically used on Link response headers as an extension link relation URI in the rel= parameter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageSortCriteria - # - # # The ascending/descending/etc order used to order the members across pages in a page sequence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageSortOrder - # - # # Predicate used to specify the order of the members across a page sequence's in-sequence page resources; it asserts nothing about the order of members in the representation of a single page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageSortPredicate - # - # # Ascending order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ascending - # - # # Descending order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Descending - # - # # Used to indicate default and typical behavior for ldp:insertedContentRelation, where the member-URI value in the membership triple added when a creation request is successful is the URI assigned to the newly created resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MemberSubject - # - # # URI identifying a LDPC's containment triples, for example to allow clients to express interest in receiving them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreferContainment - # - # # Archaic alias for ldp:PreferMinimalContainer - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreferEmptyContainer - # - # # URI identifying a LDPC's membership triples, for example to allow clients to express interest in receiving them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreferMembership - # - # # URI identifying the subset of a LDPC's triples present in an empty LDPC, for example to allow clients to express interest in receiving them. Currently this excludes containment and membership triples, but in the future other exclusions might be added. This definition is written to automatically exclude those new classes of triples. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreferMinimalContainer - # - # end LDP = Class.new(RDF::Vocabulary("http://www.w3.org/ns/ldp#")) do # Ontology definition ontology :"http://www.w3.org/ns/ldp#", comment: "This ontology provides an informal representation of the concepts and terms as defined in the LDP specification. Consult the LDP specification for normative reference.".freeze, - "dc:created": "2015-02-26".freeze, - "dc:creator": [term( - "foaf:name": "Ashok Malhotra".freeze + "http://purl.org/dc/terms/created": "2015-02-26".freeze, + "http://purl.org/dc/terms/creator": [term( + "http://xmlns.com/foaf/0.1/name": "Ashok Malhotra".freeze ), term( - "foaf:name": "John Arwe".freeze + "http://xmlns.com/foaf/0.1/name": "John Arwe".freeze ), term( - "foaf:name": "Steve Speicher".freeze + "http://xmlns.com/foaf/0.1/name": "Steve Speicher".freeze )], - "dc:description": "Vocabulary URIs defined in the Linked Data Platform (LDP) namespace.".freeze, - "dc:publisher": "http://www.w3.org/data#W3C".freeze, - "dc:title": "The W3C Linked Data Platform (LDP) Vocabulary".freeze, - "foaf:maker": term( - "foaf:homepage": "http://www.w3.org/2012/ldp".freeze - ), + "http://purl.org/dc/terms/description": "Vocabulary URIs defined in the Linked Data Platform (LDP) namespace.".freeze, + "http://purl.org/dc/terms/publisher": "http://www.w3.org/data#W3C".freeze, + "http://purl.org/dc/terms/title": "The W3C Linked Data Platform (LDP) Vocabulary".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "ldp".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://www.w3.org/ns/ldp#".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://www.w3.org/2011/09/LinkedData/".freeze, "http://www.w3.org/2012/ldp".freeze, "http://www.w3.org/TR/ldp-paging/".freeze, "http://www.w3.org/TR/ldp-ucr/".freeze, "http://www.w3.org/TR/ldp/".freeze], + "http://xmlns.com/foaf/0.1/maker": term( + "http://xmlns.com/foaf/0.1/homepage": "http://www.w3.org/2012/ldp".freeze + ), label: "W3C Linked Data Platform (LDP)".freeze, - "rdfs:seeAlso": ["http://www.w3.org/2011/09/LinkedData/".freeze, "http://www.w3.org/2012/ldp".freeze, "http://www.w3.org/TR/ldp-paging/".freeze, "http://www.w3.org/TR/ldp-ucr/".freeze, "http://www.w3.org/TR/ldp/".freeze], - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :BasicContainer, comment: "An LDPC that uses a predefined predicate to simply link to its contained resources.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "BasicContainer".freeze, - subClassOf: "ldp:Container".freeze, - type: "rdfs:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://www.w3.org/ns/ldp#Container".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Container, comment: "A Linked Data Platform RDF Source (LDP-RS) that also conforms to additional patterns and conventions for managing membership. Readers should refer to the specification defining this ontology for the list of behaviors associated with it.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "Container".freeze, - subClassOf: "ldp:RDFSource".freeze, - type: "rdfs:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://www.w3.org/ns/ldp#RDFSource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DirectContainer, comment: "An LDPC that is similar to a LDP-DC but it allows an indirection with the ability to list as member a resource, such as a URI representing a real-world object, that is different from the resource that is created.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "DirectContainer".freeze, - subClassOf: "ldp:Container".freeze, - type: "rdfs:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://www.w3.org/ns/ldp#Container".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IndirectContainer, comment: "An LDPC that has the flexibility of choosing what form the membership triples take.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "IndirectContainer".freeze, - subClassOf: "ldp:Container".freeze, - type: "rdfs:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://www.w3.org/ns/ldp#Container".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NonRDFSource, comment: "A Linked Data Platform Resource (LDPR) whose state is NOT represented as RDF.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "NonRDFSource".freeze, - subClassOf: "ldp:Resource".freeze, - type: "rdfs:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://www.w3.org/ns/ldp#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Page, comment: "URI signifying that the resource is an in-sequence page resource, as defined by LDP Paging. Typically used on Link rel='type' response headers.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "Page".freeze, - type: "rdfs:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PageSortCriterion, comment: "Element in the list of sorting criteria used by the server to assign container members to pages.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "PageSortCriterion".freeze, - type: "rdfs:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RDFSource, comment: "A Linked Data Platform Resource (LDPR) whose state is represented as RDF.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "RDFSource".freeze, - subClassOf: "ldp:Resource".freeze, - type: "rdfs:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://www.w3.org/ns/ldp#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Resource, comment: "A HTTP-addressable resource whose lifecycle is managed by a LDP server.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "Resource".freeze, - type: "rdfs:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :constrainedBy, comment: "Links a resource with constraints that the server requires requests like creation and update to conform to.".freeze, - domain: "ldp:Resource".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "constrainedBy".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contains, comment: "Links a container with resources created through the container.".freeze, - domain: "ldp:Container".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#Container".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "contains".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMemberRelation, comment: "Indicates which predicate is used in membership triples, and that the membership triple pattern is < membership-constant-URI , object-of-hasMemberRelation, member-URI >.".freeze, - domain: "ldp:Container".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#Container".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "hasMemberRelation".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inbox, comment: "Links a resource to a container where notifications for the resource can be created and discovered.".freeze, - "dc:creator": ["http://csarven.ca/#i".freeze, "https://rhiaro.co.uk/#me".freeze], - "dc:issued": "2016-09-29".freeze, + "http://purl.org/dc/terms/creator": ["http://csarven.ca/#i".freeze, "https://rhiaro.co.uk/#me".freeze], + "http://purl.org/dc/terms/issued": "2016-09-29".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "https://www.w3.org/TR/ldn/".freeze, label: "inbox".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :insertedContentRelation, comment: "Indicates which triple in a creation request should be used as the member-URI value in the membership triple added when the creation request is successful.".freeze, - domain: "ldp:Container".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#Container".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "insertedContentRelation".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isMemberOfRelation, comment: "Indicates which predicate is used in membership triples, and that the membership triple pattern is < member-URI , object-of-isMemberOfRelation, membership-constant-URI >.".freeze, - domain: "ldp:Container".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#Container".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "isMemmberOfRelation".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :member, comment: "LDP servers should use this predicate as the membership predicate if there is no obvious predicate from an application vocabulary to use.".freeze, - domain: "ldp:Resource".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#Resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "member".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :membershipResource, comment: "Indicates the membership-constant-URI in a membership triple. Depending upon the membership triple pattern a container uses, as indicated by the presence of ldp:hasMemberRelation or ldp:isMemberOfRelation, the membership-constant-URI might occupy either the subject or object position in membership triples.".freeze, - domain: "ldp:Container".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#Container".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "membershipResource".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageSequence, comment: "Link to a page sequence resource, as defined by LDP Paging. Typically used to communicate the sorting criteria used to allocate LDPC members to pages.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "Page".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageSortCollation, comment: "The collation used to order the members across pages in a page sequence when comparing strings.".freeze, - domain: "ldp:PageSortCriterion".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#PageSortCriterion".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "pageSortCollation".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageSortCriteria, comment: "Link to the list of sorting criteria used by the server in a representation. Typically used on Link response headers as an extension link relation URI in the rel= parameter.".freeze, - domain: "ldp:Page".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#Page".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "pageSortCriteria".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageSortOrder, comment: "The ascending/descending/etc order used to order the members across pages in a page sequence.".freeze, - domain: "ldp:PageSortCriterion".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#PageSortCriterion".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "pageSortOrder".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageSortPredicate, comment: "Predicate used to specify the order of the members across a page sequence's in-sequence page resources; it asserts nothing about the order of members in the representation of a single page.".freeze, - domain: "ldp:PageSortCriterion".freeze, - isDefinedBy: "ldp:".freeze, + domain: "http://www.w3.org/ns/ldp#PageSortCriterion".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "pageSortPredicate".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :Ascending, comment: "Ascending order.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "Ascending".freeze, - type: "owl:NamedIndividual".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :Descending, comment: "Descending order.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "Descending".freeze, - type: "owl:NamedIndividual".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :MemberSubject, comment: "Used to indicate default and typical behavior for ldp:insertedContentRelation, where the member-URI value in the membership triple added when a creation request is successful is the URI assigned to the newly created resource.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "MemberSubject".freeze, - type: "owl:NamedIndividual".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :PreferContainment, comment: "URI identifying a LDPC's containment triples, for example to allow clients to express interest in receiving them.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "PreferContainment".freeze, - type: "owl:NamedIndividual".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :PreferEmptyContainer, comment: "Archaic alias for ldp:PreferMinimalContainer".freeze, - equivalentProperty: "ldp:PreferMinimalContainer".freeze, - isDefinedBy: "ldp:".freeze, + equivalentProperty: "http://www.w3.org/ns/ldp#PreferMinimalContainer".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/ldp#PreferMinimalContainer".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "archaic".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "PreferEmptyContainer".freeze, - "rdfs:seeAlso": "ldp:PreferMinimalContainer".freeze, - type: "owl:NamedIndividual".freeze, - "vs:term_status": "archaic".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :PreferMembership, comment: "URI identifying a LDPC's membership triples, for example to allow clients to express interest in receiving them.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "PreferMembership".freeze, - type: "owl:NamedIndividual".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze term :PreferMinimalContainer, comment: "URI identifying the subset of a LDPC's triples present in an empty LDPC, for example to allow clients to express interest in receiving them. Currently this excludes containment and membership triples, but in the future other exclusions might be added. This definition is written to automatically exclude those new classes of triples.".freeze, - isDefinedBy: "ldp:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://www.w3.org/ns/ldp#".freeze, label: "PreferMinimalContainer".freeze, - type: "owl:NamedIndividual".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#NamedIndividual".freeze end end diff --git a/lib/rdf/vocab/lrmi.rb b/lib/rdf/vocab/lrmi.rb index 04ce1a4..02c1991 100644 --- a/lib/rdf/vocab/lrmi.rb +++ b/lib/rdf/vocab/lrmi.rb @@ -3,307 +3,219 @@ # This file generated automatically using rdf vocabulary format from http://purl.org/dcx/lrmi-terms/ require 'rdf' 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. Note: the labels provided here are not considered normative. - # 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 persistent resource that has one or more physical or digital representations, and that explicitly involves, specifies or entails a learning activity or learning experience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LearningResource - # - # # A category of alignment between the learning resource and the framework node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alignmentType - # - # # 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 - # - # # 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 level of a resource in terms of progression through an educational or training context. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalLevel - # - # # 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 from which this work is derived or from which it is a modification or adaption. - # # @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 - # - # # 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 - # - # # 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 # Ontology definition ontology :"http://purl.org/dcx/lrmi-terms/", - "dc:creator": "LRMI Task Group".freeze, - "dc:description": "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. Note: the labels provided here are not considered normative.".freeze, - "dc:identifier": "http://dublincore.org/dcx/lrmi-terms/".freeze, - "dc:isVersionOf": "http://purl.org/dcx/lrmi-terms/1.1/".freeze, - "dc:issued": "2015-02-09".freeze, - "dc:license": "https://creativecommons.org/licenses/by/4.0/".freeze, - "dc:title": "LRMI RDF Specification".freeze, - "skos:historyNote": "2020-11-12: changes made reflecting developments in schema.org: added class LearningResource; added properties assesses, educationalLevel, teaches; fixed error in domain of timerequired; updated label and definition of isBasedOnUrl; skos:scopeNote used instead of dcterms:description for additional non-normative information; note added that rdfs:label is not considered normative; rangeIncludes statements updated to include skos:Concept for terms where there is an LRMI Concept Scheme or that reference a competence.".freeze + "http://purl.org/dc/terms/creator": "LRMI Task Group".freeze, + "http://purl.org/dc/terms/description": "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. Note: the labels provided here are not considered normative.".freeze, + "http://purl.org/dc/terms/identifier": "http://dublincore.org/dcx/lrmi-terms/".freeze, + "http://purl.org/dc/terms/isVersionOf": "http://purl.org/dcx/lrmi-terms/1.1/".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://purl.org/dc/terms/license": "https://creativecommons.org/licenses/by/4.0/".freeze, + "http://purl.org/dc/terms/title": "LRMI RDF Specification".freeze, + "http://www.w3.org/2004/02/skos/core#historyNote": "2020-11-12: changes made reflecting developments in schema.org: added class LearningResource; added properties assesses, educationalLevel, teaches; fixed error in domain of timerequired; updated label and definition of isBasedOnUrl; skos:scopeNote used instead of dcterms:description for additional non-normative information; note added that rdfs:label is not considered normative; rangeIncludes statements updated to include skos:Concept for terms where there is an LRMI Concept Scheme or that reference a competence.".freeze # Class definitions term :AlignmentObject, comment: "An intangible item that describes an alignment between a learning resource and a node in an educational framework.".freeze, - "dc:issued": "2015-02-09".freeze, - equivalentClass: "schema:AlignmentObject".freeze, - isDefinedBy: "lrmi:".freeze, + equivalentClass: "http://schema.org/AlignmentObject".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "2020-11-12: Added scopeNote".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This class 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, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Alignment Object".freeze, - "skos:changeNote": "2020-11-12: Added scopeNote".freeze, - "skos:scopeNote": "This class 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, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EducationalAudience, comment: "An individual or group for whom the learning resource was created or useful.".freeze, - "dc:issued": "2015-02-09".freeze, - equivalentClass: "schema:EducationalAudience".freeze, - isDefinedBy: "lrmi:".freeze, + equivalentClass: "http://schema.org/EducationalAudience".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Educational Audience".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LearningResource, comment: "A persistent resource that has one or more physical or digital representations, and that explicitly involves, specifies or entails a learning activity or learning experience.".freeze, - "dc:issued": "2020-11-12".freeze, - equivalentClass: "schema:LearningResource".freeze, - isDefinedBy: "lrmi:".freeze, + equivalentClass: "http://schema.org/LearningResource".freeze, + "http://purl.org/dc/terms/issued": "2020-11-12".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "LearningResource is expected to be used as an addition to a primary type such as http://purl.org/ontology/bibo/Book, https://schema.org/Video, http://purl.org/dc/terms/PhysicalResource etc.".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Learning Resource".freeze, - "skos:scopeNote": "LearningResource is expected to be used as an addition to a primary type such as http://purl.org/ontology/bibo/Book, https://schema.org/Video, http://purl.org/dc/terms/PhysicalResource etc.".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :alignmentType, comment: "A category of alignment between the learning resource and the framework node.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:AlignmentObject".freeze, "schema:AlignmentObject".freeze], - equivalentProperty: "schema:alignmentType".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/AlignmentObject".freeze, "http://schema.org/AlignmentObject".freeze], + equivalentProperty: "http://schema.org/alignmentType".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "2020-11-12: Added scopeNote; added skos:Concept to rangeIncludes.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'. For 'assesses', 'teaches', and 'educationLevel' the specific properties with those names should be used.".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Alignment Type".freeze, - rangeIncludes: ["skos:Concept".freeze, "xsd:string".freeze], - "skos:changeNote": "2020-11-12: Added scopeNote; added skos:Concept to rangeIncludes.".freeze, - "skos:scopeNote": "Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'. For 'assesses', 'teaches', and 'educationLevel' the specific properties with those names should be used.".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://www.w3.org/2001/XMLSchema#string".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assesses, comment: "The item being described is intended to assess the competency or learning outcome defined by the referenced term.".freeze, - "dc:issued": "2020-11-12".freeze, - domainIncludes: ["lrmi:LearningResource".freeze, "schema:CreativeWork".freeze, "schema:LearningResource".freeze], - equivalentProperty: "schema:assesses".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/LearningResource".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], + equivalentProperty: "http://schema.org/assesses".freeze, + "http://purl.org/dc/terms/issued": "2020-11-12".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Assesses".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "skos:Concept".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalAlignment, comment: "An alignment to an established educational framework.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:LearningResource".freeze, "schema:CreativeWork".freeze, "schema:LearningResource".freeze], - equivalentProperty: "schema:educationalAlignment".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/LearningResource".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], + equivalentProperty: "http://schema.org/educationalAlignment".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "2020-11-12: added lrmi:LearningResource, schema:LearningResource to domain; added scopeNote".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "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, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Educational Alignment".freeze, - rangeIncludes: ["lrmi:AlignmentObject".freeze, "schema:AlignmentObject".freeze], - "skos:changeNote": "2020-11-12: added lrmi:LearningResource, schema:LearningResource to domain; added scopeNote".freeze, - "skos:scopeNote": "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, - type: "rdf:Property".freeze + rangeIncludes: ["http://purl.org/dcx/lrmi-terms/AlignmentObject".freeze, "http://schema.org/AlignmentObject".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalFramework, comment: "The framework to which the resource being described is aligned.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:AlignmentObject".freeze, "schema:AlignmentObject".freeze], - equivalentProperty: "schema:educationalFramework".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/AlignmentObject".freeze, "http://schema.org/AlignmentObject".freeze], + equivalentProperty: "http://schema.org/educationalFramework".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Educational Framework".freeze, - rangeIncludes: "xsd:string".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalLevel, comment: "The level of a resource in terms of progression through an educational or training context.".freeze, - "dc:issued": "2020-11-12".freeze, - domainIncludes: ["lrmi:LearningResource".freeze, "schema:CreativeWork".freeze, "schema:LearningResource".freeze], - equivalentProperty: "schema:assesses".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/LearningResource".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], + equivalentProperty: "http://schema.org/assesses".freeze, + "http://purl.org/dc/terms/issued": "2020-11-12".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Educational Level".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "skos:Concept".freeze], - "skos:scopeNote": "Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalRole, comment: "The role that describes the target audience of the content.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:EducationalAudience".freeze, "schema:EducationalAudience".freeze], - equivalentProperty: "schema:educationalRole".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/EducationalAudience".freeze, "http://schema.org/EducationalAudience".freeze], + equivalentProperty: "http://schema.org/educationalRole".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "2020-11-12: Added skos:Concept to rangeIncludes".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The educational function assumed or part played by the group for whom the resource is intended.".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Educational Role".freeze, - rangeIncludes: ["skos:Concept".freeze, "xsd:string".freeze], - "skos:changeNote": "2020-11-12: Added skos:Concept to rangeIncludes".freeze, - "skos:scopeNote": "The educational function assumed or part played by the group for whom the resource is intended.".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://www.w3.org/2001/XMLSchema#string".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalUse, comment: "The purpose of a work in the context of education.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:LearningResource".freeze, "schema:CreativeWork".freeze, "schema:LearningResource".freeze], - equivalentProperty: ["schema:educationalUse".freeze, "skos:Concept".freeze], - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/LearningResource".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], + equivalentProperty: ["http://schema.org/educationalUse".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze], + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "2020-11-12: added lrmi:LearningResource, schema:LearningResource to domain; added skos:Concept to rangeIncludes".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "For example, 'assignment', 'group work'.".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Educational Use".freeze, - rangeIncludes: "xsd:string".freeze, - "skos:changeNote": "2020-11-12: added lrmi:LearningResource, schema:LearningResource to domain; added skos:Concept to rangeIncludes".freeze, - "skos:scopeNote": "For example, 'assignment', 'group work'.".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interactivityType, comment: "The predominant mode of learning supported by the learning resource.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:LearningResource".freeze, "schema:CreativeWork".freeze, "schema:LearningResource".freeze], - equivalentProperty: "schema:interactivityType".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/LearningResource".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], + equivalentProperty: "http://schema.org/interactivityType".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "2020-11-12: added lrmi:LearningResource, schema:LearningResource to domain; added skos:Concept to rangeIncludes".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": ["Acceptable values are 'active', 'expositive', or 'mixed'.".freeze, "Based on, and mappable from, IEEE LOM 5.1: Interactivity Type.".freeze], + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Interactivity Type".freeze, - rangeIncludes: ["skos:Concept".freeze, "xsd:string".freeze], - "skos:changeNote": "2020-11-12: added lrmi:LearningResource, schema:LearningResource to domain; added skos:Concept to rangeIncludes".freeze, - "skos:scopeNote": ["Acceptable values are 'active', 'expositive', or 'mixed'.".freeze, "Based on, and mappable from, IEEE LOM 5.1: Interactivity Type.".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://www.w3.org/2001/XMLSchema#string".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isBasedOnUrl, comment: "A resource from which this work is derived or from which it is a modification or adaption.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: "schema:CreativeWork".freeze, - equivalentProperty: ["schema:isBasedOn".freeze, "schema:isBasedOnUrl".freeze], - isDefinedBy: "lrmi:".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + equivalentProperty: ["http://schema.org/isBasedOn".freeze, "http://schema.org/isBasedOnUrl".freeze], + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This term can be repeated for multiple sources.".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Is Based On".freeze, - rangeIncludes: "xsd:anyURI".freeze, - "skos:scopeNote": "This term can be repeated for multiple sources.".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :learningResourceType, comment: "The predominant type or kind characterizing the learning resource.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:LearningResource".freeze, "schema:CreativeWork".freeze, "schema:LearningResource".freeze], - equivalentProperty: "schema:learningResourceType".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/LearningResource".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], + equivalentProperty: "http://schema.org/learningResourceType".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "2020-11-12: added lrmi:LearningResource, schema:LearningResource to domain".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "For example, 'presentation', 'handout'.".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Learning Resource Type".freeze, - rangeIncludes: "xsd:string".freeze, - "skos:changeNote": "2020-11-12: added lrmi:LearningResource, schema:LearningResource to domain".freeze, - "skos:scopeNote": "For example, 'presentation', 'handout'.".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetDescription, comment: "The description of a node in an established educational framework.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:AlignmentObject".freeze, "schema:AlignmentObject".freeze], - equivalentProperty: "schema:targetDescription".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/AlignmentObject".freeze, "http://schema.org/AlignmentObject".freeze], + equivalentProperty: "http://schema.org/targetDescription".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Target Description".freeze, - rangeIncludes: "xsd:string".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetName, comment: "The name of a node in an established educational framework.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:AlignmentObject".freeze, "schema:AlignmentObject".freeze], - equivalentProperty: "schema:targetName".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/AlignmentObject".freeze, "http://schema.org/AlignmentObject".freeze], + equivalentProperty: "http://schema.org/targetName".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Target Name".freeze, - rangeIncludes: "xsd:string".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetUrl, comment: "The URL of a node in an established educational framework.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: ["lrmi:AlignmentObject".freeze, "schema:AlignmentObject".freeze], - equivalentProperty: "schema:targetUrl".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/AlignmentObject".freeze, "http://schema.org/AlignmentObject".freeze], + equivalentProperty: "http://schema.org/targetUrl".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Target URL".freeze, - rangeIncludes: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - "dc:issued": "2020-11-12".freeze, - domainIncludes: ["lrmi:LearningResource".freeze, "schema:CreativeWork".freeze, "schema:LearningResource".freeze], - equivalentProperty: "schema:teaches".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: ["http://purl.org/dcx/lrmi-terms/LearningResource".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], + equivalentProperty: "http://schema.org/teaches".freeze, + "http://purl.org/dc/terms/issued": "2020-11-12".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Teaches".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "skos:Concept".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: "schema:CreativeWork".freeze, - equivalentProperty: "schema:timeRequired".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + equivalentProperty: "http://schema.org/timeRequired".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#changeNote": "2020-11-12: error in domain fixed, changed from lrmi:AlignmentObject to schema:CreativeWork".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": ["Based on, and mappable from, IEEE LOM 5.9: Typical Learning Time.".freeze, "For example, 'PT30M' and 'PT1H25M'".freeze], + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Time Required".freeze, - rangeIncludes: "schema:Duration".freeze, - "skos:changeNote": "2020-11-12: error in domain fixed, changed from lrmi:AlignmentObject to schema:CreativeWork".freeze, - "skos:scopeNote": ["Based on, and mappable from, IEEE LOM 5.9: Typical Learning Time.".freeze, "For example, 'PT30M' and 'PT1H25M'".freeze], - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :typicalAgeRange, comment: "The typical expected age range.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: "schema:CreativeWork".freeze, - equivalentProperty: "schema:typicalAgeRange".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + equivalentProperty: "http://schema.org/typicalAgeRange".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": ["Based on, and mappable from, IEEE LOM 5.7: Typical Age Range.".freeze, "For example, '7-9', '18-'.".freeze], + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Typical Age Range".freeze, - rangeIncludes: "xsd:string".freeze, - "skos:scopeNote": ["Based on, and mappable from, IEEE LOM 5.7: Typical Age Range.".freeze, "For example, '7-9', '18-'.".freeze], - type: "rdf:Property".freeze + rangeIncludes: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :useRightsUrl, comment: "The URL where the owner specifies permissions for using the resource.".freeze, - "dc:issued": "2015-02-09".freeze, - domainIncludes: "schema:CreativeWork".freeze, - isDefinedBy: "lrmi:".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://purl.org/dc/terms/issued": "2015-02-09".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "For example: 'http://creativecommons.org/licenses/by/3.0/',\n 'http://publisher.com/content-use-description'.".freeze, + isDefinedBy: "http://purl.org/dcx/lrmi-terms/".freeze, label: "Use Rights URL".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "xsd:anyURI".freeze], - "skos:scopeNote": "For example: 'http://creativecommons.org/licenses/by/3.0/',\n 'http://publisher.com/content-use-description'.".freeze, - subPropertyOf: "schema:license".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://www.w3.org/2001/XMLSchema#anyURI".freeze], + subPropertyOf: "http://schema.org/license".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/ma.rb b/lib/rdf/vocab/ma.rb index 5d23ba1..cdcbf75 100644 --- a/lib/rdf/vocab/ma.rb +++ b/lib/rdf/vocab/ma.rb @@ -3,818 +3,428 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/ma-ont# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Created by Tobias Buerger, Jean Pierre Evain and Pierre-Antoine Champin with the RDFS Taskforce within the W3C Media Annotation Working Group. - # # - # # THE CONTENT OF THIS MA-ONT.RDF AND DERIVED MA-ONT.TTL FILES PREVAIL OVER THE SPECIFICATION. - # # @version R36 - # class MA < RDF::Vocabulary - # # A person or organisation contributing to the media resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agent - # - # # A specialisation of Track for Audio to provide a link to specific data properties such as sampleRate, etc. Specialisation is defined through object properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioTrack - # - # # Any group of media resource e.g. a series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # Ancillary data track e.g. captioning in addition to video and audio tracks. Specialisation is made through the use of appropriate object properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataTrack - # - # # A still image / thumbnail / key frame related to the media resource or being the media resource itself. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Image - # - # # A location related to the media resource, e.g. depicted in the resource (possibly fictional) or where the resource was created (shooting location), etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Location - # - # # A media fragment (spatial, temporal, track...) composing a media resource. In other ontologies fragment is sometimes referred to as a 'part' or 'segment'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaFragment - # - # # An image or an audiovisual media resource, which can be composed of one or more fragment / track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaResource - # - # # An organisation or moral agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organisation - # - # # A physical person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # Information about the rating given to a media resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rating - # - # # Information about The target audience (target region, target audience category but also parental guidance recommendation) for which a media resource is intended. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TargetAudience - # - # # A specialisation of MediaFragment for audiovisual content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Track - # - # # A specialisation of Track for Video to provide a link to specific data properties such as frameRate, etc. Signing is another possible example of video track. Specialisation is defined through object properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoTrack - # - # # Corresponds to 'title.title' in the Ontology for Media Resources with a 'title.type' meaning "alternative". - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternativeTitle - # - # # Corresponds to 'averageBitRate' in the Ontology for Media Resources, expressed in kilobits/second. - # # @return [RDF::Vocabulary::Term] - # attr_reader :averageBitRate - # - # # The name by which a collection (e.g. series) is known. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collectionName - # - # # Corresponds to 'copyright.copyright' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyright - # - # # A subproperty of 'hasRelatedLocation" used to specify where material shooting took place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :createdIn - # - # # Corresponds to 'date.date' in the Ontology for Media Resources with a 'date.type' meaning "creationDate". - # # @return [RDF::Vocabulary::Term] - # attr_reader :creationDate - # - # # Corresponds to date.date in the ontology for Media Resources. Subproperties can be used to distinguish different values of 'date.type'. The recommended range is 'xsd:dateTime' (for compliance with OWL2-QL and OWL2-RL) but other time-related datatypes may be used (e.g. 'xsd:gYear', 'xsd:date'...). - # # @return [RDF::Vocabulary::Term] - # attr_reader :date - # - # # A subproperty of 'hasRelatedLocation' used to specify where the action depicted in the media is supposed to take place, as opposed to the location where shooting actually took place (see 'createdIn'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :depictsFictionalLocation - # - # # Corresponds to 'description' in the Ontology for Media Resources. This can be specialised by using sub-properties e.g. 'summary' or 'script'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # Corresponds to 'duration' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # Corresponds to 'date.date' in the Ontology for Media Resources with a 'date.type' meaning "editDate". - # # @return [RDF::Vocabulary::Term] - # attr_reader :editDate - # - # # Corresponds to 'contributor.contributor' in the Ontology for Media Resources with a 'contributor.role' meaning "actor". - # # @return [RDF::Vocabulary::Term] - # attr_reader :features - # - # # Corresponds to 'namedFragment.label' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fragmentName - # - # # Corresponds to 'frameSize.height' in the Ontology for Media Resources, measured in frameSizeUnit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameHeight - # - # # Corresponds to 'frameRate' in the Ontology for Media Resources, in frame per second. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameRate - # - # # Corresponds to 'frameSize.unit' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameSizeUnit - # - # # Corresponds to 'frameSize.width' in the Ontology for Media Resources measured in frameSizeUnit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frameWidth - # - # # Corresponds to 'policy' in the Ontology for Media Resources with a 'policy.type' "access conditions". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAccessConditions - # - # # Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning "audio-description". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAudioDescription - # - # # Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning "captioning". This property can for example point to a spatial fragment, a VideoTrack or a DataTrack. The language of the captioning track can be expressed by attaching a 'hasLanguage' property to the specific track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCaptioning - # - # # Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning "chapter". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasChapter - # - # # Corresponds to 'targetAudience.classification' in the Ontology for Media Resources. This property is used to provide a value characterising the target audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasClassification - # - # # Corresponds to 'targetAudience.identifier' in the Ontology for Media Resources. This is used to identify the reference sheme against which the target audience has been characterised. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasClassificationSystem - # - # # Corresponds to 'compression' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCompression - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContributedTo - # - # # Corresponds to 'contributor.contributor' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'contributor.role'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContributor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCopyrightOver - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCreated - # - # # Corresponds to 'creator.creator' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'creator.role'. Note that this property is semantically a subproperty of 'hasContributor'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCreator - # - # # Corresponds to 'format' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormat - # - # # Corresponds to 'fragment' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'fragment.role'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFragment - # - # # Corresponds to 'genre' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasGenre - # - # # Corresponds to 'keyword' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasKeyword - # - # # Corresponds to 'language' in the Ontology for Media Resources. The language used in the resource. A controlled vocabulary such as defined in BCP 47 SHOULD be used. This property can also be used to identify the presence of sign language (RFC 5646). By inheritance, the hasLanguage property applies indifferently at the media resource / fragment / track levels. Best practice recommends to use to best possible level of granularity fo describe the usage of language within a media resource including at fragment and track levels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLanguage - # - # # Corresponds to 'location.coordinateSystem' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLocationCoordinateSystem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMember - # - # # Corresponds to 'namedFragment' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNamedFragment - # - # # Corresponds to 'policy' in the Ontology for Media Resources with a 'policy.type' meaning "permissions". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPermissions - # - # # Corresponds to 'policy' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'policy.type'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPolicy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPublished - # - # # Corresponds to 'publisher' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPublisher - # - # # Corresponds to 'rating' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRating - # - # # Corresponds to 'rating.type' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRatingSystem - # - # # Corresponds to 'relation' and in the Ontology for Media Resources with a 'relation.type' meaning "related image". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedImage - # - # # Corresponds to 'location' in the Ontology for Media Resources. Subproperties are provided to specify, when possible, the relation between the media resource and the location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedLocation - # - # # Corresponds to 'relation' and in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'relation.type'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedResource - # - # # Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning "signing". This property can for example point to a spatial fragment or a VideoTrack. The sign language of the captioning track can be expressed by attaching a 'hasLanguage' property to the specific track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSigning - # - # # Corresponds to 'relation' and in the Ontology for Media Resources with a 'relation.type' meaning "source". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSource - # - # # Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning "subtitling". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSubtitling - # - # # Corresponds to 'targetAudience' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTargetAudience - # - # # Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning "track". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTrack - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isCaptioningOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isChapterOf - # - # # Corresponds to 'copyright.identifier' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isCopyrightedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isCreationLocationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isFictionalLocationDepictedIn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isFragmentOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isImageRelatedTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isLocationRelatedTo - # - # # Corresponds to 'collection' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isMemberOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isNamedFragmentOf - # - # # Corresponds to 'rating.identifier' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isProvidedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRatingOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRelatedTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSigningOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSourceOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isTargetAudienceOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isTrackOf - # - # # Corresponds to 'location.altitude' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationAltitude - # - # # Corresponds to 'location.latitude' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationLatitude - # - # # Corresponds to 'location.longitude' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationLongitude - # - # # Corresponds to 'location.name' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationName - # - # # Corresponds to 'locator' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locator - # - # # Corresponds to 'title.title' in the Ontology for Media Resources with a 'title.type' meaning "original". - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainOriginalTitle - # - # # Corresponds to 'numTracks.number' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'numTracks.type'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfTracks - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :playsIn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :provides - # - # # Corresponds to 'rating.max' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingScaleMax - # - # # Corresponds to 'rating.min' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingScaleMin - # - # # Corresponds to 'rating.value' in the Ontology for Media Resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingValue - # - # # Corresponds to 'date.date' in the Ontology for Media Resources with a 'date.type' meaning "recordDate". - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordDate - # - # # Corresponds to 'date.date' in the Ontology for Media Resources with a 'date.type' meaning "releaseDate". - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseDate - # - # # Corresponds to 'samplingRate' in the Ontology for Media Resources, in samples per second. - # # @return [RDF::Vocabulary::Term] - # attr_reader :samplingRate - # - # # Corresponds to 'title.title' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'title.type'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # Corresponds to 'fragment.name' in the Ontology for Media Resources, for Track fragments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackName - # - # end MA = Class.new(RDF::Vocabulary("http://www.w3.org/ns/ma-ont#")) do # Ontology definition ontology :"http://www.w3.org/ns/ma-ont#", comment: ["Created by Tobias Buerger, Jean Pierre Evain and Pierre-Antoine Champin with the RDFS Taskforce within the W3C Media Annotation Working Group.".freeze, "THE CONTENT OF THIS MA-ONT.RDF AND DERIVED MA-ONT.TTL FILES PREVAIL OVER THE SPECIFICATION.".freeze], - "dc11:date": "2013-03-20".freeze, - "owl:imports": "http://dublincore.org/2008/01/14/dcelements.rdf".freeze, - "owl:versionInfo": "R36".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/elements/1.1/date": "2013-03-20".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://dublincore.org/2008/01/14/dcelements.rdf".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "R36".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Agent, comment: "A person or organisation contributing to the media resource.".freeze, - "owl:disjointWith": ["ma:Collection".freeze, "ma:Location".freeze, "ma:MediaResource".freeze, "ma:Rating".freeze, "ma:TargetAudience".freeze], - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/ns/ma-ont#Collection".freeze, "http://www.w3.org/ns/ma-ont#Location".freeze, "http://www.w3.org/ns/ma-ont#MediaResource".freeze, "http://www.w3.org/ns/ma-ont#Rating".freeze, "http://www.w3.org/ns/ma-ont#TargetAudience".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioTrack, comment: "A specialisation of Track for Audio to provide a link to specific data properties such as sampleRate, etc. Specialisation is defined through object properties.".freeze, - "owl:disjointWith": ["ma:DataTrack".freeze, "ma:VideoTrack".freeze], - subClassOf: "ma:Track".freeze, - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/ns/ma-ont#DataTrack".freeze, "http://www.w3.org/ns/ma-ont#VideoTrack".freeze], + subClassOf: "http://www.w3.org/ns/ma-ont#Track".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Collection, comment: "Any group of media resource e.g. a series.".freeze, - "owl:disjointWith": ["ma:Location".freeze, "ma:MediaResource".freeze, "ma:Rating".freeze, "ma:TargetAudience".freeze], - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/ns/ma-ont#Location".freeze, "http://www.w3.org/ns/ma-ont#MediaResource".freeze, "http://www.w3.org/ns/ma-ont#Rating".freeze, "http://www.w3.org/ns/ma-ont#TargetAudience".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DataTrack, comment: "Ancillary data track e.g. captioning in addition to video and audio tracks. Specialisation is made through the use of appropriate object properties.".freeze, - "owl:disjointWith": "ma:VideoTrack".freeze, - subClassOf: "ma:Track".freeze, - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/ns/ma-ont#VideoTrack".freeze, + subClassOf: "http://www.w3.org/ns/ma-ont#Track".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Image, comment: "A still image / thumbnail / key frame related to the media resource or being the media resource itself.".freeze, - subClassOf: "ma:MediaResource".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Location, comment: "A location related to the media resource, e.g. depicted in the resource (possibly fictional) or where the resource was created (shooting location), etc.".freeze, - "owl:disjointWith": ["ma:MediaResource".freeze, "ma:Rating".freeze, "ma:TargetAudience".freeze], - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/ns/ma-ont#MediaResource".freeze, "http://www.w3.org/ns/ma-ont#Rating".freeze, "http://www.w3.org/ns/ma-ont#TargetAudience".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MediaFragment, comment: "A media fragment (spatial, temporal, track...) composing a media resource. In other ontologies fragment is sometimes referred to as a 'part' or 'segment'.".freeze, - subClassOf: "ma:MediaResource".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MediaResource, comment: "An image or an audiovisual media resource, which can be composed of one or more fragment / track.".freeze, - "owl:disjointWith": ["ma:Rating".freeze, "ma:TargetAudience".freeze], - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/ns/ma-ont#Rating".freeze, "http://www.w3.org/ns/ma-ont#TargetAudience".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Organisation, comment: "An organisation or moral agent.".freeze, - "owl:disjointWith": "ma:Person".freeze, - subClassOf: "ma:Agent".freeze, - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/ns/ma-ont#Person".freeze, + subClassOf: "http://www.w3.org/ns/ma-ont#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Person, comment: "A physical person.".freeze, - subClassOf: "ma:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/ma-ont#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Rating, comment: "Information about the rating given to a media resource.".freeze, - "owl:disjointWith": "ma:TargetAudience".freeze, - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/ns/ma-ont#TargetAudience".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TargetAudience, comment: "Information about The target audience (target region, target audience category but also parental guidance recommendation) for which a media resource is intended.".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Track, comment: "A specialisation of MediaFragment for audiovisual content.".freeze, - subClassOf: "ma:MediaFragment".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/ma-ont#MediaFragment".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VideoTrack, comment: "A specialisation of Track for Video to provide a link to specific data properties such as frameRate, etc. Signing is another possible example of video track. Specialisation is defined through object properties.".freeze, - subClassOf: "ma:Track".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/ma-ont#Track".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :alternativeTitle, comment: "Corresponds to 'title.title' in the Ontology for Media Resources with a 'title.type' meaning \"alternative\".".freeze, - subPropertyOf: "ma:title".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#title".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :averageBitRate, comment: "Corresponds to 'averageBitRate' in the Ontology for Media Resources, expressed in kilobits/second.".freeze, domain: term( - intersectionOf: list("ma:MediaResource".freeze, term( - "owl:complementOf": "ma:Image".freeze, - type: "owl:Class".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("http://www.w3.org/ns/ma-ont#MediaResource".freeze, "_:g9920".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :collectionName, comment: "The name by which a collection (e.g. series) is known.".freeze, - domain: "ma:Collection".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Collection".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :copyright, comment: "Corresponds to 'copyright.copyright' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :createdIn, comment: "A subproperty of 'hasRelatedLocation\" used to specify where material shooting took place.".freeze, - inverseOf: "ma:isCreationLocationOf".freeze, - subPropertyOf: "ma:hasRelatedLocation".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#isCreationLocationOf".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasRelatedLocation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :creationDate, comment: "Corresponds to 'date.date' in the Ontology for Media Resources with a 'date.type' meaning \"creationDate\".".freeze, - subPropertyOf: "ma:date".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :date, comment: "Corresponds to date.date in the ontology for Media Resources. Subproperties can be used to distinguish different values of 'date.type'. The recommended range is 'xsd:dateTime' (for compliance with OWL2-QL and OWL2-RL) but other time-related datatypes may be used (e.g. 'xsd:gYear', 'xsd:date'...).".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :depictsFictionalLocation, comment: "A subproperty of 'hasRelatedLocation' used to specify where the action depicted in the media is supposed to take place, as opposed to the location where shooting actually took place (see 'createdIn').".freeze, - inverseOf: "ma:isFictionalLocationDepictedIn".freeze, - subPropertyOf: "ma:hasRelatedLocation".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#isFictionalLocationDepictedIn".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasRelatedLocation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :description, comment: "Corresponds to 'description' in the Ontology for Media Resources. This can be specialised by using sub-properties e.g. 'summary' or 'script'.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :duration, comment: "Corresponds to 'duration' in the Ontology for Media Resources.".freeze, domain: term( - intersectionOf: list("ma:MediaResource".freeze, term( - "owl:complementOf": "ma:Image".freeze, - type: "owl:Class".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("http://www.w3.org/ns/ma-ont#MediaResource".freeze, "_:g9980".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :editDate, comment: "Corresponds to 'date.date' in the Ontology for Media Resources with a 'date.type' meaning \"editDate\".".freeze, - subPropertyOf: "ma:date".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :features, comment: "Corresponds to 'contributor.contributor' in the Ontology for Media Resources with a 'contributor.role' meaning \"actor\".".freeze, - inverseOf: "ma:playsIn".freeze, - range: "ma:Person".freeze, - subPropertyOf: "ma:hasContributor".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#playsIn".freeze, + range: "http://www.w3.org/ns/ma-ont#Person".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasContributor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :fragmentName, comment: "Corresponds to 'namedFragment.label' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaFragment".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaFragment".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :frameHeight, comment: "Corresponds to 'frameSize.height' in the Ontology for Media Resources, measured in frameSizeUnit.".freeze, - domain: "ma:MediaResource".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :frameRate, comment: "Corresponds to 'frameRate' in the Ontology for Media Resources, in frame per second.".freeze, - domain: "ma:MediaResource".freeze, - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :frameSizeUnit, comment: "Corresponds to 'frameSize.unit' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :frameWidth, comment: "Corresponds to 'frameSize.width' in the Ontology for Media Resources measured in frameSizeUnit.".freeze, - domain: "ma:MediaResource".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasAccessConditions, comment: "Corresponds to 'policy' in the Ontology for Media Resources with a 'policy.type' \"access conditions\".".freeze, - subPropertyOf: "ma:hasPolicy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasAudioDescription, comment: "Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning \"audio-description\".".freeze, - subPropertyOf: "ma:hasCaptioning".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasCaptioning".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCaptioning, comment: "Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning \"captioning\". This property can for example point to a spatial fragment, a VideoTrack or a DataTrack. The language of the captioning track can be expressed by attaching a 'hasLanguage' property to the specific track.".freeze, - inverseOf: "ma:isCaptioningOf".freeze, - subPropertyOf: "ma:hasFragment".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#isCaptioningOf".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasFragment".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasChapter, comment: "Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning \"chapter\".".freeze, - inverseOf: "ma:isChapterOf".freeze, - subPropertyOf: "ma:hasFragment".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#isChapterOf".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasFragment".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasClassification, comment: "Corresponds to 'targetAudience.classification' in the Ontology for Media Resources. This property is used to provide a value characterising the target audience.".freeze, - domain: "ma:TargetAudience".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#TargetAudience".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasClassificationSystem, comment: "Corresponds to 'targetAudience.identifier' in the Ontology for Media Resources. This is used to identify the reference sheme against which the target audience has been characterised.".freeze, - domain: "ma:TargetAudience".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#TargetAudience".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCompression, comment: "Corresponds to 'compression' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasContributedTo, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasContributor, comment: "Corresponds to 'contributor.contributor' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'contributor.role'.".freeze, - domain: "ma:MediaResource".freeze, - inverseOf: "ma:hasContributedTo".freeze, - range: "ma:Agent".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + inverseOf: "http://www.w3.org/ns/ma-ont#hasContributedTo".freeze, + range: "http://www.w3.org/ns/ma-ont#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCopyrightOver, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCreated, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCreator, comment: "Corresponds to 'creator.creator' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'creator.role'. Note that this property is semantically a subproperty of 'hasContributor'.".freeze, - inverseOf: "ma:hasCreated".freeze, - subPropertyOf: "ma:hasContributor".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#hasCreated".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasContributor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasFormat, comment: "Corresponds to 'format' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasFragment, comment: "Corresponds to 'fragment' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'fragment.role'.".freeze, - domain: "ma:MediaResource".freeze, - inverseOf: "ma:isFragmentOf".freeze, - range: "ma:MediaFragment".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + inverseOf: "http://www.w3.org/ns/ma-ont#isFragmentOf".freeze, + range: "http://www.w3.org/ns/ma-ont#MediaFragment".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasGenre, comment: "Corresponds to 'genre' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasKeyword, comment: "Corresponds to 'keyword' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasLanguage, comment: "Corresponds to 'language' in the Ontology for Media Resources. The language used in the resource. A controlled vocabulary such as defined in BCP 47 SHOULD be used. This property can also be used to identify the presence of sign language (RFC 5646). By inheritance, the hasLanguage property applies indifferently at the media resource / fragment / track levels. Best practice recommends to use to best possible level of granularity fo describe the usage of language within a media resource including at fragment and track levels.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasLocationCoordinateSystem, comment: "Corresponds to 'location.coordinateSystem' in the Ontology for Media Resources.".freeze, - domain: "ma:Location".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Location".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMember, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasNamedFragment, comment: "Corresponds to 'namedFragment' in the Ontology for Media Resources.".freeze, - inverseOf: "ma:isNamedFragmentOf".freeze, - subPropertyOf: "ma:hasFragment".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#isNamedFragmentOf".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasFragment".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPermissions, comment: "Corresponds to 'policy' in the Ontology for Media Resources with a 'policy.type' meaning \"permissions\".".freeze, - subPropertyOf: "ma:hasPolicy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasPolicy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPolicy, comment: "Corresponds to 'policy' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'policy.type'.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPublished, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPublisher, comment: "Corresponds to 'publisher' in the Ontology for Media Resources.".freeze, - inverseOf: "ma:hasPublished".freeze, - subPropertyOf: "ma:hasContributor".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#hasPublished".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasContributor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRating, comment: "Corresponds to 'rating' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - inverseOf: "ma:isRatingOf".freeze, - range: "ma:Rating".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + inverseOf: "http://www.w3.org/ns/ma-ont#isRatingOf".freeze, + range: "http://www.w3.org/ns/ma-ont#Rating".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRatingSystem, comment: "Corresponds to 'rating.type' in the Ontology for Media Resources.".freeze, - domain: "ma:Rating".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Rating".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRelatedImage, comment: "Corresponds to 'relation' and in the Ontology for Media Resources with a 'relation.type' meaning \"related image\".".freeze, - inverseOf: "ma:isImageRelatedTo".freeze, - range: "ma:Image".freeze, - subPropertyOf: "ma:hasRelatedResource".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#isImageRelatedTo".freeze, + range: "http://www.w3.org/ns/ma-ont#Image".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasRelatedResource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRelatedLocation, comment: "Corresponds to 'location' in the Ontology for Media Resources. Subproperties are provided to specify, when possible, the relation between the media resource and the location.".freeze, - domain: "ma:MediaResource".freeze, - inverseOf: "ma:isLocationRelatedTo".freeze, - range: "ma:Location".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + inverseOf: "http://www.w3.org/ns/ma-ont#isLocationRelatedTo".freeze, + range: "http://www.w3.org/ns/ma-ont#Location".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRelatedResource, comment: "Corresponds to 'relation' and in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'relation.type'.".freeze, - domain: "ma:MediaResource".freeze, - inverseOf: "ma:isRelatedTo".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + inverseOf: "http://www.w3.org/ns/ma-ont#isRelatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSigning, comment: "Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning \"signing\". This property can for example point to a spatial fragment or a VideoTrack. The sign language of the captioning track can be expressed by attaching a 'hasLanguage' property to the specific track.".freeze, - inverseOf: "ma:isSigningOf".freeze, - subPropertyOf: "ma:hasFragment".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#isSigningOf".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasFragment".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSource, comment: "Corresponds to 'relation' and in the Ontology for Media Resources with a 'relation.type' meaning \"source\".".freeze, - inverseOf: "ma:isSourceOf".freeze, - subPropertyOf: "ma:hasRelatedResource".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#isSourceOf".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasRelatedResource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSubtitling, comment: "Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning \"subtitling\".".freeze, - subPropertyOf: "ma:hasCaptioning".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasCaptioning".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTargetAudience, comment: "Corresponds to 'targetAudience' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - inverseOf: "ma:isTargetAudienceOf".freeze, - range: "ma:TargetAudience".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + inverseOf: "http://www.w3.org/ns/ma-ont#isTargetAudienceOf".freeze, + range: "http://www.w3.org/ns/ma-ont#TargetAudience".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTrack, comment: "Corresponds to 'fragment' in the Ontology for Media Resources with a 'fragment.role' meaning \"track\".".freeze, - inverseOf: "ma:isTrackOf".freeze, - range: "ma:Track".freeze, - subPropertyOf: "ma:hasFragment".freeze, - type: "owl:ObjectProperty".freeze + inverseOf: "http://www.w3.org/ns/ma-ont#isTrackOf".freeze, + range: "http://www.w3.org/ns/ma-ont#Track".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#hasFragment".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isCaptioningOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isChapterOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isCopyrightedBy, comment: "Corresponds to 'copyright.identifier' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - inverseOf: "ma:hasCopyrightOver".freeze, - range: "ma:Agent".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + inverseOf: "http://www.w3.org/ns/ma-ont#hasCopyrightOver".freeze, + range: "http://www.w3.org/ns/ma-ont#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isCreationLocationOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isFictionalLocationDepictedIn, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isFragmentOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isImageRelatedTo, - subPropertyOf: "ma:isRelatedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#isRelatedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isLocationRelatedTo, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isMemberOf, comment: "Corresponds to 'collection' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - inverseOf: "ma:hasMember".freeze, - range: "ma:Collection".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + inverseOf: "http://www.w3.org/ns/ma-ont#hasMember".freeze, + range: "http://www.w3.org/ns/ma-ont#Collection".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isNamedFragmentOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isProvidedBy, comment: "Corresponds to 'rating.identifier' in the Ontology for Media Resources.".freeze, - domain: "ma:Rating".freeze, - inverseOf: "ma:provides".freeze, - range: "ma:Agent".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Rating".freeze, + inverseOf: "http://www.w3.org/ns/ma-ont#provides".freeze, + range: "http://www.w3.org/ns/ma-ont#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isRatingOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isRelatedTo, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isSigningOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isSourceOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isTargetAudienceOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isTrackOf, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :locationAltitude, comment: "Corresponds to 'location.altitude' in the Ontology for Media Resources.".freeze, - domain: "ma:Location".freeze, - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Location".freeze, + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationLatitude, comment: "Corresponds to 'location.latitude' in the Ontology for Media Resources.".freeze, - domain: "ma:Location".freeze, - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Location".freeze, + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationLongitude, comment: "Corresponds to 'location.longitude' in the Ontology for Media Resources.".freeze, - domain: "ma:Location".freeze, - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Location".freeze, + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationName, comment: "Corresponds to 'location.name' in the Ontology for Media Resources.".freeze, - domain: "ma:Location".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Location".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locator, comment: "Corresponds to 'locator' in the Ontology for Media Resources.".freeze, - domain: "ma:MediaResource".freeze, - range: "xsd:anyURI".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :mainOriginalTitle, comment: "Corresponds to 'title.title' in the Ontology for Media Resources with a 'title.type' meaning \"original\".".freeze, - subPropertyOf: "ma:title".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#title".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :numberOfTracks, comment: "Corresponds to 'numTracks.number' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'numTracks.type'.".freeze, - domain: "ma:MediaResource".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :playsIn, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :provides, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :ratingScaleMax, comment: "Corresponds to 'rating.max' in the Ontology for Media Resources.".freeze, - domain: "ma:Rating".freeze, - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Rating".freeze, + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :ratingScaleMin, comment: "Corresponds to 'rating.min' in the Ontology for Media Resources.".freeze, - domain: "ma:Rating".freeze, - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Rating".freeze, + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :ratingValue, comment: "Corresponds to 'rating.value' in the Ontology for Media Resources.".freeze, - domain: "ma:Rating".freeze, - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Rating".freeze, + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :recordDate, comment: "Corresponds to 'date.date' in the Ontology for Media Resources with a 'date.type' meaning \"recordDate\".".freeze, - subPropertyOf: "ma:date".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :releaseDate, comment: "Corresponds to 'date.date' in the Ontology for Media Resources with a 'date.type' meaning \"releaseDate\".".freeze, - subPropertyOf: "ma:date".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/ns/ma-ont#date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :samplingRate, comment: "Corresponds to 'samplingRate' in the Ontology for Media Resources, in samples per second.".freeze, - domain: "ma:MediaResource".freeze, - range: "xsd:decimal".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + range: "http://www.w3.org/2001/XMLSchema#decimal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :title, comment: "Corresponds to 'title.title' in the Ontology for Media Resources. Subproperties can be used to distinguish different values of 'title.type'.".freeze, - domain: "ma:MediaResource".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#MediaResource".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :trackName, comment: "Corresponds to 'fragment.name' in the Ontology for Media Resources, for Track fragments.".freeze, - domain: "ma:Track".freeze, - subPropertyOf: "ma:fragmentName".freeze, - type: "owl:DatatypeProperty".freeze + domain: "http://www.w3.org/ns/ma-ont#Track".freeze, + subPropertyOf: "http://www.w3.org/ns/ma-ont#fragmentName".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze end end diff --git a/lib/rdf/vocab/mads.rb b/lib/rdf/vocab/mads.rb index 6f622e9..ae39da2 100644 --- a/lib/rdf/vocab/mads.rb +++ b/lib/rdf/vocab/mads.rb @@ -3,1457 +3,860 @@ # This file generated automatically using rdf vocabulary format from http://www.loc.gov/mads/rdf/v1# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # MADS/RDF (Metadata Authority Description Schema in RDF) - # # - # # This document describes the MADS/RDF (Metadata Authority Description Schema in RDF) vocabulary, a data model for authority and vocabulary data used within the library and information science (LIS) community, which is inclusive of museums, archives, and other cultural institutions. It is presented as an OWL ontology. MADS/RDF is a knowledge organization system (KOS) designed for use with controlled values for names (personal, corporate, geographic, etc.), thesauri, taxonomies, subject heading systems, and other controlled value lists. It is closely related to SKOS, the Simple Knowledge Organization System and a widely supported and adopted RDF vocabulary. Given the close relationship between the aim of MADS/RDF and the aim of SKOS, the MADS ontology has been fully mapped to SKOS. Unlike SKOS, however, which is very broad in its application, MADS/RDF is designed specifically to support authority data as used by and needed in the LIS community and its technology systems. For example, MADS/RDF provides a means to record data from the Machine Readable Cataloging (MARC) Authorities format in RDF for use in semantic applications and Linked Data projects. MADS/RDF is designed to support the description of cultural and bibliographic resources. Data described using MADS/RDF, therefore, assists with identifying and annotating bibliographic and cultural resources. MADS/RDF is not focused on the description of Real World Objects. Although a MADS/RDF description may contain information specific to the Real World Object associated with the MADS/RDF authoritative label, the MADS/RDF ontology distinguishes between these two entities – the RWO and the Authority. Updated: 29 October 2015. Addition of new properties, madsrdf:activityEndDate, madsrdf:activityStartDate, madsrdf:associatedLanguage, madsrdf:associatedLocale, madsrdf:birthDate, madsrdf:birthPlace, madsrdf:deathDate, madsrdf:deathPlace, madsrdf:entityDescriptor, madsrdf:establishDate, madsrdf:fieldOfActivity, madsrdf:gender, madsrdf:hasAffiliation, madsrdf:honoraryTitle, madsrdf:isIdentifiedByAuthority, madsrdf:occupation, madsrdf:prominentFamilyMember, madsrdf:terminateDate, madsrdf:fullerName, madsrdf:creationDateStart, madsrdf:creationDateEnd, madsrdf:workOrigin, madsrdf:hasChararacteristic. The MADS/RDF to SKOS/RDF mapping was done by Antoine Isaac. The MADS/RDF model and ontology benefited significantly as a result of the fruitful discussions surrounding his effort to map the MADS/RDF ontology to SKOS. - # # @version 1.5.0 - # class MADS < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :Address - # - # # A resource that describes an individual's affiliation with an organization or group, such as the nature of the affiliation and the active dates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Affiliation - # - # # Describes a resource whose label is a non-jurisdictional geographic entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Area - # - # # A concept with a controlled label. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Authority - # - # # Describes a resource whose label is an inhabited place incorporated as a city, town, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :City - # - # # Describes a resource whose label is a smaller unit within a populated place, e.g., a neighborhood, park, or street. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CitySection - # - # # The label of a madsrdf:ComplexSubject is the concatenation of labels from two or more madsrdf:SimpleType descriptions, except that the combination of madsrdf:SimpleType labels for the madsrdf:ComplexSubject does not meet the conditions to be the label of a madsrdf:NameTitle resource or madsrdf:HierarchicalGeographic resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComplexSubject - # - # # madsrdf:ComplexType is a resource whose label is the concatenation of labels from two or more Authority descriptions or two or more Variant descriptions or some combination of Authority and Variant descriptions, each of a madsrdf:SimpleType. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComplexType - # - # # Describes a resource whose label represents a conference name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConferenceName - # - # # Describes a resource whose label is one of seven large landmasses on Earth. These are: Asia, Africa, Europe, North America, South America, Australia, and Antarctica. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Continent - # - # # Describes a resource whose label is the name of a corporate entity, which may include political or ecclesiastical entities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CorporateName - # - # # Describes a resource whose label is a country, i.e. a political entity considered a country. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Country - # - # # Describes a resource whose label is the largest local administrative unit, e.g. Warwickshire, in a country, e.g. England. - # # @return [RDF::Vocabulary::Term] - # attr_reader :County - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :DateNameElement - # - # # A former Authority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeprecatedAuthority - # - # # madsrdf:Element types describe the various parts of labels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Element - # - # # Describes a resource whose label is any extraterrestrial entity or space, including a solar system, a galaxy, a star system, and a planet, including a geographic feature of an individual planet. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExtraterrestrialArea - # - # # Describes a resource whose label represents a family name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FamilyName - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FamilyNameElement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :FullNameElement - # - # # Describes a resource whose label is a genre or form term. Genre terms for textual materials designate specific kinds of materials distinguished by the style or technique of their intellectual contents; for example, biographies, catechisms, essays, hymns, or reviews. Form terms designate historically and functionally specific kinds of materials as distinguished by an examination of their physical character, characteristics of their intellectual content, or the order of information within them; for example, daybooks, diaries, directories, journals, memoranda, questionnaires, syllabi, or time sheets. In the context of graphic materials, genre headings denote categories of material distinguished by vantage point, intended purpose, characteristics of the creator, publication status, or method of representation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GenreForm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GenreFormElement - # - # # Describes a resource whose label represents a geographic place or feature, especially when a more precise geographic determination (City, Country, Region, etc.) cannot be made. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Geographic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeographicElement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :GivenNameElement - # - # # A madsrdf:HierarchicalGeographic indicates that its label is the concatenation of labels from a sequence of madsrdf:Geographic types taken from one of the madsrdf:Geographic sub-classes such as madsrdf:City, madsrdf:Country, madsrdf:State, madsrdf:Region, madsrdf:Area, etc. The madsrdf:Geographic resources that constitute the madsrdf:HierarchicalGeographic should have a broader to narrower hierarchical relationship between them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HierarchicalGeographic - # - # # A madsrdf:Identifier resource describes an identifier by associating the identifier value with its type. To be used to record identifiers for a resource in the absence of URIs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Identifier - # - # # Describes a resource whose label is a tract of land surrounded by water and smaller than a continent but is not itself a separate country. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Island - # - # # Describes a resource whose label represents a language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Language - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :LanguageElement - # - # # A madsrdf:Collection is an organizational unit, members of which will have some form of intellectually unifying theme but not to the extent that it defines an independent knowledge organization system. It aggregates madsrdf:Authority descriptions or other madsrdf:MADSCollection resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MADSCollection - # - # # MADS Scheme is an organizational unit that describes a knowledge organization system. It aggregates madsrdf:Authority descriptions and/or madsrdf:MADSCollection resources included in the knowledge organization system. Including a madsrdf:MADSCollection within a madsrdf:MADSScheme should be done with care; when a madsrdf:MADSCollection is part of a madsrdf:MADSScheme, then any madsrdf:Authority within that madsrdf:MADSCollection is effectively also in the madsrdf:MADSScheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MADSScheme - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MADSType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :MainTitleElement - # - # # Describes a resource whose label represents a name, especially when a more precise Name type (madsrdf:ConferenceName, masdrdf:FamilyName, etc.) cannot be identified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Name - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NameElement - # - # # The label of a madsrdf:NameTitle resource is the concatenation of a label of a madsrdf:Name description and the label of a madsrdf:Title description. Both description types (madsrdf:Name and madsrdf:Title) are of madsrdf:SimpleType types. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NameTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :NonSortElement - # - # # Describes a resource whose label represents an occcupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Occupation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PartNameElement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :PartNumberElement - # - # # Describes a resource whose label represents a personal name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PersonalName - # - # # Describes a resource whose label is a first order political division, e.g. Ontario, within a country, e.g. Canada. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Province - # - # # A madsrdf:RWO is an abstract entity and identifies a Real World Object (RWO) identified by the label of a madsrdf:Authority or madsrdf:DeprecatedAuthority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RWO - # - # # Describes a resource whose label is an area that has the status of a jurisdiction, usually incorporating more than one first level jurisdiction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Region - # - # # madsrdf:SimpleType is a resource with a label constituting a single word or phrase. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SimpleType - # - # # A resource that represents the source of information about another resource. madsrdf:Source is a type of citation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Source - # - # # Describes a resource whose label is a first order political division, e.g. Montana, within a country, e.g. U.S. - # # @return [RDF::Vocabulary::Term] - # attr_reader :State - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SubTitleElement - # - # # Describes a resource whose label represents a time-based notion. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Temporal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TemporalElement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TermsOfAddressNameElement - # - # # Describes a resource whose label is a geographical area belonging to or under the jurisdiction of a governmental authority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Territory - # - # # Describes a resource whose label represents a title. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Title - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TitleElement - # - # # Describes a resource whose label represents a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Topic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TopicElement - # - # # A resource whose label is the alternate form of an Authority or Deprecated Authority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Variant - # - # # Latest date in a period of activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activityEndDate - # - # # Earliest date in a period of activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activityStartDate - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :adminMetadata - # - # # The date an individual ceased to be affiliated with an organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliationEnd - # - # # The date an individual established an affiliation with an organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliationStart - # - # # Language that a person, organization, or family uses for publication, communication, etc., or in which a work is expressed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedLanguage - # - # # A town, city, province, state, and/or country associated with persons, corporate bodies, families, works, and expressions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedLocale - # - # # A lexical string representing a controlled, curated label for the Authority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :authoritativeLabel - # - # # The year a person was born. Date of birth may also include the month and day of the person’s birth. (RDA 9.3.2.1) - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthDate - # - # # The town, city, province, state, and/or country in which a person was born. - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthPlace - # - # # A note detailing a modification to an Authority or Variant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :changeNote - # - # # A note about how the madsrdf:Source relates to the resource about which the madsrdf:Source is the information source. - # # @return [RDF::Vocabulary::Term] - # attr_reader :citationNote - # - # # The cited resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :citationSource - # - # # Should use a standard term - such as 'found' or 'not found' - to indicate whether the cited resource yielded information about the resource related to the madsrdf:Source. - # # @return [RDF::Vocabulary::Term] - # attr_reader :citationStatus - # - # # The city component of an address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :city - # - # # The classification code associated with a madsrdf:Authority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :classification - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :code - # - # # madsrdf:componentList organizes the madsrdf:SimpleType resources whose labels are represented in the label of the associated madsrdf:ComplexType resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :componentList - # - # # Country associated with an address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :country - # - # # Ending date of the date range for which the beginning date is recorded in madsrdf:creationDateStart. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creationDateEnd - # - # # For a work, earliest date (normally the year) associated with a work; that date may be the date the work was created or first published or released. For an expression, the earliest date (normally the year) associated with an expression; that date may be the date of the earliest known manifestation of that expression. In both cases the date may be the starting date of a range or a single date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creationDateStart - # - # # The year a person died. Date of death may also include the month and day of the person’s death. (RDA 9.3.3.1) - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathDate - # - # # The town, city, province, state, and/or country in which a person died. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathPlace - # - # # An explanation of the meaning of an Authority, DeprecatedAuthority, or Variant description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :definitionNote - # - # # A note pertaining to the deletion of a resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deletionNote - # - # # A label once considered authoritative (controlled and curated) but which is no longer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deprecatedLabel - # - # # A note pertaining to the management of the label associated with the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorialNote - # - # # The madsrdf:elementList property is used to organize the various parts of labels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :elementList - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elementValue - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :email - # - # # Any attribute that serves to characterize a person, family or corporate body or that may be needed for differentiation from other persons. families or corporate bodies and for which separate content designation is not already defined.Or - # # @return [RDF::Vocabulary::Term] - # attr_reader :entityDescriptor - # - # # The year a corporate body was established. Date of establishment may also include the month and day of the corporate body’s establishment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :establishDate - # - # # A example of how the resource might be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exampleNote - # - # # The second address line, if needed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :extendedAddress - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :extension - # - # # Fax number - # # @return [RDF::Vocabulary::Term] - # attr_reader :fax - # - # # The field of activity associated with an individual. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fieldOfActivity - # - # # Full form of name needed to distinguish a person from another person with the same preferred name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fullerName - # - # # The gender with which a person identifies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gender - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAbbreviationVariant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAcronymVariant - # - # # Property to associate an individual, such as a foaf:Agent, to a group or organization with which an individual is or has been affiliated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAffiliation - # - # # The address of the group or organization with which an individual is associated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAffiliationAddress - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasBroaderAuthority - # - # # Creates a direct relationship between an Authority and a more broadly defined Authority from a different MADS Scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasBroaderExternalAuthority - # - # # A term that specifies a characteristic that differentiates a work or expression from another one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasChararacteristic - # - # # Records a relationship between an Authority and one that is closely related from a different MADS Scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCloseExternalAuthority - # - # # Establishes a relationship between a CorporateName Authority and one of the same that is more broadly defined. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCorporateParentAuthority - # - # # Establishes a relationship between a CorporateName Authority and one of the same that is more narrowly defined. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCorporateSubsidiaryAuthority - # - # # Establishes a relationship between an Authority that represents the demonym - Japanese or Greek, for example - and an Authority that represents the Geographic place - Japan or Greece, respectively - associated with the demonym. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDemonym - # - # # Used to reference a resource that was an earlier form. This is Related type='earlier' in MADS XML. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEarlierEstablishedForm - # - # # Records a relationship between an Authority and one to which it matches exactly but from a different MADS Scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasExactExternalAuthority - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasExpansionVariant - # - # # Use for variants that are searchable, but not necessarily for display. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasHiddenVariant - # - # # Associates a resource with a madsrdf:Identifier. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasIdentifier - # - # # Use to reference the later form of a resource. This is Related type='later' in MADS XML. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLaterEstablishedForm - # - # # Associates an Authority or other Collection with a madsrdf:MADSCollection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMADSCollectionMember - # - # # Associates an Authority or Collection with a madsrdf:MADSScheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMADSSchemeMember - # - # # Creates a direct relationship between an Authority and one that is more narrowly defined. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNarrowerAuthority - # - # # Creates a direct relationship between an Authority and a more narrowly defined Authority from a different MADS Scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNarrowerExternalAuthority - # - # # Establishes a relationship between two Authority resources. It is reciprocal, so the relationship must be shared. This is Related type='equivalent' in MADS XML. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasReciprocalAuthority - # - # # Establishes a relationship between an Authority and one from a different MADS Scheme. It is reciprocal, so the relationship must be shared. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasReciprocalExternalAuthority - # - # # Unless the relationship can be more specifically identified, use 'hasRelatedAuthority.' - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedAuthority - # - # # Associates a resource description with its Source. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSource - # - # # Identifies an Authority that is at the top of the hierarchy of authorities within the MADS Scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTopMemberOfMADSScheme - # - # # A Variant whose label represents a translation of that of the authoritative label. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTranslationVariant - # - # # Associates a Variant with an Authority or Deprecrated Authority. Unless the variant type can be more specifically identified, use 'hasVariant.' - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVariant - # - # # A label entered for discovery purposes but not shown. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hiddenLabel - # - # # A note pertaining to the history of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :historyNote - # - # # Designation indicative of royalty, nobility, or ecclesiastical rank or office, or a term of address for a person of religious vocation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :honoraryTitle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hours - # - # # The scheme associated with the identifier. For example, "LCCN" would be used when the Identifier Value (madsrdf:idValue) is a LC Control Number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :idScheme - # - # # The value of the identifier conforming to the Identifier Scheme syntax. - # # @return [RDF::Vocabulary::Term] - # attr_reader :idValue - # - # # Associates a madsrdf:Authority with the Real World Object that is the subject of the authority's label. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifiesRWO - # - # # Establishes a relationship between an Authority that represents a Geographic place - Japan or Greece, for example - and an Authority that represents the demonym - Japanese or Greek, respectively - associated with the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isDemonymFor - # - # # Associates a Real World Object with its Authority description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isIdentifiedByAuthority - # - # # Associates a Collection with a madsrdf:Authority or another madsrdf:MADSCollection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isMemberOfMADSCollection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isMemberOfMADSScheme - # - # # Identifies a MADS Scheme in which the Authority is at the top of the hierarchy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isTopMemberOfMADSScheme - # - # # Records the individual's role or position in the organization with which the individual is affiliated. A "job title" might be appropriate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :natureOfAffiliation - # - # # A note about the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :note - # - # # A profession or occupation in which the person works or has worked. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupation - # - # # The group or organization with which an individual is associated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organization - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :phone - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :postcode - # - # # A well-known individual who is a member of the family. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prominentFamilyMember - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scopeNote - # - # # Denotes a relationship between two resources. The relationship may or may or may not be reciprocated and there is no certainty that the related resource will further illuminate the original resource. Sub-properties can be used to more specifically identify the nature of the relationship. - # # @return [RDF::Vocabulary::Term] - # attr_reader :see - # - # # The state associated with an address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :state - # - # # First line of address. For second line, use madsrdf:extendedAddress. - # # @return [RDF::Vocabulary::Term] - # attr_reader :streetAddress - # - # # The year a corporate body was terminated. Date of termination may also include the month and day of the corporate body’s termination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :terminateDate - # - # # "Use [This Resource] For." Traditional "USE FOR" reference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :useFor - # - # # "Use [This Other Resource] Instead." Traditional "USE" reference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :useInstead - # - # # The lexical, variant form of an authoritative label. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variantLabel - # - # # The country or other territorial jurisdiction from which a work originated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workOrigin - # - # end MADS = Class.new(RDF::StrictVocabulary("http://www.loc.gov/mads/rdf/v1#")) do # Ontology definition ontology :"http://www.loc.gov/mads/rdf/v1#", - comment: %(This document describes the MADS/RDF \(Metadata Authority Description Schema in RDF\) vocabulary, a data model for authority and vocabulary data used within the library and information science \(LIS\) community, which is inclusive of museums, archives, and other cultural institutions. It is presented as an OWL ontology. - - - MADS/RDF is a knowledge organization system \(KOS\) designed for use with controlled values for names \(personal, corporate, geographic, etc.\), thesauri, taxonomies, subject heading systems, and other controlled value lists. It is closely related to SKOS, the Simple Knowledge Organization System and a widely supported and adopted RDF vocabulary. Given the close relationship between the aim of MADS/RDF and the aim of SKOS, the MADS ontology has been fully mapped to SKOS. - - - Unlike SKOS, however, which is very broad in its application, MADS/RDF is designed specifically to support authority data as used by and needed in the LIS community and its technology systems. For example, MADS/RDF provides a means to record data from the Machine Readable Cataloging \(MARC\) Authorities format in RDF for use in semantic applications and Linked Data projects. - - - MADS/RDF is designed to support the description of cultural and bibliographic resources. Data described using MADS/RDF, therefore, assists with identifying and annotating bibliographic and cultural resources. MADS/RDF is not focused on the description of Real World Objects. Although a MADS/RDF description may contain information specific to the Real World Object associated with the MADS/RDF authoritative label, the MADS/RDF ontology distinguishes between these two entities – the RWO and the Authority. - - - Updated: 29 October 2015. Addition of new properties, madsrdf:activityEndDate, madsrdf:activityStartDate, madsrdf:associatedLanguage, madsrdf:associatedLocale, madsrdf:birthDate, madsrdf:birthPlace, madsrdf:deathDate, madsrdf:deathPlace, madsrdf:entityDescriptor, madsrdf:establishDate, madsrdf:fieldOfActivity, madsrdf:gender, madsrdf:hasAffiliation, madsrdf:honoraryTitle, madsrdf:isIdentifiedByAuthority, madsrdf:occupation, madsrdf:prominentFamilyMember, madsrdf:terminateDate, madsrdf:fullerName, madsrdf:creationDateStart, madsrdf:creationDateEnd, madsrdf:workOrigin, madsrdf:hasChararacteristic. - - - The MADS/RDF to SKOS/RDF mapping was done by Antoine Isaac. The MADS/RDF model and ontology benefited significantly as a result of the fruitful discussions surrounding his effort to map the MADS/RDF ontology to SKOS. ).freeze, - "dc:modified": "2019-01-04T17:01:03.065-05:00".freeze, + comment: "This document describes the MADS/RDF (Metadata Authority Description Schema in RDF) vocabulary, a data model for authority and vocabulary data used within the library and information science (LIS) community, which is inclusive of museums, archives, and other cultural institutions. It is presented as an OWL ontology. \n \n \n MADS/RDF is a knowledge organization system (KOS) designed for use with controlled values for names (personal, corporate, geographic, etc.), thesauri, taxonomies, subject heading systems, and other controlled value lists. It is closely related to SKOS, the Simple Knowledge Organization System and a widely supported and adopted RDF vocabulary. Given the close relationship between the aim of MADS/RDF and the aim of SKOS, the MADS ontology has been fully mapped to SKOS. \n \n \n Unlike SKOS, however, which is very broad in its application, MADS/RDF is designed specifically to support authority data as used by and needed in the LIS community and its technology systems. For example, MADS/RDF provides a means to record data from the Machine Readable Cataloging (MARC) Authorities format in RDF for use in semantic applications and Linked Data projects. \n \n \n MADS/RDF is designed to support the description of cultural and bibliographic resources. Data described using MADS/RDF, therefore, assists with identifying and annotating bibliographic and cultural resources. MADS/RDF is not focused on the description of Real World Objects. Although a MADS/RDF description may contain information specific to the Real World Object associated with the MADS/RDF authoritative label, the MADS/RDF ontology distinguishes between these two entities – the RWO and the Authority. \n \n \n Updated: 29 October 2015. Addition of new properties, madsrdf:activityEndDate, madsrdf:activityStartDate, madsrdf:associatedLanguage, madsrdf:associatedLocale, madsrdf:birthDate, madsrdf:birthPlace, madsrdf:deathDate, madsrdf:deathPlace, madsrdf:entityDescriptor, madsrdf:establishDate, madsrdf:fieldOfActivity, madsrdf:gender, madsrdf:hasAffiliation, madsrdf:honoraryTitle, madsrdf:isIdentifiedByAuthority, madsrdf:occupation, madsrdf:prominentFamilyMember, madsrdf:terminateDate, madsrdf:fullerName, madsrdf:creationDateStart, madsrdf:creationDateEnd, madsrdf:workOrigin, madsrdf:hasChararacteristic. \n \n \n The MADS/RDF to SKOS/RDF mapping was done by Antoine Isaac. The MADS/RDF model and ontology benefited significantly as a result of the fruitful discussions surrounding his effort to map the MADS/RDF ontology to SKOS. ".freeze, + "http://purl.org/dc/terms/modified": "2019-01-04T17:01:03.065-05:00".freeze, + "http://www.w3.org/2002/07/owl#ontologyIRI": "http://www.loc.gov/mads/rdf/v1#".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://id.loc.gov/ontologies/madsrdf/v1-3-1".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://id.loc.gov/ontologies/madsrdf/v1-4-0".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.4.0".freeze, label: "MADS/RDF (Metadata Authority Description Schema in RDF)".freeze, - "owl:ontologyIRI": "mads:".freeze, - "owl:priorVersion": "http://id.loc.gov/ontologies/madsrdf/v1-4-0".freeze, - "owl:versionIRI": "http://id.loc.gov/ontologies/madsrdf/v1-5-0".freeze, - "owl:versionInfo": "1.5.0".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Address, label: "Address".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Affiliation, - comment: %(A resource that describes an individual's affiliation with an organization or group, such as the nature of the affiliation and the active dates.).freeze, + comment: "A resource that describes an individual's affiliation with an organization or group, such as the nature of the affiliation and the active dates.".freeze, label: "Affiliation".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Area, - comment: %(Describes a resource whose label is a non-jurisdictional geographic entity.).freeze, + comment: "Describes a resource whose label is a non-jurisdictional geographic entity.".freeze, label: "Area Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Authority, - comment: %(A concept with a controlled label.).freeze, + comment: "A concept with a controlled label.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.loc.gov/mads/rdf/v1#DeprecatedAuthority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze, "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze, "http://www.loc.gov/mads/rdf/v1#Variant".freeze], label: "Authority".freeze, - "owl:disjointWith": ["mads:DeprecatedAuthority".freeze, "mads:MADSCollection".freeze, "mads:MADSScheme".freeze, "mads:Variant".freeze], - subClassOf: ["owl:Thing".freeze, "skos:Concept".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.w3.org/2002/07/owl#Thing".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :City, - comment: %(Describes a resource whose label is an inhabited place incorporated as a city, town, etc.).freeze, + comment: "Describes a resource whose label is an inhabited place incorporated as a city, town, etc.".freeze, label: "City Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CitySection, - comment: %(Describes a resource whose label is a smaller unit within a populated place, e.g., a neighborhood, park, or street.).freeze, + comment: "Describes a resource whose label is a smaller unit within a populated place, e.g., a neighborhood, park, or street.".freeze, label: "City Section Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ComplexSubject, - comment: %(The label of a madsrdf:ComplexSubject is the concatenation of labels from two or more madsrdf:SimpleType descriptions, except that the combination of madsrdf:SimpleType labels for the madsrdf:ComplexSubject does not meet the conditions to be the label of a madsrdf:NameTitle resource or madsrdf:HierarchicalGeographic resource.).freeze, + comment: "The label of a madsrdf:ComplexSubject is the concatenation of labels from two or more madsrdf:SimpleType descriptions, except that the combination of madsrdf:SimpleType labels for the madsrdf:ComplexSubject does not meet the conditions to be the label of a madsrdf:NameTitle resource or madsrdf:HierarchicalGeographic resource.".freeze, label: "Complex Subject Type".freeze, - subClassOf: "mads:ComplexType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#ComplexType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ComplexType, - comment: %(madsrdf:ComplexType is a resource whose label is the concatenation of labels from two or more Authority descriptions or two or more Variant descriptions or some combination of Authority and Variant descriptions, each of a madsrdf:SimpleType.).freeze, + comment: "madsrdf:ComplexType is a resource whose label is the concatenation of labels from two or more Authority descriptions or two or more Variant descriptions or some combination of Authority and Variant descriptions, each of a madsrdf:SimpleType.".freeze, equivalentClass: term( cardinality: "1".freeze, - onProperty: "mads:componentList".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/mads/rdf/v1#componentList".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), + "http://www.w3.org/2002/07/owl#disjointUnionOf": list("http://www.loc.gov/mads/rdf/v1#HierarchicalGeographic".freeze, "http://www.loc.gov/mads/rdf/v1#ComplexSubject".freeze, "http://www.loc.gov/mads/rdf/v1#NameTitle".freeze), + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.loc.gov/mads/rdf/v1#SimpleType".freeze, label: "Complex Type".freeze, - "owl:disjointUnionOf": list("mads:HierarchicalGeographic".freeze, "mads:ComplexSubject".freeze, "mads:NameTitle".freeze), - "owl:disjointWith": "mads:SimpleType".freeze, - subClassOf: "mads:MADSType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#MADSType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ConferenceName, - comment: %(Describes a resource whose label represents a conference name.).freeze, + comment: "Describes a resource whose label represents a conference name.".freeze, label: "Conference Name Type".freeze, - subClassOf: "mads:Name".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Name".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Continent, - comment: %(Describes a resource whose label is one of seven large landmasses on Earth. These are: Asia, Africa, Europe, North America, South America, Australia, and Antarctica.).freeze, + comment: "Describes a resource whose label is one of seven large landmasses on Earth. These are: Asia, Africa, Europe, North America, South America, Australia, and Antarctica.".freeze, label: "Continent Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CorporateName, - comment: %(Describes a resource whose label is the name of a corporate entity, which may include political or ecclesiastical entities.).freeze, + comment: "Describes a resource whose label is the name of a corporate entity, which may include political or ecclesiastical entities.".freeze, label: "Corporate Name Type".freeze, - subClassOf: "mads:Name".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Name".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Country, - comment: %(Describes a resource whose label is a country, i.e. a political entity considered a country. ).freeze, + comment: "Describes a resource whose label is a country, i.e. a political entity considered a country. ".freeze, label: "Country Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :County, - comment: %(Describes a resource whose label is the largest local administrative unit, e.g. Warwickshire, in a country, e.g. England.).freeze, + comment: "Describes a resource whose label is the largest local administrative unit, e.g. Warwickshire, in a country, e.g. England.".freeze, label: "County Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DateNameElement, label: "Date Name Element".freeze, - subClassOf: "mads:NameElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#NameElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DeprecatedAuthority, - comment: %(A former Authority.).freeze, + comment: "A former Authority.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze, "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze], label: "Deprecated Authority".freeze, - "owl:disjointWith": ["mads:Authority".freeze, "mads:MADSCollection".freeze, "mads:MADSScheme".freeze], - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Element, - comment: %(madsrdf:Element types describe the various parts of labels.).freeze, + comment: "madsrdf:Element types describe the various parts of labels.".freeze, equivalentClass: term( cardinality: "1".freeze, - onProperty: "mads:elementValue".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/mads/rdf/v1#elementValue".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), label: "Element".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ExtraterrestrialArea, - comment: %(Describes a resource whose label is any extraterrestrial entity or space, including a solar system, a galaxy, a star system, and a planet, including a geographic feature of an individual planet.).freeze, + comment: "Describes a resource whose label is any extraterrestrial entity or space, including a solar system, a galaxy, a star system, and a planet, including a geographic feature of an individual planet.".freeze, label: "Extraterrestrial Area Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FamilyName, - comment: %(Describes a resource whose label represents a family name.).freeze, + comment: "Describes a resource whose label represents a family name.".freeze, label: "Family Name Type".freeze, - subClassOf: "mads:Name".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Name".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FamilyNameElement, label: "Family Name Element".freeze, - subClassOf: "mads:NameElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#NameElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FullNameElement, label: "Fullname Element".freeze, - subClassOf: "mads:NameElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#NameElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GenreForm, - comment: %(Describes a resource whose label is a genre or form term. Genre terms for textual materials designate specific kinds of materials distinguished by the style or technique of their intellectual contents; for example, biographies, catechisms, essays, hymns, or reviews. Form terms designate historically and functionally specific kinds of materials as distinguished by an examination of their physical character, characteristics of their intellectual content, or the order of information within them; for example, daybooks, diaries, directories, journals, memoranda, questionnaires, syllabi, or time sheets. In the context of graphic materials, genre headings denote categories of material distinguished by vantage point, intended purpose, characteristics of the creator, publication status, or method of representation.).freeze, + comment: "Describes a resource whose label is a genre or form term. Genre terms for textual materials designate specific kinds of materials distinguished by the style or technique of their intellectual contents; for example, biographies, catechisms, essays, hymns, or reviews. Form terms designate historically and functionally specific kinds of materials as distinguished by an examination of their physical character, characteristics of their intellectual content, or the order of information within them; for example, daybooks, diaries, directories, journals, memoranda, questionnaires, syllabi, or time sheets. In the context of graphic materials, genre headings denote categories of material distinguished by vantage point, intended purpose, characteristics of the creator, publication status, or method of representation.".freeze, label: "Genre/Form Type".freeze, - subClassOf: "mads:SimpleType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#SimpleType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GenreFormElement, label: "Genre/Form Element".freeze, - subClassOf: "mads:Element".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Element".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Geographic, - comment: %(Describes a resource whose label represents a geographic place or feature, especially when a more precise geographic determination \(City, Country, Region, etc.\) cannot be made.).freeze, + comment: "Describes a resource whose label represents a geographic place or feature, especially when a more precise geographic determination (City, Country, Region, etc.) cannot be made.".freeze, label: "Geographic Authority".freeze, - subClassOf: "mads:SimpleType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#SimpleType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GeographicElement, label: "Geographic Element".freeze, - subClassOf: "mads:Element".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Element".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GivenNameElement, label: "Given Name Element".freeze, - subClassOf: "mads:NameElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#NameElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :HierarchicalGeographic, - comment: %(A madsrdf:HierarchicalGeographic indicates that its label is the concatenation of labels from a sequence of madsrdf:Geographic types taken from one of the madsrdf:Geographic sub-classes such as madsrdf:City, madsrdf:Country, madsrdf:State, madsrdf:Region, madsrdf:Area, etc. The madsrdf:Geographic resources that constitute the madsrdf:HierarchicalGeographic should have a broader to narrower hierarchical relationship between them.).freeze, + comment: "A madsrdf:HierarchicalGeographic indicates that its label is the concatenation of labels from a sequence of madsrdf:Geographic types taken from one of the madsrdf:Geographic sub-classes such as madsrdf:City, madsrdf:Country, madsrdf:State, madsrdf:Region, madsrdf:Area, etc. The madsrdf:Geographic resources that constitute the madsrdf:HierarchicalGeographic should have a broader to narrower hierarchical relationship between them.".freeze, label: "Hierarchical Geographic Type".freeze, - subClassOf: "mads:ComplexType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#ComplexType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Identifier, - comment: %(A madsrdf:Identifier resource describes an identifier by associating the identifier value with its type. To be used to record identifiers for a resource in the absence of URIs.).freeze, + comment: "A madsrdf:Identifier resource describes an identifier by associating the identifier value with its type. To be used to record identifiers for a resource in the absence of URIs.".freeze, label: "Other Identifier".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Island, - comment: %(Describes a resource whose label is a tract of land surrounded by water and smaller than a continent but is not itself a separate country. ).freeze, + comment: "Describes a resource whose label is a tract of land surrounded by water and smaller than a continent but is not itself a separate country. ".freeze, label: "Island Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Language, - comment: %(Describes a resource whose label represents a language.).freeze, - equivalentClass: "dc:LinguisticSystem".freeze, + comment: "Describes a resource whose label represents a language.".freeze, + equivalentClass: "http://purl.org/dc/terms/LinguisticSystem".freeze, label: "Language Type".freeze, - subClassOf: "mads:SimpleType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#SimpleType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LanguageElement, label: "Language Element".freeze, - subClassOf: "mads:Element".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Element".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MADSCollection, - comment: %(A madsrdf:Collection is an organizational unit, members of which will have some form of intellectually unifying theme but not to the extent that it defines an independent knowledge organization system. It aggregates madsrdf:Authority descriptions or other madsrdf:MADSCollection resources.).freeze, + comment: "A madsrdf:Collection is an organizational unit, members of which will have some form of intellectually unifying theme but not to the extent that it defines an independent knowledge organization system. It aggregates madsrdf:Authority descriptions or other madsrdf:MADSCollection resources.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze, "http://www.loc.gov/mads/rdf/v1#Variant".freeze], label: "MADS Collection".freeze, - "owl:disjointWith": ["mads:Authority".freeze, "mads:MADSScheme".freeze, "mads:Variant".freeze], - subClassOf: "skos:Collection".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Collection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MADSScheme, - comment: %(MADS Scheme is an organizational unit that describes a knowledge organization system. It aggregates madsrdf:Authority descriptions and/or madsrdf:MADSCollection resources included in the knowledge organization system. Including a madsrdf:MADSCollection within a madsrdf:MADSScheme should be done with care; when a madsrdf:MADSCollection is part of a madsrdf:MADSScheme, then any madsrdf:Authority within that madsrdf:MADSCollection is effectively also in the madsrdf:MADSScheme.).freeze, + comment: "MADS Scheme is an organizational unit that describes a knowledge organization system. It aggregates madsrdf:Authority descriptions and/or madsrdf:MADSCollection resources included in the knowledge organization system. Including a madsrdf:MADSCollection within a madsrdf:MADSScheme should be done with care; when a madsrdf:MADSCollection is part of a madsrdf:MADSScheme, then any madsrdf:Authority within that madsrdf:MADSCollection is effectively also in the madsrdf:MADSScheme.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze, "http://www.loc.gov/mads/rdf/v1#Variant".freeze], label: "MADS Scheme".freeze, - "owl:disjointWith": ["mads:Authority".freeze, "mads:MADSCollection".freeze, "mads:Variant".freeze], - subClassOf: "skos:ConceptScheme".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MADSType, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze, "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze], label: "MADS Type".freeze, - "owl:disjointWith": ["mads:MADSCollection".freeze, "mads:MADSScheme".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MainTitleElement, label: "Main Title Element".freeze, - subClassOf: "mads:TitleElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#TitleElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Name, - comment: %(Describes a resource whose label represents a name, especially when a more precise Name type \(madsrdf:ConferenceName, masdrdf:FamilyName, etc.\) cannot be identified.).freeze, + comment: "Describes a resource whose label represents a name, especially when a more precise Name type (madsrdf:ConferenceName, masdrdf:FamilyName, etc.) cannot be identified.".freeze, label: "Name Type".freeze, - subClassOf: "mads:SimpleType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#SimpleType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NameElement, label: "Name Element".freeze, - subClassOf: "mads:Element".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Element".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NameTitle, - comment: %(The label of a madsrdf:NameTitle resource is the concatenation of a label of a madsrdf:Name description and the label of a madsrdf:Title description. Both description types \(madsrdf:Name and madsrdf:Title\) are of madsrdf:SimpleType types.).freeze, + comment: "The label of a madsrdf:NameTitle resource is the concatenation of a label of a madsrdf:Name description and the label of a madsrdf:Title description. Both description types (madsrdf:Name and madsrdf:Title) are of madsrdf:SimpleType types.".freeze, label: "Name/Title Type".freeze, - subClassOf: "mads:ComplexType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#ComplexType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NonSortElement, label: "Non-sort Element".freeze, - subClassOf: "mads:TitleElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#TitleElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Occupation, - comment: %(Describes a resource whose label represents an occcupation.).freeze, + comment: "Describes a resource whose label represents an occcupation.".freeze, label: "Occupation Type".freeze, - subClassOf: "mads:SimpleType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#SimpleType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PartNameElement, label: "Part Name Element".freeze, - subClassOf: "mads:TitleElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#TitleElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PartNumberElement, label: "Part Number Element".freeze, - subClassOf: "mads:TitleElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#TitleElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PersonalName, - comment: %(Describes a resource whose label represents a personal name.).freeze, + comment: "Describes a resource whose label represents a personal name.".freeze, label: "Personal Name Type".freeze, - subClassOf: "mads:Name".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Name".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Province, - comment: %(Describes a resource whose label is a first order political division, e.g. Ontario, within a country, e.g. Canada. ).freeze, + comment: "Describes a resource whose label is a first order political division, e.g. Ontario, within a country, e.g. Canada. ".freeze, label: "Province Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RWO, - comment: %(A madsrdf:RWO is an abstract entity and identifies a Real World Object \(RWO\) identified by the label of a madsrdf:Authority or madsrdf:DeprecatedAuthority.).freeze, + comment: "A madsrdf:RWO is an abstract entity and identifies a Real World Object (RWO) identified by the label of a madsrdf:Authority or madsrdf:DeprecatedAuthority.".freeze, label: "Real World Object".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Region, - comment: %(Describes a resource whose label is an area that has the status of a jurisdiction, usually incorporating more than one first level jurisdiction. ).freeze, + comment: "Describes a resource whose label is an area that has the status of a jurisdiction, usually incorporating more than one first level jurisdiction. ".freeze, label: "Region Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SimpleType, - comment: %(madsrdf:SimpleType is a resource with a label constituting a single word or phrase.).freeze, + comment: "madsrdf:SimpleType is a resource with a label constituting a single word or phrase.".freeze, label: "Simple Type".freeze, - subClassOf: "mads:MADSType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#MADSType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Source, - comment: %(A resource that represents the source of information about another resource. madsrdf:Source is a type of citation.).freeze, + comment: "A resource that represents the source of information about another resource. madsrdf:Source is a type of citation.".freeze, label: "Source".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :State, - comment: %(Describes a resource whose label is a first order political division, e.g. Montana, within a country, e.g. U.S.).freeze, + comment: "Describes a resource whose label is a first order political division, e.g. Montana, within a country, e.g. U.S.".freeze, label: "State Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SubTitleElement, label: "Subtitle Element".freeze, - subClassOf: "mads:TitleElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#TitleElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Temporal, - comment: %(Describes a resource whose label represents a time-based notion.).freeze, + comment: "Describes a resource whose label represents a time-based notion.".freeze, label: "Temporal Type".freeze, - subClassOf: "mads:SimpleType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#SimpleType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TemporalElement, label: "Temporal Element".freeze, - subClassOf: "mads:Element".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Element".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TermsOfAddressNameElement, label: "Terms of Address Element".freeze, - subClassOf: "mads:NameElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#NameElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Territory, - comment: %(Describes a resource whose label is a geographical area belonging to or under the jurisdiction of a governmental authority. ).freeze, + comment: "Describes a resource whose label is a geographical area belonging to or under the jurisdiction of a governmental authority. ".freeze, label: "Territory Type".freeze, - subClassOf: "mads:Geographic".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Title, - comment: %(Describes a resource whose label represents a title.).freeze, + comment: "Describes a resource whose label represents a title.".freeze, label: "Title Type".freeze, - subClassOf: "mads:SimpleType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#SimpleType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TitleElement, label: "Title Element".freeze, - subClassOf: "mads:Element".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Element".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Topic, - comment: %(Describes a resource whose label represents a topic.).freeze, + comment: "Describes a resource whose label represents a topic.".freeze, label: "Topic Type".freeze, - subClassOf: "mads:SimpleType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#SimpleType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TopicElement, label: "Topic Element".freeze, - subClassOf: "mads:Element".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.loc.gov/mads/rdf/v1#Element".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Variant, - comment: %(A resource whose label is the alternate form of an Authority or Deprecated Authority.).freeze, + comment: "A resource whose label is the alternate form of an Authority or Deprecated Authority.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze, "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze], label: "Variant".freeze, - "owl:disjointWith": ["mads:Authority".freeze, "mads:MADSCollection".freeze, "mads:MADSScheme".freeze], - subClassOf: ["owl:Thing".freeze, "skosxl:Label".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.w3.org/2002/07/owl#Thing".freeze, "http://www.w3.org/2008/05/skos-xl#Label".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :activityEndDate, - comment: %(Latest date in a period of activity. ).freeze, - domain: "mads:RWO".freeze, + comment: "Latest date in a period of activity. ".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Activity End".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :activityStartDate, - comment: %(Earliest date in a period of activity. ).freeze, - domain: "mads:RWO".freeze, + comment: "Earliest date in a period of activity. ".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Activity Start".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :adminMetadata, - 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, + 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("_:g10080".freeze, "_:g10100".freeze, "_:g10120".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#DeprecatedAuthority".freeze, "http://www.loc.gov/mads/rdf/v1#Variant".freeze) ), label: "Administrative Metadata".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :affiliationEnd, - comment: %(The date an individual ceased to be affiliated with an organization.).freeze, - domain: "mads:Affiliation".freeze, + comment: "The date an individual ceased to be affiliated with an organization.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, label: "Affiliation Ended".freeze, - range: "xsd:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :affiliationStart, - comment: %(The date an individual established an affiliation with an organization.).freeze, - domain: "mads:Affiliation".freeze, + comment: "The date an individual established an affiliation with an organization.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, label: "Affiliation Started".freeze, - range: "xsd:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :associatedLanguage, - comment: %(Language that a person, organization, or family uses for publication, communication, etc., or in which a work is expressed. ).freeze, - domain: "mads:RWO".freeze, + comment: "Language that a person, organization, or family uses for publication, communication, etc., or in which a work is expressed. ".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Associated Language".freeze, - range: "mads:Language".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Language".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :associatedLocale, - comment: %(A town, city, province, state, and/or country associated with persons, corporate bodies, families, works, and expressions.).freeze, - domain: "mads:RWO".freeze, + comment: "A town, city, province, state, and/or country associated with persons, corporate bodies, families, works, and expressions.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Associated Locale".freeze, - range: "mads:Geographic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :authoritativeLabel, - comment: %(A lexical string representing a controlled, curated label for the Authority.).freeze, - domain: "mads:Authority".freeze, + comment: "A lexical string representing a controlled, curated label for the Authority.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Authority".freeze, label: "Authoritative Label".freeze, - subPropertyOf: ["rdfs:label".freeze, "skos:prefLabel".freeze], - type: "owl:AnnotationProperty".freeze + subPropertyOf: ["http://www.w3.org/2000/01/rdf-schema#label".freeze, "http://www.w3.org/2004/02/skos/core#prefLabel".freeze], + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :birthDate, - comment: %(The year a person was born. Date of birth may also include the month and day of the person’s birth. \(RDA 9.3.2.1\)).freeze, - domain: "mads:RWO".freeze, + comment: "The year a person was born. Date of birth may also include the month and day of the person’s birth. (RDA 9.3.2.1)".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Birth Date".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :birthPlace, - comment: %(The town, city, province, state, and/or country in which a person was born.).freeze, - domain: "mads:RWO".freeze, + comment: "The town, city, province, state, and/or country in which a person was born.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Place of Birth".freeze, - range: "mads:Geographic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :changeNote, - comment: %(A note detailing a modification to an Authority or Variant.).freeze, - equivalentProperty: "skos:changeNote".freeze, + comment: "A note detailing a modification to an Authority or Variant.".freeze, + equivalentProperty: "http://www.w3.org/2004/02/skos/core#changeNote".freeze, label: "Change Note".freeze, - subPropertyOf: "mads:note".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#note".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :citationNote, - comment: %(A note about how the madsrdf:Source relates to the resource about which the madsrdf:Source is the information source.).freeze, - domain: "mads:Source".freeze, + comment: "A note about how the madsrdf:Source relates to the resource about which the madsrdf:Source is the information source.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Source".freeze, label: "Citation Note".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :citationSource, - comment: %(The cited resource.).freeze, - domain: "mads:Source".freeze, + comment: "The cited resource.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Source".freeze, label: "Citation Source".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :citationStatus, - comment: %(Should use a standard term - such as 'found' or 'not found' - to indicate whether the cited resource yielded information about the resource related to the madsrdf:Source.).freeze, - domain: "mads:Source".freeze, + comment: "Should use a standard term - such as 'found' or 'not found' - to indicate whether the cited resource yielded information about the resource related to the madsrdf:Source.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Source".freeze, label: "Citation Status".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :city, - comment: %(The city component of an address.).freeze, - domain: "mads:Address".freeze, + comment: "The city component of an address.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Address".freeze, label: "City".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :classification, - comment: %(The classification code associated with a madsrdf:Authority.).freeze, - domain: "mads:Authority".freeze, + comment: "The classification code associated with a madsrdf:Authority.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Authority".freeze, label: "Classification".freeze, - subPropertyOf: "skos:semanticRelation".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.w3.org/2004/02/skos/core#semanticRelation".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :code, - 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, + 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("_:g10600".freeze, "_:g10620".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#DeprecatedAuthority".freeze) ), label: "Code".freeze, - subPropertyOf: "skos:notation".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2004/02/skos/core#notation".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :componentList, - comment: %(madsrdf:componentList organizes the madsrdf:SimpleType resources whose labels are represented in the label of the associated madsrdf:ComplexType resource.).freeze, - domain: "mads:ComplexType".freeze, + comment: "madsrdf:componentList organizes the madsrdf:SimpleType resources whose labels are represented in the label of the associated madsrdf:ComplexType resource.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#ComplexType".freeze, label: "Component List".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("_:g10720".freeze, "_:g10740".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :country, - comment: %(Country associated with an address.).freeze, - domain: "mads:Address".freeze, + comment: "Country associated with an address.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Address".freeze, label: "Country".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :creationDateEnd, - comment: %(Ending date of the date range for which the beginning date is recorded in madsrdf:creationDateStart.).freeze, + comment: "Ending date of the date range for which the beginning date is recorded in madsrdf:creationDateStart.".freeze, label: "Work end".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :creationDateStart, - comment: %(For a work, earliest date \(normally the year\) associated with a work; that date may be the date the work was created or first published or released. For an expression, the earliest date \(normally the year\) associated with an expression; that date may be the date of the earliest known manifestation of that expression. In both cases the date may be the starting date of a range or a single date.).freeze, + comment: "For a work, earliest date (normally the year) associated with a work; that date may be the date the work was created or first published or released. For an expression, the earliest date (normally the year) associated with an expression; that date may be the date of the earliest known manifestation of that expression. In both cases the date may be the starting date of a range or a single date.".freeze, label: "Work begun".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :deathDate, - comment: %(The year a person died. Date of death may also include the month and day of the person’s death. \(RDA 9.3.3.1\)).freeze, - domain: "mads:RWO".freeze, + comment: "The year a person died. Date of death may also include the month and day of the person’s death. (RDA 9.3.3.1)".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Death Date".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :deathPlace, - comment: %(The town, city, province, state, and/or country in which a person died.).freeze, - domain: "mads:RWO".freeze, + comment: "The town, city, province, state, and/or country in which a person died.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Place of Death".freeze, - range: "mads:Geographic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :definitionNote, - comment: %(An explanation of the meaning of an Authority, DeprecatedAuthority, or Variant description.).freeze, - equivalentProperty: "skos:definition".freeze, + comment: "An explanation of the meaning of an Authority, DeprecatedAuthority, or Variant description.".freeze, + equivalentProperty: "http://www.w3.org/2004/02/skos/core#definition".freeze, label: "Definition Note".freeze, - subPropertyOf: "mads:note".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#note".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :deletionNote, - comment: %(A note pertaining to the deletion of a resource.).freeze, + comment: "A note pertaining to the deletion of a resource.".freeze, label: "Deletion Note".freeze, - subPropertyOf: "mads:changeNote".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#changeNote".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :deprecatedLabel, - comment: %(A label once considered authoritative \(controlled and curated\) but which is no longer.).freeze, - domain: "mads:DeprecatedAuthority".freeze, + comment: "A label once considered authoritative (controlled and curated) but which is no longer.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#DeprecatedAuthority".freeze, label: "Deprecated Label".freeze, - subPropertyOf: ["rdfs:label".freeze, "skos:hiddenLabel".freeze], - type: "owl:AnnotationProperty".freeze + subPropertyOf: ["http://www.w3.org/2000/01/rdf-schema#label".freeze, "http://www.w3.org/2004/02/skos/core#hiddenLabel".freeze], + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :editorialNote, - comment: %(A note pertaining to the management of the label associated with the resource.).freeze, - equivalentProperty: "skos:editorialNote".freeze, + comment: "A note pertaining to the management of the label associated with the resource.".freeze, + equivalentProperty: "http://www.w3.org/2004/02/skos/core#editorialNote".freeze, label: "Editorial Note".freeze, - subPropertyOf: "mads:note".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#note".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :elementList, - comment: %(The madsrdf:elementList property is used to organize the various parts of labels.).freeze, + comment: "The madsrdf:elementList property is used to organize the various parts of labels.".freeze, label: "Element List".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("_:g11080".freeze, "_:g11100".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :elementValue, - domain: "mads:Element".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Element".freeze, label: "Element Value".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :email, - domain: "mads:Affiliation".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, label: "Email".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :entityDescriptor, - comment: %(Any attribute that serves to characterize a person, family or corporate body or that may be needed for differentiation from other persons. families or corporate bodies and for which separate content designation is not already defined.Or ).freeze, - domain: "mads:RWO".freeze, + comment: "Any attribute that serves to characterize a person, family or corporate body or that may be needed for differentiation from other persons. families or corporate bodies and for which separate content designation is not already defined.Or ".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Entity Descriptor".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :establishDate, - comment: %(The year a corporate body was established. Date of establishment may also include the month and day of the corporate body’s establishment. ).freeze, - domain: "mads:RWO".freeze, + comment: "The year a corporate body was established. Date of establishment may also include the month and day of the corporate body’s establishment. ".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Established".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :exampleNote, - comment: %(A example of how the resource might be used.).freeze, - equivalentProperty: "skos:example".freeze, + comment: "A example of how the resource might be used.".freeze, + equivalentProperty: "http://www.w3.org/2004/02/skos/core#example".freeze, label: "Example Note".freeze, - subPropertyOf: "mads:note".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#note".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :extendedAddress, - comment: %(The second address line, if needed.).freeze, - domain: "mads:Address".freeze, + comment: "The second address line, if needed.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Address".freeze, label: "Extended Address".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :extension, label: "Extension".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :fax, - comment: %(Fax number).freeze, - domain: "mads:Affiliation".freeze, + comment: "Fax number".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, label: "Fax".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :fieldOfActivity, - comment: %(The field of activity associated with an individual.).freeze, - domain: "mads:RWO".freeze, + comment: "The field of activity associated with an individual.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Field of Activity".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :fullerName, - comment: %(Full form of name needed to distinguish a person from another person with the same preferred name.).freeze, + comment: "Full form of name needed to distinguish a person from another person with the same preferred name.".freeze, label: "Fuller Name".freeze, - range: "mads:PersonalName".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#PersonalName".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :gender, - comment: %(The gender with which a person identifies. ).freeze, - domain: "mads:RWO".freeze, + comment: "The gender with which a person identifies. ".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Gender".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasAbbreviationVariant, label: "Has Abbreviation Variant".freeze, - subPropertyOf: "mads:hasVariant".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#hasVariant".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasAcronymVariant, label: "Has Acronym Variant".freeze, - subPropertyOf: "mads:hasVariant".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#hasVariant".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasAffiliation, - comment: %(Property to associate an individual, such as a foaf:Agent, to a group or organization with which an individual is or has been affiliated.).freeze, - domain: "mads:RWO".freeze, + comment: "Property to associate an individual, such as a foaf:Agent, to a group or organization with which an individual is or has been affiliated.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Has Affiliation".freeze, - range: "mads:Affiliation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasAffiliationAddress, - comment: %(The address of the group or organization with which an individual is associated.).freeze, - domain: "mads:Affiliation".freeze, + comment: "The address of the group or organization with which an individual is associated.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, label: "Has Affiliation Address".freeze, - range: "mads:Address".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Address".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasBroaderAuthority, - inverseOf: "mads:hasNarrowerAuthority".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#hasNarrowerAuthority".freeze, label: "Has Broader Authority".freeze, - subPropertyOf: ["mads:hasRelatedAuthority".freeze, "skos:broader".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#hasRelatedAuthority".freeze, "http://www.w3.org/2004/02/skos/core#broader".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasBroaderExternalAuthority, - comment: %(Creates a direct relationship between an Authority and a more broadly defined Authority from a different MADS Scheme.).freeze, + comment: "Creates a direct relationship between an Authority and a more broadly defined Authority from a different MADS Scheme.".freeze, label: "Has Broader External Authority".freeze, - subPropertyOf: ["mads:hasBroaderAuthority".freeze, "skos:broadMatch".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#hasBroaderAuthority".freeze, "http://www.w3.org/2004/02/skos/core#broadMatch".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasChararacteristic, - comment: %(A term that specifies a characteristic that differentiates a work or expression from another one. ).freeze, + comment: "A term that specifies a characteristic that differentiates a work or expression from another one. ".freeze, label: "Other characteristic".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCloseExternalAuthority, - comment: %(Records a relationship between an Authority and one that is closely related from a different MADS Scheme.).freeze, + comment: "Records a relationship between an Authority and one that is closely related from a different MADS Scheme.".freeze, label: "Has Close External Authority".freeze, - subPropertyOf: ["mads:hasRelatedAuthority".freeze, "skos:closeMatch".freeze], - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#hasRelatedAuthority".freeze, "http://www.w3.org/2004/02/skos/core#closeMatch".freeze], + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :hasCorporateParentAuthority, - comment: %(Establishes a relationship between a CorporateName Authority and one of the same that is more broadly defined.).freeze, - domain: "mads:CorporateName".freeze, + comment: "Establishes a relationship between a CorporateName Authority and one of the same that is more broadly defined.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#CorporateName".freeze, label: "Has Parent Organization".freeze, - range: "mads:CorporateName".freeze, - subPropertyOf: "mads:hasRelatedAuthority".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#CorporateName".freeze, + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#hasRelatedAuthority".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCorporateSubsidiaryAuthority, - comment: %(Establishes a relationship between a CorporateName Authority and one of the same that is more narrowly defined.).freeze, - domain: "mads:CorporateName".freeze, - inverseOf: "mads:hasCorporateParentAuthority".freeze, + comment: "Establishes a relationship between a CorporateName Authority and one of the same that is more narrowly defined.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#CorporateName".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#hasCorporateParentAuthority".freeze, label: "Is Parent Organization Of".freeze, - range: "mads:CorporateName".freeze, - subPropertyOf: "mads:hasRelatedAuthority".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#CorporateName".freeze, + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#hasRelatedAuthority".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDemonym, - comment: %(Establishes a relationship between an Authority that represents the demonym - Japanese or Greek, for example - and an Authority that represents the Geographic place - Japan or Greece, respectively - associated with the demonym.).freeze, - inverseOf: "mads:isDemonymFor".freeze, + comment: "Establishes a relationship between an Authority that represents the demonym - Japanese or Greek, for example - and an Authority that represents the Geographic place - Japan or Greece, respectively - associated with the demonym.".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#isDemonymFor".freeze, label: "Has Demonym".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEarlierEstablishedForm, - comment: %(Used to reference a resource that was an earlier form. This is Related type='earlier' in MADS XML.).freeze, - inverseOf: "mads:hasLaterEstablishedForm".freeze, + comment: "Used to reference a resource that was an earlier form. This is Related type='earlier' in MADS XML.".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#hasLaterEstablishedForm".freeze, label: "Has Earlier Established Form".freeze, - subPropertyOf: "mads:see".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#see".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasExactExternalAuthority, - comment: %(Records a relationship between an Authority and one to which it matches exactly but from a different MADS Scheme.).freeze, + comment: "Records a relationship between an Authority and one to which it matches exactly but from a different MADS Scheme.".freeze, label: "Has Exact External Authority".freeze, - subPropertyOf: ["mads:hasCloseExternalAuthority".freeze, "skos:exactMatch".freeze], - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "owl:TransitiveProperty".freeze] + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#hasCloseExternalAuthority".freeze, "http://www.w3.org/2004/02/skos/core#exactMatch".freeze], + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :hasExpansionVariant, label: "Has Expansion Variant".freeze, - subPropertyOf: "mads:hasVariant".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#hasVariant".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasHiddenVariant, - comment: %(Use for variants that are searchable, but not necessarily for display.).freeze, - domain: "mads:Authority".freeze, + comment: "Use for variants that are searchable, but not necessarily for display.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Authority".freeze, label: "Has Hidden Variant".freeze, - range: "mads:Variant".freeze, - subPropertyOf: "skosxl:hiddenLabel".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Variant".freeze, + subPropertyOf: "http://www.w3.org/2008/05/skos-xl#hiddenLabel".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasIdentifier, - comment: %(Associates a resource with a madsrdf:Identifier.).freeze, + comment: "Associates a resource with a madsrdf:Identifier.".freeze, label: "Has Identifier".freeze, - range: "mads:Identifier".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Identifier".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasLaterEstablishedForm, - comment: %(Use to reference the later form of a resource. This is Related type='later' in MADS XML.).freeze, - inverseOf: "mads:hasEarlierEstablishedForm".freeze, + comment: "Use to reference the later form of a resource. This is Related type='later' in MADS XML.".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#hasEarlierEstablishedForm".freeze, label: "Has Later Established Form".freeze, - subPropertyOf: "mads:see".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#see".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMADSCollectionMember, - comment: %(Associates an Authority or other Collection with a madsrdf:MADSCollection.).freeze, - domain: "mads:MADSCollection".freeze, - inverseOf: "mads:isMemberOfMADSCollection".freeze, + comment: "Associates an Authority or other Collection with a madsrdf:MADSCollection.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#isMemberOfMADSCollection".freeze, label: "Has MADSCollection Member".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("_:g11980".freeze, "_:g12000".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze) ), - subPropertyOf: "skos:member".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/2004/02/skos/core#member".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMADSSchemeMember, - comment: %(Associates an Authority or Collection with a madsrdf:MADSScheme.).freeze, - domain: "mads:MADSScheme".freeze, - inverseOf: "mads:isMemberOfMADSScheme".freeze, + comment: "Associates an Authority or Collection with a madsrdf:MADSScheme.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#isMemberOfMADSScheme".freeze, label: "Has MADS Scheme Member".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("_:g12140".freeze, "_:g12160".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasNarrowerAuthority, - comment: %(Creates a direct relationship between an Authority and one that is more narrowly defined.).freeze, - inverseOf: "mads:hasBroaderAuthority".freeze, + comment: "Creates a direct relationship between an Authority and one that is more narrowly defined.".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#hasBroaderAuthority".freeze, label: "Has Narrower Authority".freeze, - subPropertyOf: ["mads:hasRelatedAuthority".freeze, "skos:narrower".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#hasRelatedAuthority".freeze, "http://www.w3.org/2004/02/skos/core#narrower".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasNarrowerExternalAuthority, - comment: %(Creates a direct relationship between an Authority and a more narrowly defined Authority from a different MADS Scheme.).freeze, + comment: "Creates a direct relationship between an Authority and a more narrowly defined Authority from a different MADS Scheme.".freeze, label: "Has Narrower External Authority".freeze, - subPropertyOf: ["mads:hasNarrowerAuthority".freeze, "skos:narrowMatch".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#hasNarrowerAuthority".freeze, "http://www.w3.org/2004/02/skos/core#narrowMatch".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasReciprocalAuthority, - comment: %(Establishes a relationship between two Authority resources. It is reciprocal, so the relationship must be shared. This is Related type='equivalent' in MADS XML.).freeze, + comment: "Establishes a relationship between two Authority resources. It is reciprocal, so the relationship must be shared. This is Related type='equivalent' in MADS XML.".freeze, label: "Has Reciprocal Authority".freeze, - subPropertyOf: ["mads:hasRelatedAuthority".freeze, "skos:related".freeze], - type: "owl:SymmetricProperty".freeze + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#hasRelatedAuthority".freeze, "http://www.w3.org/2004/02/skos/core#related".freeze], + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :hasReciprocalExternalAuthority, - comment: %(Establishes a relationship between an Authority and one from a different MADS Scheme. It is reciprocal, so the relationship must be shared.).freeze, + comment: "Establishes a relationship between an Authority and one from a different MADS Scheme. It is reciprocal, so the relationship must be shared.".freeze, label: "Has Reciprocal External Authority".freeze, - subPropertyOf: ["mads:hasReciprocalAuthority".freeze, "skos:relatedMatch".freeze], - type: "owl:SymmetricProperty".freeze + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#hasReciprocalAuthority".freeze, "http://www.w3.org/2004/02/skos/core#relatedMatch".freeze], + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :hasRelatedAuthority, - comment: %(Unless the relationship can be more specifically identified, use 'hasRelatedAuthority.').freeze, - domain: "mads:Authority".freeze, + comment: "Unless the relationship can be more specifically identified, use 'hasRelatedAuthority.'".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Authority".freeze, label: "Has Related Authority".freeze, - range: "mads:Authority".freeze, - subPropertyOf: "skos:semanticRelation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Authority".freeze, + subPropertyOf: "http://www.w3.org/2004/02/skos/core#semanticRelation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSource, - comment: %(Associates a resource description with its Source.).freeze, + comment: "Associates a resource description with its Source.".freeze, label: "Has Source".freeze, - range: "mads:Source".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Source".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTopMemberOfMADSScheme, - comment: %(Identifies an Authority that is at the top of the hierarchy of authorities within the MADS Scheme.).freeze, - domain: "mads:MADSScheme".freeze, + comment: "Identifies an Authority that is at the top of the hierarchy of authorities within the MADS Scheme.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze, label: "Has Top Member of MADS Scheme".freeze, - range: "mads:Authority".freeze, - subPropertyOf: ["mads:hasMADSSchemeMember".freeze, "skos:hasTopConcept".freeze], - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Authority".freeze, + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#hasMADSSchemeMember".freeze, "http://www.w3.org/2004/02/skos/core#hasTopConcept".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTranslationVariant, - comment: %(A Variant whose label represents a translation of that of the authoritative label.).freeze, + comment: "A Variant whose label represents a translation of that of the authoritative label.".freeze, label: "Has Translation Variant".freeze, - subPropertyOf: "mads:hasVariant".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#hasVariant".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasVariant, - comment: %(Associates a Variant with an Authority or Deprecrated Authority. Unless the variant type can be more specifically identified, use 'hasVariant.').freeze, - domain: "mads:Authority".freeze, + comment: "Associates a Variant with an Authority or Deprecrated Authority. Unless the variant type can be more specifically identified, use 'hasVariant.'".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Authority".freeze, label: "Has Variant".freeze, - range: "mads:Variant".freeze, - subPropertyOf: "skosxl:altLabel".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Variant".freeze, + subPropertyOf: "http://www.w3.org/2008/05/skos-xl#altLabel".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hiddenLabel, - comment: %(A label entered for discovery purposes but not shown.).freeze, - domain: "mads:Variant".freeze, + comment: "A label entered for discovery purposes but not shown.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Variant".freeze, label: "Hidden Label".freeze, - subPropertyOf: "skosxl:literalForm".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2008/05/skos-xl#literalForm".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :historyNote, - comment: %(A note pertaining to the history of the resource.).freeze, - equivalentProperty: "skos:historyNote".freeze, + comment: "A note pertaining to the history of the resource.".freeze, + equivalentProperty: "http://www.w3.org/2004/02/skos/core#historyNote".freeze, label: "History Note".freeze, - subPropertyOf: "mads:note".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#note".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :honoraryTitle, - comment: %(Designation indicative of royalty, nobility, or ecclesiastical rank or office, or a term of address for a person of religious vocation.).freeze, - domain: "mads:RWO".freeze, + comment: "Designation indicative of royalty, nobility, or ecclesiastical rank or office, or a term of address for a person of religious vocation.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Honorary Title".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hours, - domain: "mads:Affiliation".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, label: "Hours".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :idScheme, - comment: %(The scheme associated with the identifier. For example, "LCCN" would be used when the Identifier Value \(madsrdf:idValue\) is a LC Control Number.).freeze, - domain: "mads:Identifier".freeze, + comment: "The scheme associated with the identifier. For example, \"LCCN\" would be used when the Identifier Value (madsrdf:idValue) is a LC Control Number.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Identifier".freeze, label: "Identifier Scheme".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :idValue, - comment: %(The value of the identifier conforming to the Identifier Scheme syntax.).freeze, - domain: "mads:Identifier".freeze, + comment: "The value of the identifier conforming to the Identifier Scheme syntax.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Identifier".freeze, label: "Identifier Value".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identifiesRWO, - comment: %(Associates a madsrdf:Authority with the Real World Object that is the subject of the authority's label.).freeze, - domain: "mads:Authority".freeze, - inverseOf: "mads:isIdentifiedByAuthority".freeze, + comment: "Associates a madsrdf:Authority with the Real World Object that is the subject of the authority's label.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Authority".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority".freeze, label: "Identifies RWO".freeze, - range: "mads:RWO".freeze, - subPropertyOf: "foaf:focus".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/focus".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isDemonymFor, - comment: %(Establishes a relationship between an Authority that represents a Geographic place - Japan or Greece, for example - and an Authority that represents the demonym - Japanese or Greek, respectively - associated with the place.).freeze, - inverseOf: "mads:hasDemonym".freeze, + comment: "Establishes a relationship between an Authority that represents a Geographic place - Japan or Greece, for example - and an Authority that represents the demonym - Japanese or Greek, respectively - associated with the place.".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#hasDemonym".freeze, label: "Is Demonym For".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isIdentifiedByAuthority, - comment: %(Associates a Real World Object with its Authority description.).freeze, - domain: "mads:RWO".freeze, - inverseOf: "mads:identifiesRWO".freeze, + comment: "Associates a Real World Object with its Authority description.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#identifiesRWO".freeze, label: "Is Identified By Authority".freeze, - range: "mads:Authority".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Authority".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isMemberOfMADSCollection, - comment: %(Associates a Collection with a madsrdf:Authority or another madsrdf:MADSCollection.).freeze, + comment: "Associates a Collection with a madsrdf:Authority or another madsrdf:MADSCollection.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("_:g12720".freeze, "_:g12740".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze) ), - inverseOf: "mads:hasMADSCollectionMember".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#hasMADSCollectionMember".freeze, label: "Is Member Of MADSCollection".freeze, - range: "mads:MADSCollection".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isMemberOfMADSScheme, domain: term( - type: "owl:Class".freeze, - unionOf: list("_:g12820".freeze, "_:g12840".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze) ), - inverseOf: "mads:hasMADSSchemeMember".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#hasMADSSchemeMember".freeze, label: "Is Member of MADS Scheme".freeze, - range: "mads:MADSScheme".freeze, - subPropertyOf: "skos:inScheme".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze, + subPropertyOf: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isTopMemberOfMADSScheme, - comment: %(Identifies a MADS Scheme in which the Authority is at the top of the hierarchy.).freeze, + 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("_:g12960".freeze, "_:g12980".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSCollection".freeze) ), - inverseOf: "mads:hasTopMemberOfMADSScheme".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#hasTopMemberOfMADSScheme".freeze, label: "Is Top Member of MADS Scheme".freeze, - range: "mads:MADSScheme".freeze, - subPropertyOf: ["mads:isMemberOfMADSScheme".freeze, "skos:topConceptOf".freeze], - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze, + subPropertyOf: ["http://www.loc.gov/mads/rdf/v1#isMemberOfMADSScheme".freeze, "http://www.w3.org/2004/02/skos/core#topConceptOf".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :natureOfAffiliation, - comment: %(Records the individual's role or position in the organization with which the individual is affiliated. A "job title" might be appropriate.).freeze, - domain: "mads:Affiliation".freeze, + comment: "Records the individual's role or position in the organization with which the individual is affiliated. A \"job title\" might be appropriate.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, label: "Nature of Affiliation".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :note, - comment: %(A note about the resource.).freeze, - equivalentProperty: "skos:note".freeze, + comment: "A note about the resource.".freeze, + equivalentProperty: "http://www.w3.org/2004/02/skos/core#note".freeze, label: "Note".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :occupation, - comment: %(A profession or occupation in which the person works or has worked.).freeze, - domain: "mads:RWO".freeze, + comment: "A profession or occupation in which the person works or has worked.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Occupation".freeze, - range: "mads:Occupation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Occupation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :organization, - comment: %(The group or organization with which an individual is associated.).freeze, - domain: "mads:Affiliation".freeze, + comment: "The group or organization with which an individual is associated.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, label: "Organization or Group".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :phone, - domain: "mads:Affiliation".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Affiliation".freeze, label: "Phone".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :postcode, - domain: "mads:Address".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Address".freeze, label: "Post Code / Zip Code".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :prominentFamilyMember, - comment: %(A well-known individual who is a member of the family.).freeze, - domain: "mads:RWO".freeze, + comment: "A well-known individual who is a member of the family.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Prominent Family Member".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :scopeNote, - equivalentProperty: "skos:scopeNote".freeze, + equivalentProperty: "http://www.w3.org/2004/02/skos/core#scopeNote".freeze, label: "Scope Note".freeze, - subPropertyOf: "mads:note".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#note".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :see, - comment: %(Denotes a relationship between two resources. The relationship may or may or may not be reciprocated and there is no certainty that the related resource will further illuminate the original resource. Sub-properties can be used to more specifically identify the nature of the relationship.).freeze, + comment: "Denotes a relationship between an Authority and/or DeprecatedAuthority. The relationship may or may or may not be reciprocated and there is no certainty that the related resource will further illuminate the original resource.".freeze, + domain: term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#DeprecatedAuthority".freeze) + ), label: "See Also".freeze, - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:ObjectProperty".freeze + range: term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#DeprecatedAuthority".freeze) + ), + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :state, - comment: %(The state associated with an address.).freeze, - domain: "mads:Address".freeze, + comment: "The state associated with an address.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Address".freeze, label: "State".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :streetAddress, - comment: %(First line of address. For second line, use madsrdf:extendedAddress.).freeze, - domain: "mads:Address".freeze, + comment: "First line of address. For second line, use madsrdf:extendedAddress.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Address".freeze, label: "Street Address".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :terminateDate, - comment: %(The year a corporate body was terminated. Date of termination may also include the month and day of the corporate body’s termination. ).freeze, - domain: "mads:RWO".freeze, + comment: "The year a corporate body was terminated. Date of termination may also include the month and day of the corporate body’s termination. ".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#RWO".freeze, label: "Terminated".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :useFor, - comment: %("Use [This Resource] For." Traditional "USE FOR" reference.).freeze, - inverseOf: "mads:useInstead".freeze, + comment: "\"Use [This Resource] For.\" Traditional \"USE FOR\" reference.".freeze, + inverseOf: "http://www.loc.gov/mads/rdf/v1#useInstead".freeze, label: "Use For".freeze, - subPropertyOf: "mads:see".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#see".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :useInstead, - comment: %("Use [This Other Resource] Instead." Traditional "USE" reference.).freeze, + comment: "\"Use [This Other Resource] Instead.\" Traditional \"USE\" reference.".freeze, label: "Use Instead".freeze, - subPropertyOf: "mads:see".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.loc.gov/mads/rdf/v1#see".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :variantLabel, - comment: %(The lexical, variant form of an authoritative label.).freeze, - domain: "mads:Variant".freeze, + comment: "The lexical, variant form of an authoritative label.".freeze, + domain: "http://www.loc.gov/mads/rdf/v1#Variant".freeze, label: "Variant Label".freeze, - subPropertyOf: "skosxl:literalForm".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.w3.org/2008/05/skos-xl#literalForm".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :workOrigin, - comment: %(The country or other territorial jurisdiction from which a work originated.).freeze, + comment: "The country or other territorial jurisdiction from which a work originated.".freeze, label: "Work locale".freeze, - range: "mads:Geographic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze end end diff --git a/lib/rdf/vocab/marcrelators.rb b/lib/rdf/vocab/marcrelators.rb index 81f5917..4c5cdce 100644 --- a/lib/rdf/vocab/marcrelators.rb +++ b/lib/rdf/vocab/marcrelators.rb @@ -3,1632 +3,820 @@ # This file generated automatically using rdf vocabulary format from http://id.loc.gov/vocabulary/relators/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # MARC Code List for Relators Scheme - # # - # # Relator terms and their associated codes designate the relationship between a name and a bibliographic resource. The relator codes are three-character lowercase alphabetic strings that serve as identifiers. Either the term or the code may be used as controlled values. - # class MARCRelators < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :abr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :acp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :act - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :adi - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :adp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :anl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :anm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ann - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ape - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :apl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :app - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aqt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :arc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ard - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :arr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :art - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :asg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :asn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ato - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :att - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :auc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aud - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aui - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aut - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bdd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bjd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bkd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bkp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :blw - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bpd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :brd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :brl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bsl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cas - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ccp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :chr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cli - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cll - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :clt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cmm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cmp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cmt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cng - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cns - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coe - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :col - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :com - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :con - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cos - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cot - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cou - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cov - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cpc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cpe - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cph - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cpl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cpt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :crt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :csl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :csp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cst - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ctb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cte - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ctg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ctr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cts - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ctt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cur - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cwt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dbp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dfd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dfe - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dft - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dgg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dgs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dln - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dnc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dnr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dpc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dpt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :drm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :drt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dsr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dst - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dtc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dte - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dtm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dto - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dub - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :edc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :edm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :edt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :egr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :elt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eng - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :enj - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :etr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :evp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :exp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fac - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fds - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fld - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :flm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fmd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fmk - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fmo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fmp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fpy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :frg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :gis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :his - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hnr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hst - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ill - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ilu - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inv - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ive - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ivr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :jud - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :jug - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lbr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lbt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ldr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :led - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :len - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :let - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lgd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lie - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lsa - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lso - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ltg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lyr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mcp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :med - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mfp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mfr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mon - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mrb - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mrk - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :msd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mte - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mtk - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nrt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :opn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :org - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :orm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :osp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :oth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :own - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pbd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pbl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pdr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pfr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pht - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :plt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pma - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pmn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pop - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ppm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ppt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pra - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pro - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prv - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pta - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pte - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ptf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ptt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pup - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rbr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rcd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rce - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rcp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rdd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :red - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ren - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :res - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rev - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rpc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rps - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rpt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rpy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rsg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rsp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rsr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rst - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rtm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sad - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sce - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sds - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sec - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sgd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sgn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sht - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sll - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sng - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spk - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :srv - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :std - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :stn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :str - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tcd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ths - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tld - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tlp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tyd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tyg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :uvp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vac - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vdg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wac - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wam - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wdc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wde - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :win - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wit - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wpr - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wst - # - # end MARCRelators = Class.new(RDF::StrictVocabulary("http://id.loc.gov/vocabulary/relators/")) do # Ontology definition ontology :"http://id.loc.gov/vocabulary/relators/", comment: "Relator terms and their associated codes designate the relationship between a name and a bibliographic resource. The relator codes are three-character lowercase alphabetic strings that serve as identifiers. Either the term or the code may be used as controlled values.".freeze, + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "".freeze, + "http://www.loc.gov/mads/rdf/v1#hasMADSSchemeMember": ["http://id.loc.gov/vocabulary/relators/".freeze, "http://id.loc.gov/vocabulary/relators/abr".freeze, "http://id.loc.gov/vocabulary/relators/acp".freeze, "http://id.loc.gov/vocabulary/relators/act".freeze, "http://id.loc.gov/vocabulary/relators/adi".freeze, "http://id.loc.gov/vocabulary/relators/adp".freeze, "http://id.loc.gov/vocabulary/relators/aft".freeze, "http://id.loc.gov/vocabulary/relators/anl".freeze, "http://id.loc.gov/vocabulary/relators/anm".freeze, "http://id.loc.gov/vocabulary/relators/ann".freeze, "http://id.loc.gov/vocabulary/relators/ant".freeze, "http://id.loc.gov/vocabulary/relators/ape".freeze, "http://id.loc.gov/vocabulary/relators/apl".freeze, "http://id.loc.gov/vocabulary/relators/app".freeze, "http://id.loc.gov/vocabulary/relators/aqt".freeze, "http://id.loc.gov/vocabulary/relators/arc".freeze, "http://id.loc.gov/vocabulary/relators/ard".freeze, "http://id.loc.gov/vocabulary/relators/arr".freeze, "http://id.loc.gov/vocabulary/relators/art".freeze, "http://id.loc.gov/vocabulary/relators/asg".freeze, "http://id.loc.gov/vocabulary/relators/asn".freeze, "http://id.loc.gov/vocabulary/relators/ato".freeze, "http://id.loc.gov/vocabulary/relators/att".freeze, "http://id.loc.gov/vocabulary/relators/auc".freeze, "http://id.loc.gov/vocabulary/relators/aud".freeze, "http://id.loc.gov/vocabulary/relators/aui".freeze, "http://id.loc.gov/vocabulary/relators/aus".freeze, "http://id.loc.gov/vocabulary/relators/aut".freeze, "http://id.loc.gov/vocabulary/relators/bdd".freeze, "http://id.loc.gov/vocabulary/relators/bjd".freeze, "http://id.loc.gov/vocabulary/relators/bkd".freeze, "http://id.loc.gov/vocabulary/relators/bkp".freeze, "http://id.loc.gov/vocabulary/relators/blw".freeze, "http://id.loc.gov/vocabulary/relators/bnd".freeze, "http://id.loc.gov/vocabulary/relators/bpd".freeze, "http://id.loc.gov/vocabulary/relators/brd".freeze, "http://id.loc.gov/vocabulary/relators/brl".freeze, "http://id.loc.gov/vocabulary/relators/bsl".freeze, "http://id.loc.gov/vocabulary/relators/cas".freeze, "http://id.loc.gov/vocabulary/relators/ccp".freeze, "http://id.loc.gov/vocabulary/relators/chr".freeze, "http://id.loc.gov/vocabulary/relators/cli".freeze, "http://id.loc.gov/vocabulary/relators/cll".freeze, "http://id.loc.gov/vocabulary/relators/clr".freeze, "http://id.loc.gov/vocabulary/relators/clt".freeze, "http://id.loc.gov/vocabulary/relators/cmm".freeze, "http://id.loc.gov/vocabulary/relators/cmp".freeze, "http://id.loc.gov/vocabulary/relators/cmt".freeze, "http://id.loc.gov/vocabulary/relators/cnd".freeze, "http://id.loc.gov/vocabulary/relators/cng".freeze, "http://id.loc.gov/vocabulary/relators/cns".freeze, "http://id.loc.gov/vocabulary/relators/coe".freeze, "http://id.loc.gov/vocabulary/relators/col".freeze, "http://id.loc.gov/vocabulary/relators/com".freeze, "http://id.loc.gov/vocabulary/relators/con".freeze, "http://id.loc.gov/vocabulary/relators/cor".freeze, "http://id.loc.gov/vocabulary/relators/cos".freeze, "http://id.loc.gov/vocabulary/relators/cot".freeze, "http://id.loc.gov/vocabulary/relators/cou".freeze, "http://id.loc.gov/vocabulary/relators/cov".freeze, "http://id.loc.gov/vocabulary/relators/cpc".freeze, "http://id.loc.gov/vocabulary/relators/cpe".freeze, "http://id.loc.gov/vocabulary/relators/cph".freeze, "http://id.loc.gov/vocabulary/relators/cpl".freeze, "http://id.loc.gov/vocabulary/relators/cpt".freeze, "http://id.loc.gov/vocabulary/relators/cre".freeze, "http://id.loc.gov/vocabulary/relators/crp".freeze, "http://id.loc.gov/vocabulary/relators/crr".freeze, "http://id.loc.gov/vocabulary/relators/crt".freeze, "http://id.loc.gov/vocabulary/relators/csl".freeze, "http://id.loc.gov/vocabulary/relators/csp".freeze, "http://id.loc.gov/vocabulary/relators/cst".freeze, "http://id.loc.gov/vocabulary/relators/ctb".freeze, "http://id.loc.gov/vocabulary/relators/cte".freeze, "http://id.loc.gov/vocabulary/relators/ctg".freeze, "http://id.loc.gov/vocabulary/relators/ctr".freeze, "http://id.loc.gov/vocabulary/relators/cts".freeze, "http://id.loc.gov/vocabulary/relators/ctt".freeze, "http://id.loc.gov/vocabulary/relators/cur".freeze, "http://id.loc.gov/vocabulary/relators/cwt".freeze, "http://id.loc.gov/vocabulary/relators/dbp".freeze, "http://id.loc.gov/vocabulary/relators/dfd".freeze, "http://id.loc.gov/vocabulary/relators/dfe".freeze, "http://id.loc.gov/vocabulary/relators/dft".freeze, "http://id.loc.gov/vocabulary/relators/dgg".freeze, "http://id.loc.gov/vocabulary/relators/dgs".freeze, "http://id.loc.gov/vocabulary/relators/dis".freeze, "http://id.loc.gov/vocabulary/relators/dln".freeze, "http://id.loc.gov/vocabulary/relators/dnc".freeze, "http://id.loc.gov/vocabulary/relators/dnr".freeze, "http://id.loc.gov/vocabulary/relators/dpc".freeze, "http://id.loc.gov/vocabulary/relators/dpt".freeze, "http://id.loc.gov/vocabulary/relators/drm".freeze, "http://id.loc.gov/vocabulary/relators/drt".freeze, "http://id.loc.gov/vocabulary/relators/dsr".freeze, "http://id.loc.gov/vocabulary/relators/dst".freeze, "http://id.loc.gov/vocabulary/relators/dtc".freeze, "http://id.loc.gov/vocabulary/relators/dte".freeze, "http://id.loc.gov/vocabulary/relators/dtm".freeze, "http://id.loc.gov/vocabulary/relators/dto".freeze, "http://id.loc.gov/vocabulary/relators/dub".freeze, "http://id.loc.gov/vocabulary/relators/edc".freeze, "http://id.loc.gov/vocabulary/relators/edm".freeze, "http://id.loc.gov/vocabulary/relators/edt".freeze, "http://id.loc.gov/vocabulary/relators/egr".freeze, "http://id.loc.gov/vocabulary/relators/elg".freeze, "http://id.loc.gov/vocabulary/relators/elt".freeze, "http://id.loc.gov/vocabulary/relators/eng".freeze, "http://id.loc.gov/vocabulary/relators/enj".freeze, "http://id.loc.gov/vocabulary/relators/etr".freeze, "http://id.loc.gov/vocabulary/relators/evp".freeze, "http://id.loc.gov/vocabulary/relators/exp".freeze, "http://id.loc.gov/vocabulary/relators/fac".freeze, "http://id.loc.gov/vocabulary/relators/fds".freeze, "http://id.loc.gov/vocabulary/relators/fld".freeze, "http://id.loc.gov/vocabulary/relators/flm".freeze, "http://id.loc.gov/vocabulary/relators/fmd".freeze, "http://id.loc.gov/vocabulary/relators/fmk".freeze, "http://id.loc.gov/vocabulary/relators/fmo".freeze, "http://id.loc.gov/vocabulary/relators/fmp".freeze, "http://id.loc.gov/vocabulary/relators/fnd".freeze, "http://id.loc.gov/vocabulary/relators/fpy".freeze, "http://id.loc.gov/vocabulary/relators/frg".freeze, "http://id.loc.gov/vocabulary/relators/gis".freeze, "http://id.loc.gov/vocabulary/relators/his".freeze, "http://id.loc.gov/vocabulary/relators/hnr".freeze, "http://id.loc.gov/vocabulary/relators/hst".freeze, "http://id.loc.gov/vocabulary/relators/ill".freeze, "http://id.loc.gov/vocabulary/relators/ilu".freeze, "http://id.loc.gov/vocabulary/relators/ins".freeze, "http://id.loc.gov/vocabulary/relators/inv".freeze, "http://id.loc.gov/vocabulary/relators/isb".freeze, "http://id.loc.gov/vocabulary/relators/itr".freeze, "http://id.loc.gov/vocabulary/relators/ive".freeze, "http://id.loc.gov/vocabulary/relators/ivr".freeze, "http://id.loc.gov/vocabulary/relators/jud".freeze, "http://id.loc.gov/vocabulary/relators/jug".freeze, "http://id.loc.gov/vocabulary/relators/lbr".freeze, "http://id.loc.gov/vocabulary/relators/lbt".freeze, "http://id.loc.gov/vocabulary/relators/ldr".freeze, "http://id.loc.gov/vocabulary/relators/led".freeze, "http://id.loc.gov/vocabulary/relators/lee".freeze, "http://id.loc.gov/vocabulary/relators/lel".freeze, "http://id.loc.gov/vocabulary/relators/len".freeze, "http://id.loc.gov/vocabulary/relators/let".freeze, "http://id.loc.gov/vocabulary/relators/lgd".freeze, "http://id.loc.gov/vocabulary/relators/lie".freeze, "http://id.loc.gov/vocabulary/relators/lil".freeze, "http://id.loc.gov/vocabulary/relators/lit".freeze, "http://id.loc.gov/vocabulary/relators/lsa".freeze, "http://id.loc.gov/vocabulary/relators/lse".freeze, "http://id.loc.gov/vocabulary/relators/lso".freeze, "http://id.loc.gov/vocabulary/relators/ltg".freeze, "http://id.loc.gov/vocabulary/relators/lyr".freeze, "http://id.loc.gov/vocabulary/relators/mcp".freeze, "http://id.loc.gov/vocabulary/relators/mdc".freeze, "http://id.loc.gov/vocabulary/relators/med".freeze, "http://id.loc.gov/vocabulary/relators/mfp".freeze, "http://id.loc.gov/vocabulary/relators/mfr".freeze, "http://id.loc.gov/vocabulary/relators/mod".freeze, "http://id.loc.gov/vocabulary/relators/mon".freeze, "http://id.loc.gov/vocabulary/relators/mrb".freeze, "http://id.loc.gov/vocabulary/relators/mrk".freeze, "http://id.loc.gov/vocabulary/relators/msd".freeze, "http://id.loc.gov/vocabulary/relators/mte".freeze, "http://id.loc.gov/vocabulary/relators/mtk".freeze, "http://id.loc.gov/vocabulary/relators/mus".freeze, "http://id.loc.gov/vocabulary/relators/nrt".freeze, "http://id.loc.gov/vocabulary/relators/opn".freeze, "http://id.loc.gov/vocabulary/relators/org".freeze, "http://id.loc.gov/vocabulary/relators/orm".freeze, "http://id.loc.gov/vocabulary/relators/osp".freeze, "http://id.loc.gov/vocabulary/relators/oth".freeze, "http://id.loc.gov/vocabulary/relators/own".freeze, "http://id.loc.gov/vocabulary/relators/pan".freeze, "http://id.loc.gov/vocabulary/relators/pat".freeze, "http://id.loc.gov/vocabulary/relators/pbd".freeze, "http://id.loc.gov/vocabulary/relators/pbl".freeze, "http://id.loc.gov/vocabulary/relators/pdr".freeze, "http://id.loc.gov/vocabulary/relators/pfr".freeze, "http://id.loc.gov/vocabulary/relators/pht".freeze, "http://id.loc.gov/vocabulary/relators/plt".freeze, "http://id.loc.gov/vocabulary/relators/pma".freeze, "http://id.loc.gov/vocabulary/relators/pmn".freeze, "http://id.loc.gov/vocabulary/relators/pop".freeze, "http://id.loc.gov/vocabulary/relators/ppm".freeze, "http://id.loc.gov/vocabulary/relators/ppt".freeze, "http://id.loc.gov/vocabulary/relators/pra".freeze, "http://id.loc.gov/vocabulary/relators/prc".freeze, "http://id.loc.gov/vocabulary/relators/prd".freeze, "http://id.loc.gov/vocabulary/relators/pre".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "http://id.loc.gov/vocabulary/relators/prg".freeze, "http://id.loc.gov/vocabulary/relators/prm".freeze, "http://id.loc.gov/vocabulary/relators/prn".freeze, "http://id.loc.gov/vocabulary/relators/pro".freeze, "http://id.loc.gov/vocabulary/relators/prp".freeze, "http://id.loc.gov/vocabulary/relators/prs".freeze, "http://id.loc.gov/vocabulary/relators/prt".freeze, "http://id.loc.gov/vocabulary/relators/prv".freeze, "http://id.loc.gov/vocabulary/relators/pta".freeze, "http://id.loc.gov/vocabulary/relators/pte".freeze, "http://id.loc.gov/vocabulary/relators/ptf".freeze, "http://id.loc.gov/vocabulary/relators/pth".freeze, "http://id.loc.gov/vocabulary/relators/ptt".freeze, "http://id.loc.gov/vocabulary/relators/pup".freeze, "http://id.loc.gov/vocabulary/relators/rbr".freeze, "http://id.loc.gov/vocabulary/relators/rcd".freeze, "http://id.loc.gov/vocabulary/relators/rce".freeze, "http://id.loc.gov/vocabulary/relators/rcp".freeze, "http://id.loc.gov/vocabulary/relators/rdd".freeze, "http://id.loc.gov/vocabulary/relators/red".freeze, "http://id.loc.gov/vocabulary/relators/ren".freeze, "http://id.loc.gov/vocabulary/relators/res".freeze, "http://id.loc.gov/vocabulary/relators/rev".freeze, "http://id.loc.gov/vocabulary/relators/rpc".freeze, "http://id.loc.gov/vocabulary/relators/rps".freeze, "http://id.loc.gov/vocabulary/relators/rpt".freeze, "http://id.loc.gov/vocabulary/relators/rpy".freeze, "http://id.loc.gov/vocabulary/relators/rse".freeze, "http://id.loc.gov/vocabulary/relators/rsg".freeze, "http://id.loc.gov/vocabulary/relators/rsp".freeze, "http://id.loc.gov/vocabulary/relators/rsr".freeze, "http://id.loc.gov/vocabulary/relators/rst".freeze, "http://id.loc.gov/vocabulary/relators/rth".freeze, "http://id.loc.gov/vocabulary/relators/rtm".freeze, "http://id.loc.gov/vocabulary/relators/sad".freeze, "http://id.loc.gov/vocabulary/relators/sce".freeze, "http://id.loc.gov/vocabulary/relators/scl".freeze, "http://id.loc.gov/vocabulary/relators/scr".freeze, "http://id.loc.gov/vocabulary/relators/sds".freeze, "http://id.loc.gov/vocabulary/relators/sec".freeze, "http://id.loc.gov/vocabulary/relators/sgd".freeze, "http://id.loc.gov/vocabulary/relators/sgn".freeze, "http://id.loc.gov/vocabulary/relators/sht".freeze, "http://id.loc.gov/vocabulary/relators/sll".freeze, "http://id.loc.gov/vocabulary/relators/sng".freeze, "http://id.loc.gov/vocabulary/relators/spk".freeze, "http://id.loc.gov/vocabulary/relators/spn".freeze, "http://id.loc.gov/vocabulary/relators/spy".freeze, "http://id.loc.gov/vocabulary/relators/srv".freeze, "http://id.loc.gov/vocabulary/relators/std".freeze, "http://id.loc.gov/vocabulary/relators/stg".freeze, "http://id.loc.gov/vocabulary/relators/stl".freeze, "http://id.loc.gov/vocabulary/relators/stm".freeze, "http://id.loc.gov/vocabulary/relators/stn".freeze, "http://id.loc.gov/vocabulary/relators/str".freeze, "http://id.loc.gov/vocabulary/relators/tcd".freeze, "http://id.loc.gov/vocabulary/relators/tch".freeze, "http://id.loc.gov/vocabulary/relators/ths".freeze, "http://id.loc.gov/vocabulary/relators/tld".freeze, "http://id.loc.gov/vocabulary/relators/tlp".freeze, "http://id.loc.gov/vocabulary/relators/trc".freeze, "http://id.loc.gov/vocabulary/relators/trl".freeze, "http://id.loc.gov/vocabulary/relators/tyd".freeze, "http://id.loc.gov/vocabulary/relators/tyg".freeze, "http://id.loc.gov/vocabulary/relators/uvp".freeze, "http://id.loc.gov/vocabulary/relators/vac".freeze, "http://id.loc.gov/vocabulary/relators/vdg".freeze, "http://id.loc.gov/vocabulary/relators/wac".freeze, "http://id.loc.gov/vocabulary/relators/wal".freeze, "http://id.loc.gov/vocabulary/relators/wam".freeze, "http://id.loc.gov/vocabulary/relators/wat".freeze, "http://id.loc.gov/vocabulary/relators/wdc".freeze, "http://id.loc.gov/vocabulary/relators/wde".freeze, "http://id.loc.gov/vocabulary/relators/win".freeze, "http://id.loc.gov/vocabulary/relators/wit".freeze, "http://id.loc.gov/vocabulary/relators/wpr".freeze, "http://id.loc.gov/vocabulary/relators/wst".freeze], label: "MARC Code List for Relators Scheme".freeze, - "mads:authoritativeLabel": "".freeze, - "mads:hasMADSSchemeMember": ["marcrelators:".freeze, "marcrelators:abr".freeze, "marcrelators:acp".freeze, "marcrelators:act".freeze, "marcrelators:adi".freeze, "marcrelators:adp".freeze, "marcrelators:aft".freeze, "marcrelators:anl".freeze, "marcrelators:anm".freeze, "marcrelators:ann".freeze, "marcrelators:ant".freeze, "marcrelators:ape".freeze, "marcrelators:apl".freeze, "marcrelators:app".freeze, "marcrelators:aqt".freeze, "marcrelators:arc".freeze, "marcrelators:ard".freeze, "marcrelators:arr".freeze, "marcrelators:art".freeze, "marcrelators:asg".freeze, "marcrelators:asn".freeze, "marcrelators:ato".freeze, "marcrelators:att".freeze, "marcrelators:auc".freeze, "marcrelators:aud".freeze, "marcrelators:aui".freeze, "marcrelators:aus".freeze, "marcrelators:aut".freeze, "marcrelators:bdd".freeze, "marcrelators:bjd".freeze, "marcrelators:bkd".freeze, "marcrelators:bkp".freeze, "marcrelators:blw".freeze, "marcrelators:bnd".freeze, "marcrelators:bpd".freeze, "marcrelators:brd".freeze, "marcrelators:brl".freeze, "marcrelators:bsl".freeze, "marcrelators:cas".freeze, "marcrelators:ccp".freeze, "marcrelators:chr".freeze, "marcrelators:cli".freeze, "marcrelators:cll".freeze, "marcrelators:clr".freeze, "marcrelators:clt".freeze, "marcrelators:cmm".freeze, "marcrelators:cmp".freeze, "marcrelators:cmt".freeze, "marcrelators:cnd".freeze, "marcrelators:cng".freeze, "marcrelators:cns".freeze, "marcrelators:coe".freeze, "marcrelators:col".freeze, "marcrelators:com".freeze, "marcrelators:con".freeze, "marcrelators:cor".freeze, "marcrelators:cos".freeze, "marcrelators:cot".freeze, "marcrelators:cou".freeze, "marcrelators:cov".freeze, "marcrelators:cpc".freeze, "marcrelators:cpe".freeze, "marcrelators:cph".freeze, "marcrelators:cpl".freeze, "marcrelators:cpt".freeze, "marcrelators:cre".freeze, "marcrelators:crp".freeze, "marcrelators:crr".freeze, "marcrelators:crt".freeze, "marcrelators:csl".freeze, "marcrelators:csp".freeze, "marcrelators:cst".freeze, "marcrelators:ctb".freeze, "marcrelators:cte".freeze, "marcrelators:ctg".freeze, "marcrelators:ctr".freeze, "marcrelators:cts".freeze, "marcrelators:ctt".freeze, "marcrelators:cur".freeze, "marcrelators:cwt".freeze, "marcrelators:dbp".freeze, "marcrelators:dfd".freeze, "marcrelators:dfe".freeze, "marcrelators:dft".freeze, "marcrelators:dgg".freeze, "marcrelators:dgs".freeze, "marcrelators:dis".freeze, "marcrelators:dln".freeze, "marcrelators:dnc".freeze, "marcrelators:dnr".freeze, "marcrelators:dpc".freeze, "marcrelators:dpt".freeze, "marcrelators:drm".freeze, "marcrelators:drt".freeze, "marcrelators:dsr".freeze, "marcrelators:dst".freeze, "marcrelators:dtc".freeze, "marcrelators:dte".freeze, "marcrelators:dtm".freeze, "marcrelators:dto".freeze, "marcrelators:dub".freeze, "marcrelators:edc".freeze, "marcrelators:edm".freeze, "marcrelators:edt".freeze, "marcrelators:egr".freeze, "marcrelators:elg".freeze, "marcrelators:elt".freeze, "marcrelators:eng".freeze, "marcrelators:enj".freeze, "marcrelators:etr".freeze, "marcrelators:evp".freeze, "marcrelators:exp".freeze, "marcrelators:fac".freeze, "marcrelators:fds".freeze, "marcrelators:fld".freeze, "marcrelators:flm".freeze, "marcrelators:fmd".freeze, "marcrelators:fmk".freeze, "marcrelators:fmo".freeze, "marcrelators:fmp".freeze, "marcrelators:fnd".freeze, "marcrelators:fpy".freeze, "marcrelators:frg".freeze, "marcrelators:gis".freeze, "marcrelators:his".freeze, "marcrelators:hnr".freeze, "marcrelators:hst".freeze, "marcrelators:ill".freeze, "marcrelators:ilu".freeze, "marcrelators:ins".freeze, "marcrelators:inv".freeze, "marcrelators:isb".freeze, "marcrelators:itr".freeze, "marcrelators:ive".freeze, "marcrelators:ivr".freeze, "marcrelators:jud".freeze, "marcrelators:jug".freeze, "marcrelators:lbr".freeze, "marcrelators:lbt".freeze, "marcrelators:ldr".freeze, "marcrelators:led".freeze, "marcrelators:lee".freeze, "marcrelators:lel".freeze, "marcrelators:len".freeze, "marcrelators:let".freeze, "marcrelators:lgd".freeze, "marcrelators:lie".freeze, "marcrelators:lil".freeze, "marcrelators:lit".freeze, "marcrelators:lsa".freeze, "marcrelators:lse".freeze, "marcrelators:lso".freeze, "marcrelators:ltg".freeze, "marcrelators:lyr".freeze, "marcrelators:mcp".freeze, "marcrelators:mdc".freeze, "marcrelators:med".freeze, "marcrelators:mfp".freeze, "marcrelators:mfr".freeze, "marcrelators:mod".freeze, "marcrelators:mon".freeze, "marcrelators:mrb".freeze, "marcrelators:mrk".freeze, "marcrelators:msd".freeze, "marcrelators:mte".freeze, "marcrelators:mtk".freeze, "marcrelators:mus".freeze, "marcrelators:nrt".freeze, "marcrelators:opn".freeze, "marcrelators:org".freeze, "marcrelators:orm".freeze, "marcrelators:osp".freeze, "marcrelators:oth".freeze, "marcrelators:own".freeze, "marcrelators:pan".freeze, "marcrelators:pat".freeze, "marcrelators:pbd".freeze, "marcrelators:pbl".freeze, "marcrelators:pdr".freeze, "marcrelators:pfr".freeze, "marcrelators:pht".freeze, "marcrelators:plt".freeze, "marcrelators:pma".freeze, "marcrelators:pmn".freeze, "marcrelators:pop".freeze, "marcrelators:ppm".freeze, "marcrelators:ppt".freeze, "marcrelators:pra".freeze, "marcrelators:prc".freeze, "marcrelators:prd".freeze, "marcrelators:pre".freeze, "marcrelators:prf".freeze, "marcrelators:prg".freeze, "marcrelators:prm".freeze, "marcrelators:prn".freeze, "marcrelators:pro".freeze, "marcrelators:prp".freeze, "marcrelators:prs".freeze, "marcrelators:prt".freeze, "marcrelators:prv".freeze, "marcrelators:pta".freeze, "marcrelators:pte".freeze, "marcrelators:ptf".freeze, "marcrelators:pth".freeze, "marcrelators:ptt".freeze, "marcrelators:pup".freeze, "marcrelators:rbr".freeze, "marcrelators:rcd".freeze, "marcrelators:rce".freeze, "marcrelators:rcp".freeze, "marcrelators:rdd".freeze, "marcrelators:red".freeze, "marcrelators:ren".freeze, "marcrelators:res".freeze, "marcrelators:rev".freeze, "marcrelators:rpc".freeze, "marcrelators:rps".freeze, "marcrelators:rpt".freeze, "marcrelators:rpy".freeze, "marcrelators:rse".freeze, "marcrelators:rsg".freeze, "marcrelators:rsp".freeze, "marcrelators:rsr".freeze, "marcrelators:rst".freeze, "marcrelators:rth".freeze, "marcrelators:rtm".freeze, "marcrelators:sad".freeze, "marcrelators:sce".freeze, "marcrelators:scl".freeze, "marcrelators:scr".freeze, "marcrelators:sds".freeze, "marcrelators:sec".freeze, "marcrelators:sgd".freeze, "marcrelators:sgn".freeze, "marcrelators:sht".freeze, "marcrelators:sll".freeze, "marcrelators:sng".freeze, "marcrelators:spk".freeze, "marcrelators:spn".freeze, "marcrelators:spy".freeze, "marcrelators:srv".freeze, "marcrelators:std".freeze, "marcrelators:stg".freeze, "marcrelators:stl".freeze, "marcrelators:stm".freeze, "marcrelators:stn".freeze, "marcrelators:str".freeze, "marcrelators:tcd".freeze, "marcrelators:tch".freeze, "marcrelators:ths".freeze, "marcrelators:tld".freeze, "marcrelators:tlp".freeze, "marcrelators:trc".freeze, "marcrelators:trl".freeze, "marcrelators:tyd".freeze, "marcrelators:tyg".freeze, "marcrelators:uvp".freeze, "marcrelators:vac".freeze, "marcrelators:vdg".freeze, "marcrelators:wac".freeze, "marcrelators:wal".freeze, "marcrelators:wam".freeze, "marcrelators:wat".freeze, "marcrelators:wdc".freeze, "marcrelators:wde".freeze, "marcrelators:win".freeze, "marcrelators:wit".freeze, "marcrelators:wpr".freeze, "marcrelators:wst".freeze], - type: ["mads:Authority".freeze, "mads:MADSScheme".freeze, "skos:ConceptScheme".freeze] + type: ["http://www.loc.gov/mads/rdf/v1#Authority".freeze, "http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze, "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze] # Extra definitions term :abr, - "mads:authoritativeLabel": "Abridger".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Abridger".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :acp, - "mads:authoritativeLabel": "Art copyist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Art copyist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :act, - "mads:authoritativeLabel": "Actor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Actor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :adi, - "mads:authoritativeLabel": "Art director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Art director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :adp, - "mads:authoritativeLabel": "Adapter".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Adapter".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :aft, - "mads:authoritativeLabel": "Author of afterword, colophon, etc.".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Author of afterword, colophon, etc.".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :anl, - "mads:authoritativeLabel": "Analyst".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Analyst".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :anm, - "mads:authoritativeLabel": "Animator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Animator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ann, - "mads:authoritativeLabel": "Annotator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Annotator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ant, - "mads:authoritativeLabel": "Bibliographic antecedent".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Bibliographic antecedent".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ape, - "mads:authoritativeLabel": "Appellee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Appellee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :apl, - "mads:authoritativeLabel": "Appellant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Appellant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :app, - "mads:authoritativeLabel": "Applicant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Applicant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :aqt, - "mads:authoritativeLabel": "Author in quotations or text abstracts".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Author in quotations or text abstracts".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :arc, - "mads:authoritativeLabel": "Architect".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Architect".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ard, - "mads:authoritativeLabel": "Artistic director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Artistic director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :arr, - "mads:authoritativeLabel": "Arranger".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Arranger".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :art, - "mads:authoritativeLabel": "Artist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Artist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :asg, - "mads:authoritativeLabel": "Assignee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Assignee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :asn, - "mads:authoritativeLabel": "Associated name".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Associated name".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ato, - "mads:authoritativeLabel": "Autographer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Autographer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :att, - "mads:authoritativeLabel": "Attributed name".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Attributed name".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :auc, - "mads:authoritativeLabel": "Auctioneer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Auctioneer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :aud, - "mads:authoritativeLabel": "Author of dialog".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Author of dialog".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :aui, - "mads:authoritativeLabel": "Author of introduction, etc.".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Author of introduction, etc.".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :aus, - "mads:authoritativeLabel": "Screenwriter".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Screenwriter".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :aut, - "mads:authoritativeLabel": "Author".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Author".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bdd, - "mads:authoritativeLabel": "Binding designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Binding designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bjd, - "mads:authoritativeLabel": "Bookjacket designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Bookjacket designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bkd, - "mads:authoritativeLabel": "Book designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Book designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bkp, - "mads:authoritativeLabel": "Book producer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Book producer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :blw, - "mads:authoritativeLabel": "Blurb writer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Blurb writer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bnd, - "mads:authoritativeLabel": "Binder".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Binder".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bpd, - "mads:authoritativeLabel": "Bookplate designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Bookplate designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :brd, - "mads:authoritativeLabel": "Broadcaster".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Broadcaster".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :brl, - "mads:authoritativeLabel": "Braille embosser".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Braille embosser".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :bsl, - "mads:authoritativeLabel": "Bookseller".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Bookseller".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cas, - "mads:authoritativeLabel": "Caster".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Caster".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ccp, - "mads:authoritativeLabel": "Conceptor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Conceptor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :chr, - "mads:authoritativeLabel": "Choreographer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Choreographer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cli, - "mads:authoritativeLabel": "Client".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Client".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cll, - "mads:authoritativeLabel": "Calligrapher".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Calligrapher".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :clr, - "mads:authoritativeLabel": "Colorist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Colorist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :clt, - "mads:authoritativeLabel": "Collotyper".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Collotyper".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cmm, - "mads:authoritativeLabel": "Commentator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Commentator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cmp, - "mads:authoritativeLabel": "Composer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Composer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cmt, - "mads:authoritativeLabel": "Compositor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Compositor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cnd, - "mads:authoritativeLabel": "Conductor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Conductor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cng, - "mads:authoritativeLabel": "Cinematographer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Cinematographer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cns, - "mads:authoritativeLabel": "Censor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Censor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :coe, - "mads:authoritativeLabel": "Contestant-appellee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Contestant-appellee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :col, - "mads:authoritativeLabel": "Collector".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Collector".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :com, - "mads:authoritativeLabel": "Compiler".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Compiler".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :con, - "mads:authoritativeLabel": "Conservator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Conservator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cor, - "mads:authoritativeLabel": "Collection registrar".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Collection registrar".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cos, - "mads:authoritativeLabel": "Contestant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Contestant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cot, - "mads:authoritativeLabel": "Contestant-appellant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Contestant-appellant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cou, - "mads:authoritativeLabel": "Court governed".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Court governed".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cov, - "mads:authoritativeLabel": "Cover designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Cover designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cpc, - "mads:authoritativeLabel": "Copyright claimant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Copyright claimant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cpe, - "mads:authoritativeLabel": "Complainant-appellee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Complainant-appellee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cph, - "mads:authoritativeLabel": "Copyright holder".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Copyright holder".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cpl, - "mads:authoritativeLabel": "Complainant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Complainant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cpt, - "mads:authoritativeLabel": "Complainant-appellant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Complainant-appellant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cre, - "mads:authoritativeLabel": "Creator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Creator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :crp, - "mads:authoritativeLabel": "Correspondent".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Correspondent".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :crr, - "mads:authoritativeLabel": "Corrector".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Corrector".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :crt, - "mads:authoritativeLabel": "Court reporter".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Court reporter".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :csl, - "mads:authoritativeLabel": "Consultant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Consultant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :csp, - "mads:authoritativeLabel": "Consultant to a project".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Consultant to a project".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cst, - "mads:authoritativeLabel": "Costume designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Costume designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ctb, - "mads:authoritativeLabel": "Contributor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Contributor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cte, - "mads:authoritativeLabel": "Contestee-appellee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Contestee-appellee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ctg, - "mads:authoritativeLabel": "Cartographer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Cartographer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ctr, - "mads:authoritativeLabel": "Contractor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Contractor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cts, - "mads:authoritativeLabel": "Contestee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Contestee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ctt, - "mads:authoritativeLabel": "Contestee-appellant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Contestee-appellant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cur, - "mads:authoritativeLabel": "Curator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Curator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cwt, - "mads:authoritativeLabel": "Commentator for written text".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Commentator for written text".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dbp, - "mads:authoritativeLabel": "Distribution place".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Distribution place".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dfd, - "mads:authoritativeLabel": "Defendant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Defendant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dfe, - "mads:authoritativeLabel": "Defendant-appellee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Defendant-appellee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dft, - "mads:authoritativeLabel": "Defendant-appellant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Defendant-appellant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dgg, - "mads:authoritativeLabel": "Degree granting institution".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Degree granting institution".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dgs, - "mads:authoritativeLabel": "Degree supervisor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Degree supervisor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dis, - "mads:authoritativeLabel": "Dissertant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Dissertant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dln, - "mads:authoritativeLabel": "Delineator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Delineator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dnc, - "mads:authoritativeLabel": "Dancer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Dancer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dnr, - "mads:authoritativeLabel": "Donor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Donor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dpc, - "mads:authoritativeLabel": "Depicted".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Depicted".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dpt, - "mads:authoritativeLabel": "Depositor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Depositor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :drm, - "mads:authoritativeLabel": "Draftsman".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Draftsman".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :drt, - "mads:authoritativeLabel": "Director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dsr, - "mads:authoritativeLabel": "Designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dst, - "mads:authoritativeLabel": "Distributor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Distributor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dtc, - "mads:authoritativeLabel": "Data contributor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Data contributor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dte, - "mads:authoritativeLabel": "Dedicatee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Dedicatee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dtm, - "mads:authoritativeLabel": "Data manager".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Data manager".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dto, - "mads:authoritativeLabel": "Dedicator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Dedicator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dub, - "mads:authoritativeLabel": "Dubious author".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Dubious author".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :edc, - "mads:authoritativeLabel": "Editor of compilation".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Editor of compilation".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :edm, - "mads:authoritativeLabel": "Editor of moving image work".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Editor of moving image work".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :edt, - "mads:authoritativeLabel": "Editor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Editor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :egr, - "mads:authoritativeLabel": "Engraver".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Engraver".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :elg, - "mads:authoritativeLabel": "Electrician".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Electrician".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :elt, - "mads:authoritativeLabel": "Electrotyper".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Electrotyper".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :eng, - "mads:authoritativeLabel": "Engineer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Engineer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :enj, - "mads:authoritativeLabel": "Enacting jurisdiction".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Enacting jurisdiction".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :etr, - "mads:authoritativeLabel": "Etcher".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Etcher".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :evp, - "mads:authoritativeLabel": "Event place".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Event place".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :exp, - "mads:authoritativeLabel": "Expert".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Expert".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fac, - "mads:authoritativeLabel": "Facsimilist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Facsimilist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fds, - "mads:authoritativeLabel": "Film distributor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Film distributor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fld, - "mads:authoritativeLabel": "Field director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Field director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :flm, - "mads:authoritativeLabel": "Film editor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Film editor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fmd, - "mads:authoritativeLabel": "Film director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Film director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fmk, - "mads:authoritativeLabel": "Filmmaker".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Filmmaker".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fmo, - "mads:authoritativeLabel": "Former owner".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Former owner".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fmp, - "mads:authoritativeLabel": "Film producer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Film producer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fnd, - "mads:authoritativeLabel": "Funder".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Funder".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fpy, - "mads:authoritativeLabel": "First party".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "First party".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :frg, - "mads:authoritativeLabel": "Forger".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Forger".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :gis, - "mads:authoritativeLabel": "Geographic information specialist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Geographic information specialist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :his, - "mads:authoritativeLabel": "Host institution".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Host institution".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :hnr, - "mads:authoritativeLabel": "Honoree".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Honoree".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :hst, - "mads:authoritativeLabel": "Host".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Host".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ill, - "mads:authoritativeLabel": "Illustrator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Illustrator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ilu, - "mads:authoritativeLabel": "Illuminator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Illuminator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ins, - "mads:authoritativeLabel": "Inscriber".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Inscriber".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :inv, - "mads:authoritativeLabel": "Inventor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Inventor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :isb, - "mads:authoritativeLabel": "Issuing body".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Issuing body".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :itr, - "mads:authoritativeLabel": "Instrumentalist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Instrumentalist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ive, - "mads:authoritativeLabel": "Interviewee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Interviewee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ivr, - "mads:authoritativeLabel": "Interviewer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Interviewer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :jud, - "mads:authoritativeLabel": "Judge".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Judge".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :jug, - "mads:authoritativeLabel": "Jurisdiction governed".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Jurisdiction governed".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lbr, - "mads:authoritativeLabel": "Laboratory".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Laboratory".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lbt, - "mads:authoritativeLabel": "Librettist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Librettist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ldr, - "mads:authoritativeLabel": "Laboratory director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Laboratory director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :led, - "mads:authoritativeLabel": "Lead".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Lead".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lee, - "mads:authoritativeLabel": "Libelee-appellee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Libelee-appellee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lel, - "mads:authoritativeLabel": "Libelee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Libelee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :len, - "mads:authoritativeLabel": "Lender".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Lender".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :let, - "mads:authoritativeLabel": "Libelee-appellant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Libelee-appellant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lgd, - "mads:authoritativeLabel": "Lighting designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Lighting designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lie, - "mads:authoritativeLabel": "Libelant-appellee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Libelant-appellee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lil, - "mads:authoritativeLabel": "Libelant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Libelant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lit, - "mads:authoritativeLabel": "Libelant-appellant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Libelant-appellant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lsa, - "mads:authoritativeLabel": "Landscape architect".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Landscape architect".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lse, - "mads:authoritativeLabel": "Licensee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Licensee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lso, - "mads:authoritativeLabel": "Licensor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Licensor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ltg, - "mads:authoritativeLabel": "Lithographer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Lithographer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :lyr, - "mads:authoritativeLabel": "Lyricist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Lyricist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mcp, - "mads:authoritativeLabel": "Music copyist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Music copyist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mdc, - "mads:authoritativeLabel": "Metadata contact".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Metadata contact".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :med, - "mads:authoritativeLabel": "Medium".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Medium".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mfp, - "mads:authoritativeLabel": "Manufacture place".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Manufacture place".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mfr, - "mads:authoritativeLabel": "Manufacturer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Manufacturer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mod, - "mads:authoritativeLabel": "Moderator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Moderator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mon, - "mads:authoritativeLabel": "Monitor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Monitor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mrb, - "mads:authoritativeLabel": "Marbler".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Marbler".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mrk, - "mads:authoritativeLabel": "Markup editor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Markup editor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :msd, - "mads:authoritativeLabel": "Musical director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Musical director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mte, - "mads:authoritativeLabel": "Metal-engraver".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Metal-engraver".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mtk, - "mads:authoritativeLabel": "Minute taker".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Minute taker".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mus, - "mads:authoritativeLabel": "Musician".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Musician".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :nrt, - "mads:authoritativeLabel": "Narrator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Narrator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :opn, - "mads:authoritativeLabel": "Opponent".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Opponent".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :org, - "mads:authoritativeLabel": "Originator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Originator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :orm, - "mads:authoritativeLabel": "Organizer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Organizer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :osp, - "mads:authoritativeLabel": "Onscreen presenter".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Onscreen presenter".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :oth, - "mads:authoritativeLabel": "Other".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Other".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :own, - "mads:authoritativeLabel": "Owner".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Owner".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pan, - "mads:authoritativeLabel": "Panelist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Panelist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pat, - "mads:authoritativeLabel": "Patron".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Patron".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pbd, - "mads:authoritativeLabel": "Publishing director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Publishing director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pbl, - "mads:authoritativeLabel": "Publisher".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Publisher".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pdr, - "mads:authoritativeLabel": "Project director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Project director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pfr, - "mads:authoritativeLabel": "Proofreader".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Proofreader".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pht, - "mads:authoritativeLabel": "Photographer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Photographer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :plt, - "mads:authoritativeLabel": "Platemaker".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Platemaker".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pma, - "mads:authoritativeLabel": "Permitting agency".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Permitting agency".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pmn, - "mads:authoritativeLabel": "Production manager".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Production manager".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pop, - "mads:authoritativeLabel": "Printer of plates".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Printer of plates".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ppm, - "mads:authoritativeLabel": "Papermaker".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Papermaker".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ppt, - "mads:authoritativeLabel": "Puppeteer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Puppeteer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pra, - "mads:authoritativeLabel": "Praeses".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Praeses".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prc, - "mads:authoritativeLabel": "Process contact".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Process contact".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prd, - "mads:authoritativeLabel": "Production personnel".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Production personnel".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pre, - "mads:authoritativeLabel": "Presenter".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Presenter".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prf, - "mads:authoritativeLabel": "Performer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Performer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prg, - "mads:authoritativeLabel": "Programmer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Programmer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prm, - "mads:authoritativeLabel": "Printmaker".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Printmaker".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prn, - "mads:authoritativeLabel": "Production company".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Production company".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pro, - "mads:authoritativeLabel": "Producer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Producer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prp, - "mads:authoritativeLabel": "Production place".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Production place".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prs, - "mads:authoritativeLabel": "Production designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Production designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prt, - "mads:authoritativeLabel": "Printer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Printer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prv, - "mads:authoritativeLabel": "Provider".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Provider".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pta, - "mads:authoritativeLabel": "Patent applicant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Patent applicant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pte, - "mads:authoritativeLabel": "Plaintiff-appellee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Plaintiff-appellee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ptf, - "mads:authoritativeLabel": "Plaintiff".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Plaintiff".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pth, - "mads:authoritativeLabel": "Patent holder".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Patent holder".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ptt, - "mads:authoritativeLabel": "Plaintiff-appellant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Plaintiff-appellant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pup, - "mads:authoritativeLabel": "Publication place".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Publication place".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rbr, - "mads:authoritativeLabel": "Rubricator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Rubricator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rcd, - "mads:authoritativeLabel": "Recordist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Recordist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rce, - "mads:authoritativeLabel": "Recording engineer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Recording engineer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rcp, - "mads:authoritativeLabel": "Addressee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Addressee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rdd, - "mads:authoritativeLabel": "Radio director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Radio director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :red, - "mads:authoritativeLabel": "Redaktor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Redaktor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ren, - "mads:authoritativeLabel": "Renderer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Renderer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :res, - "mads:authoritativeLabel": "Researcher".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Researcher".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rev, - "mads:authoritativeLabel": "Reviewer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Reviewer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rpc, - "mads:authoritativeLabel": "Radio producer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Radio producer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rps, - "mads:authoritativeLabel": "Repository".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Repository".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rpt, - "mads:authoritativeLabel": "Reporter".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Reporter".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rpy, - "mads:authoritativeLabel": "Responsible party".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Responsible party".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rse, - "mads:authoritativeLabel": "Respondent-appellee".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Respondent-appellee".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rsg, - "mads:authoritativeLabel": "Restager".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Restager".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rsp, - "mads:authoritativeLabel": "Respondent".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Respondent".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rsr, - "mads:authoritativeLabel": "Restorationist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Restorationist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rst, - "mads:authoritativeLabel": "Respondent-appellant".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Respondent-appellant".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rth, - "mads:authoritativeLabel": "Research team head".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Research team head".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rtm, - "mads:authoritativeLabel": "Research team member".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Research team member".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sad, - "mads:authoritativeLabel": "Scientific advisor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Scientific advisor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sce, - "mads:authoritativeLabel": "Scenarist".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Scenarist".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :scl, - "mads:authoritativeLabel": "Sculptor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sculptor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :scr, - "mads:authoritativeLabel": "Scribe".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Scribe".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sds, - "mads:authoritativeLabel": "Sound designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sound designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sec, - "mads:authoritativeLabel": "Secretary".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Secretary".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sgd, - "mads:authoritativeLabel": "Stage director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Stage director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sgn, - "mads:authoritativeLabel": "Signer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Signer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sht, - "mads:authoritativeLabel": "Supporting host".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Supporting host".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sll, - "mads:authoritativeLabel": "Seller".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Seller".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :sng, - "mads:authoritativeLabel": "Singer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Singer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :spk, - "mads:authoritativeLabel": "Speaker".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Speaker".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :spn, - "mads:authoritativeLabel": "Sponsor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Sponsor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :spy, - "mads:authoritativeLabel": "Second party".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Second party".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :srv, - "mads:authoritativeLabel": "Surveyor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Surveyor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :std, - "mads:authoritativeLabel": "Set designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Set designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :stg, - "mads:authoritativeLabel": "Setting".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Setting".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :stl, - "mads:authoritativeLabel": "Storyteller".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Storyteller".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :stm, - "mads:authoritativeLabel": "Stage manager".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Stage manager".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :stn, - "mads:authoritativeLabel": "Standards body".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Standards body".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :str, - "mads:authoritativeLabel": "Stereotyper".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Stereotyper".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :tcd, - "mads:authoritativeLabel": "Technical director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Technical director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :tch, - "mads:authoritativeLabel": "Teacher".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Teacher".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ths, - "mads:authoritativeLabel": "Thesis advisor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Thesis advisor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :tld, - "mads:authoritativeLabel": "Television director".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Television director".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :tlp, - "mads:authoritativeLabel": "Television producer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Television producer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :trc, - "mads:authoritativeLabel": "Transcriber".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Transcriber".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :trl, - "mads:authoritativeLabel": "Translator".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Translator".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :tyd, - "mads:authoritativeLabel": "Type designer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Type designer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :tyg, - "mads:authoritativeLabel": "Typographer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Typographer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :uvp, - "mads:authoritativeLabel": "University place".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "University place".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :vac, - "mads:authoritativeLabel": "Voice actor".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Voice actor".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :vdg, - "mads:authoritativeLabel": "Videographer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Videographer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wac, - "mads:authoritativeLabel": "Writer of added commentary".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Writer of added commentary".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wal, - "mads:authoritativeLabel": "Writer of added lyrics".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Writer of added lyrics".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wam, - "mads:authoritativeLabel": "Writer of accompanying material".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Writer of accompanying material".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wat, - "mads:authoritativeLabel": "Writer of added text".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Writer of added text".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wdc, - "mads:authoritativeLabel": "Woodcutter".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Woodcutter".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wde, - "mads:authoritativeLabel": "Wood engraver".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Wood engraver".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :win, - "mads:authoritativeLabel": "Writer of introduction".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Writer of introduction".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wit, - "mads:authoritativeLabel": "Witness".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Witness".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wpr, - "mads:authoritativeLabel": "Writer of preface".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Writer of preface".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :wst, - "mads:authoritativeLabel": "Writer of supplementary textual content".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "Writer of supplementary textual content".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze end end diff --git a/lib/rdf/vocab/mo.rb b/lib/rdf/vocab/mo.rb index 2a1051d..3445805 100644 --- a/lib/rdf/vocab/mo.rb +++ b/lib/rdf/vocab/mo.rb @@ -3,3076 +3,2154 @@ # This file generated automatically using rdf vocabulary format from http://purl.org/ontology/mo/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The Music Ontology - # # - # # The Music Ontology Specification provides main concepts and properties fo describing music (i.e. artists, albums and tracks) on the Semantic Web. - # # @version Revision: 2.1.5 - # class MO < RDF::Vocabulary - # # An activity period, defining when an artist was musically active. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Activity - # - # # An analog signal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnalogSignal - # - # # An arrangement event. Takes as agent the arranger, and produces a score (informational object, not the actually published score). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Arrangement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Arranger - # - # # An audio file, which may be available on a local file system or through http, ftp, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioFile - # - # # Compact Disc used as medium to record a musical manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CD - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Composer - # - # # A composition event. Takes as agent the composer himself. It produces a MusicalWork, or a MusicalExpression (when the initial "product" is a score, for example), or both... - # # @return [RDF::Vocabulary::Term] - # attr_reader :Composition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Conductor - # - # # Organization or group of individuals and/or other organizations involved in the music market. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CorporateBody - # - # # Digital Audio Tape used as medium to record a musical manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DAT - # - # # Digital Compact Cassette used as medium to record a musical manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DCC - # - # # DVD-Audio used as medium to record a musical manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DVDA - # - # # A digital signal - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalSignal - # - # # Something available on the E-Donkey peer-2-peer filesharing network - # # @return [RDF::Vocabulary::Term] - # attr_reader :ED2K - # - # # A festival - musical/artistic event lasting several days, like Glastonbury, Rock Am Ring... We migth decompose this event (which is in fact just a classification of the space/time region related to a particular festival) using hasSubEvent in several performances at different space/time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Festival - # - # # An expressive style of music. Any taxonomy can be plug-in here. You can either define a genre by yourself, like this: :mygenre a mo:Genre; dc:title "electro rock". Or you can refer to a DBPedia genre (such as http://dbpedia.org/resource/Baroque_music), allowing semantic web clients to access easily really detailed structured information about the genre you are refering to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Genre - # - # # Any of various devices or contrivances that can be used to produce musical tones or sound. Any taxonomy can be used to subsume this concept. The default one is one extracted by Ivan Herman from the Musicbrainz instrument taxonomy, conforming to SKOS. This concept holds a seeAlso link towards this taxonomy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Instrument - # - # # Instrumentation deals with the techniques of writing music for a specific instrument, including the limitations of the instrument, playing techniques and idiomatic handling of the instrument. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Instrumentation - # - # # Trade name of a company that produces musical works or expression of musical works. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Label - # - # # Libretto - # # @return [RDF::Vocabulary::Term] - # attr_reader :Libretto - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Listener - # - # # Lyrics - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lyrics - # - # # Mini Disc used as medium to record a musical manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MD - # - # # Magnetic analogue tape used as medium to record a musical manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MagneticTape - # - # # A means or instrumentality for storing or communicating musical manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Medium - # - # # A membership event, where one or several people belongs to a group during a particular time period. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Membership - # - # # A movement is a self-contained part of a musical work. While individual or selected movements from a composition are sometimes performed separately, a performance of the complete work requires all the movements to be performed in succession. Often a composer attempts to interrelate the movements thematically, or sometimes in more subtle ways, in order that the individual movements exert a cumulative effect. In some forms, composers sometimes link the movements, or ask for them to be played without a pause between them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Movement - # - # # A person or a group of people (or a computer :-) ), whose musical creative work shows sensitivity and imagination - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicArtist - # - # # Group of musicians, or musical ensemble, usually popular or folk, playing parts of or improvising off of a musical arrangement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicGroup - # - # # The intellectual or artistic realization of a work in the form of alpha-numeric, musical, or choreographic notation, sound, etc., or any combination of such forms. For example: Work #1 Franz Schubert's Trout quintet * Expression #1 the composer's score * Expression #2 sound issued from the performance by the Amadeus Quartet and Hephzibah Menuhin on piano * Expression #3 sound issued from the performance by the Cleveland Quartet and Yo-Yo Ma on the cello * . . . . The Music Ontology defines the following sub-concepts of a MusicalExpression, which should be used instead of MusicalExpression itself: Score (the result of an arrangement), Sound (produced during a performance), Signal. However, it is possible to stick to FRBR and bypass the worflow mechanism this ontology defines by using the core FRBR properties on such objects. But it is often better to use events to interconnect such expressions (allowing to go deeply into the production process - `this performer was playing this particular instrument at that particular time'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicalExpression - # - # # A single exemplar of a musical expression. For example, it could be a single exemplar of a CD. This is normally an single object (a CD) possessed by somebody. From the FRBR final report: The entity defined as item is a concrete entity. It is in many instances a single physical object (e.g., a copy of a one-volume monograph, a single audio cassette, etc.). There are instances, however, where the entity defined as item comprises more than one physical object (e.g., a monograph issued as two separately bound volumes, a recording issued on three separate compact discs, etc.). In terms of intellectual content and physical form, an item exemplifying a manifestation is normally the same as the manifestation itself. However, variations may occur from one item to another, even when the items exemplify the same manifestation, where those variations are the result of actions external to the intent of the producer of the manifestation (e.g., damage occurring after the item was produced, binding performed by a library, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicalItem - # - # # This entity is related to the edition/production/publication of a musical expression (musical manifestation are closely related with the music industry (their terms, concepts, definitions, methods (production, publication, etc.), etc.) From the FRBR final report: The entity defined as manifestation encompasses a wide range of materials, including manuscripts, books, periodicals, maps, posters, sound recordings, films, video recordings, CD-ROMs, multimedia kits, etc. As an entity, manifestation represents all the physical objects that bear the same characteristics, in respect to both intellectual content and physical form. Work #1 J. S. Bach's Six suites for unaccompanied cello * Expression #1 sound issued during the performance by Janos Starker recorded in 1963 and 1965 o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1965 by Mercury o Manifestation #2 recordings re-released on compact disc in 1991 by Mercury * Expression #2 sound issued during the performances by Yo-Yo Ma recorded in 1983 o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1983 by CBS Records o Manifestation #2 recordings re-released on compact disc in 1992 by CBS Records Changes that occur deliberately or even inadvertently in the production process that affect the copies result, strictly speaking, in a new manifestation. A manifestation resulting from such a change may be identified as a particular "state" or "issue" of the publication. Changes that occur to an individual copy after the production process is complete (e.g., the loss of a page, rebinding, etc.) are not considered to result in a new manifestation. That copy is simply considered to be an exemplar (or item) of the manifestation that deviates from the copy as produced. With the entity defined as manifestation we can describe the physical characteristics of a set of items and the characteristics associated with the production and distribution of that set of items that may be important factors in enabling users to choose a manifestation appropriate to their physical needs and constraints, and to identify and acquire a copy of that manifestation. Defining manifestation as an entity also enables us to draw relationships between specific manifestations of a work. We can use the relationships between manifestations to identify, for example, the specific publication that was used to create a microreproduction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicalManifestation - # - # # Distinct intellectual or artistic musical creation. From the FRBR final report: A work is an abstract entity; there is no single material object one can point to as the work. We recognize the work through individual realizations or expressions of the work, but the work itself exists only in the commonality of content between and among the various expressions of the work. When we speak of Homer's Iliad as a work, our point of reference is not a particular recitation or text of the work, but the intellectual creation that lies behind all the various expressions of the work. For example: work #1 J. S. Bach's The art of the fugue - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicalWork - # - # # Orchestration includes, in addition to instrumentation, the handling of groups of instruments and their balance and interaction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Orchestration - # - # # A performance event. It might include as agents performers, engineers, conductors, or even listeners. It might include as factors a score, a MusicalWork, musical instruments. It might produce a sound:-) - # # @return [RDF::Vocabulary::Term] - # attr_reader :Performance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Performer - # - # # A published libretto - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublishedLibretto - # - # # Published lyrics, as a book or as a text file, for example - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublishedLyrics - # - # # A published score (subclass of MusicalManifestation) - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublishedScore - # - # # A published record (manifestation which first aim is to render the product of a recording) - # # @return [RDF::Vocabulary::Term] - # attr_reader :Record - # - # # A recording event. Takes a sound as a factor to produce a signal (analog or digital). The location of such events (if any) is the actual location of the corresponding microphone or the "recording device". - # # @return [RDF::Vocabulary::Term] - # attr_reader :Recording - # - # # A set of performances/recordings/mastering events. This event can be decomposed in its constituent events using event:sub_event - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecordingSession - # - # # A specific release, with barcode, box, liner notes, cover art, and a number of records - # # @return [RDF::Vocabulary::Term] - # attr_reader :Release - # - # # A release event, in a particular place (e.g. a country) at a particular time. Other factors of this event might include cover art, liner notes, box, etc. or a release grouping all these. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReleaseEvent - # - # # Musical manifestation release status. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReleaseStatus - # - # # Release type of a particular manifestation, such as "album" or "interview"... - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReleaseType - # - # # Super Audio Compact Disc used as medium to record a musical manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SACD - # - # # Here, we are dealing with the informational object (the MusicalExpression), not the actually "published" score. This may be, for example, the product of an arrangement process. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Score - # - # # A show - a musical event lasting several days, in a particular venue. Examples can be "The Magic Flute" at the Opera Bastille, August 2005, or a musical in the west end... - # # @return [RDF::Vocabulary::Term] - # attr_reader :Show - # - # # A subclass of MusicalExpression, representing a signal, for example a master signal produced by a performance and a recording. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Signal - # - # # A musical expression representing a group of signals, for example a set of masters resulting from a whole recording/mastering session. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SignalGroup - # - # # Single person whose musical creative work shows sensitivity and imagination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoloMusicArtist - # - # # A subclass of MusicalExpression, representing a sound. Realisation of a MusicalWork during a musical Performance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sound - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoundEngineer - # - # # Transmission over a network used as medium to broadcast a musical manifestation - # # @return [RDF::Vocabulary::Term] - # attr_reader :Stream - # - # # Something available on the Bittorrent peer-2-peer filesharing network - # # @return [RDF::Vocabulary::Term] - # attr_reader :Torrent - # - # # A track on a particular record - # # @return [RDF::Vocabulary::Term] - # attr_reader :Track - # - # # Transcription event - # # @return [RDF::Vocabulary::Term] - # attr_reader :Transcription - # - # # Vinyl used as medium to record a musical manifestation - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vinyl - # - # # Relates an artist to an activity period - # # @return [RDF::Vocabulary::Term] - # attr_reader :activity - # - # # Relates an artist to a date at which its activity ended - # # @return [RDF::Vocabulary::Term] - # attr_reader :activity_end - # - # # Relates an artist to a date at which its activity started - # # @return [RDF::Vocabulary::Term] - # attr_reader :activity_start - # - # # Used to link a work or the expression of a work to its corresponding Amazon ASINs page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :amazon_asin - # - # # Associates a work to an arrangement event where it was arranged - # # @return [RDF::Vocabulary::Term] - # attr_reader :arranged_in - # - # # Associates an arrangement event to a work - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrangement_of - # - # # Relates a membership event with the corresponding artist - # # @return [RDF::Vocabulary::Term] - # attr_reader :artist - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableAs - # - # # Relates a musical manifestation to a musical item (this album, and my particular cd). By using this property, there is no assumption on wether the full content is available on the linked item. To be explicit about this, you can use a sub-property, such as mo:item (the full manifestation is available on that item) or mo:preview (only a part of the manifestation is available on that item). This is a subproperty of frbr:examplar. - # # @return [RDF::Vocabulary::Term] - # attr_reader :available_as - # - # # Used to link an artist to their online biography. - # # @return [RDF::Vocabulary::Term] - # attr_reader :biography - # - # # Associates a digital signal to the number a bits used to encode one sample. Range is xsd:int. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bitsPerSample - # - # # Indicates the BPM of a MusicalWork or a particular Performance Beats per minute: the pace of music measured by the number of beats occurring in 60 seconds. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bpm - # - # # Links a release with the corresponding catalogue number - # # @return [RDF::Vocabulary::Term] - # attr_reader :catalogue_number - # - # # Associates a signal to the number of channels it holds (mono --> 1, stereo --> 2). Range is xsd:int. - # # @return [RDF::Vocabulary::Term] - # attr_reader :channels - # - # # Used to relate two collaborating people on a work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collaborated_with - # - # # Indicates that a musical manifestation is a compilation of several Signals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :compilation_of - # - # # Used to relate an person or a group of person who compiled the manifestation of a musical work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :compiled - # - # # Used to relate the manifestation of a musical work to a person or a group of person who compiled it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :compiler - # - # # Associates a MusicalWork to the Composition event pertaining to its creation. For example, I might use this property to associate the Magic Flute to its composition event, occuring during 1782 and having as a mo:composer Mozart. - # # @return [RDF::Vocabulary::Term] - # attr_reader :composed_in - # - # # Associates a composition event to the actual composer. For example, this property could link the event corresponding to the composition of the Magic Flute in 1782 to Mozart himself (who obviously has a FOAF profile:-) ). - # # @return [RDF::Vocabulary::Term] - # attr_reader :composer - # - # # Relates agents to the performances they were conducting - # # @return [RDF::Vocabulary::Term] - # attr_reader :conducted - # - # # Relates a performance to the conductor involved - # # @return [RDF::Vocabulary::Term] - # attr_reader :conductor - # - # # Relates a signal to another signal, which has been sampled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contains_sample_from - # - # # A related signal from which the described signal is derived. - # # @return [RDF::Vocabulary::Term] - # attr_reader :derived_from - # - # # Used to links an artist to an online discography of their musical works. The discography should provide a summary of each released musical work of the artist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :discography - # - # # Used to link a musical work or the expression of a musical work, an artist or a corporate body to to its corresponding Discogs page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :discogs - # - # # Indicates that all (or most of) the tracks of a musical work or the expression of a musical work were mixed together from all (or most of) the tracks from another musical work or the expression of a musical work to form a so called DJ-Mix. The tracks might have been altered by pitching (so that the tempo of one track matches the tempo of the following track) and fading (so that one track blends in smoothly with the other). If the tracks have been more substantially altered, the "mo:remix" relationship type is more appropriate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :djmix_of - # - # # Used to relate an artist who djmixed a musical work or the expression of a musical work. The artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :djmixed - # - # # Used to relate a work or the expression of a work to an artist who djmixed it. The artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :djmixed_by - # - # # This property can be used to link from a person to the website where they make their works available, or from a manifestation (a track or an album, for example) to a web page where it is available for download. It is better to use one of the three sub-properties instead of this one in order to specify wether the content can be accessed for free (mo:freedownload), if it is just free preview material (mo:previewdownload), or if it can be accessed for some money (mo:paiddownload) (this includes links to the Amazon store, for example). This property MUST be used only if the content is just available through a web page (holding, for example a Flash application) - it is better to link to actual content directly through the use of mo:available_as and mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even less to rip streams from Flash applications can still access the audio content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :download - # - # # The duration of a track or a signal in ms - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # The European Article Number (EAN) is a universal identifier for products, commonly printed in form of barcodes on them. The numbers represented by those codes can either be 8 or 13 digits long, with the 13-digit-version being most common. EANs form a superset of the North American Universal Product Code (UPC) as every UPC can be made an EAN by adding a leading zero to it. Additionally every EAN is also a Japanese Article Number (JAN). The identifiers were formerly assigned by EAN International which merged with Uniform Code Council (UCC, the guys behind the UPCs) and Electronic Commerce Council of Canada (ECCC) to become GS1. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ean - # - # # Relates a MusicalItem (a track on a particular CD, an audio file, a stream somewhere) to the signal it encodes. This is usually a lower-resolution version of the master signal (issued from a Recording event). - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodes - # - # # Method used to convert analog electronic signals into digital format such as "MP3 CBR @ 128kbps", "OGG @ 160kbps", "FLAC", etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encoding - # - # # Relates a performance or a recording to the engineer involved - # # @return [RDF::Vocabulary::Term] - # attr_reader :engineer - # - # # Relates agents to the performances/recordings they were engineering in - # # @return [RDF::Vocabulary::Term] - # attr_reader :engineered - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventHomePage - # - # # Links a particular event to a web page - # # @return [RDF::Vocabulary::Term] - # attr_reader :event_homepage - # - # # A person, a group of person or an organization exchanging an exemplar of a single manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exchange_item - # - # # Used to link an artist to a fan-created webpage devoted to that artist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fanpage - # - # # This property can be used to link from a person to the website where they make their works available, or from a manifestation (a track or an album, for example) to a web page where it is available for free download. This property MUST be used only if the content is just available through a web page (holding, for example a Flash application) - it is better to link to actual content directly through the use of mo:available_as and mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even less to rip streams from Flash applications can still access the audio content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :free_download - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :freedownload - # - # # Associates an event (like a performance or a recording) to a particular musical genre. Further version of this property may also include works and scores in the domain. - # # @return [RDF::Vocabulary::Term] - # attr_reader :genre - # - # # The Global Release Identifier (GRid) is a system for uniquely identifying Releases of music over electronic networks (that is, online stores where you can buy music as digital files). As that it can be seen as the equivalent of the BarCode (or more correctly the GTIN) as found on physical releases of music. Like the ISRC (a code for identifying single recordings as found on releases) it was developed by the IFPI but it does not appear to be a standard of the ISO. - # # @return [RDF::Vocabulary::Term] - # attr_reader :grid - # - # # Relates a membership event with the corresponding group - # # @return [RDF::Vocabulary::Term] - # attr_reader :group - # - # # GTIN is a grouping term for EANs and UPCs. In common speech those are called barcodes although the barcodes are just a representation of those identifying numbers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_track - # - # # Relates a performance to the headliner(s) involved - # # @return [RDF::Vocabulary::Term] - # attr_reader :headliner - # - # # Links an artist, a record, etc. to a corresponding web page - # # @return [RDF::Vocabulary::Term] - # attr_reader :homepage - # - # # Indicates a pictorial image (JPEG, GIF, PNG, Etc.) of a musical work, the expression of a musical work, the manifestation of a work or the examplar of a manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :image - # - # # Used to link an artist, a musical work or the expression of a musical work to their equivalent page on IMDb, the InternetMovieDatabase. - # # @return [RDF::Vocabulary::Term] - # attr_reader :imdb - # - # # Relates a performance to a musical instrument involved - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrument - # - # # Adds an involved music artist, who interpreted, remixed, or otherwise modified an existing signal, which resulted in the signal that is here the subject of this relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interpreter - # - # # The Interested Parties Information Code (IPI) is an ISO standard similar to ISBNs for identifying the people or groups with some involvement with a particular musical work / compositions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ipi - # - # # The International Standard Music Number (ISMN) is an ISO standard similar to ISBNs for identifying printed music publications - # # @return [RDF::Vocabulary::Term] - # attr_reader :ismn - # - # # The ISRC (International Standard Recording Code) is the international identification system for sound recordings and music videorecordings. Each ISRC is a unique and permanent identifier for a specific recording which can be permanently encoded into a product as its digital fingerprint. Encoded ISRC provide the means to automatically identify recordings for royalty payments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isrc - # - # # Links a musical work to the corresponding ISWC number - # # @return [RDF::Vocabulary::Term] - # attr_reader :iswc - # - # # Relates a musical manifestation to a musical item (this album, and my particular cd) holding the entire manifestation, and not just a part of it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :item - # - # # Indicated the key used by the musicians during a performance, or the key of a MusicalWork. Any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music. - # # @return [RDF::Vocabulary::Term] - # attr_reader :key - # - # # Associates a release event with the label releasing the record - # # @return [RDF::Vocabulary::Term] - # attr_reader :label - # - # # The Label Code (LC) was introduced in 1977 by the IFPI (International Federation of Phonogram and Videogram Industries) in order to unmistakably identify the different record labels (see Introduction, Record labels) for rights purposes. The Label Code consists historically of 4 figures, presently being extended to 5 figures, preceded by LC and a dash (e.g. LC-0193 = Electrola; LC-0233 = His Master's Voice). Note that the number of countries using the LC is limited, and that the code given on the item is not always accurate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lc - # - # # This annotation property associates to a particular Music Ontology term the corresponding expressiveness level. These levels can be: - 1: Only editorial/Musicbrainz type information - 2: Workflow information - 3: Even decomposition This property is mainly used for specification generation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :level - # - # # Used to link a work or the expression of a work to the license under which they can be manipulated (downloaded, modified, etc). This is usually used to link to a Creative Commons licence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :licence - # - # # Relates agents to the performances they were listening in - # # @return [RDF::Vocabulary::Term] - # attr_reader :listened - # - # # Relates a performance to the listener involved - # # @return [RDF::Vocabulary::Term] - # attr_reader :listener - # - # # Associates lyrics with a musical work - # # @return [RDF::Vocabulary::Term] - # attr_reader :lyrics - # - # # Used to link a musical work or the expression of a musical work to a website where people can buy a copy of the musical manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mailorder - # - # # Indicates that musical works or the expressions of a musical work were mashed up on this album or track. This means that two musical works or the expressions of a musical work by different artists are mixed together, over each other, or otherwise combined into a single musical work (usually by a third artist, the remixer). - # # @return [RDF::Vocabulary::Term] - # attr_reader :mashup_of - # - # # The mediatype (file format or MIME type, or physical medium) of a musical manifestation, e.g. a MP3, CD or vinyl. - # # @return [RDF::Vocabulary::Term] - # attr_reader :media_type - # - # # Indicates that a musical expression is a medley of several other musical expressions. This means that the orignial musical expression were rearranged to create a new musical expression in the form of a medley. - # # @return [RDF::Vocabulary::Term] - # attr_reader :medley_of - # - # # Indicates a member of a musical group - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # Inverse of the foaf:member property - # # @return [RDF::Vocabulary::Term] - # attr_reader :member_of - # - # # Relates an agent with related membership events - # # @return [RDF::Vocabulary::Term] - # attr_reader :membership - # - # # Associates a musical work or a score with its meter - # # @return [RDF::Vocabulary::Term] - # attr_reader :meter - # - # # Indicates that a musical work has movements - # # @return [RDF::Vocabulary::Term] - # attr_reader :movement - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :movementNum - # - # # Indicates the position of a movement in a musical work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :movement_number - # - # # Linking an agent, a track or a record to its corresponding Musicbrainz page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicbrainz - # - # # Links an object to the corresponding Musicbrainz identifier - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicbrainz_guid - # - # # Used to link an artist, a musical work or the expression of a musical work to its corresponding MusicMoz page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicmoz - # - # # Used to link a person to its corresponding MySpace page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :myspace - # - # # Used to link a track to a tabulature file for track in the On-Line Guitar Archive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :olga - # - # # Used to link a person with an online community web page like a blog, a wiki, a forum, a livejournal page, Etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :onlinecommunity - # - # # Used to define a creative work, especially a musical composition numbered to designate the order of a composer's works. - # # @return [RDF::Vocabulary::Term] - # attr_reader :opus - # - # # Relates an artist to its geographic origin - # # @return [RDF::Vocabulary::Term] - # attr_reader :origin - # - # # Indicates that two musical manifestations are essentially the same. - # # @return [RDF::Vocabulary::Term] - # attr_reader :other_release_of - # - # # Provide a link from an artist to a web page where all of that artist's musical work is available for some money, or a link from a manifestation (record/track, for example) to a web page providing a paid access to this manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paid_download - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :paiddownload - # - # # Associates a Performance to a musical work or an arrangement that is being used as a factor in it. For example, I might use this property to attach the Magic Flute musical work to a particular Performance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :performance_of - # - # # Relates agents to the performances they were performing in - # # @return [RDF::Vocabulary::Term] - # attr_reader :performed - # - # # Associates a Musical Work or an Score to Performances in which they were a factor. For example, I might use this property in order to associate the Magic Flute to a particular performance at the Opera Bastille last year. - # # @return [RDF::Vocabulary::Term] - # attr_reader :performed_in - # - # # Relates a performance to the performers involved - # # @return [RDF::Vocabulary::Term] - # attr_reader :performer - # - # # A person, a group of person or an organization possessing an exemplar of a single manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :possess_item - # - # # Relates a musical manifestation to a musical item (this album, and my particular cd), which holds a preview of the manifestation (eg. one track for an album, or a snippet for a track) - # # @return [RDF::Vocabulary::Term] - # attr_reader :preview - # - # # This property can be used to link from a person to the website where they make previews of their works available, or from a manifestation (a track or an album, for example) to a web page where a preview download is available. This property MUST be used only if the content is just available through a web page (holding, for example a Flash application) - it is better to link to actual content directly through the use of mo:available_as and mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even less to rip streams from Flash applications can still access the audio content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preview_download - # - # # Indicates that an artist primarily plays an instrument, or that a member was primarily playing a particular instrument during his membership - # # @return [RDF::Vocabulary::Term] - # attr_reader :primary_instrument - # - # # Used to relate an person or a group of person who produced the manifestation of a work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :produced - # - # # Associates an arrangement or a composition event to a score product (score here does not refer to a published score, but more an abstract arrangement of a particular work). - # # @return [RDF::Vocabulary::Term] - # attr_reader :produced_score - # - # # Associates a Recording to the outputted signal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :produced_signal - # - # # Associates a recording session with a group of master signals produced by it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :produced_signal_group - # - # # Associates a Performance to a physical Sound that is being produced by it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :produced_sound - # - # # Associates a composition event to the produced MusicalWork. For example, this property could link the event corresponding to the composition of the Magic Flute in 1782 to the Magic Flute musical work itself. This musical work can then be used in particular performances. - # # @return [RDF::Vocabulary::Term] - # attr_reader :produced_work - # - # # Used to relate the manifestation of a work to a person or a group of person who produced it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :producer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :producesSignal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :producesSound - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :producesWork - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :productOfComposition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationOf - # - # # Link a particular manifestation to the related signal, score, libretto, or lyrics - # # @return [RDF::Vocabulary::Term] - # attr_reader :publication_of - # - # # Used to relate an person or a group of person who published the manifestation of a work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :published - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishedAs - # - # # Links a musical expression (e.g. a signal or a score) to one of its manifestations (e.g. a track on a particular record or a published score). - # # @return [RDF::Vocabulary::Term] - # attr_reader :published_as - # - # # Used to relate a musical manifestation to a person or a group of person who published it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publisher - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishingLocation - # - # # Relates a musical manifestation to its publication location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishing_location - # - # # Link a signal to the PUIDs associated with it, that is, PUID computed from MusicalItems (mo:AudioFile) derived from this signal. PUIDs (Portable Unique IDentifier) are the IDs used in the proprietary MusicDNS AudioFingerprinting system which is operated by MusicIP. Using PUIDs, one (with some luck) can identify the Signal object associated with a particular audio file, therefore allowing to access further information (on which release this track is featured? etc.). Using some more metadata one can identify the particular Track corresponding to the audio file (a track on a particular release). - # # @return [RDF::Vocabulary::Term] - # attr_reader :puid - # - # # Associates a release with the records it contains. A single release can be associated with multiple records, for example for a multi-disc release. - # # @return [RDF::Vocabulary::Term] - # attr_reader :record - # - # # Associates a release with the number of records it contains, e.g. the number of discs it contains in the case of a multi-disc release. - # # @return [RDF::Vocabulary::Term] - # attr_reader :record_count - # - # # Indicates the position of a record in a release (e.g. a 2xLP, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :record_number - # - # # Associates the side on a vinyl record, where a track is located, e.g. A, B, C, etc. This property can then also be used in conjunction with mo:track_number, so that one can infer e.g. "A1", that means, track number 1 on side A. - # # @return [RDF::Vocabulary::Term] - # attr_reader :record_side - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordedAs - # - # # This is a shortcut property, allowing to bypass all the Sound/Recording steps. This property allows to directly link a Performance to the recorded Signal. This is recommended for "normal" users. However, advanced users wanting to express things such as the location of the microphone will have to create this shortcut as well as the whole workflow, in order to let the "normal" users access simply the, well, simple information:-) . - # # @return [RDF::Vocabulary::Term] - # attr_reader :recorded_as - # - # # Associates a physical Sound to a Recording event where it is being used in order to produce a signal. For example, I might use this property to associate the sound produced by a particular performance of the magic flute to a given recording, done using my cell-phone. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recorded_in - # - # # Associates a Recording event to a physical Sound being recorded. For example, I might use this property to associate a given recording, done using my cell phone, to the sound produced by a particular performance of the magic flute. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recording_of - # - # # This is the inverse of the shortcut property recordedAs, allowing to relate directly a performance to a signal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :records - # - # # Associates a release with the corresponding release event - # # @return [RDF::Vocabulary::Term] - # attr_reader :release - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseStatus - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseType - # - # # Relates a musical manifestation to its release status (bootleg, ...) - # # @return [RDF::Vocabulary::Term] - # attr_reader :release_status - # - # # Relates a musical manifestation to its release type (interview, spoken word, album, ...) - # # @return [RDF::Vocabulary::Term] - # attr_reader :release_type - # - # # This relates two musical work or the expression of a musical work, where one is a remaster of the other. A remaster is a new version made for release from source recordings that were earlier released separately. This is usually done to improve the audio quality or adjust for more modern playback equipment. The process generally doesn't involve changing the music in any artistically important way. It may, however, result in tracks that are a few seconds longer or shorter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :remaster_of - # - # # Used to relate the remix of a musical work in a substantially altered version produced by mixing together individual tracks or segments of an original musical source work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :remix_of - # - # # Used to relate an artist who remixed a musical work or the expression of a musical work. This involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :remixed - # - # # Used to relate a musical work or the expression of a musical work to an artist who remixed it. This involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :remixer - # - # # Used to link a work or the expression of a work to a review. The review does not have to be open content, as long as it is accessible to the general internet population. - # # @return [RDF::Vocabulary::Term] - # attr_reader :review - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampleRate - # - # # Associates a digital signal to its sample rate. It might be easier to express it this way instead of defining a timeline map:-) Range is xsd:float. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sample_rate - # - # # Used to relate an artist who sampled a Signal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampled - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampledVersionOf - # - # # Associates an analog signal with a sampled version of it - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampled_version - # - # # Associates a digital signal with the analog version of it - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampled_version_of - # - # # Used to relate the signal of a musical work to an artist who sampled it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampler - # - # # A person, a group of person or an organization selling an exemplar of a single manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sell_item - # - # # Associates a group of signals with one of the signals it contains - # # @return [RDF::Vocabulary::Term] - # attr_reader :signal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :signalTime - # - # # A similarity relationships between two objects (so far, either an agent, a signal or a genre, but this could grow). This relationship is pretty general and doesn't make any assumptions on how the similarity claim was derived. Such similarity statements can come from a range of different sources (Musicbrainz similarities between artists, or coming from some automatic content analysis). However, the origin of such statements should be kept using a named graph approach - and ultimately, the documents providing such statements should attach some metadata to themselves (confidence of the claim, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :similar_to - # - # # Relates a performance to an involved singer - # # @return [RDF::Vocabulary::Term] - # attr_reader :singer - # - # # Used to relate an artist doing long-time instrumental or vocal support for another artist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supporting_musician - # - # # Rate of speed or pace of music. Tempo markings are traditionally given in Italian; common markings include: grave (solemn; very, very slow); largo (broad; very slow); adagio (quite slow); andante (a walking pace); moderato (moderate); allegro (fast; cheerful); vivace (lively); presto (very fast); accelerando (getting faster); ritardando (getting slower); and a tempo (in time; returning to the original pace). - # # @return [RDF::Vocabulary::Term] - # attr_reader :tempo - # - # # Associates lyrics with their text. - # # @return [RDF::Vocabulary::Term] - # attr_reader :text - # - # # Associates a Signal to a time object - its actual domain - # # @return [RDF::Vocabulary::Term] - # attr_reader :time - # - # # Indicates a part of a musical manifestation - in this particular case, a track. - # # @return [RDF::Vocabulary::Term] - # attr_reader :track - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackNum - # - # # The track count of a record - # # @return [RDF::Vocabulary::Term] - # attr_reader :track_count - # - # # Indicates the position of a track on a record medium (a CD, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :track_number - # - # # Indicates that a work or the expression of a work has translated or transliterated into another expression of a work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :translation_of - # - # # Indicates a musical work or the expression of a musical work that is a tribute to an artist - normally consisting of music being composed by the artist but performed by other artists. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tribute_to - # - # # Indicates the TRMID of a track. TRM IDs are MusicBrainz' old AudioFingerprinting system. TRM (TRM Recognizes Music) IDs are (somewhat) unique ids that represent the audio signature of a musical piece (see AudioFingerprint). - # # @return [RDF::Vocabulary::Term] - # attr_reader :trmid - # - # # UPC stands for "Universal Product Code", which was the original barcode used in the United States and Canada. The UPC (now officially EAN.UCC-12 is a numerical method of identifying products without redundancy worldwide for all types of products in the retail sector. The EAN is a superset of the original UPC increasing the digits to 13 with the prefix 0 reserved for UPC. As of 2005, manufacturers are only allowed to use the new 13-digit codes on their items, rather than having two separate numbers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :upc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usedInPerformance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usedInRecording - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usesSound - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :usesWork - # - # # Links an object to an universally unique identifier for it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :uuid - # - # # A person, a group of person or an organization wanting an exemplar of a single manifestation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :want_item - # - # # Used to link an work, an expression of a work, a manifestation of a work, a person, an instrument or a musical genre to its corresponding WikiPedia page. The full URL should be used, not just the WikiName. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wikipedia - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :album - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :audiobook - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :bootleg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :compilation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ep - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :interview - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :live - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :official - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :promotion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :remix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :single - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :soundtrack - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :spokenword - # - # end MO = Class.new(RDF::Vocabulary("http://purl.org/ontology/mo/")) do # Ontology definition ontology :"http://purl.org/ontology/mo/", - "dc11:created": "2006/12/21 12:00:00".freeze, - "dc11:date": "2013/07/22 16:54:19".freeze, - "dc11:description": "\n The Music Ontology Specification provides main concepts and \n properties fo describing music (i.e. artists, albums and tracks) \n on the Semantic Web. \n ".freeze, - "dc11:title": "The Music Ontology".freeze, - "foaf:maker": ["http://foaf.me/zazi#me".freeze, "http://kurtisrandom.com/foaf.rdf#kurtjx".freeze, "http://raimond.me.uk/foaf.rdf#moustaki".freeze, "http://www.talkdigger.com/foaf/fgiasson".freeze, term( - "foaf:homepage": "http://apassant.net/".freeze, - "foaf:name": "Alexandre Passant".freeze + "http://purl.org/dc/elements/1.1/created": "2006/12/21 12:00:00".freeze, + "http://purl.org/dc/elements/1.1/date": "2013/07/22 16:54:19".freeze, + "http://purl.org/dc/elements/1.1/description": "\n The Music Ontology Specification provides main concepts and \n properties fo describing music (i.e. artists, albums and tracks) \n on the Semantic Web. \n ".freeze, + "http://purl.org/dc/elements/1.1/title": "The Music Ontology".freeze, + "http://purl.org/vocab/vann/preferredNamespacePrefix": "mo".freeze, + "http://purl.org/vocab/vann/preferredNamespaceUri": "http://purl.org/ontology/mo/".freeze, + "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/NET/c4dm/event.owl".freeze, "http://purl.org/NET/c4dm/keys.owl".freeze, "http://purl.org/dc/terms/".freeze, "http://purl.org/ontology/ao/core".freeze, "http://purl.org/vocab/bio/0.1/".freeze, "http://purl.org/vocab/frbr/core".freeze, "http://www.w3.org/2006/time".freeze, "http://xmlns.com/foaf/0.1/".freeze], + "http://www.w3.org/2002/07/owl#versionInfo": "Revision: 2.1.5".freeze, + "http://xmlns.com/foaf/0.1/maker": ["http://foaf.me/zazi#me".freeze, "http://kurtisrandom.com/foaf.rdf#kurtjx".freeze, "http://raimond.me.uk/foaf.rdf#moustaki".freeze, "http://www.talkdigger.com/foaf/fgiasson".freeze, term( + "http://xmlns.com/foaf/0.1/homepage": "http://apassant.net/".freeze, + "http://xmlns.com/foaf/0.1/name": "Alexandre Passant".freeze ), term( - "foaf:homepage": "http://simon-reinhardt.de/".freeze, - "foaf:name": "Simon Reinhardt".freeze + "http://xmlns.com/foaf/0.1/homepage": "http://simon-reinhardt.de/".freeze, + "http://xmlns.com/foaf/0.1/name": "Simon Reinhardt".freeze ), term( - "foaf:name": "George Fazekas".freeze + "http://xmlns.com/foaf/0.1/name": "George Fazekas".freeze )], - "http://purl.org/vocab/vann/preferredNamespacePrefix": "mo".freeze, - "http://purl.org/vocab/vann/preferredNamespaceUri": "http://purl.org/ontology/mo/".freeze, - "owl:imports": ["dc:".freeze, "foaf:".freeze, "http://purl.org/NET/c4dm/event.owl".freeze, "http://purl.org/NET/c4dm/keys.owl".freeze, "http://purl.org/ontology/ao/core".freeze, "http://purl.org/vocab/bio/0.1/".freeze, "http://purl.org/vocab/frbr/core".freeze, "http://www.w3.org/2006/time".freeze], - "owl:versionInfo": "Revision: 2.1.5".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Activity, comment: "\n An activity period, defining when an artist was musically active.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "activity".freeze, - "mo:level": "1".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AnalogSignal, comment: "\n An analog signal.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/ontology/mo/DigitalSignal".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "analogue signal".freeze, - "mo:level": "2".freeze, - "owl:disjointWith": "mo:DigitalSignal".freeze, - subClassOf: "mo:Signal".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/Signal".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Arrangement, comment: "\n An arrangement event.\n Takes as agent the arranger, and produces a score (informational object, not the actually published score).\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "arrangement".freeze, - "mo:level": "2".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Arranger, equivalentClass: term( onProperty: "http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, - someValuesFrom: "mo:Arrangement".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/ontology/mo/Arrangement".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "arranger".freeze, - "mo:level": "2".freeze, - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioFile, comment: "An audio file, which may be available on a local file system or through http, ftp, etc.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "audio file".freeze, - "mo:level": "1".freeze, - subClassOf: ["foaf:Document".freeze, "mo:Medium".freeze], - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: ["http://purl.org/ontology/mo/Medium".freeze, "http://xmlns.com/foaf/0.1/Document".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CD, comment: "Compact Disc used as medium to record a musical manifestation.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "CD".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Composer, equivalentClass: term( onProperty: "http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, - someValuesFrom: "mo:Composition".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/ontology/mo/Composition".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "composer".freeze, - "mo:level": "2".freeze, - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Composition, comment: "\n A composition event.\n Takes as agent the composer himself.\n It produces a MusicalWork, or a MusicalExpression (when the initial \"product\" is a score, for example), or both...\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "composition".freeze, - "mo:level": "2".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Conductor, equivalentClass: term( - onProperty: "mo:conducted".freeze, - someValuesFrom: "mo:Performance".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ontology/mo/conducted".freeze, + someValuesFrom: "http://purl.org/ontology/mo/Performance".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "conductor".freeze, - "mo:level": "2".freeze, - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CorporateBody, comment: "Organization or group of individuals and/or other organizations involved in the music market.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "corporate body".freeze, - "mo:level": "1".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DAT, comment: "Digital Audio Tape used as medium to record a musical manifestation.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "DAT".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DCC, comment: "Digital Compact Cassette used as medium to record a musical manifestation.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "DCC".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DVDA, comment: "DVD-Audio used as medium to record a musical manifestation.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "DVDA".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DigitalSignal, comment: "\n A digital signal\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/ontology/mo/AnalogSignal".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "digital signal".freeze, - "mo:level": "2".freeze, - "owl:disjointWith": "mo:AnalogSignal".freeze, - subClassOf: "mo:Signal".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/Signal".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ED2K, comment: "Something available on the E-Donkey peer-2-peer filesharing network".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "ED2K".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Festival, comment: "\n A festival - musical/artistic event lasting several days, like Glastonbury, Rock Am Ring...\n We migth decompose this event (which is in fact just a classification of the space/time region related to \n a particular festival) using hasSubEvent in several performances at different space/time.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Festival".freeze, - "mo:level": "2".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Genre, comment: "\n An expressive style of music.\n \n Any taxonomy can be plug-in here. You can either define a genre by yourself, like this:\n\n :mygenre a mo:Genre; dc:title \"electro rock\".\n\n Or you can refer to a DBPedia genre (such as http://dbpedia.org/resource/Baroque_music), allowing semantic web\n clients to access easily really detailed structured information about the genre you are refering to.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Genre".freeze, - "mo:level": "2".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Instrument, comment: "\n Any of various devices or contrivances that can be used to produce musical tones or sound.\n \n Any taxonomy can be used to subsume this concept. The default one is one extracted by Ivan Herman\n from the Musicbrainz instrument taxonomy, conforming to SKOS. This concept holds a seeAlso link \n towards this taxonomy.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/ontology/mo/mit#".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Instrument".freeze, - "mo:level": "2".freeze, - "rdfs:seeAlso": "http://purl.org/ontology/mo/mit#".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Instrumentation, comment: "\n Instrumentation deals with the techniques of writing music for a specific instrument, \n including the limitations of the instrument, playing techniques and idiomatic handling of the instrument.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "instrumentation".freeze, - "mo:level": "2".freeze, - subClassOf: "mo:Arrangement".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/Arrangement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Label, comment: "Trade name of a company that produces musical works or expression of musical works.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "label".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:CorporateBody".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/CorporateBody".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Libretto, comment: "\n Libretto\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "libretto".freeze, - "mo:level": "2".freeze, - subClassOf: "mo:MusicalExpression".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Listener, equivalentClass: term( - onProperty: "mo:listened".freeze, - someValuesFrom: "mo:Performance".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ontology/mo/listened".freeze, + someValuesFrom: "http://purl.org/ontology/mo/Performance".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "listened".freeze, - "mo:level": "2".freeze, - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Lyrics, comment: "\n Lyrics\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "lyrics".freeze, - "mo:level": "2".freeze, - subClassOf: "mo:MusicalExpression".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MD, comment: "Mini Disc used as medium to record a musical manifestation.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "MD".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MagneticTape, comment: "Magnetic analogue tape used as medium to record a musical manifestation.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "MagneticTape".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Medium, comment: "A means or instrumentality for storing or communicating musical manifestation.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Medium".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:MusicalItem".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalItem".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Membership, comment: "A membership event, where one or several people belongs to a group during a particular time period.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "membership".freeze, - "mo:level": "1".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Movement, comment: "A movement is a self-contained part of a musical work. While individual or selected movements from a composition are sometimes performed separately, a performance of the complete work requires all the movements to be performed in succession.\n\nOften a composer attempts to interrelate the movements thematically, or sometimes in more subtle ways, in order that the individual\nmovements exert a cumulative effect. In some forms, composers sometimes link the movements, or ask for them to be played without a\npause between them.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "movement".freeze, - "mo:level": "2".freeze, - subClassOf: "mo:MusicalWork".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicArtist, comment: "\n A person or a group of people (or a computer :-) ), whose musical \n creative work shows sensitivity and imagination \n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "music artist".freeze, - "mo:level": "1".freeze, - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicGroup, comment: "Group of musicians, or musical ensemble, usually popular or folk, playing parts of or improvising off of a musical arrangement. ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "music group".freeze, - "mo:level": "1".freeze, - subClassOf: ["foaf:Group".freeze, "mo:MusicArtist".freeze], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: ["http://purl.org/ontology/mo/MusicArtist".freeze, "http://xmlns.com/foaf/0.1/Group".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicalExpression, comment: "\nThe intellectual or artistic realization of a work in the form of alpha-numeric, musical, or choreographic notation, sound, etc., or any combination of such forms. \n\n\nFor example:\n\nWork #1 Franz Schubert's Trout quintet\n\n * Expression #1 the composer's score\n * Expression #2 sound issued from the performance by the Amadeus Quartet and Hephzibah Menuhin on piano\n * Expression #3 sound issued from the performance by the Cleveland Quartet and Yo-Yo Ma on the cello\n * . . . . \n\nThe Music Ontology defines the following sub-concepts of a MusicalExpression, which should be used instead of MusicalExpression itself: Score (the\nresult of an arrangement), Sound (produced during a performance), Signal. However, it is possible to stick to FRBR and bypass the worflow\nmechanism this ontology defines by using the core FRBR properties on such objects. But it is often better to use events to interconnect such \nexpressions (allowing to go deeply into the production process - `this performer was playing this particular instrument at that\nparticular time').\n \n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "musical expression".freeze, - "mo:level": "1".freeze, subClassOf: "http://purl.org/vocab/frbr/core#Expression".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicalItem, comment: "A single exemplar of a musical expression.\n \nFor example, it could be a single exemplar of a CD. This is normally an single object (a CD) possessed by somebody.\n\nFrom the FRBR final report: The entity defined as item is a concrete entity. It is in many instances a single physical object (e.g., a copy of a one-volume monograph, a single audio cassette, etc.). There are instances, however, where the entity defined as item comprises more than one physical object (e.g., a monograph issued as two separately bound volumes, a recording issued on three separate compact discs, etc.).\n\nIn terms of intellectual content and physical form, an item exemplifying a manifestation is normally the same as the manifestation itself. However, variations may occur from one item to another, even when the items exemplify the same manifestation, where those variations are the result of actions external to the intent of the producer of the manifestation (e.g., damage occurring after the item was produced, binding performed by a library, etc.). \n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "MusicalItem".freeze, - "mo:level": "1".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicalManifestation, comment: "\n\nThis entity is related to the edition/production/publication of a musical expression (musical manifestation are closely related with the music industry (their terms, concepts, definitions, methods (production, publication, etc.), etc.)\n \nFrom the FRBR final report: The entity defined as manifestation encompasses a wide range of materials, including manuscripts, books, periodicals, maps, posters, sound recordings, films, video recordings, CD-ROMs, multimedia kits, etc. As an entity, manifestation represents all the physical objects that bear the same characteristics, in respect to both intellectual content and physical form.\n\n\nWork #1 J. S. Bach's Six suites for unaccompanied cello\n\n * Expression #1 sound issued during the performance by Janos Starker recorded in 1963 and 1965\n o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1965 by Mercury\n o Manifestation #2 recordings re-released on compact disc in 1991 by Mercury \n * Expression #2 sound issued during the performances by Yo-Yo Ma recorded in 1983\n o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1983 by CBS Records\n o Manifestation #2 recordings re-released on compact disc in 1992 by CBS Records \n\n \nChanges that occur deliberately or even inadvertently in the production process that affect the copies result, strictly speaking, in a new manifestation. A manifestation resulting from such a change may be identified as a particular \"state\" or \"issue\" of the publication.\n\nChanges that occur to an individual copy after the production process is complete (e.g., the loss of a page, rebinding, etc.) are not considered to result in a new manifestation. That copy is simply considered to be an exemplar (or item) of the manifestation that deviates from the copy as produced.\n\nWith the entity defined as manifestation we can describe the physical characteristics of a set of items and the characteristics associated with the production and distribution of that set of items that may be important factors in enabling users to choose a manifestation appropriate to their physical needs and constraints, and to identify and acquire a copy of that manifestation.\n\nDefining manifestation as an entity also enables us to draw relationships between specific manifestations of a work. We can use the relationships between manifestations to identify, for example, the specific publication that was used to create a microreproduction. \n\n".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "musical manifestation".freeze, - "mo:level": "1".freeze, subClassOf: "http://purl.org/vocab/frbr/core#Manifestation".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicalWork, comment: "\n Distinct intellectual or artistic musical creation.\n \nFrom the FRBR final report: A work is an abstract entity; there is no single material object one can point to as the work. We recognize the work through individual realizations or expressions of the work, but the work itself exists only in the commonality of\ncontent between and among the various expressions of the work. When we speak of Homer's Iliad as a work, our point of reference is not a particular recitation or text of the work, but the intellectual creation that lies behind all the various expressions of the work. \n\nFor example:\n\nwork #1 J. S. Bach's The art of the fugue\n\n \n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "musical work".freeze, - "mo:level": "2".freeze, subClassOf: "http://purl.org/vocab/frbr/core#Work".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Orchestration, comment: "\n Orchestration includes, in addition to instrumentation, the handling of groups of instruments and their balance and interaction.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "orchestration".freeze, - "mo:level": "2".freeze, - subClassOf: "mo:Arrangement".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/Arrangement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Performance, comment: "\n A performance event. \n It might include as agents performers, engineers, conductors, or even listeners.\n It might include as factors a score, a MusicalWork, musical instruments. \n It might produce a sound:-)\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "performance".freeze, - "mo:level": "2".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Performer, equivalentClass: term( - onProperty: "mo:performed".freeze, - someValuesFrom: "mo:Performance".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ontology/mo/performed".freeze, + someValuesFrom: "http://purl.org/ontology/mo/Performance".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "performer".freeze, - "mo:level": "2".freeze, - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PublishedLibretto, comment: "A published libretto".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "published libretto".freeze, - "mo:level": "2".freeze, - subClassOf: "mo:MusicalManifestation".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PublishedLyrics, comment: "Published lyrics, as a book or as a text file, for example".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "published lyrics".freeze, - "mo:level": "2".freeze, - subClassOf: "mo:MusicalManifestation".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PublishedScore, comment: "A published score (subclass of MusicalManifestation)".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "published score".freeze, - "mo:level": "2".freeze, - subClassOf: "mo:MusicalManifestation".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Record, comment: "A published record (manifestation which first aim is to render the product of a recording)".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "record".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:MusicalManifestation".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Recording, comment: "\n A recording event.\n Takes a sound as a factor to produce a signal (analog or digital).\n The location of such events (if any) is the actual location of the corresponding\n microphone or the \"recording device\".\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "recording".freeze, - "mo:level": "2".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RecordingSession, comment: "A set of performances/recordings/mastering events. This event can be decomposed in its constituent events using event:sub_event".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "recording session".freeze, - "mo:level": "2".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Release, comment: "A specific release, with barcode, box, liner notes, cover art, and a number of records".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "release".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:MusicalManifestation".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReleaseEvent, comment: "A release event, in a particular place (e.g. a country) at a particular time. Other factors of this event might include cover art, liner notes, box, etc. or a release grouping all these.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "release event".freeze, - "mo:level": "1".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReleaseStatus, comment: "Musical manifestation release status.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "release status".freeze, - "mo:level": "1".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReleaseType, comment: "\n Release type of a particular manifestation, such as \"album\" or \"interview\"...\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Release type".freeze, - "mo:level": "1".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SACD, comment: "Super Audio Compact Disc used as medium to record a musical manifestation.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "SACD".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Score, comment: "\n Here, we are dealing with the informational object (the MusicalExpression), not the actually \"published\" score.\n This may be, for example, the product of an arrangement process.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "score".freeze, - "mo:level": "2".freeze, - subClassOf: "mo:MusicalExpression".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Show, comment: "\n A show - a musical event lasting several days, in a particular venue. Examples can be\n \"The Magic Flute\" at the Opera Bastille, August 2005, or a musical in the west end...\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Show".freeze, - "mo:level": "2".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Signal, comment: "\n A subclass of MusicalExpression, representing a signal, for example a master signal produced by a performance and a recording.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "signal".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:MusicalExpression".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SignalGroup, comment: "\n A musical expression representing a group of signals, for example a set of masters resulting from a whole recording/mastering session.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "signal group".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:MusicalExpression".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SoloMusicArtist, comment: "Single person whose musical creative work shows sensitivity and imagination.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "solo music artist".freeze, - "mo:level": "1".freeze, - subClassOf: ["foaf:Person".freeze, "mo:MusicArtist".freeze], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: ["http://purl.org/ontology/mo/MusicArtist".freeze, "http://xmlns.com/foaf/0.1/Person".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Sound, comment: "\n A subclass of MusicalExpression, representing a sound. Realisation of a MusicalWork during a musical Performance.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "sound".freeze, - "mo:level": "2".freeze, - subClassOf: ["http://purl.org/NET/c4dm/event.owl#Event".freeze, "mo:MusicalExpression".freeze], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: ["http://purl.org/NET/c4dm/event.owl#Event".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SoundEngineer, equivalentClass: term( - onProperty: "mo:engineered".freeze, - someValuesFrom: "mo:Performance".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ontology/mo/engineered".freeze, + someValuesFrom: "http://purl.org/ontology/mo/Performance".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "sound engineer".freeze, - "mo:level": "2".freeze, - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Stream, comment: "Transmission over a network used as medium to broadcast a musical manifestation".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Stream".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Torrent, comment: "Something available on the Bittorrent peer-2-peer filesharing network".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Torrent".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Track, comment: "A track on a particular record".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "track".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:MusicalManifestation".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Transcription, comment: "Transcription event".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "transcription".freeze, - "mo:level": "2".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Vinyl, comment: "Vinyl used as medium to record a musical manifestation".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Vinyl".freeze, - "mo:level": "1".freeze, - subClassOf: "mo:Medium".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://purl.org/ontology/mo/Medium".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :activity, comment: "Relates an artist to an activity period".freeze, - domain: "mo:MusicArtist".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "activity".freeze, - "mo:level": "1".freeze, - range: "mo:Activity".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/ontology/mo/Activity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :activity_end, comment: "Relates an artist to a date at which its activity ended".freeze, - domain: "mo:MusicArtist".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "activity end".freeze, - "mo:level": "1".freeze, - range: "xsd:date".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :activity_start, comment: "Relates an artist to a date at which its activity started".freeze, - domain: "mo:MusicArtist".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "activity start".freeze, - "mo:level": "1".freeze, - range: "xsd:date".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :amazon_asin, comment: "Used to link a work or the expression of a work to its corresponding Amazon ASINs page.".freeze, domain: term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://purl.org/vocab/frbr/core#Item".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "amazon_asin".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :arranged_in, comment: "\n Associates a work to an arrangement event where it was arranged\n ".freeze, - domain: "mo:MusicalWork".freeze, - inverseOf: "mo:arrangement_of".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalWork".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/arrangement_of".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "arranged in".freeze, - "mo:level": "2".freeze, - range: "mo:Arrangement".freeze, + range: "http://purl.org/ontology/mo/Arrangement".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#isFactorOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :arrangement_of, comment: "\n Associates an arrangement event to a work\n ".freeze, - domain: "mo:Arrangement".freeze, - inverseOf: "mo:arranged_in".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Arrangement".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/arranged_in".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "arrangement of".freeze, - "mo:level": "2".freeze, - range: "mo:MusicalWork".freeze, + range: "http://purl.org/ontology/mo/MusicalWork".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :artist, comment: "Relates a membership event with the corresponding artist".freeze, - domain: "mo:Membership".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Membership".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "artist".freeze, - "mo:level": "1".freeze, - range: "foaf:Agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :availableAs, - equivalentProperty: "mo:available_as".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/available_as".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :available_as, comment: "\n Relates a musical manifestation to a musical item (this album, and my particular cd). By using\n this property, there is no assumption on wether the full content is available on the linked item.\n To be explicit about this, you can use a sub-property, such as mo:item (the full manifestation\n is available on that item) or mo:preview (only a part of the manifestation is available on\n that item).\n\n This is a subproperty of frbr:examplar.\n ".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - range: "mo:MusicalItem".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://purl.org/ontology/mo/MusicalItem".freeze, subPropertyOf: "http://purl.org/vocab/frbr/core#exemplar".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :biography, comment: "Used to link an artist to their online biography.".freeze, - domain: "mo:MusicArtist".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "biography".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :bitsPerSample, comment: "\n Associates a digital signal to the number a bits used to encode one sample. Range is xsd:int.\n ".freeze, - domain: "mo:DigitalSignal".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - range: "xsd:int".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://purl.org/ontology/mo/DigitalSignal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :bpm, comment: "\n Indicates the BPM of a MusicalWork or a particular Performance \n Beats per minute: the pace of music measured by the number of beats occurring in 60 seconds.\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicalWork".freeze, "mo:Performance".freeze, "mo:Signal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Signal".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "bpm".freeze, - "mo:level": "2".freeze, - range: "xsd:float".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :catalogue_number, comment: "Links a release with the corresponding catalogue number".freeze, - domain: "mo:Release".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Release".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "catalogue number".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mo:uuid".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :channels, comment: "\n Associates a signal to the number of channels it holds (mono --> 1, stereo --> 2). Range is xsd:int.\n ".freeze, - domain: "mo:Signal".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - range: "xsd:int".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://purl.org/ontology/mo/Signal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :collaborated_with, comment: "Used to relate two collaborating people on a work.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "collaborated_with".freeze, - "mo:level": "1".freeze, - range: "foaf:Agent".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze], - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :compilation_of, comment: "Indicates that a musical manifestation is a compilation of several Signals.".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "compilation_of".freeze, - "mo:level": "1".freeze, - range: "mo:Signal".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/Signal".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :compiled, comment: "Used to relate an person or a group of person who compiled the manifestation of a musical work.".freeze, - domain: "mo:MusicArtist".freeze, - inverseOf: "mo:compiler".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/compiler".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "compiled".freeze, - "mo:level": "1".freeze, - range: "mo:MusicalManifestation".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :compiler, comment: "Used to relate the manifestation of a musical work to a person or a group of person who compiled it.".freeze, - domain: "mo:MusicalManifestation".freeze, - inverseOf: "mo:compiled".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/compiled".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "compiler".freeze, - "mo:level": "1".freeze, - range: "mo:MusicArtist".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/MusicArtist".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :composed_in, comment: "\n Associates a MusicalWork to the Composition event pertaining\n to its creation. For example, I might use this property to associate\n the Magic Flute to its composition event, occuring during 1782 and having as\n a mo:composer Mozart.\n ".freeze, - domain: "mo:MusicalWork".freeze, - inverseOf: "mo:produced_work".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalWork".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/produced_work".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "composed in".freeze, - "mo:level": "2".freeze, - range: "mo:Composition".freeze, + range: "http://purl.org/ontology/mo/Composition".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#producedIn".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :composer, comment: "\n Associates a composition event to the actual composer. For example,\n this property could link the event corresponding to the composition of the\n Magic Flute in 1782 to Mozart himself (who obviously has a FOAF profile:-) ).\n ".freeze, - domain: "mo:Composition".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Composition".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "composer".freeze, - "mo:level": "2".freeze, - range: "foaf:Agent".freeze, + range: "http://xmlns.com/foaf/0.1/Agent".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :conducted, comment: "Relates agents to the performances they were conducting".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "mo:conductor".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/conductor".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "conducted".freeze, - "mo:level": "2".freeze, - range: "mo:Performance".freeze, + range: "http://purl.org/ontology/mo/Performance".freeze, subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, "http://purl.org/vocab/bio/0.1/event".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :conductor, comment: "Relates a performance to the conductor involved".freeze, - domain: "mo:Performance".freeze, - inverseOf: "mo:conducted".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "2".freeze, - range: "foaf:Agent".freeze, + domain: "http://purl.org/ontology/mo/Performance".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/conducted".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://xmlns.com/foaf/0.1/Agent".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :contains_sample_from, comment: "\n Relates a signal to another signal, which has been sampled.\n ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "contains_sample_from".freeze, - "mo:level": "1".freeze, - subPropertyOf: "mo:derived_from".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :derived_from, comment: "A related signal from which the described signal is derived.".freeze, - domain: "mo:Signal".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Signal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "derived from".freeze, - "mo:level": "1".freeze, - range: "mo:Signal".freeze, - subPropertyOf: "dc:source".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/ontology/mo/Signal".freeze, + subPropertyOf: "http://purl.org/dc/terms/source".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :discography, comment: "Used to links an artist to an online discography of their musical works. The discography should provide a summary of each released musical work of the artist.".freeze, - domain: "mo:MusicArtist".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "discography".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :discogs, comment: "Used to link a musical work or the expression of a musical work, an artist or a corporate body to to its corresponding Discogs page.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicalWork".freeze, "mo:MusicalExpression".freeze, "mo:MusicalManifestation".freeze, "mo:MusicArtist".freeze, "mo:CorporateBody".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "discogs".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :djmix_of, comment: "Indicates that all (or most of) the tracks of a musical work or the expression of a musical work were mixed together from all (or most of) the tracks from another musical work or the expression of a musical work to form a so called DJ-Mix. \n \nThe tracks might have been altered by pitching (so that the tempo of one track matches the tempo of the following track) and fading (so that one track blends in smoothly with the other). If the tracks have been more substantially altered, the \"mo:remix\" relationship type is more appropriate. ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "djmix_of".freeze, - "mo:level": "1".freeze, - subPropertyOf: "mo:derived_from".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :djmixed, comment: "Used to relate an artist who djmixed a musical work or the expression of a musical work. \n \nThe artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. ".freeze, - domain: "mo:MusicArtist".freeze, - inverseOf: "mo:djmixed_by".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/djmixed_by".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "djmixed".freeze, - "mo:level": "1".freeze, - range: "mo:Signal".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/Signal".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :djmixed_by, comment: "Used to relate a work or the expression of a work to an artist who djmixed it. \n \nThe artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. ".freeze, - domain: "mo:Signal".freeze, - inverseOf: "mo:djmixed".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Signal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/djmixed".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "djmixed_by".freeze, - "mo:level": "1".freeze, - range: "mo:MusicArtist".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/MusicArtist".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :download, comment: "\n This property can be used to link from a person to the website where they make their works available, or from\n a manifestation (a track or an album, for example) to a web page where it is available for\n download.\n \n It is better to use one of the three sub-properties instead of this one in order to specify wether the\n content can be accessed for free (mo:freedownload), if it is just free preview material (mo:previewdownload), or\n if it can be accessed for some money (mo:paiddownload) (this includes links to the Amazon store, for example).\n\n This property MUST be used only if the content is just available through a web page (holding, for example\n a Flash application) - it is better to link to actual content directly through the use of mo:available_as and\n mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even\n less to rip streams from Flash applications can still access the audio content.\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "foaf:Agent".freeze, "mo:CorporateBody".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "download".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :duration, comment: "The duration of a track or a signal in ms".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:Track".freeze, "mo:Signal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/Track".freeze, "http://purl.org/ontology/mo/Signal".freeze) ), - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - range: "xsd:float".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :ean, comment: "The European Article Number (EAN) is a universal identifier for products, commonly printed in form of barcodes on them. The numbers represented by those codes can either be 8 or 13 digits long, with the 13-digit-version being most common. EANs form a superset of the North American Universal Product Code (UPC) as every UPC can be made an EAN by adding a leading zero to it. Additionally every EAN is also a Japanese Article Number (JAN). The identifiers were formerly assigned by EAN International which merged with Uniform Code Council (UCC, the guys behind the UPCs) and Electronic Commerce Council of Canada (ECCC) to become GS1. ".freeze, - domain: "mo:Release".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Release".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "ean".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mo:gtin".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/ontology/mo/gtin".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :encodes, comment: "\n Relates a MusicalItem (a track on a particular CD, an audio file, a stream somewhere) to the signal it encodes.\n\n This is usually a lower-resolution version of the master signal (issued from a Recording event).\n ".freeze, - domain: "mo:MusicalItem".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalItem".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "encodes".freeze, - "mo:level": "1".freeze, - range: "mo:Signal".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/Signal".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :encoding, comment: "Method used to convert analog electronic signals into digital format such as \"MP3 CBR @ 128kbps\", \"OGG @ 160kbps\", \"FLAC\", etc.".freeze, - domain: "mo:AudioFile".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/AudioFile".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "encoding".freeze, - "mo:level": "1".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :engineer, comment: "Relates a performance or a recording to the engineer involved".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:Performance".freeze, "mo:Recording".freeze, "mo:RecordingSession".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Recording".freeze, "http://purl.org/ontology/mo/RecordingSession".freeze) ), - inverseOf: "mo:engineered".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "2".freeze, - range: "foaf:Agent".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/engineered".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://xmlns.com/foaf/0.1/Agent".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :engineered, comment: "Relates agents to the performances/recordings they were engineering in".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "mo:engineer".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/engineer".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "engineered".freeze, - "mo:level": "2".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("mo:Performance".freeze, "mo:Recording".freeze, "mo:RecordingSession".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Recording".freeze, "http://purl.org/ontology/mo/RecordingSession".freeze) ), subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, "http://purl.org/vocab/bio/0.1/event".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :eventHomePage, - equivalentProperty: "mo:event_homepage".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/event_homepage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :event_homepage, comment: "Links a particular event to a web page".freeze, domain: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "event homepage".freeze, - "mo:level": "2".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :exchange_item, comment: "A person, a group of person or an organization exchanging an exemplar of a single manifestation.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "exchange_item".freeze, - "mo:level": "1".freeze, range: "http://purl.org/vocab/frbr/core#Item".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :fanpage, comment: "Used to link an artist to a fan-created webpage devoted to that artist.".freeze, - domain: "mo:MusicArtist".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "fanpage".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :free_download, comment: "\n This property can be used to link from a person to the website where they make their works available, or from\n a manifestation (a track or an album, for example) to a web page where it is available for free \n download.\n\n This property MUST be used only if the content is just available through a web page (holding, for example\n a Flash application) - it is better to link to actual content directly through the use of mo:available_as and \n mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even\n less to rip streams from Flash applications can still access the audio content.\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "foaf:Agent".freeze, "mo:CorporateBody".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "free download".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: ["foaf:isPrimaryTopicOf".freeze, "mo:download".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: ["http://purl.org/ontology/mo/download".freeze, "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :freedownload, - equivalentProperty: "mo:free_download".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/free_download".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :genre, comment: "\n Associates an event (like a performance or a recording) to a particular musical genre.\n Further version of this property may also include works and scores in the domain.\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("foaf:Agent".freeze, "mo:Performance".freeze, "mo:Arrangement".freeze, "mo:Composition".freeze, "mo:Recording".freeze, "mo:RecordingSession".freeze, "mo:MusicalWork".freeze, "mo:MusicalExpression".freeze, "mo:MusicalManifestation".freeze, "mo:MusicalItem".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Arrangement".freeze, "http://purl.org/ontology/mo/Composition".freeze, "http://purl.org/ontology/mo/Recording".freeze, "http://purl.org/ontology/mo/RecordingSession".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "genre".freeze, - "mo:level": "2".freeze, - range: "mo:Genre".freeze, + range: "http://purl.org/ontology/mo/Genre".freeze, subPropertyOf: "http://purl.org/ontology/ao/core#genre".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :grid, comment: "The Global Release Identifier (GRid) is a system for uniquely identifying Releases of music over electronic networks (that is, online stores where you can buy music as digital files). As that it can be seen as the equivalent of the BarCode (or more correctly the GTIN) as found on physical releases of music. Like the ISRC (a code for identifying single recordings as found on releases) it was developed by the IFPI but it does not appear to be a standard of the ISO.".freeze, - domain: "mo:Release".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Release".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "GRid".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mo:uuid".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :group, comment: "Relates a membership event with the corresponding group".freeze, - domain: "mo:Membership".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Membership".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "group".freeze, - "mo:level": "1".freeze, - range: "foaf:Group".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Group".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :gtin, comment: "GTIN is a grouping term for EANs and UPCs. In common speech those are called barcodes although the barcodes are just a representation of those identifying numbers.".freeze, - domain: "mo:Release".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Release".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "gtin".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :has_track, - equivalentProperty: "mo:track".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/track".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :headliner, comment: "Relates a performance to the headliner(s) involved".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "headliner".freeze, - "mo:level": "2".freeze, - subPropertyOf: "mo:performer".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + subPropertyOf: "http://purl.org/ontology/mo/performer".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :homepage, comment: "Links an artist, a record, etc. to a corresponding web page".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicalWork".freeze, "mo:MusicArtist".freeze, "mo:MusicalExpression".freeze, "mo:MusicalManifestation".freeze, "mo:MusicalItem".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "homepage".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :image, comment: "Indicates a pictorial image (JPEG, GIF, PNG, Etc.) of a musical work, the expression of a musical work, the manifestation of a work or the examplar of a manifestation.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicalWork".freeze, "mo:MusicArtist".freeze, "mo:MusicalExpression".freeze, "mo:MusicalManifestation".freeze, "mo:MusicalItem".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "image".freeze, - "mo:level": "1".freeze, - range: "foaf:Image".freeze, - subPropertyOf: "foaf:depiction".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Image".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/depiction".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :imdb, comment: "Used to link an artist, a musical work or the expression of a musical work to their equivalent page on IMDb, the InternetMovieDatabase.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicalWork".freeze, "mo:MusicalExpression".freeze, "mo:MusicalManifestation".freeze, "mo:MusicArtist".freeze, "mo:CorporateBody".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "imdb".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :instrument, comment: "Relates a performance to a musical instrument involved".freeze, - domain: "mo:Performance".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "2".freeze, - range: "mo:Instrument".freeze, + domain: "http://purl.org/ontology/mo/Performance".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://purl.org/ontology/mo/Instrument".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :interpreter, comment: "Adds an involved music artist, who interpreted, remixed, or otherwise modified an existing signal, which resulted in the signal that is here the subject of this relation.".freeze, - domain: "mo:Signal".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Signal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "has interpeter".freeze, - "mo:level": "1".freeze, - range: "mo:MusicArtist".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/ontology/mo/MusicArtist".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :ipi, comment: "The Interested Parties Information Code (IPI) is an ISO standard similar to ISBNs for identifying the people or groups with some involvement with a particular musical work / compositions.".freeze, - domain: "mo:MusicArtist".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "ipi".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mo:uuid".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :ismn, comment: "The International Standard Music Number (ISMN) is an ISO standard similar to ISBNs for identifying printed music publications".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:PublishedLyrics".freeze, "mo:PublishedLibretto".freeze, "mo:PublishedScore".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/PublishedLyrics".freeze, "http://purl.org/ontology/mo/PublishedLibretto".freeze, "http://purl.org/ontology/mo/PublishedScore".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "ismn".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mo:uuid".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :isrc, comment: "\n The ISRC (International Standard Recording Code) is the international identification system for sound recordings and music videorecordings. \n Each ISRC is a unique and permanent identifier for a specific recording which can be permanently encoded into a product as its digital fingerprint. \n Encoded ISRC provide the means to automatically identify recordings for royalty payments.\n ".freeze, - domain: "mo:Signal".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Signal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "isrc".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mo:uuid".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :iswc, comment: "Links a musical work to the corresponding ISWC number".freeze, - domain: "mo:MusicalWork".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalWork".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "iswc".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mo:uuid".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :item, comment: "\n Relates a musical manifestation to a musical item (this album, and my particular cd) holding the\n entire manifestation, and not just a part of it.\n ".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - range: "mo:MusicalItem".freeze, - subPropertyOf: "mo:available_as".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://purl.org/ontology/mo/MusicalItem".freeze, + subPropertyOf: "http://purl.org/ontology/mo/available_as".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :key, comment: "\n Indicated the key used by the musicians during a performance, or the key of a MusicalWork.\n Any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicalWork".freeze, "mo:Performance".freeze, "mo:Signal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Signal".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "key".freeze, - "mo:level": "2".freeze, range: "http://purl.org/NET/c4dm/keys.owl#Key".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :label, comment: "Associates a release event with the label releasing the record".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:Release".freeze, "mo:MusicArtist".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/Release".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "label".freeze, - "mo:level": "1".freeze, - range: "mo:Label".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/ontology/mo/Label".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :lc, comment: "The Label Code (LC) was introduced in 1977 by the IFPI (International Federation of Phonogram and Videogram Industries) in order to unmistakably identify the different record labels (see Introduction, Record labels) for rights purposes. The Label Code consists historically of 4 figures, presently being extended to 5 figures, preceded by LC and a dash (e.g. LC-0193 = Electrola; LC-0233 = His Master's Voice). Note that the number of countries using the LC is limited, and that the code given on the item is not always accurate.".freeze, - domain: "mo:Label".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Label".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "lc".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mo:uuid".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :level, comment: "\n This annotation property associates to a particular Music Ontology term the corresponding\n expressiveness level. These levels can be:\n\n - 1: Only editorial/Musicbrainz type information\n - 2: Workflow information\n - 3: Even decomposition\n \n This property is mainly used for specification generation.\n ".freeze, - isDefinedBy: "mo:".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "level".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :licence, comment: "Used to link a work or the expression of a work to the license under which they can be manipulated (downloaded, modified, etc). \n \nThis is usually used to link to a Creative Commons licence.".freeze, domain: term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "licence".freeze, - "mo:level": "1".freeze, range: "http://web.resource.org/cc/License".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :listened, comment: "Relates agents to the performances they were listening in".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "mo:listener".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/listener".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "listened".freeze, - "mo:level": "2".freeze, - range: "mo:Performance".freeze, + range: "http://purl.org/ontology/mo/Performance".freeze, subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, "http://purl.org/vocab/bio/0.1/event".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :listener, comment: "Relates a performance to the listener involved".freeze, - domain: "mo:Performance".freeze, - inverseOf: "mo:listened".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "2".freeze, - range: "foaf:Agent".freeze, + domain: "http://purl.org/ontology/mo/Performance".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/listened".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://xmlns.com/foaf/0.1/Agent".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :lyrics, comment: "Associates lyrics with a musical work".freeze, - domain: "mo:MusicalWork".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalWork".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "lyrics".freeze, - "mo:level": "2".freeze, - range: "mo:Lyrics".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/ontology/mo/Lyrics".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :mailorder, comment: "Used to link a musical work or the expression of a musical work to a website where people can buy a copy of the musical manifestation.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "mo:MusicArtist".freeze, "mo:CorporateBody".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "mailorder".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :mashup_of, comment: "Indicates that musical works or the expressions of a musical work were mashed up on this album or track. \n \nThis means that two musical works or the expressions of a musical work by different artists are mixed together, over each other, or otherwise combined into a single musical work (usually by a third artist, the remixer).".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "mashup_of".freeze, - "mo:level": "1".freeze, - subPropertyOf: "mo:derived_from".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :media_type, comment: "The mediatype (file format or MIME type, or physical medium) of a musical manifestation, e.g. a MP3, CD or vinyl.".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "has media type".freeze, - "mo:level": "1".freeze, - range: "dc:MediaType".freeze, - subPropertyOf: "dc:format".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/dc/terms/MediaType".freeze, + subPropertyOf: "http://purl.org/dc/terms/format".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :medley_of, comment: "Indicates that a musical expression is a medley of several other musical expressions. \n \nThis means that the orignial musical expression were rearranged to create a new musical expression in the form of a medley. ".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "medley_of".freeze, - "mo:level": "1".freeze, - subPropertyOf: "mo:derived_from".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :member, comment: "\n Indicates a member of a musical group\n ".freeze, - domain: "mo:MusicGroup".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicGroup".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "member".freeze, - "mo:level": "1".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "foaf:member".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/member".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :member_of, comment: "Inverse of the foaf:member property".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "foaf:member".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/member".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "member_of".freeze, - "mo:level": "1".freeze, - range: "foaf:Group".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/foaf/0.1/Group".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :membership, comment: "Relates an agent with related membership events".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "membership".freeze, - "mo:level": "1".freeze, - range: "mo:Membership".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/ontology/mo/Membership".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :meter, comment: "Associates a musical work or a score with its meter".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicalWork".freeze, "mo:Score".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/Score".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "meter".freeze, - "mo:level": "2".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :movement, comment: "Indicates that a musical work has movements".freeze, - domain: "mo:MusicalWork".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalWork".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "has_movement".freeze, - "mo:level": "2".freeze, - range: "mo:Movement".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/Movement".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :movementNum, - equivalentProperty: "mo:movement_number".freeze, - type: "owl:DatatypeProperty".freeze + equivalentProperty: "http://purl.org/ontology/mo/movement_number".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :movement_number, comment: "Indicates the position of a movement in a musical work.".freeze, - domain: "mo:Movement".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Movement".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "movement number".freeze, - "mo:level": "2".freeze, - range: "xsd:int".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :musicbrainz, comment: "\n Linking an agent, a track or a record to its corresponding Musicbrainz page.\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicalWork".freeze, "mo:MusicalManifestation".freeze, "foaf:Agent".freeze, "mo:Signal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/Signal".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "musicbrainz".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :musicbrainz_guid, comment: "Links an object to the corresponding Musicbrainz identifier".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicArtist".freeze, "mo:Track".freeze, "mo:Record".freeze, "mo:SignalGroup".freeze, "mo:Signal".freeze, "mo:ReleaseEvent".freeze, "mo:Label".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/Track".freeze, "http://purl.org/ontology/mo/Record".freeze, "http://purl.org/ontology/mo/SignalGroup".freeze, "http://purl.org/ontology/mo/Signal".freeze, "http://purl.org/ontology/mo/ReleaseEvent".freeze, "http://purl.org/ontology/mo/Label".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "Musicbrainz GUID".freeze, - "mo:level": "1".freeze, - subPropertyOf: "mo:uuid".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :musicmoz, comment: "Used to link an artist, a musical work or the expression of a musical work to its corresponding MusicMoz page.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicArtist".freeze, "mo:MusicalWork".freeze, "mo:MusicalExpression".freeze, "mo:MusicalManifestation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "musicmoz".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :myspace, comment: "Used to link a person to its corresponding MySpace page.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "myspace".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :olga, comment: "Used to link a track to a tabulature file for track in the On-Line Guitar Archive.".freeze, - domain: "mo:Track".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Track".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "olga".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :onlinecommunity, comment: "Used to link a person with an online community web page like a blog, a wiki, a forum, a livejournal page, Etc.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "onlinecommunity".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :opus, comment: "\n Used to define a creative work, especially a musical composition numbered to designate the order of a composer's works.\n ".freeze, - domain: "mo:MusicalWork".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalWork".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "opus".freeze, - "mo:level": "2".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :origin, comment: "Relates an artist to its geographic origin".freeze, - domain: "mo:MusicArtist".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "origin".freeze, - "mo:level": "1".freeze, - range: "geo:SpatialThing".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :other_release_of, comment: "Indicates that two musical manifestations are essentially the same.".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "other_release_of".freeze, - "mo:level": "1".freeze, - range: "mo:MusicalManifestation".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze], - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :paid_download, comment: "\n Provide a link from an artist to a web page where all of that artist's musical work is available for some money,\n or a link from a manifestation (record/track, for example) to a web page providing a paid access to this manifestation.\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "mo:MusicArtist".freeze, "mo:CorporateBody".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "paid download".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: ["foaf:isPrimaryTopicOf".freeze, "mo:download".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: ["http://purl.org/ontology/mo/download".freeze, "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :paiddownload, - equivalentProperty: "mo:paid_download".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/paid_download".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :performance_of, comment: "\n Associates a Performance to a musical work or an arrangement that is being used as a factor in it.\n For example, I might use this property to attach the Magic Flute musical work to \n a particular Performance.\n ".freeze, - domain: "mo:Performance".freeze, - inverseOf: "mo:performed_in".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Performance".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/performed_in".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "performance of".freeze, - "mo:level": "2".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("mo:Score".freeze, "mo:MusicalWork".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/Score".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze) ), subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :performed, comment: "Relates agents to the performances they were performing in".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "mo:performer".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/performer".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "performed".freeze, - "mo:level": "2".freeze, - range: "mo:Performance".freeze, + range: "http://purl.org/ontology/mo/Performance".freeze, subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, "http://purl.org/vocab/bio/0.1/event".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :performed_in, comment: "\n Associates a Musical Work or an Score to Performances in which they were\n a factor. For example, I might use this property in order to \n associate the Magic Flute to a particular performance at the Opera\n Bastille last year.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:Score".freeze, "mo:MusicalWork".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/Score".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze) ), - inverseOf: "mo:performance_of".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/performance_of".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "performed in".freeze, - "mo:level": "2".freeze, - range: "mo:Performance".freeze, + range: "http://purl.org/ontology/mo/Performance".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#isFactorOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :performer, comment: "Relates a performance to the performers involved".freeze, - domain: "mo:Performance".freeze, - inverseOf: "mo:performed".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "2".freeze, - range: "foaf:Agent".freeze, + domain: "http://purl.org/ontology/mo/Performance".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/performed".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://xmlns.com/foaf/0.1/Agent".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :possess_item, comment: "A person, a group of person or an organization possessing an exemplar of a single manifestation.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "possess_item".freeze, - "mo:level": "1".freeze, range: "http://purl.org/vocab/frbr/core#Item".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :preview, comment: "\n Relates a musical manifestation to a musical item (this album, and my particular cd), which holds\n a preview of the manifestation (eg. one track for an album, or a snippet for a track)\n ".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - range: "mo:MusicalItem".freeze, - subPropertyOf: "mo:available_as".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://purl.org/ontology/mo/MusicalItem".freeze, + subPropertyOf: "http://purl.org/ontology/mo/available_as".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :preview_download, comment: "\n This property can be used to link from a person to the website where they make previews of their works available, or from\n a manifestation (a track or an album, for example) to a web page where a preview download is available.\n\n This property MUST be used only if the content is just available through a web page (holding, for example\n a Flash application) - it is better to link to actual content directly through the use of mo:available_as and\n mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even\n less to rip streams from Flash applications can still access the audio content.\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "foaf:Agent".freeze, "mo:CorporateBody".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "preview download".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: ["foaf:isPrimaryTopicOf".freeze, "mo:download".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: ["http://purl.org/ontology/mo/download".freeze, "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :primary_instrument, comment: "Indicates that an artist primarily plays an instrument, or that a member was primarily playing a particular instrument during his membership".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:Membership".freeze, "foaf:Agent".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/Membership".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "primary instrument".freeze, - "mo:level": "1".freeze, - range: "mo:Instrument".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/ontology/mo/Instrument".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :produced, comment: "Used to relate an person or a group of person who produced the manifestation of a work.".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "mo:producer".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/producer".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "produced".freeze, - "mo:level": "1".freeze, - range: "mo:MusicalManifestation".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :produced_score, comment: "\n Associates an arrangement or a composition event to a score product (score here does not refer to a published score, but more\n an abstract arrangement of a particular work).\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:Composition".freeze, "mo:Arrangement".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/Composition".freeze, "http://purl.org/ontology/mo/Arrangement".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "produced score".freeze, - "mo:level": "2".freeze, - range: "mo:Score".freeze, + range: "http://purl.org/ontology/mo/Score".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :produced_signal, comment: "\n Associates a Recording to the outputted signal.\n ".freeze, - domain: "mo:Recording".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Recording".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "produced signal".freeze, - "mo:level": "2".freeze, - range: "mo:Signal".freeze, + range: "http://purl.org/ontology/mo/Signal".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :produced_signal_group, comment: "Associates a recording session with a group of master signals produced by it.".freeze, - domain: "mo:RecordingSession".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/RecordingSession".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "produced signal group".freeze, - "mo:level": "2".freeze, - range: "mo:SignalGroup".freeze, + range: "http://purl.org/ontology/mo/SignalGroup".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :produced_sound, comment: "\n Associates a Performance to a physical Sound that is being produced by it.\n ".freeze, - domain: "mo:Performance".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Performance".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "produced sound".freeze, - "mo:level": "2".freeze, - range: "mo:Sound".freeze, + range: "http://purl.org/ontology/mo/Sound".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :produced_work, comment: "\n Associates a composition event to the produced MusicalWork. For example,\n this property could link the event corresponding to the composition of the\n Magic Flute in 1782 to the Magic Flute musical work itself. This musical work\n can then be used in particular performances.\n ".freeze, - domain: "mo:Composition".freeze, - inverseOf: "mo:composed_in".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Composition".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/composed_in".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "produced work".freeze, - "mo:level": "2".freeze, - range: "mo:MusicalWork".freeze, + range: "http://purl.org/ontology/mo/MusicalWork".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :producer, comment: "Used to relate the manifestation of a work to a person or a group of person who produced it.".freeze, - domain: "mo:MusicalManifestation".freeze, - inverseOf: "mo:produced".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/produced".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "producer".freeze, - "mo:level": "1".freeze, - range: "foaf:Agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :producesSignal, - equivalentProperty: "mo:produced_signal".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/produced_signal".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :producesSound, - equivalentProperty: "mo:produced_sound".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/produced_sound".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :producesWork, - equivalentProperty: "mo:produced_work".freeze, - type: "owl:ObjectProperty".freeze + equivalentProperty: "http://purl.org/ontology/mo/produced_work".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :productOfComposition, - equivalentProperty: "mo:composed_in".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/composed_in".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publicationOf, - equivalentProperty: "mo:publication_of".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/publication_of".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publication_of, comment: "Link a particular manifestation to the related signal, score, libretto, or lyrics".freeze, - domain: "mo:MusicalManifestation".freeze, - inverseOf: "mo:published_as".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/published_as".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "publication of".freeze, - "mo:level": "1".freeze, - range: "mo:MusicalExpression".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/MusicalExpression".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :published, comment: "Used to relate an person or a group of person who published the manifestation of a work.".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "mo:publisher".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/publisher".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "published".freeze, - "mo:level": "1".freeze, - range: "mo:MusicalManifestation".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publishedAs, - equivalentProperty: "mo:published_as".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/published_as".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :published_as, comment: "\n Links a musical expression (e.g. a signal or a score) to one of its manifestations (e.g. a track on a particular record or a published score).\n ".freeze, - domain: "mo:MusicalExpression".freeze, - inverseOf: "mo:publication_of".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalExpression".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/publication_of".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "published as".freeze, - "mo:level": "1".freeze, - range: "mo:MusicalManifestation".freeze, + range: "http://purl.org/ontology/mo/MusicalManifestation".freeze, subPropertyOf: "http://purl.org/vocab/frbr/core#embodiment".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publisher, comment: "Used to relate a musical manifestation to a person or a group of person who published it.".freeze, - domain: "mo:MusicalManifestation".freeze, - inverseOf: "mo:published".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/published".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "publisher".freeze, - "mo:level": "1".freeze, - range: "foaf:Agent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publishingLocation, - equivalentProperty: "mo:publishing_location".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/publishing_location".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publishing_location, comment: "\n Relates a musical manifestation to its publication location.\n ".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "publishingLocation".freeze, - "mo:level": "1".freeze, - range: "geo:SpatialThing".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :puid, comment: "\n Link a signal to the PUIDs associated with it, that is, PUID computed from MusicalItems (mo:AudioFile) \n derived from this signal.\n PUIDs (Portable Unique IDentifier) are the IDs used in the \n proprietary MusicDNS AudioFingerprinting system which is operated by MusicIP.\n\n Using PUIDs, one (with some luck) can identify the Signal object associated with a particular audio file, therefore allowing\n to access further information (on which release this track is featured? etc.). Using some more metadata one can identify\n the particular Track corresponding to the audio file (a track on a particular release).".freeze, - domain: "mo:Signal".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Signal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "puid".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :record, comment: "Associates a release with the records it contains. A single release can be associated with multiple records, for example for a multi-disc release.".freeze, - domain: "mo:Release".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Release".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "released record".freeze, - "mo:level": "1".freeze, - range: "mo:Record".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/ontology/mo/Record".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :record_count, comment: "Associates a release with the number of records it contains, e.g. the number of discs it contains in the case of a multi-disc release.".freeze, - domain: "mo:Release".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Release".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "record count".freeze, - "mo:level": "1".freeze, - range: "xsd:int".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :record_number, comment: "Indicates the position of a record in a release (e.g. a 2xLP, etc.).".freeze, - domain: "mo:Record".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Record".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "has record number".freeze, - "mo:level": "1".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :record_side, comment: "Associates the side on a vinyl record, where a track is located, e.g. A, B, C, etc. This property can then also be used \nin conjunction with mo:track_number, so that one can infer e.g. \"A1\", that means, track number 1 on side A.".freeze, - domain: "mo:Track".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Track".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "has record side".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :recordedAs, - equivalentProperty: "mo:recorded_as".freeze, - type: "owl:ObjectProperty".freeze + equivalentProperty: "http://purl.org/ontology/mo/recorded_as".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :recorded_as, comment: "\n This is a shortcut property, allowing to bypass all the Sound/Recording steps. This property\n allows to directly link a Performance to the recorded Signal. This is recommended for \"normal\"\n users. However, advanced users wanting to express things such as the location of the microphone will\n have to create this shortcut as well as the whole workflow, in order to let the \"normal\" users access\n simply the, well, simple information:-) .\n ".freeze, - domain: "mo:Performance".freeze, - inverseOf: "mo:records".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Performance".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/records".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "recorded as".freeze, - "mo:level": "2".freeze, - range: "mo:Signal".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/ontology/mo/Signal".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :recorded_in, comment: "\n Associates a physical Sound to a Recording event where it is being used \n in order to produce a signal. For example, I might use this property to \n associate the sound produced by a particular performance of the magic flute\n to a given recording, done using my cell-phone.\n ".freeze, - domain: "mo:Sound".freeze, - inverseOf: "mo:recording_of".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Sound".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/recording_of".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "recorded in".freeze, - "mo:level": "2".freeze, - range: "mo:Recording".freeze, + range: "http://purl.org/ontology/mo/Recording".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#isFactorOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :recording_of, comment: "\n Associates a Recording event to a physical Sound being recorded.\n For example, I might use this property to\n associate a given recording, done using my cell phone, to the \n sound produced by a particular performance of the magic flute.\n ".freeze, - domain: "mo:Recording".freeze, - inverseOf: "mo:recorded_in".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Recording".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/recorded_in".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "recorded sound".freeze, - "mo:level": "2".freeze, - range: "mo:Sound".freeze, + range: "http://purl.org/ontology/mo/Sound".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :records, comment: "\n This is the inverse of the shortcut property recordedAs, allowing to relate directly a performance\n to a signal.\n ".freeze, - domain: "mo:Signal".freeze, - inverseOf: "mo:recordedAs".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Signal".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/recordedAs".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "records".freeze, - "mo:level": "2".freeze, - range: "mo:Performance".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/Performance".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :release, comment: "Associates a release with the corresponding release event".freeze, - domain: "mo:ReleaseEvent".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/ReleaseEvent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "release".freeze, - "mo:level": "1".freeze, - range: "mo:Release".freeze, + range: "http://purl.org/ontology/mo/Release".freeze, subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :releaseStatus, - equivalentProperty: "mo:release_status".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/release_status".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :releaseType, - equivalentProperty: "mo:release_type".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/release_type".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :release_status, comment: "\n Relates a musical manifestation to its release status (bootleg, ...)\n ".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - range: "mo:ReleaseStatus".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://purl.org/ontology/mo/ReleaseStatus".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :release_type, comment: "\n Relates a musical manifestation to its release type (interview, spoken word, album, ...)\n ".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - range: "mo:ReleaseType".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://purl.org/ontology/mo/ReleaseType".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :remaster_of, comment: "This relates two musical work or the expression of a musical work, where one is a remaster of the other. \n \nA remaster is a new version made for release from source recordings that were earlier released separately. This is usually done to improve the audio quality or adjust for more modern playback equipment. The process generally doesn't involve changing the music in any artistically important way. It may, however, result in tracks that are a few seconds longer or shorter.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "remaster_of".freeze, - "mo:level": "1".freeze, - subPropertyOf: "mo:derived_from".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :remix_of, comment: "Used to relate the remix of a musical work in a substantially altered version produced by mixing together individual tracks or segments of an original musical source work.".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "remix_of".freeze, - "mo:level": "1".freeze, - subPropertyOf: "mo:derived_from".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :remixed, comment: "Used to relate an artist who remixed a musical work or the expression of a musical work. \n \nThis involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work.".freeze, - domain: "mo:MusicArtist".freeze, - inverseOf: "mo:remixer".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/remixer".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "remixed".freeze, - "mo:level": "1".freeze, - range: "mo:Signal".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/Signal".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :remixer, comment: "Used to relate a musical work or the expression of a musical work to an artist who remixed it. \n \nThis involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work.".freeze, - inverseOf: "mo:remixed".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/remixed".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "remixer".freeze, - "mo:level": "1".freeze, - subPropertyOf: "mo:interpreter".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + subPropertyOf: "http://purl.org/ontology/mo/interpreter".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :review, comment: "Used to link a work or the expression of a work to a review. \n \nThe review does not have to be open content, as long as it is accessible to the general internet population.".freeze, domain: term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "review".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sampleRate, - equivalentProperty: "mo:sample_rate".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/sample_rate".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :sample_rate, comment: "\n Associates a digital signal to its sample rate. It might be easier to express it this way instead of\n defining a timeline map:-) Range is xsd:float.\n ".freeze, - domain: "mo:DigitalSignal".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://purl.org/ontology/mo/DigitalSignal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :sampled, comment: "Used to relate an artist who sampled a Signal.".freeze, - domain: "mo:MusicArtist".freeze, - inverseOf: "mo:sampler".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/sampler".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "sampled".freeze, - "mo:level": "1".freeze, - range: "mo:Signal".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/Signal".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sampledVersionOf, - equivalentProperty: "mo:sampled_version_of".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/sampled_version_of".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sampled_version, comment: "\n Associates an analog signal with a sampled version of it\n ".freeze, - domain: "mo:AnalogSignal".freeze, - inverseOf: "mo:sampled_version_of".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/AnalogSignal".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/sampled_version_of".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "sampled version".freeze, - "mo:level": "2".freeze, - range: "mo:DigitalSignal".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/ontology/mo/DigitalSignal".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sampled_version_of, comment: "\n Associates a digital signal with the analog version of it\n ".freeze, - domain: "mo:DigitalSignal".freeze, - inverseOf: "mo:sampled_version".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/DigitalSignal".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/ontology/mo/sampled_version".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "sampled version of".freeze, - "mo:level": "2".freeze, - range: "mo:AnalogSignal".freeze, - subPropertyOf: "mo:derived_from".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + range: "http://purl.org/ontology/mo/AnalogSignal".freeze, + subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sampler, comment: "Used to relate the signal of a musical work to an artist who sampled it.".freeze, - inverseOf: "mo:sampled".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + inverseOf: "http://purl.org/ontology/mo/sampled".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "sampler".freeze, - "mo:level": "1".freeze, - subPropertyOf: "mo:interpreter".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + subPropertyOf: "http://purl.org/ontology/mo/interpreter".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sell_item, comment: "A person, a group of person or an organization selling an exemplar of a single manifestation.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "sell_item".freeze, - "mo:level": "1".freeze, range: "http://purl.org/vocab/frbr/core#Item".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :signal, comment: "Associates a group of signals with one of the signals it contains".freeze, - domain: "mo:SignalGroup".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/SignalGroup".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "signal".freeze, - "mo:level": "1".freeze, - range: "mo:Signal".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/ontology/mo/Signal".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :signalTime, - equivalentProperty: "mo:time".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/time".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :similar_to, comment: "\n A similarity relationships between two objects (so far, either an agent, a signal or a genre, but\n this could grow).\n This relationship is pretty general and doesn't make any assumptions on how the similarity claim\n was derived.\n Such similarity statements can come from a range of different sources (Musicbrainz similarities between\n artists, or coming from some automatic content analysis).\n However, the origin of such statements should be kept using a named graph approach - and ultimately, the \n documents providing such statements should attach some metadata to themselves (confidence of the claim, etc.).\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("foaf:Agent".freeze, "mo:MusicalWork".freeze, "mo:MusicalExpression".freeze, "mo:MusicalManifestation".freeze, "mo:MusicalItem".freeze, "mo:Genre".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze, "http://purl.org/ontology/mo/Genre".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "similar_to".freeze, - "mo:level": "1".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("foaf:Agent".freeze, "mo:MusicalWork".freeze, "mo:MusicalExpression".freeze, "mo:MusicalManifestation".freeze, "mo:MusicalItem".freeze, "mo:Genre".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze, "http://purl.org/ontology/mo/Genre".freeze) ), - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :singer, comment: "Relates a performance to an involved singer".freeze, - domain: "mo:Performance".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "2".freeze, - range: "foaf:Agent".freeze, - subPropertyOf: "mo:performer".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://purl.org/ontology/mo/Performance".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + subPropertyOf: "http://purl.org/ontology/mo/performer".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supporting_musician, comment: "Used to relate an artist doing long-time instrumental or vocal support for another artist.".freeze, - domain: "mo:MusicArtist".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicArtist".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "supporting_musician".freeze, - "mo:level": "1".freeze, - range: "mo:MusicArtist".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/MusicArtist".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :tempo, comment: "\n Rate of speed or pace of music. Tempo markings are traditionally given in Italian; \n common markings include: grave (solemn; very, very slow); largo (broad; very slow); \n adagio (quite slow); andante (a walking pace); moderato (moderate); allegro (fast; cheerful); \n vivace (lively); presto (very fast); accelerando (getting faster); ritardando (getting slower); \n and a tempo (in time; returning to the original pace).\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("mo:MusicalWork".freeze, "mo:Performance".freeze, "mo:Signal".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Signal".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "tempo".freeze, - "mo:level": "2".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :text, comment: "Associates lyrics with their text.".freeze, - domain: "mo:Lyrics".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Lyrics".freeze, + "http://purl.org/ontology/mo/level": "2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "text".freeze, - "mo:level": "2".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :time, comment: "\n Associates a Signal to a time object - its actual domain\n ".freeze, - domain: "mo:Signal".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Signal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "time".freeze, - "mo:level": "1".freeze, range: "http://www.w3.org/2006/time#TemporalEntity".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :track, comment: "Indicates a part of a musical manifestation - in this particular case, a track.".freeze, - domain: "mo:Record".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Record".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "track".freeze, - "mo:level": "1".freeze, - range: "mo:Track".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/ontology/mo/Track".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :trackNum, - equivalentProperty: "mo:track_number".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/track_number".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :track_count, comment: "The track count of a record".freeze, - domain: "mo:Record".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Record".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "track count".freeze, - "mo:level": "1".freeze, - range: "xsd:int".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :track_number, comment: "Indicates the position of a track on a record medium (a CD, etc.).".freeze, - domain: "mo:Track".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Track".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "track number".freeze, - "mo:level": "1".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :translation_of, comment: "Indicates that a work or the expression of a work has translated or transliterated into another expression of a work.".freeze, domain: "http://purl.org/vocab/frbr/core#Expression".freeze, - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "translation_of".freeze, - "mo:level": "1".freeze, range: "http://purl.org/vocab/frbr/core#Expression".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :tribute_to, comment: "Indicates a musical work or the expression of a musical work that is a tribute to an artist - normally consisting of music being composed by the artist but performed by other artists. ".freeze, - domain: "mo:MusicalManifestation".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "tribute_to".freeze, - "mo:level": "1".freeze, - range: "mo:MusicArtist".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://purl.org/ontology/mo/MusicArtist".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :trmid, comment: "\n Indicates the TRMID of a track.\n TRM IDs are MusicBrainz' old AudioFingerprinting system. \n TRM (TRM Recognizes Music) IDs are (somewhat) unique ids that represent \n the audio signature of a musical piece (see AudioFingerprint).\n ".freeze, - domain: "mo:Signal".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Signal".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "trmid".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :upc, comment: "UPC stands for \"Universal Product Code\", which was the original barcode used in the United States and Canada. The UPC (now officially EAN.UCC-12 is a numerical method of identifying products without redundancy worldwide for all types of products in the retail sector. The EAN is a superset of the original UPC increasing the digits to 13 with the prefix 0 reserved for UPC. As of 2005, manufacturers are only allowed to use the new 13-digit codes on their items, rather than having two separate numbers.".freeze, - domain: "mo:Release".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://purl.org/ontology/mo/Release".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "upc".freeze, - "mo:level": "1".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mo:gtin".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/ontology/mo/gtin".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :usedInPerformance, - equivalentProperty: "mo:performed_in".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/performed_in".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usedInRecording, - equivalentProperty: "mo:recorded_in".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/recorded_in".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usesSound, - equivalentProperty: "mo:recording_of".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/recording_of".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usesWork, - equivalentProperty: "mo:performance_of".freeze, - isDefinedBy: "mo:".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + equivalentProperty: "http://purl.org/ontology/mo/performance_of".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :uuid, comment: "\n Links an object to an universally unique identifier for it.\n ".freeze, - domain: "owl:Thing".freeze, + domain: "http://www.w3.org/2002/07/owl#Thing".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, label: "universally unique identifier".freeze, - "mo:level": "1".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :want_item, comment: "A person, a group of person or an organization wanting an exemplar of a single manifestation.".freeze, - domain: "foaf:Agent".freeze, - isDefinedBy: "mo:".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "want_item".freeze, - "mo:level": "1".freeze, range: "http://purl.org/vocab/frbr/core#Item".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wikipedia, comment: "\n Used to link an work, an expression of a work, a manifestation of a work, \n a person, an instrument or a musical genre to its corresponding WikiPedia page. \n The full URL should be used, not just the WikiName.\n ".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://purl.org/vocab/frbr/core#Item".freeze, "foaf:Agent".freeze, "mo:Instrument".freeze, "mo:Genre".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://purl.org/vocab/frbr/core#Item".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/Instrument".freeze, "http://purl.org/ontology/mo/Genre".freeze) ), - isDefinedBy: "mo:".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, label: "wikipedia".freeze, - "mo:level": "1".freeze, - range: "foaf:Document".freeze, - subPropertyOf: "foaf:isPrimaryTopicOf".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze # Extra definitions term :album, - "dc11:description": "\n One or more track issued together.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, - "dc11:title": "album".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "\n One or more track issued together.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, + "http://purl.org/dc/elements/1.1/title": "album".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze term :audiobook, - "dc11:description": "\n Book read by a narrator without music.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, - "dc11:title": "audio book".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "\n Book read by a narrator without music.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, + "http://purl.org/dc/elements/1.1/title": "audio book".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze term :bootleg, - "dc11:description": "An unofficial/underground musical work or the expression of a musical work that was not sanctioned by the artist and/or the corporate body. ".freeze, - "dc11:title": "bootleg".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseStatus".freeze + "http://purl.org/dc/elements/1.1/description": "An unofficial/underground musical work or the expression of a musical work that was not sanctioned by the artist and/or the corporate body. ".freeze, + "http://purl.org/dc/elements/1.1/title": "bootleg".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseStatus".freeze term :compilation, - "dc11:description": "\n Collection of previously released manifestations of a musical expression by one or more artists.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, - "dc11:title": "compilation".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "\n Collection of previously released manifestations of a musical expression by one or more artists.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, + "http://purl.org/dc/elements/1.1/title": "compilation".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze term :ep, - "dc11:description": "\n An EP\n ".freeze, - "dc11:title": "ep".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "\n An EP\n ".freeze, + "http://purl.org/dc/elements/1.1/title": "ep".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze term :interview, - "dc11:description": "\n Recording of the questioning of a person.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, - "dc11:title": "interview".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "\n Recording of the questioning of a person.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, + "http://purl.org/dc/elements/1.1/title": "interview".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze term :live, - "dc11:description": "\n A musical manifestation that was recorded live.\n This is a type of MusicalManifestation defined by the musical industry.".freeze, - "dc11:title": "live".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "\n A musical manifestation that was recorded live.\n This is a type of MusicalManifestation defined by the musical industry.".freeze, + "http://purl.org/dc/elements/1.1/title": "live".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze term :official, - "dc11:description": "Any musical work or the expression of a musical work officially sanctioned by the artist and/or their corporate body.".freeze, - "dc11:title": "official".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseStatus".freeze + "http://purl.org/dc/elements/1.1/description": "Any musical work or the expression of a musical work officially sanctioned by the artist and/or their corporate body.".freeze, + "http://purl.org/dc/elements/1.1/title": "official".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseStatus".freeze term :promotion, - "dc11:description": "A giveaway musical work or the expression of a musical work intended to promote an upcoming official musical work or the expression of a musical work.".freeze, - "dc11:title": "promotion".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseStatus".freeze + "http://purl.org/dc/elements/1.1/description": "A giveaway musical work or the expression of a musical work intended to promote an upcoming official musical work or the expression of a musical work.".freeze, + "http://purl.org/dc/elements/1.1/title": "promotion".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseStatus".freeze term :remix, - "dc11:description": "\n Musical manifestation that primarily contains remixed material. \n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, - "dc11:title": "remix".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "\n Musical manifestation that primarily contains remixed material. \n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, + "http://purl.org/dc/elements/1.1/title": "remix".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze term :single, - "dc11:description": "A single or record single is a type of release, typically a recording of two tracks. In most cases, the single is a song that is released separately from an album, but it can still appear on an album.".freeze, - "dc11:title": "single".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "A single or record single is a type of release, typically a recording of two tracks. In most cases, the single is a song that is released separately from an album, but it can still appear on an album.".freeze, + "http://purl.org/dc/elements/1.1/title": "single".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze term :soundtrack, - "dc11:description": "\n Sound recording on a narrow strip of a motion picture film.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, - "dc11:title": "soundtrack".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "\n Sound recording on a narrow strip of a motion picture film.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, + "http://purl.org/dc/elements/1.1/title": "soundtrack".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze term :spokenword, - "dc11:description": "\n Spoken word is a form of music or artistic performance in which lyrics, poetry, or stories are spoken rather than sung. \n Spoken-word is often done with a musical background, but emphasis is kept on the speaker.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, - "dc11:title": "spoken word".freeze, - isDefinedBy: "mo:".freeze, - "mo:level": "1".freeze, - type: "mo:ReleaseType".freeze + "http://purl.org/dc/elements/1.1/description": "\n Spoken word is a form of music or artistic performance in which lyrics, poetry, or stories are spoken rather than sung. \n Spoken-word is often done with a musical background, but emphasis is kept on the speaker.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze, + "http://purl.org/dc/elements/1.1/title": "spoken word".freeze, + "http://purl.org/ontology/mo/level": "1".freeze, + isDefinedBy: "http://purl.org/ontology/mo/".freeze, + type: "http://purl.org/ontology/mo/ReleaseType".freeze end end diff --git a/lib/rdf/vocab/mods.rb b/lib/rdf/vocab/mods.rb index f50cb66..d7cff42 100644 --- a/lib/rdf/vocab/mods.rb +++ b/lib/rdf/vocab/mods.rb @@ -3,1299 +3,780 @@ # This file generated automatically using rdf vocabulary format from http://www.loc.gov/mods/rdf/v1# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class MODS < RDF::StrictVocabulary - # # Aggregates cartographic properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cartographics - # - # # For a classification whose scheme is not part of the controlled vocabulary. Bundles together a classification number and scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationGroup - # - # # Used when the identifier type is not from the controlled list. Bundles together an identifier and its type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IdentifierGroup - # - # # An aggregator for location properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Location - # - # # An aggregator for copy properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LocationCopy - # - # # The resource which is the subject of this description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ModsResource - # - # # Aggregates a note with its type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NoteGroup - # - # # An aggregator for part properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Part - # - # # Aggregates a name with its role. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RoleRelationship - # - # # A summary of the content of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :abstract - # - # # Information about restrictions imposed on access to the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessCondition - # - # # Administrative metadata for the MODS description, corresponds to recordInfo (MODS XML) which is, minimimally, a Class defined outside of the MADS/RDF namespace. The RecordInfo Class from the RecordInfo ontology is recommended. - # # @return [RDF::Vocabulary::Term] - # attr_reader :adminMetadata - # - # # A geographic entity expressed in cartographic terms. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cartographics - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cartographicsCoordinates - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cartographicsProjection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cartographicsScale - # - # # A designation applied to the resource that indicates the subject by applying a formal system of coding and organizing resources according to subject areas. - # # @return [RDF::Vocabulary::Term] - # attr_reader :classification - # - # # Used when classification scheme is not in controlled vocabulary. Bundles together the classification number with its scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :classificationGroup - # - # # The classification scheme - # # @return [RDF::Vocabulary::Term] - # attr_reader :classificationGroupScheme - # - # # The classification value - # # @return [RDF::Vocabulary::Term] - # attr_reader :classificationGroupValue - # - # # Date that the resource was digitized or a subsequent snapshot was taken. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCaptured - # - # # When there is both a start and end for the capture date this is the end date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCapturedEnd - # - # # When there is both a start and end for the capture date this is the start date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCapturedStart - # - # # The resource's creation date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCreated - # - # # When there is both a start and end for the creation date this is the end date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCreatedEnd - # - # # When there is both a start and end for the creation date this is the start date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCreatedStart - # - # # Date when resource was modified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateModified - # - # # When there is both a start and end for the modification date this is the end date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateModifiedEnd - # - # # When there is both a start and end for the modification date this is the start date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateModifiedStart - # - # # Date when resource was copyrighted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateOfCopyright - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateOfCopyrightEnd - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateOfCopyrightStart - # - # # A date when resource was valid. (Not necessarily the first or last date, but this is an assertion that on that given date the information was valid.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateValid - # - # # When the resource is valid over an interval with a start and end date, this is the end date. (When start and end date are given, it is an assertion that the information was valid over the course of this interval. It does not necessarily assert that is was not valid before the start or after the end of the interval.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateValidEnd - # - # # When the resource is valid over an interval with a start and end date, this is the start date. (When start and end date are given, it is an assertion that the information was valid over the course of this interval. It does not necessarily assert that is was not valid before the start or after the end of the interval.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateValidStart - # - # # a designation of the source of a digital file important to its creation, use and management. - # # @return [RDF::Vocabulary::Term] - # attr_reader :digitalOrigin - # - # # Version of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :edition - # - # # publication frequency - # # @return [RDF::Vocabulary::Term] - # attr_reader :frequency - # - # # The genre (or one of several genres) of the resource. Represented in the MADS namespace. - # # @return [RDF::Vocabulary::Term] - # attr_reader :genre - # - # # identifier is a property for which all terms in the "identifier" vocabulary become subproperties. Thus for example 'identifer:isbn' is a subproperty saying in effect "has this ISBN" where 'isbn' is a term within that vocabulary. (The prefix 'identifier:' is used to denote the namespace for the "identifier" vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifier - # - # # Used when identifier type is not in controlled vocabulary. Bundles together the identifier with its type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifierGroup - # - # # The identifier type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifierGroupType - # - # # The identifier value . - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifierGroupValue - # - # # Used in conjuction with identifierType, when the type is not from the controlled vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifierValue - # - # # Describes the issuance of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuance - # - # # The language (or one of several languages) of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :languageOfResource - # - # # Information about a specific tangible instance of a bibliographic resource or set which comprises one or more pieces via indication of sublocation and/or locator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopy - # - # # URI of the copy of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopyElectronicLocator - # - # # A summary holdings statement for the copy. A string with information including volume or issue, date of publication or date of issue of a component of a multi-part resource, distinguishing it from other components of the same resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopyEnumerationAndChronology - # - # # One of three levels of enumerationAndChronology: 'basic' - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopyEnumerationAndChronologyBasic - # - # # One of three levels of enumerationAndChronology:'index' - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopyEnumerationAndChronologyIndex - # - # # One of three levels of enumerationAndChronology:'supplement' - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopyEnumerationAndChronologySupplement - # - # # The form of a particular copy may be indicated when the general description refers to multiple forms and there is different detailed holdings information associated with different forms. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopyForm - # - # # A note pertaining to a specific copy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopyNote - # - # # Shelfmark or other shelving designation that indicates the location identifier for a copy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopyShelfLocator - # - # # Department, division, or section of an institution holding a copy of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCopySublocation - # - # # The location (or one of several locations) at which the resource resides. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationOfResource - # - # # The institution or repository that holds the resource, or where it is available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationPhysical - # - # # Shelfmark or other shelving designation - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationShelfLocator - # - # # Location of the resource (a URL) - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationUrl - # - # # An Internet Media (MIME) type e.g. text/html. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaType - # - # # A name - personal, corporate, conference, or family - associated with the resource. Represented in the MADS namespace. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # A name that has been distinguished as the principal name associated with the resource. There should be no more than one name principal name. (The rule for determining the principal name is as follows: If the role associated with the name is 'creator' AND if it is the only name whose role is 'creator' then it is the principal name. Thus if there are more than one name, or no name, whose role is 'creator', then there is no principal name.) If there is a principal name, and if there is a uniform title, then that name and title are to be combined into a nameTitle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namePrincipal - # - # # Textual information about the resource. This property is used when no type is specified. (In contrast to hasTypedNote, whose object is an aggregator that includes both the type and note.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :note - # - # # Used for a note with a type (other than "statement of responsibility") - # # @return [RDF::Vocabulary::Term] - # attr_reader :noteGroup - # - # # A property of NoteGroup - used when a type is supplied for the note. The type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :noteGroupType - # - # # A property of noteGroup - used when a type is supplied for the note. The text of the note. - # # @return [RDF::Vocabulary::Term] - # attr_reader :noteGroupValue - # - # # Information about a physical part of the resource, including the part number, its caption and title, and dimensions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :part - # - # # Date associated with a part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partDate - # - # # The type of the resource part, e.g. volume, issue, page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partDetailType - # - # # The value of the end of a part. For example, if unit of the part has value 'page', this is the number of the last page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partEnd - # - # # A property of a part - the level of numbering in the host/parent item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partLevel - # - # # A property of a part - a textual listing of the units within the part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partList - # - # # A string that designates the part name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partName - # - # # A string that designates the part number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partNumber - # - # # An integer that designates the sequence of parts - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOrder - # - # # The beginning unit of the part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partStart - # - # # The total number of units within a part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partTotal - # - # # The segment type of a part. (When parts are included, the resource is ususally a document, so the part type would be the segment type of the document.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :partType - # - # # the unit -- e.g. page, chapter -- applying to the start, end, and total values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partUnit - # - # # a statement of the number and specific material of the units of the resource that express physical extent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :physicalExtent - # - # # A particular physical presentation of the resource, including the physical form or medium of material for a resource. Example: oil paint - # # @return [RDF::Vocabulary::Term] - # attr_reader :physicalForm - # - # # Place of publication/origin. Used in connection with the origin of a resource, i.e., creation, publication, issuance, etc. Represented as a MADS Geographic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :placeOfOrigin - # - # # The name of the entity that published, printed, distributed, released, issued, or produced the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publisher - # - # # The code or name of the organization that either created the original description or modified it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordContentSource - # - # # Part of administrative metadata. The standard which designates the rules used for the content of the description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordDescriptionStandard - # - # # The system control number assigned by the organization creating, using, or distributing the description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordIdentifier - # - # # Describes the origin or provenance of the description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordOrigin - # - # # The reformatting quality; e.g. access, preservation, replacement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reformattingQuality - # - # # Relates the described MODS resource to another MODS resource which is a constituent of the described resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedConstituent - # - # # Relates the described MODS resource to a similar MODS resource of a different format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedFormat - # - # # Relates the described MODS resource to another MODS resource which is a host of the described resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedHost - # - # # Relates the described resource to a another MODS resource with different origination information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedInstantiation - # - # # Relates the described MODS resource to another, related MODS resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedItem - # - # # Relates the described MODS resource to another MODS resource which is an original of the described resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedOriginal - # - # # Relates the described MODS resource to a MODS resource which preceded the described resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedPreceding - # - # # Relates the described MODS resource to another MODS resource which the described resource references. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedReference - # - # # Relates the described MODS resource to another MODS resource which references the described resource. - # # - # # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedReferencedBy - # - # # Relates the described MODS resource to another MODS resource which is review of the described resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedReview - # - # # Relates the described resource to a another MODS resource which is a series of which the described resource is a part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedSeries - # - # # Relates the described resource to a another MODS resource which suceeded it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedSucceeding - # - # # Relates the described MODS resource to another MODS resource which is a different version of the described resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedVersion - # - # # role is an abstract property, for which all terms in the relator vocabulary of roles become subproperties. Thus for example 'relator:artist' refers to the role 'artist' within that vocabulary. (The prefix 'relator:' is used to denote the namespace for the "relator" vocabulary. The property 'relator:artist' relates the resource to an artist associated with the resource, represented as a mads name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # Binds a name to the role that the named entity played for the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :roleRelationship - # - # # The name included in a roleRelationship. The roleRelationship binds an name and a role, where the name is a name associated with the resource and is specified elsewhere via the hasName property. This mechanism is used when the role is not part of a known vocabulary. Otherwise, the relationship is expressed by using the role vocabulary term as the property; for example, see relator:creator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :roleRelationshipName - # - # # The role associated with a name, where the name and role are bound together in a roleRelationship. - # # @return [RDF::Vocabulary::Term] - # attr_reader :roleRelationshipRole - # - # # A note, when the note type is "statement of responsibility" - # # @return [RDF::Vocabulary::Term] - # attr_reader :statementOfResponsibility - # - # # An abstract property defined for which the various subject catergories (e.g. subjectGenre, subjectTitle) are subproperties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subject - # - # # A subject of the resource composed of several component subjects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectComplex - # - # # A subject of the resource which is a genre, expressed in terms of a MADS GenreForm. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectGenre - # - # # A subject of the resource which is a geographic entity, expressed in terms of a MADS Geographic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectGeographic - # - # # A subject of the resource which is a geographic entity, expressed as a geographic code and in terms of a MADS Geographic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectGeographicCode - # - # # A subject of the resource which is a hierarchy of geographic entities expressed in terms of a MADS Geographics. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectHierarchicalGeographic - # - # # A subject of the resource which is a name, expressed in terms of a MADS Name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectName - # - # # A subject of the resource which is an occupation, expressed in terms of a MADS Occupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectOccupation - # - # # A subject of the resource which is a temporal expression, expressed in terms of a MADS Temporal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectTemporal - # - # # A subject of the resource which is a title, expressed in terms of a MADS Title. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectTitle - # - # # A subject of the resource which is a topic, expressed in terms of a MADS Topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectTopic - # - # # Description of the contents of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tableOfContents - # - # # The target audience of the resource. Examples: adolescent, adult, general, juvenile, preschool, specialized. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetAudience - # - # # A title for the resource. Represented as a MADS Title. - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # A title which has been distinguished as the principal title. (This corresponds to a MODS XML titleInfo with no type attribute.) There should be no more than one principal title. Represented as a MADS Title. - # # @return [RDF::Vocabulary::Term] - # attr_reader :titlePrincipal - # - # # A title which has been distinguished as a uniform title. (This corresponds to a MODS XML titleInfo with 'type=uniform' attribute.) There should be no more than one uniform title. Represented as a MADS Title, or, if there is a primary name, it is represented as a MADS NameTitle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :titleUniform - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :access - # - # # An abstract property for which date properties in general are subproperties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :date - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :digitizedAnalog - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :digitizedMicrofilm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :integratingResource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :monographic - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :reformattedDigital - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :serial - # - # end MODS = Class.new(RDF::StrictVocabulary("http://www.loc.gov/mods/rdf/v1#")) do # Ontology definition ontology :"http://www.loc.gov/mods/rdf/v1#", - "owl:imports": ["dc11:".freeze, "dcmitype:".freeze, "foaf:".freeze, "http://id.loc.gov/ontologies/ClassificationSchemes".freeze, "http://id.loc.gov/ontologies/Identifiers".freeze, "http://id.loc.gov/ontologies/ResourceTypes".freeze, "http://id.loc.gov/ontologies/Roles".freeze, "http://id.loc.gov/ontologies/TargetAudiences".freeze, "http://purl.org/vocab/changeset/schema".freeze, "http://purl.org/vocab/vann/".freeze, "http://vocab.org/changeset/".freeze, "http://www.loc.gov/mads/rdf/v1".freeze, "http://www.loc.gov/standards/mads/rdf/v1.rdf".freeze, "http://www.w3.org/2004/02/skos/core".freeze, "http://www.w3.org/2008/05/skos-xl".freeze], - type: "owl:Ontology".freeze + "http://www.w3.org/2002/07/owl#imports": ["http://id.loc.gov/ontologies/ClassificationSchemes".freeze, "http://id.loc.gov/ontologies/Identifiers".freeze, "http://id.loc.gov/ontologies/ResourceTypes".freeze, "http://id.loc.gov/ontologies/Roles".freeze, "http://id.loc.gov/ontologies/TargetAudiences".freeze, "http://purl.org/dc/dcmitype/".freeze, "http://purl.org/dc/elements/1.1/".freeze, "http://purl.org/vocab/changeset/schema".freeze, "http://purl.org/vocab/vann/".freeze, "http://vocab.org/changeset/".freeze, "http://www.loc.gov/mads/rdf/v1".freeze, "http://www.loc.gov/standards/mads/rdf/v1.rdf".freeze, "http://www.w3.org/2004/02/skos/core".freeze, "http://www.w3.org/2008/05/skos-xl".freeze, "http://xmlns.com/foaf/0.1/".freeze], + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Cartographics, comment: "Aggregates cartographic properties.".freeze, label: "MODS - Cartographic Information".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClassificationGroup, comment: "For a classification whose scheme is not part of the controlled vocabulary. Bundles together a classification number and scheme.".freeze, label: "MODS - Classification Group".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IdentifierGroup, comment: "Used when the identifier type is not from the controlled list. Bundles together an identifier and its type.".freeze, label: "MODS - Identifier - Typed".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Location, comment: "An aggregator for location properties.".freeze, label: "MODS - Location".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LocationCopy, comment: " An aggregator for copy properties.".freeze, label: "MODS - Location - Copy".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ModsResource, comment: "\nThe resource which is the subject of this description.\n ".freeze, equivalentClass: "http://id.loc.gov/vocabulary/resourceTypes/Res".freeze, label: "MODS - A MODS Resource".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NoteGroup, comment: "Aggregates a note with its type. ".freeze, label: "MODS - Note Typed".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Part, comment: "An aggregator for part properties.".freeze, label: "MODS - Part".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RoleRelationship, comment: "Aggregates a name with its role. ".freeze, label: "MODS - Role Relationship".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :abstract, comment: "A summary of the content of the resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Abstract".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :accessCondition, comment: "Information about restrictions imposed on access to the resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Access Condition".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :adminMetadata, comment: "Administrative metadata for the MODS description, corresponds to recordInfo (MODS XML) which is, minimimally, a Class defined outside of the MADS/RDF namespace. The RecordInfo Class from the RecordInfo ontology is recommended.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Administrative Metadata".freeze, range: "http://id.loc.gov/ontologies/RecordInfo#AdminMetadata".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :cartographics, comment: "A geographic entity expressed in cartographic terms.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Cartographics ".freeze, - range: "mods:Cartographics".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#Cartographics".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :cartographicsCoordinates, - domain: "mods:Cartographics".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Cartographics".freeze, label: "Cartographics - Coordinates".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :cartographicsProjection, - domain: "mods:Cartographics".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Cartographics".freeze, label: "Cartographics - Projection".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :cartographicsScale, - domain: "mods:Cartographics".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Cartographics".freeze, label: "Cartographics - Scale".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :classification, comment: "A designation applied to the resource that indicates the subject by applying a formal system of coding and organizing resources according to subject areas.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, equivalentProperty: "http://id.loc.gov/vocabulary/classSchemes/classification".freeze, label: "Classification".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :classificationGroup, comment: "Used when classification scheme is not in controlled vocabulary. Bundles together the classification number with its scheme.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Classification Group".freeze, - range: "mods:ClassificationGroup".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ClassificationGroup".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :classificationGroupScheme, comment: "The classification scheme".freeze, - domain: "mods:ClassificationGroup".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ClassificationGroup".freeze, label: "Classification Group - Scheme".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :classificationGroupValue, comment: "The classification value".freeze, - domain: "mods:ClassificationGroup".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ClassificationGroup".freeze, label: "Classification Group - Value".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :dateCaptured, comment: "Date that the resource was digitized or a subsequent snapshot was taken.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Captured".freeze, - subPropertyOf: "mods:date".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#date".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateCapturedEnd, comment: "When there is both a start and end for the capture date this is the end date.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Captured - End".freeze, - subPropertyOf: "mods:dateCaptured".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateCaptured".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateCapturedStart, comment: "When there is both a start and end for the capture date this is the start date.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Captured - Start".freeze, - subPropertyOf: "mods:dateCaptured".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateCaptured".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateCreated, comment: "The resource's creation date.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: " Date Created".freeze, - subPropertyOf: "mods:date".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#date".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateCreatedEnd, comment: "When there is both a start and end for the creation date this is the end date.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Created - End".freeze, - subPropertyOf: "mods:dateCreated".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateCreated".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateCreatedStart, comment: "When there is both a start and end for the creation date this is the start date.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Created - Start".freeze, - subPropertyOf: "mods:dateCreated".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateCreated".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateModified, comment: "Date when resource was modified.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Modified".freeze, - subPropertyOf: "mods:date".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#date".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateModifiedEnd, comment: "When there is both a start and end for the modification date this is the end date.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Modified - End".freeze, - subPropertyOf: "mods:dateModified".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateModified".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateModifiedStart, comment: "When there is both a start and end for the modification date this is the start date.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Modified - Start".freeze, - subPropertyOf: "mods:dateModified".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateModified".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateOfCopyright, comment: "Date when resource was copyrighted.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date of Copyright".freeze, - subPropertyOf: "mods:date".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#date".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateOfCopyrightEnd, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date of Copyright - End".freeze, - subPropertyOf: "mods:dateOfCopyright".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateOfCopyright".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateOfCopyrightStart, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date of Copyright - Start".freeze, - subPropertyOf: "mods:dateOfCopyright".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateOfCopyright".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateValid, comment: "A date when resource was valid. (Not necessarily the first or last date, but this is an assertion that on that given date the information was valid.)".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Valid".freeze, - subPropertyOf: "mods:date".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#date".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateValidEnd, comment: "When the resource is valid over an interval with a start and end date, this is the end date. (When start and end date are given, it is an assertion that the information was valid over the course of this interval. It does not necessarily assert that is was not valid before the start or after the end of the interval.)".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Valid - End".freeze, - subPropertyOf: "mods:dateValid".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateValid".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :dateValidStart, comment: "When the resource is valid over an interval with a start and end date, this is the start date. (When start and end date are given, it is an assertion that the information was valid over the course of this interval. It does not necessarily assert that is was not valid before the start or after the end of the interval.)".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date Valid - Start".freeze, - subPropertyOf: "mods:dateValid".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#dateValid".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :digitalOrigin, comment: "a designation of the source of a digital file important to its creation, use and management.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Digital Origin".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :edition, comment: "Version of the resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Edition".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :frequency, comment: "publication frequency".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Frequency".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :genre, comment: "The genre (or one of several genres) of the resource. Represented in the MADS namespace. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Genre".freeze, - range: "mads:GenreForm".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#GenreForm".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :identifier, comment: "identifier is a property for which all terms in the \"identifier\" vocabulary become subproperties. Thus for example 'identifer:isbn' is a subproperty saying in effect \"has this ISBN\" where 'isbn' is a term within that vocabulary. (The prefix 'identifier:' is used to denote the namespace for the \"identifier\" vocabulary.".freeze, - domain: "mods:ModsResource".freeze, - equivalentProperty: "identifiers:id".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + equivalentProperty: "http://id.loc.gov/vocabulary/identifiers/id".freeze, label: "Identifier".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identifierGroup, comment: "Used when identifier type is not in controlled vocabulary. Bundles together the identifier with its type.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Identifier Group".freeze, - range: "mods:IdentifierGroup".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#IdentifierGroup".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :identifierGroupType, comment: "The identifier type.".freeze, - domain: "mods:IdentifierGroup".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#IdentifierGroup".freeze, label: "Identifier Group - Type".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identifierGroupValue, comment: "The identifier value\t.".freeze, - domain: "mods:IdentifierGroup".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#IdentifierGroup".freeze, label: "Identifier Group - Value".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identifierValue, comment: "Used in conjuction with identifierType, when the type is not from the controlled vocabulary.".freeze, - domain: "mods:IdentifierGroup".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#IdentifierGroup".freeze, label: "Identifier - Value".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :issuance, comment: "Describes the issuance of the resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Issuance".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :languageOfResource, comment: "The language (or one of several languages) of the resource. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Language of Resource".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :locationCopy, comment: "Information about a specific tangible instance of a bibliographic resource or set which comprises one or more pieces via indication of sublocation and/or locator.".freeze, - domain: "mods:Location".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Location".freeze, label: "Location - Copy".freeze, - range: "mods:LocationCopy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :locationCopyElectronicLocator, comment: "URI of the copy of the resource.".freeze, - domain: "mods:LocationCopy".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, label: "Location - Copy -- Electronic Locator".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationCopyEnumerationAndChronology, comment: "A summary holdings statement for the copy. A string with information including volume or issue, date of publication or date of issue of a component of a multi-part resource, distinguishing it from other components of the same resource. ".freeze, - domain: "mods:LocationCopy".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, label: "Location - Copy - Enumeration And Chronology".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationCopyEnumerationAndChronologyBasic, comment: "One of three levels of enumerationAndChronology: 'basic'".freeze, - domain: "mods:LocationCopy".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, label: "Location - Copy - Enumeration And Chronology -- Basic".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mods:locationCopyEnumerationAndChronology".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#locationCopyEnumerationAndChronology".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationCopyEnumerationAndChronologyIndex, comment: "One of three levels of enumerationAndChronology:'index'".freeze, - domain: "mods:LocationCopy".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, label: "Location - Copy - Enumeration And Chronology -- Index".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mods:locationCopyEnumerationAndChronology".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#locationCopyEnumerationAndChronology".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationCopyEnumerationAndChronologySupplement, comment: "One of three levels of enumerationAndChronology:'supplement'".freeze, - domain: "mods:LocationCopy".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, label: "Location - Copy - Enumeration And Chronology -- Supplement".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mods:locationCopyEnumerationAndChronology".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#locationCopyEnumerationAndChronology".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationCopyForm, comment: "The form of a particular copy may be indicated when the general description refers to multiple forms and there is different detailed holdings information associated with different forms.".freeze, - domain: "mods:LocationCopy".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, label: "Location - Copy -- Form".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationCopyNote, comment: "A note pertaining to a specific copy.".freeze, - domain: "mods:LocationCopy".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, label: "Location - Copy -- Note".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationCopyShelfLocator, comment: "Shelfmark or other shelving designation that indicates the location identifier for a copy.".freeze, - domain: "mods:LocationCopy".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, label: "Location - Copy -- Shelf Locator".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationCopySublocation, comment: "Department, division, or section of an institution holding a copy of the resource.".freeze, - domain: "mods:LocationCopy".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#LocationCopy".freeze, label: "Location - Copy -- Sublocation".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationOfResource, comment: "The location (or one of several locations) at which the resource resides.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Location".freeze, - range: "mods:Location".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#Location".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :locationPhysical, comment: "The institution or repository that holds the resource, or where it is available.".freeze, - domain: "mods:Location".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Location".freeze, label: "Location - Physical Location".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationShelfLocator, comment: "Shelfmark or other shelving designation".freeze, - domain: "mods:Location".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Location".freeze, label: "Location - Shelf Locator".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locationUrl, comment: "Location of the resource (a URL)".freeze, - domain: "mods:Location".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Location".freeze, label: "Location - URL".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :mediaType, comment: "An Internet Media (MIME) type e.g. text/html. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Media Type".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :name, comment: "A name - personal, corporate, conference, or family - associated with the resource. Represented in the MADS namespace. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Name".freeze, - range: "mads:Name".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Name".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :namePrincipal, comment: "A name that has been distinguished as the principal name associated with the resource. There should be no more than one name principal name. (The rule for determining the principal name is as follows: If the role associated with the name is 'creator' AND if it is the only name whose role is 'creator' then it is the principal name. Thus if there are more than one name, or no name, whose role is 'creator', then there is no principal name.) If there is a principal name, and if there is a uniform title, then that name and title are to be combined into a nameTitle. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Name - Principle".freeze, - range: "mads:Name".freeze, - subPropertyOf: "mods:name".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Name".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#name".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :note, comment: "Textual information about the resource. This property is used when no type is specified. (In contrast to hasTypedNote, whose object is an aggregator that includes both the type and note.)".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Note".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :noteGroup, comment: "Used for a note with a type (other than \"statement of responsibility\")".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Note Group".freeze, - range: "mods:NoteGroup".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#NoteGroup".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :noteGroupType, comment: "A property of NoteGroup - used when a type is supplied for the note. The type.".freeze, - domain: "mods:NoteGroup".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#NoteGroup".freeze, label: "NoteGroup - Type".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :noteGroupValue, comment: "A property of noteGroup - used when a type is supplied for the note. The text of the note.".freeze, - domain: "mods:NoteGroup".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#NoteGroup".freeze, label: "NoteGroup - Value".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :part, comment: "Information about a physical part of the resource, including the part number, its caption and title, and dimensions. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Part".freeze, - range: "mods:Part".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#Part".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :partDate, comment: "Date associated with a part.".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part Date".freeze, - subPropertyOf: "mods:date".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#date".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :partDetailType, comment: "The type of the resource part, e.g. volume, issue, page.".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - Detail Type".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partEnd, comment: "The value of the end of a part. For example, if unit of the part has value 'page', this is the number of the last page. ".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - End".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partLevel, comment: "A property of a part - the level of numbering in the host/parent item.".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - Level".freeze, - range: "xsd:positiveInteger".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partList, comment: "A property of a part - a textual listing of the units within the part.".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - List".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partName, comment: "A string that designates the part name.".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - Name".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partNumber, comment: "A string that designates the part number.".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - Number".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partOrder, comment: "An integer that designates the sequence of parts".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - Order".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partStart, comment: "The beginning unit of the part.".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - Start".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partTotal, comment: "The total number of units within a part.".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - Total".freeze, - range: "xsd:positiveInteger".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partType, comment: "The segment type of a part. (When parts are included, the resource is ususally a document, so the part type would be the segment type of the document.)".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - Type".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :partUnit, comment: "the unit -- e.g. page, chapter -- applying to the start, end, and total values.".freeze, - domain: "mods:Part".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#Part".freeze, label: "Part - Unit".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :physicalExtent, comment: "a statement of the number and specific material of the units of the resource that express physical extent.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Physical Extent".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :physicalForm, comment: "A particular physical presentation of the resource, including the physical form or medium of material for a resource. Example: oil paint".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Physical Form".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :placeOfOrigin, comment: "Place of publication/origin. Used in connection with the origin of a resource, i.e., creation, publication, issuance, etc. Represented as a MADS Geographic.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Place".freeze, - range: "mads:Geographic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publisher, comment: "The name of the entity that published, printed, distributed, released, issued, or produced the resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Publisher".freeze, - range: "mads:Name".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Name".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :recordContentSource, comment: "The code or name of the organization that either created the original description or modified it.".freeze, domain: "http://id.loc.gov/ontologies/RecordInfo#AdminMetadata".freeze, label: "Record Content Source".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :recordDescriptionStandard, comment: "Part of administrative metadata. The standard which designates the rules used for the content of the description.".freeze, domain: "http://id.loc.gov/ontologies/RecordInfo#AdminMetadata".freeze, label: "Record Description Standard".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :recordIdentifier, comment: "The system control number assigned by the organization creating, using, or distributing the description.".freeze, domain: "http://id.loc.gov/ontologies/RecordInfo#AdminMetadata".freeze, label: "Record Identifier".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :recordOrigin, comment: "Describes the origin or provenance of the description.".freeze, domain: "http://id.loc.gov/ontologies/RecordInfo#AdminMetadata".freeze, label: "Record Origin".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :reformattingQuality, comment: "The reformatting quality; e.g. access, preservation, replacement.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Reformatting Quality".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :relatedConstituent, comment: "Relates the described MODS resource to another MODS resource which is a constituent of the described resource. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Constituent".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedFormat, comment: "Relates the described MODS resource to a similar MODS resource of a different format.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Other Format".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedHost, comment: "Relates the described MODS resource to another MODS resource which is a host of the described resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Host".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedInstantiation, comment: "Relates the described resource to a another MODS resource with different origination information.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Instantiation".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedItem, comment: "Relates the described MODS resource to another, related MODS resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related Item".freeze, - range: "mods:ModsResource".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedOriginal, comment: "Relates the described MODS resource to another MODS resource which is an original of the described resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Original".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedPreceding, comment: "Relates the described MODS resource to a MODS resource which preceded the described resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Preceding".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedReference, comment: "Relates the described MODS resource to another MODS resource which the described resource references.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Reference".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedReferencedBy, comment: ["".freeze, "Relates the described MODS resource to another MODS resource which references the described resource.".freeze], - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Referenced By".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedReview, comment: "Relates the described MODS resource to another MODS resource which is review of the described resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Review".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedSeries, comment: "Relates the described resource to a another MODS resource which is a series of which the described resource is a part.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Series".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedSucceeding, comment: "Relates the described resource to a another MODS resource which suceeded it.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related item - Suceeding".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relatedVersion, comment: "Relates the described MODS resource to another MODS resource which is a different version of the described resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Related Item - Other Version".freeze, - range: "mods:ModsResource".freeze, - subPropertyOf: "mods:relatedItem".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#relatedItem".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :role, comment: "role is an abstract property, for which all terms in the relator vocabulary of roles become subproperties. Thus for example 'relator:artist' refers to the role 'artist' within that vocabulary. (The prefix 'relator:' is used to denote the namespace for the \"relator\" vocabulary. \n\nThe property 'relator:artist' relates the resource to an artist associated with the resource, represented as a mads name.".freeze, - domain: "mods:ModsResource".freeze, - equivalentProperty: "marcrelators:role".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, + equivalentProperty: "http://id.loc.gov/vocabulary/relators/role".freeze, label: "Role (unbound)".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :roleRelationship, comment: "Binds a name to the role that the named entity played for the resource. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Role Relationship".freeze, - range: "mods:RoleRelationship".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mods/rdf/v1#RoleRelationship".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :roleRelationshipName, comment: "The name included in a roleRelationship. The roleRelationship binds an name and a role, where the name is a name associated with the resource and is specified elsewhere via the hasName property. This mechanism is used when the role is not part of a known vocabulary. Otherwise, the relationship is expressed by using the role vocabulary term as the property; for example, see relator:creator.".freeze, - domain: "mods:RoleRelationship".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#RoleRelationship".freeze, label: "Role Relationship - Name".freeze, - range: "mads:Name".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Name".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :roleRelationshipRole, comment: "The role associated with a name, where the name and role are bound together in a roleRelationship.".freeze, - domain: "mods:RoleRelationship".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#RoleRelationship".freeze, label: "Role Relationship - Role".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :statementOfResponsibility, comment: "A note, when the note type is \"statement of responsibility\"".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Statement of Responsibility".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :subject, comment: "An abstract property defined for which the various subject catergories (e.g. subjectGenre, subjectTitle) are subproperties.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectComplex, comment: "A subject of the resource composed of several component subjects. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Complex".freeze, - range: "mads:ComplexSubject".freeze, - subPropertyOf: "mods:subject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#ComplexSubject".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectGenre, comment: "A subject of the resource which is a genre, expressed in terms of a MADS GenreForm.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Genre Subject".freeze, - range: "mads:GenreForm".freeze, - subPropertyOf: "mods:subject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#GenreForm".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectGeographic, comment: "A subject of the resource which is a geographic entity, expressed in terms of a MADS Geographic.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Geographic ".freeze, - range: "mads:Geographic".freeze, - subPropertyOf: "mods:subject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectGeographicCode, comment: "A subject of the resource which is a geographic entity, expressed as a geographic code and in terms of a MADS Geographic.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Geographic Code ".freeze, - range: "mads:Geographic".freeze, - subPropertyOf: "mods:subjectGeographic".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Geographic".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subjectGeographic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectHierarchicalGeographic, comment: "A subject of the resource which is a hierarchy of geographic entities expressed in terms of a MADS Geographics.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Hierarchical Geographic ".freeze, - range: "mads:HierarchicalGeographic".freeze, - subPropertyOf: "mods:subject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#HierarchicalGeographic".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectName, comment: "A subject of the resource which is a name, expressed in terms of a MADS Name.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Name Subject".freeze, - range: "mads:Name".freeze, - subPropertyOf: "mods:subject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Name".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectOccupation, comment: "A subject of the resource which is an occupation, expressed in terms of a MADS Occupation.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Occupation".freeze, - range: "mads:Occupation".freeze, - subPropertyOf: "mods:subject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Occupation".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectTemporal, comment: "A subject of the resource which is a temporal expression, expressed in terms of a MADS Temporal.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Temporal".freeze, - range: "mads:Temporal".freeze, - subPropertyOf: "mods:subject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Temporal".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectTitle, comment: "A subject of the resource which is a title, expressed in terms of a MADS Title.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Title".freeze, - range: "mads:Title".freeze, - subPropertyOf: "mods:subject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Title".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectTopic, comment: "A subject of the resource which is a topic, expressed in terms of a MADS Topic.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Subject - Topic".freeze, - range: "mads:Topic".freeze, - subPropertyOf: "mods:subject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Topic".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :tableOfContents, comment: "Description of the contents of the resource.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Table of Contents".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :targetAudience, comment: "The target audience of the resource. Examples: adolescent, adult, general, juvenile, preschool, specialized.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Target Audience".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :title, comment: "A title for the resource. Represented as a MADS Title.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Title".freeze, - range: "mads:Title".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Title".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :titlePrincipal, comment: "A title which has been distinguished as the principal title. (This corresponds to a MODS XML titleInfo with no type attribute.) There should be no more than one principal title. Represented as a MADS Title.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Title - Principal".freeze, - range: "mads:Title".freeze, - subPropertyOf: "mods:title".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Title".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#title".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :titleUniform, comment: "A title which has been distinguished as a uniform title. (This corresponds to a MODS XML titleInfo with 'type=uniform' attribute.) There should be no more than one uniform title. Represented as a MADS Title, or, if there is a primary name, it is represented as a MADS NameTitle. ".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Title - Uniform".freeze, - range: "mads:Title".freeze, - subPropertyOf: "mods:title".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.loc.gov/mads/rdf/v1#Title".freeze, + subPropertyOf: "http://www.loc.gov/mods/rdf/v1#title".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze # Extra definitions term :access, - type: ["http://www.loc.gov/mods/rdf/ReformattingQuality".freeze, "owl:NamedIndividual".freeze] + type: ["http://www.loc.gov/mods/rdf/ReformattingQuality".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :date, comment: "An abstract property for which date properties in general are subproperties.".freeze, - domain: "mods:ModsResource".freeze, + domain: "http://www.loc.gov/mods/rdf/v1#ModsResource".freeze, label: "Date".freeze term :digitizedAnalog, - type: ["http://www.loc.gov/mods/rdf/DigitalOrigin".freeze, "owl:NamedIndividual".freeze] + type: ["http://www.loc.gov/mods/rdf/DigitalOrigin".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :digitizedMicrofilm, - type: ["http://www.loc.gov/mods/rdf/DigitalOrigin".freeze, "owl:NamedIndividual".freeze] + type: ["http://www.loc.gov/mods/rdf/DigitalOrigin".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :integratingResource, - type: ["http://www.loc.gov/mods/rdf/Issuance".freeze, "owl:NamedIndividual".freeze] + type: ["http://www.loc.gov/mods/rdf/Issuance".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :monographic, - type: ["http://www.loc.gov/mods/rdf/Issuance".freeze, "owl:NamedIndividual".freeze] + type: ["http://www.loc.gov/mods/rdf/Issuance".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :reformattedDigital, - type: ["http://www.loc.gov/mods/rdf/DigitalOrigin".freeze, "owl:NamedIndividual".freeze] + type: ["http://www.loc.gov/mods/rdf/DigitalOrigin".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :serial, - type: ["http://www.loc.gov/mods/rdf/Issuance".freeze, "owl:NamedIndividual".freeze] + type: ["http://www.loc.gov/mods/rdf/Issuance".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] end end diff --git a/lib/rdf/vocab/nfo.rb b/lib/rdf/vocab/nfo.rb index f45d808..ae66c66 100644 --- a/lib/rdf/vocab/nfo.rb +++ b/lib/rdf/vocab/nfo.rb @@ -3,810 +3,806 @@ # This file generated automatically using rdf vocabulary format from http://www.semanticdesktop.org/ontologies/2007/03/22/nfo# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # class NFO < RDF::StrictVocabulary - # end NFO = Class.new(RDF::StrictVocabulary("http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#")) do # Class definitions term :Application, comment: %(An application).freeze, label: "Application".freeze, - subClassOf: "nfo:Software".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Software".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Archive, comment: %(A compressed file. May contain other files or folder inside. ).freeze, label: "Archive".freeze, - subClassOf: "nfo:DataContainer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#DataContainer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ArchiveItem, comment: %(A file entity inside an archive.).freeze, label: "ArchiveItem".freeze, - subClassOf: "nfo:EmbeddedFileDataObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#EmbeddedFileDataObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Attachment, comment: %(A file attached to another data object. Many data formats allow for attachments: emails, vcards, ical events, id3 and exif...).freeze, label: "Attachment".freeze, - subClassOf: "nfo:EmbeddedFileDataObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#EmbeddedFileDataObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Audio, comment: %(A file containing audio content).freeze, label: "Audio".freeze, - subClassOf: "nfo:Media".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Bookmark, comment: %(A bookmark of a webbrowser. Use nie:title for the name/label, nie:contentCreated to represent the date when the user added the bookmark, and nie:contentLastModified for modifications. nfo:bookmarks to store the link.).freeze, label: "Bookmark".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BookmarkFolder, comment: %(A folder with bookmarks of a webbrowser. Use nfo:containsBookmark to relate Bookmarks. Folders can contain subfolders, use containsBookmarkFolder to relate them.).freeze, label: "Bookmark Folder".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CompressionType, comment: %(Type of compression. Instances of this class represent the limited set of values allowed for the nfo:compressionType property.).freeze, label: "CompressionType".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Cursor, comment: %(A Cursor.).freeze, label: "Cursor".freeze, - subClassOf: "nfo:RasterImage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#RasterImage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataContainer, comment: %(A superclass for all entities, whose primary purpose is to serve as containers for other data object. They usually don't have any "meaning" by themselves. Examples include folders, archives and optical disc images.).freeze, label: "DataContainer".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeletedResource, comment: %(A file entity that has been deleted from the original source. Usually such entities are stored within various kinds of 'Trash' or 'Recycle Bin' folders.).freeze, label: "DeletedResource".freeze, - subClassOf: "nfo:FileDataObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Document, comment: %(A generic document. A common superclass for all documents on the desktop.).freeze, label: "Document".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmbeddedFileDataObject, comment: %(A file embedded in another data object. There are many ways in which a file may be embedded in another one. Use this class directly only in cases if none of the subclasses gives a better description of your case.).freeze, label: "EmbeddedFileDataObject".freeze, - subClassOf: "nfo:FileDataObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EncryptionStatus, comment: %(The status of the encryption of an InformationElement. nfo:encryptedStatus means that the InformationElement has been encrypted and couldn't be decrypted by the extraction software, thus no content is available. nfo:decryptedStatus means that decryption was successfull and the content is available.).freeze, label: "EncryptionStatus".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Executable, comment: %(An executable file.).freeze, label: "Executable".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FileDataObject, comment: %(A resource containing a finite sequence of bytes with arbitrary information, that is available to a computer program and is usually based on some kind of durable storage. A file is durable in the sense that it remains available for programs to use after the current program has finished.).freeze, label: "file".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FileHash, comment: %(A fingerprint of the file, generated by some hashing function.).freeze, label: "FileHash".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Filesystem, comment: %(A filesystem. Examples of filesystems include hard disk partitions, removable media, but also images thereof stored in files such as ISO.).freeze, label: "Filesystem".freeze, - subClassOf: "nfo:DataContainer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#DataContainer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FilesystemImage, comment: %(An image of a filesystem. Instances of this class may include CD images, DVD images or hard disk partition images created by various pieces of software \(e.g. Norton Ghost\). Deprecated in favor of nfo:Filesystem.).freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nao#deprecated" => %(true).freeze, label: "FilesystemImage".freeze, - subClassOf: "nfo:Filesystem".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Filesystem".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Folder, comment: %(A folder/directory. Examples of folders include folders on a filesystem and message folders in a mailbox.).freeze, label: "Folder".freeze, - subClassOf: "nfo:DataContainer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#DataContainer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Font, comment: %(A font.).freeze, label: "Font".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HardDiskPartition, comment: %(A partition on a hard disk).freeze, label: "HardDiskPartition".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HtmlDocument, comment: %(A HTML document, may contain links to other files.).freeze, label: "HtmlDocument".freeze, - subClassOf: "nfo:PlainTextDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#PlainTextDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Icon, comment: %(An Icon \(regardless of whether it's a raster or a vector icon. A resource representing an icon could have two types \(Icon and Raster, or Icon and Vector\) if required.).freeze, label: "Icon".freeze, - subClassOf: "nfo:Image".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Image".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Image, comment: %(A file containing an image.).freeze, label: "Image".freeze, - subClassOf: "nfo:Visual".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Visual".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LocalFileDataObject, comment: %(A local file data object which is stored on a local file system. Its nie:url always uses the file:/ protocol. The main use of this class is to distinguish local and non-local files.).freeze, label: "local file".freeze, - subClassOf: "nfo:FileDataObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Media, comment: %(A piece of media content. This class may be used to express complex media containers with many streams of various media content \(both aural and visual\).).freeze, label: "Media".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaFileListEntry, comment: %(A single node in the list of media files contained within an MediaList instance. This class is intended to provide a type all those links have. In valid NRL untyped resources cannot be linked. There are no properties defined for this class but the application may expect rdf:first and rdf:last links. The former points to the DataObject instance, interpreted as Media the latter points at another MediaFileListEntr. At the end of the list there is a link to rdf:nil.).freeze, label: "MediaFileListEntry".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaList, comment: %(A file containing a list of media files.e.g. a playlist).freeze, label: "MediaList".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaStream, comment: %(A stream of multimedia content, usually contained within a media container such as a movie \(containing both audio and video\) or a DVD \(possibly containing many streams of audio and video\). Most common interpretations for such a DataObject include Audio and Video.).freeze, label: "MediaStream".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MindMap, comment: %(A MindMap, created by a mind-mapping utility. Examples might include FreeMind or mind mapper.).freeze, label: "MindMap".freeze, - subClassOf: "nfo:Document".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Document".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OperatingSystem, comment: %(An OperatingSystem).freeze, label: "OperatingSystem".freeze, - subClassOf: "nfo:Software".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Software".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaginatedTextDocument, comment: %(A file containing a text document, that is unambiguously divided into pages. Examples might include PDF, DOC, PS, DVI etc.).freeze, label: "PaginatedTextDocument".freeze, - subClassOf: "nfo:TextDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#TextDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Placemark, comment: %(One placemark within a placemark container/file. Use nie:title for the name/label, nao:creator for defining the creator.).freeze, label: "Placemark".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PlacemarkContainer, comment: %(A data object containing placemark\(s\). Use nie:contentCreated to represent the date when the user created the dataobject, nao:creator for defining the creator, nie:contentLastModified for modifications. nfo:containsPlacemark to refer to individual placemarks within.).freeze, label: "Placemark Container".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PlainTextDocument, comment: %(A file containing plain text \(ASCII, Unicode or other encodings\). Examples may include TXT, HTML, XML, program source code etc.).freeze, label: "PlainTextDocument".freeze, - subClassOf: "nfo:TextDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#TextDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Presentation, comment: %(A Presentation made by some presentation software \(Corel Presentations, OpenOffice Impress, MS Powerpoint etc.\)).freeze, label: "Presentation".freeze, - subClassOf: "nfo:Document".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Document".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RasterImage, comment: %(A raster image.).freeze, label: "RasterImage".freeze, - subClassOf: "nfo:Image".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Image".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RemoteDataObject, comment: %(A file data object stored at a remote location. Don't confuse this class with a RemotePortAddress. This one applies to a particular resource, RemotePortAddress applies to an address, that can have various interpretations.).freeze, label: "RemoteDataObject".freeze, - subClassOf: "nfo:FileDataObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RemotePortAddress, comment: %(An address specifying a remote host and port. Such an address can be interpreted in many ways \(examples of such interpretations include mailboxes, websites, remote calendars or filesystems\), depending on an interpretation, various kinds of data may be extracted from such an address.).freeze, label: "RemotePortAddress".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Software, comment: %(A piece of software. Examples may include applications and the operating system. This interpretation most commonly applies to SoftwareItems.).freeze, label: "Software".freeze, subClassOf: ["http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Agent".freeze], - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SoftwareItem, comment: %(A DataObject representing a piece of software. Examples of interpretations of a SoftwareItem include an Application and an OperatingSystem.).freeze, label: "SoftwareItem".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SoftwareService, comment: %(A service published by a piece of software, either by an operating system or an application. Examples of such services may include calendar, addressbook and mailbox managed by a PIM application. This category is introduced to distinguish between data available directly from the applications \(Via some Interprocess Communication Mechanisms\) and data available from files on a disk. In either case both DataObjects would receive a similar interpretation \(e.g. a Mailbox\) and wouldn't differ on the content level.).freeze, label: "SoftwareService".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SourceCode, comment: %(Code in a compilable or interpreted programming language.).freeze, label: "SourceCode".freeze, - subClassOf: "nfo:PlainTextDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#PlainTextDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Spreadsheet, comment: %(A spreadsheet, created by a spreadsheet application. Examples might include Gnumeric, OpenOffice Calc or MS Excel.).freeze, label: "Spreadsheet".freeze, - subClassOf: "nfo:Document".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Document".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TextDocument, comment: %(A text document).freeze, label: "TextDocument".freeze, - subClassOf: "nfo:Document".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Document".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Trash, comment: %(Represents a container for deleted files, a feature common in modern operating systems.).freeze, label: "Trash".freeze, - subClassOf: "nfo:DataContainer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#DataContainer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VectorImage, label: "VectorImage".freeze, - subClassOf: "nfo:Image".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Image".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Video, comment: %(A video file.).freeze, label: "Video".freeze, - subClassOf: "nfo:Visual".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Visual".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Visual, comment: %(File containing visual content.).freeze, label: "Visual".freeze, - subClassOf: "nfo:Media".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebDataObject, comment: %(An information resources of which representations \(files, streams\) can be retrieved through a web server. They may be generated at retrieval time. Typical examples are pages served by PHP or AJAX or mp3 streams.).freeze, label: "web data object".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Website, comment: %(A website, usually a container for remote resources, that may be interpreted as HTMLDocuments, images or other types of content.).freeze, label: "Website".freeze, subClassOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :aspectRatio, comment: %(Visual content aspect ratio. \(Width divided by Height\)).freeze, - domain: "nfo:Visual".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Visual".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "aspectRatio".freeze, - range: "xsd:float".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :averageBitrate, comment: %(The average overall bitrate of a media container. \(i.e. the size of the piece of media in bits, divided by it's duration expressed in seconds\).).freeze, - domain: "nfo:Media".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "averageBitrate".freeze, - range: "xsd:float".freeze, - subPropertyOf: "nfo:rate".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#rate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :belongsToContainer, comment: %(Models the containment relations between Files and Folders \(or CompressedFiles\).).freeze, domain: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, label: "belongsToContainer".freeze, - range: "nfo:DataContainer".freeze, + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#DataContainer".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#isPartOf".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitDepth, comment: %(A common superproperty for all properties signifying the amount of bits for an atomic unit of data. Examples of subproperties may include bitsPerSample and bitsPerPixel).freeze, - domain: "nfo:Media".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "bitDepth".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitrateType, comment: %(The type of the bitrate. Examples may include CBR and VBR.).freeze, - domain: "nfo:Media".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "bitrateType".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitsPerSample, comment: %(Amount of bits in each audio sample.).freeze, - domain: "nfo:Audio".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Audio".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "bitsPerSample".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "nfo:bitDepth".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#bitDepth".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookmarks, comment: %(The address of the linked object. Usually a web URI.).freeze, - domain: "nfo:Bookmark".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Bookmark".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#cardinality" => %(1).freeze, label: "link".freeze, range: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#links".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :channels, comment: %(Number of channels. This property is to be used directly if no detailed information is necessary. Otherwise use more detailed subproperties.).freeze, - domain: "nfo:Audio".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Audio".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "channels".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterCount, comment: %(The amount of characters in the document.).freeze, - domain: "nfo:TextDocument".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#TextDocument".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "characterCount".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterPosition, comment: %(Character position of the bookmark.).freeze, - domain: "nfo:Bookmark".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Bookmark".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "characterPosition".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codec, comment: %(The name of the codec necessary to decode a piece of media.).freeze, - domain: "nfo:Media".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, label: "codec".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colorCount, comment: %(The number of colors used/available in a raster image.).freeze, - domain: "nfo:RasterImage".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#RasterImage".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "color count".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colorDepth, comment: %(Amount of bits used to express the color of each pixel.).freeze, - domain: "nfo:Visual".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Visual".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "colorDepth".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "nfo:bitDepth".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#bitDepth".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :commentCharacterCount, comment: %(The amount of character in comments i.e. characters ignored by the compiler/interpreter.).freeze, - domain: "nfo:SourceCode".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#SourceCode".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "commentCharacterCount".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :compressionType, comment: %(The type of the compression. Values include, 'lossy' and 'lossless'.).freeze, - domain: "nfo:Media".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "compressionType".freeze, - range: "nfo:CompressionType".freeze, - type: "rdf:Property".freeze + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#CompressionType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :conflicts, comment: %(States that a piece of software is in conflict with another piece of software.).freeze, - domain: "nfo:Software".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Software".freeze, label: "conflicts".freeze, - range: "nfo:Software".freeze, - type: "rdf:Property".freeze + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Software".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containsBookmark, comment: %(The folder contains a bookmark.).freeze, - domain: "nfo:BookmarkFolder".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#BookmarkFolder".freeze, label: "contains bookmark".freeze, - range: "nfo:Bookmark".freeze, + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Bookmark".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#hasLogicalPart".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containsBookmarkFolder, comment: %(The folder contains a bookmark folder.).freeze, - domain: "nfo:BookmarkFolder".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#BookmarkFolder".freeze, label: "contains folder".freeze, - range: "nfo:BookmarkFolder".freeze, + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#BookmarkFolder".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#hasLogicalPart".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containsPlacemark, comment: %(Containment relation between placemark containers \(files\) and placemarks within.).freeze, - domain: "nfo:PlacemarkContainer".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#PlacemarkContainer".freeze, label: "contains Placemark".freeze, - range: "nfo:Placemark".freeze, + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Placemark".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#hasLogicalPart".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :count, comment: %(A common superproperty for all properties signifying the amount of atomic media data units. Examples of subproperties may include sampleCount and frameCount.).freeze, - domain: "nfo:Media".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, label: "count".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :definesClass, comment: %(Name of a class defined in the source code file.).freeze, - domain: "nfo:SourceCode".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#SourceCode".freeze, label: "definesClass".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :definesFunction, comment: %(A name of a function/method defined in the given source code file.).freeze, - domain: "nfo:SourceCode".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#SourceCode".freeze, label: "definesFunction".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :definesGlobalVariable, comment: %(Name of a global variable defined within the source code file.).freeze, - domain: "nfo:SourceCode".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#SourceCode".freeze, label: "definesGlobalVariable".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deletionDate, comment: %(The date and time of the deletion.).freeze, - domain: "nfo:DeletedResource".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#DeletedResource".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "deletionDate".freeze, - range: "xsd:dateTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :depiction, comment: %(Relates an information element to an image which depicts said element.).freeze, - domain: "rdfs:Resource".freeze, + domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(nfo:depicts).freeze, label: "depiction".freeze, - range: "nfo:Image".freeze, - type: "rdf:Property".freeze + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Image".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :depicts, comment: %(Relates an image to the information elements it depicts.).freeze, - domain: "nfo:Image".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Image".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(nfo:depiction).freeze, label: "depicts".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duration, comment: %(Duration of a media piece.).freeze, - domain: "nfo:Media".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "duration".freeze, - range: "xsd:duration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encoding, comment: %(The encoding used for the Embedded File. Examples might include BASE64 or UUEncode).freeze, - domain: "nfo:EmbeddedFileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#EmbeddedFileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "encoding".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encryptionStatus, comment: %(The status of the encryption of the InformationElement.).freeze, domain: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "encryptionStatus".freeze, - range: "nfo:EncryptionStatus".freeze, - type: "rdf:Property".freeze + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#EncryptionStatus".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileCreated, comment: %(File creation date).freeze, - domain: "nfo:FileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "fileCreated".freeze, - range: "xsd:dateTime".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#created".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileLastAccessed, comment: %(Time when the file was last accessed.).freeze, - domain: "nfo:FileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "fileLastAccessed".freeze, - range: "xsd:dateTime".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, subPropertyOf: "dc11:date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileLastModified, comment: %(last modification date).freeze, - domain: "nfo:FileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nao#deprecated" => %(true).freeze, label: "fileLastModified".freeze, - range: "xsd:dateTime".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#lastModified".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileName, comment: %(Name of the file, together with the extension).freeze, - domain: "nfo:FileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "fileName".freeze, - range: "xsd:string".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#prefLabel".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileOwner, comment: %(The owner of the file as defined by the file system access rights feature.).freeze, - domain: "nfo:FileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "fileOwner".freeze, range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nco#Contact".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileSize, comment: %(The size of the file in bytes. For compressed files it means the size of the packed file, not of the contents. For folders it means the aggregated size of all contained files and folders ).freeze, - domain: "nfo:FileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "fileSize".freeze, - range: "xsd:integer".freeze, + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#byteSize".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileUrl, comment: %(URL of the file. It points at the location of the file. In cases where creating a simple file:// or http:// URL for a file is difficult \(e.g. for files inside compressed archives\) the applications are encouraged to use conventions defined by Apache Commons VFS Project at http://jakarta.apache.org/ commons/ vfs/ filesystems.html.).freeze, - domain: "nfo:FileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nao#deprecated" => %(true).freeze, label: "fileUrl".freeze, - range: "rdfs:Resource".freeze, + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#url".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :filesystemType, comment: %(Type of filesystem such as ext3 and ntfs.).freeze, - domain: "nfo:Filesystem".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Filesystem".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "filesystemType".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fontFamily, comment: %(The name of the font family.).freeze, - domain: "nfo:Font".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Font".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "fontFamily".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foundry, comment: %(The foundry, the organization that created the font.).freeze, - domain: "nfo:Font".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Font".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "foundry".freeze, range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nco#Contact".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nco#creator".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frameCount, comment: %(The amount of frames in a video sequence.).freeze, - domain: "nfo:Video".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Video".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "frameCount".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "nfo:count".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#count".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frameRate, comment: %(Amount of video frames per second.).freeze, - domain: "nfo:Video".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Video".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "frameRate".freeze, - range: "xsd:float".freeze, - subPropertyOf: "nfo:rate".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#rate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :freeSpace, comment: %(Unoccupied storage space of the filesystem.).freeze, - domain: "nfo:Filesystem".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Filesystem".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "freeSpace".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frontChannels, comment: %(Number of front channels.).freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "frontChannels".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "nfo:channels".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#channels".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasHash, comment: %(Links the file with it's hash value.).freeze, - domain: "nfo:FileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nao#userVisible" => %(false).freeze, label: "hasHash".freeze, - range: "nfo:FileHash".freeze, - type: ["http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#DefiningProperty".freeze, "rdf:Property".freeze] + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileHash".freeze, + type: ["http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#DefiningProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :hasMediaFileListEntry, comment: %(This property is intended to point to an RDF list of MediaFiles.).freeze, - domain: "nfo:MediaList".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#MediaList".freeze, label: "hasMediaFileListEntry".freeze, - range: "nfo:MediaFileListEntry".freeze, - type: "rdf:Property".freeze + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#MediaFileListEntry".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMediaStream, comment: %(Connects a media container with a single media stream contained within.).freeze, - domain: "nfo:Media".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, label: "hasMediaStream".freeze, range: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#DataObject".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#hasPart".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hashAlgorithm, comment: %(Name of the algorithm used to compute the hash value. Examples might include CRC32, MD5, SHA, TTH etc.).freeze, - domain: "nfo:FileHash".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileHash".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "hashAlgorithm".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hashValue, comment: %(The actual value of the hash.).freeze, - domain: "nfo:FileHash".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileHash".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#cardinality" => %(1).freeze, label: "hashValue".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :height, comment: %(Visual content height in pixels.).freeze, - domain: "nfo:Visual".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Visual".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "height".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :horizontalResolution, comment: %(Horizontal resolution of an image \(if printed\). Expressed in DPI.).freeze, - domain: "nfo:Image".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Image".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "horizontalResolution".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interlaceMode, comment: %(True if the image is interlaced, false if not.).freeze, - domain: "nfo:Visual".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Visual".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "interlaceMode".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isPasswordProtected, comment: %(States if a given resource is password-protected.).freeze, - domain: "nfo:ArchiveItem".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#ArchiveItem".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "isPasswordProtected".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lfeChannels, comment: %(Number of Low Frequency Expansion \(subwoofer\) channels.).freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "lfeChannels".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "nfo:channels".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#channels".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lineCount, comment: %(The amount of lines in a text document).freeze, - domain: "nfo:TextDocument".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#TextDocument".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "lineCount".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :occupiedSpace, comment: %(Occupied storage space of the filesystem.).freeze, - domain: "nfo:Filesystem".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Filesystem".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "occupiedSpace".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :originalLocation, comment: %(The original location of the deleted resource.).freeze, - domain: "nfo:DeletedResource".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#DeletedResource".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "originalLocation".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageCount, comment: %(Number of pages.).freeze, - domain: "nfo:PaginatedTextDocument".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#PaginatedTextDocument".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "pageCount".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageNumber, comment: %(Page linked by the bookmark.).freeze, - domain: "nfo:Bookmark".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Bookmark".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "pageNumber".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paletteSize, comment: %(The number of colors defined in palette of the raster image.).freeze, - domain: "nfo:RasterImage".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#RasterImage".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "palette size".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permissions, comment: %(A string containing the permissions of a file. A feature common in many UNIX-like operating systems.).freeze, - domain: "nfo:FileDataObject".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#FileDataObject".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "permissions".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programmingLanguage, comment: %(Indicates the name of the programming language this source code file is written in. Examples might include 'C', 'C++', 'Java' etc.).freeze, - domain: "nfo:SourceCode".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#SourceCode".freeze, label: "programmingLanguage".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rate, comment: %(A common superproperty for all properties specifying the media rate. Examples of subproperties may include frameRate for video and sampleRate for audio. This property is expressed in units per second.).freeze, - domain: "nfo:Media".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Media".freeze, label: "rate".freeze, - range: "xsd:float".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rearChannels, comment: %(Number of rear channels.).freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "rearChannels".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "nfo:channels".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#channels".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sampleCount, comment: %(The amount of samples in an audio clip.).freeze, - domain: "nfo:Audio".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Audio".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "sampleCount".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "nfo:count".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#count".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sampleRate, comment: %(The amount of audio samples per second.).freeze, - domain: "nfo:Audio".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Audio".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "sampleRate".freeze, - range: "xsd:float".freeze, - subPropertyOf: "nfo:rate".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#float".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#rate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sideChannels, comment: %(Number of side channels).freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "sideChannels".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "nfo:channels".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#channels".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :streamPosition, comment: %(Stream position of the bookmark, suitable for e.g. audio books. Expressed in milliseconds).freeze, - domain: "nfo:Bookmark".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Bookmark".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "streamPosition".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supercedes, comment: %(States that a piece of software supercedes another piece of software.).freeze, - domain: "nfo:Software".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Software".freeze, label: "supercedes".freeze, - range: "nfo:Software".freeze, - type: "rdf:Property".freeze + range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Software".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalSpace, comment: %(Total storage space of the filesystem, which can be different from nie:contentSize because the latter includes filesystem format overhead.).freeze, - domain: "nfo:Filesystem".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Filesystem".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "totalSpace".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :uncompressedSize, comment: %(Uncompressed size of the content of a compressed file.).freeze, - domain: "nfo:Archive".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Archive".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "uncompressedSize".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :uuid, comment: %(Universally unique identifier of the filesystem. In the future, this property may have its parent changed to a more generic class.).freeze, - domain: "nfo:Filesystem".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Filesystem".freeze, label: "uuid".freeze, - range: "xsd:string".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#identifier".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verticalResolution, comment: %(Vertical resolution of an Image \(if printed\). Expressed in DPI).freeze, - domain: "nfo:Image".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Image".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "verticalResolution".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :width, comment: %(Visual content width in pixels.).freeze, - domain: "nfo:Visual".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Visual".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "width".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :wordCount, comment: %(The amount of words in a text document.).freeze, - domain: "nfo:TextDocument".freeze, + domain: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#TextDocument".freeze, :"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze, label: "wordCount".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :decryptedStatus, label: "DecryptedStatus".freeze, - type: "nfo:EncryptionStatus".freeze + type: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#EncryptionStatus".freeze term :encryptedStatus, label: "EncryptedStatus".freeze, - type: "nfo:EncryptionStatus".freeze + type: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#EncryptionStatus".freeze term :losslessCompressionType, label: "losslessCompressionType".freeze, - type: "nfo:CompressionType".freeze + type: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#CompressionType".freeze term :lossyCompressionType, label: "lossyCompressionType".freeze, - type: "nfo:CompressionType".freeze + type: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#CompressionType".freeze end end diff --git a/lib/rdf/vocab/oa.rb b/lib/rdf/vocab/oa.rb index 20956ac..c47eb4e 100644 --- a/lib/rdf/vocab/oa.rb +++ b/lib/rdf/vocab/oa.rb @@ -3,695 +3,417 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/oa# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Web Annotation Ontology - # # - # # The Web Annotation ontology defines the terms of the Web Annotation vocabulary. Any changes to this document MUST be from a Working Group in the W3C that has established expertise in the area. - # # @version 2016-11-12T21:28:11Z - # # @see http://www.w3.org/TR/annotation-vocab/ - # class OA < RDF::StrictVocabulary - # # The class for Web Annotations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Annotation - # - # # A subClass of as:OrderedCollection that conveys to a consuming application that it should select one of the resources in the as:items list to use, rather than all of them. This is typically used to provide a choice of resources to render to the user, based on further supplied properties. If the consuming application cannot determine the user's preference, then it should use the first in the list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Choice - # - # # A CssSelector describes a Segment of interest in a representation that conforms to the Document Object Model through the use of the CSS selector specification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CssSelector - # - # # A resource which describes styles for resources participating in the Annotation using CSS. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CssStyle - # - # # DataPositionSelector describes a range of data by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first byte, position 1 would be immediately before the second byte, and so on. The start byte is thus included in the list, but the end byte is not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataPositionSelector - # - # # A class to encapsulate the different text directions that a textual resource might take. It is not used directly in the Annotation Model, only its three instances. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Direction - # - # # The FragmentSelector class is used to record the segment of a representation using the IRI fragment specification defined by the representation's media type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FragmentSelector - # - # # The HttpRequestState class is used to record the HTTP request headers that a client SHOULD use to request the correct representation from the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HttpRequestState - # - # # The Motivation class is used to record the user's intent or motivation for the creation of the Annotation, or the inclusion of the body or target, that it is associated with. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Motivation - # - # # A Range Selector can be used to identify the beginning and the end of the selection by using other Selectors. The selection consists of everything from the beginning of the starting selector through to the beginning of the ending selector, but not including it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RangeSelector - # - # # Instances of the ResourceSelection class identify part (described by an oa:Selector) of another resource (referenced with oa:hasSource), possibly from a particular representation of a resource (described by an oa:State). Please note that ResourceSelection is not used directly in the Web Annotation model, but is provided as a separate class for further application profiles to use, separate from oa:SpecificResource which has many Annotation specific features. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResourceSelection - # - # # A resource which describes the segment of interest in a representation of a Source resource, indicated with oa:hasSelector from the Specific Resource. This class is not used directly in the Annotation model, only its subclasses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Selector - # - # # Instances of the SpecificResource class identify part of another resource (referenced with oa:hasSource), a particular representation of a resource, a resource with styling hints for renders, or any combination of these, as used within an Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpecificResource - # - # # A State describes the intended state of a resource as applied to the particular Annotation, and thus provides the information needed to retrieve the correct representation of that resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :State - # - # # A Style describes the intended styling of a resource as applied to the particular Annotation, and thus provides the information to ensure that rendering is consistent across implementations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Style - # - # # An SvgSelector defines an area through the use of the Scalable Vector Graphics [SVG] standard. This allows the user to select a non-rectangular area of the content, such as a circle or polygon by describing the region using SVG. The SVG may be either embedded within the Annotation or referenced as an External Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SvgSelector - # - # # The TextPositionSelector describes a range of text by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first character, position 1 would be immediately before the second character, and so on. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextPositionSelector - # - # # The TextQuoteSelector describes a range of text by copying it, and including some of the text immediately before (a prefix) and after (a suffix) it to distinguish between multiple copies of the same sequence of characters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextQuoteSelector - # - # # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextualBody - # - # # A TimeState records the time at which the resource's state is appropriate for the Annotation, typically the time that the Annotation was created and/or a link to a persistent copy of the current version. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimeState - # - # # An XPathSelector is used to select elements and content within a resource that supports the Document Object Model via a specified XPath value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :XPathSelector - # - # # The object of the relationship is the end point of a service that conforms to the annotation-protocol, and it may be associated with any resource. The expectation of asserting the relationship is that the object is the preferred service for maintaining annotations about the subject resource, according to the publisher of the relationship. This relationship is intended to be used both within Linked Data descriptions and as the rel type of a Link, via HTTP Link Headers rfc5988 for binary resources and in HTML elements. For more information about these, please see the Annotation Protocol specification annotation-protocol. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationService - # - # # The object of the predicate is a plain text string to be used as the content of the body of the Annotation. The value MUST be an xsd:string and that data type MUST NOT be expressed in the serialization. Note that language MUST NOT be associated with the value either as a language tag, as that is only available for rdf:langString . - # # @return [RDF::Vocabulary::Term] - # attr_reader :bodyValue - # - # # A object of the relationship is a copy of the Source resource's representation, appropriate for the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cachedSource - # - # # A object of the relationship is the canonical IRI that can always be used to deduplicate the Annotation, regardless of the current IRI used to access the representation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :canonical - # - # # The end property is used to convey the 0-based index of the end position of a range of content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :end - # - # # The object of the predicate is a copy of the text which is being selected, after normalization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exact - # - # # The object of the relationship is a resource that is a body of the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasBody - # - # # The relationship between a RangeSelector and the Selector that describes the end position of the range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEndSelector - # - # # The purpose served by the resource in the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPurpose - # - # # The scope or context in which the resource is used within the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasScope - # - # # The object of the relationship is a Selector that describes the segment or region of interest within the source resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSelector - # - # # The resource that the ResourceSelection, or its subclass SpecificResource, is refined from, or more specific than. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSource - # - # # The relationship between a RangeSelector and the Selector that describes the start position of the range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStartSelector - # - # # The relationship between the ResourceSelection, or its subclass SpecificResource, and a State resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasState - # - # # The relationship between an Annotation and its Target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTarget - # - # # The relationship between an Annotation and a Motivation that describes the reason for the Annotation's creation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :motivatedBy - # - # # The object of the property is a snippet of content that occurs immediately before the content which is being selected by the Selector. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefix - # - # # The object of the property is the language that should be used for textual processing algorithms when dealing with the content of the resource, including hyphenation, line breaking, which font to use for rendering and so forth. The value must follow the recommendations of BCP47. - # # @return [RDF::Vocabulary::Term] - # attr_reader :processingLanguage - # - # # The relationship between a Selector and another Selector or a State and a Selector or State that should be applied to the results of the first to refine the processing of the source resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :refinedBy - # - # # A system that was used by the application that created the Annotation to render the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :renderedVia - # - # # The timestamp at which the Source resource should be interpreted as being applicable to the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceDate - # - # # The end timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceDateEnd - # - # # The start timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceDateStart - # - # # The start position in a 0-based index at which a range of content is selected from the data in the source resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :start - # - # # The name of the class used in the CSS description referenced from the Annotation that should be applied to the Specific Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :styleClass - # - # # A reference to a Stylesheet that should be used to apply styles to the Annotation rendering. - # # @return [RDF::Vocabulary::Term] - # attr_reader :styledBy - # - # # The snippet of text that occurs immediately after the text which is being selected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suffix - # - # # The direction of the text of the subject resource. There MUST only be one text direction associated with any given resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textDirection - # - # # A object of the relationship is a resource from which the source resource was retrieved by the providing system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :via - # - # # An IRI to signal the client prefers to receive full descriptions of the Annotations from a container, not just their IRIs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreferContainedDescriptions - # - # # An IRI to signal that the client prefers to receive only the IRIs of the Annotations from a container, not their full descriptions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreferContainedIRIs - # - # # The motivation for when the user intends to provide an assessment about the Target resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :assessing - # - # # The motivation for when the user intends to create a bookmark to the Target or part thereof. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookmarking - # - # # The motivation for when the user intends to that classify the Target as something. - # # @return [RDF::Vocabulary::Term] - # attr_reader :classifying - # - # # The motivation for when the user intends to comment about the Target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :commenting - # - # # The motivation for when the user intends to describe the Target, as opposed to a comment about them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :describing - # - # # The motivation for when the user intends to request a change or edit to the Target resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editing - # - # # The motivation for when the user intends to highlight the Target resource or segment of it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :highlighting - # - # # The motivation for when the user intends to assign an identity to the Target or identify what is being depicted or described in the Target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifying - # - # # The motivation for when the user intends to link to a resource related to the Target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :linking - # - # # The direction of text that is read from left to right. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ltrDirection - # - # # The motivation for when the user intends to assign some value or quality to the Target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :moderating - # - # # The motivation for when the user intends to ask a question about the Target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :questioning - # - # # The motivation for when the user intends to reply to a previous statement, either an Annotation or another resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replying - # - # # The direction of text that is read from right to left. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rtlDirection - # - # # The motivation for when the user intends to associate a tag with the Target. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tagging - # - # end OA = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/oa#")) do # Ontology definition ontology :"http://www.w3.org/ns/oa#", comment: "The Web Annotation ontology defines the terms of the Web Annotation vocabulary. Any changes to this document MUST be from a Working Group in the W3C that has established expertise in the area.".freeze, - "dc11:title": "Web Annotation Ontology".freeze, - "dc:creator": [term( - "foaf:name": "Benjamin Young".freeze, - type: "foaf:Person".freeze + "http://purl.org/dc/elements/1.1/title": "Web Annotation Ontology".freeze, + "http://purl.org/dc/terms/creator": [term( + "http://xmlns.com/foaf/0.1/name": "Benjamin Young".freeze, + type: "http://xmlns.com/foaf/0.1/Person".freeze ), term( - "foaf:name": "Paolo Ciccarese".freeze, - type: "foaf:Person".freeze + "http://xmlns.com/foaf/0.1/name": "Paolo Ciccarese".freeze, + type: "http://xmlns.com/foaf/0.1/Person".freeze ), term( - "foaf:name": "Robert Sanderson".freeze, - type: "foaf:Person".freeze + "http://xmlns.com/foaf/0.1/name": "Robert Sanderson".freeze, + type: "http://xmlns.com/foaf/0.1/Person".freeze )], - "dc:modified": "2016-11-12T21:28:11Z".freeze, - "owl:versionInfo": "2016-11-12T21:28:11Z".freeze, - "prov:wasRevisionOf": "http://www.openannotation.org/spec/core/20130208/oa.owl".freeze, - "rdfs:seeAlso": "http://www.w3.org/TR/annotation-vocab/".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/terms/modified": "2016-11-12T21:28:11Z".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/TR/annotation-vocab/".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "2016-11-12T21:28:11Z".freeze, + "http://www.w3.org/ns/prov#wasRevisionOf": "http://www.openannotation.org/spec/core/20130208/oa.owl".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Annotation, comment: "The class for Web Annotations.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "Annotation".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Choice, comment: "A subClass of as:OrderedCollection that conveys to a consuming application that it should select one of the resources in the as:items list to use, rather than all of them. This is typically used to provide a choice of resources to render to the user, based on further supplied properties. If the consuming application cannot determine the user's preference, then it should use the first in the list.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "Choice".freeze, subClassOf: "http://www.w3.org/ns/activitystreams#OrderedCollection".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CssSelector, comment: "A CssSelector describes a Segment of interest in a representation that conforms to the Document Object Model through the use of the CSS selector specification.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "CssSelector".freeze, - subClassOf: "oa:Selector".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CssStyle, comment: "A resource which describes styles for resources participating in the Annotation using CSS.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "CssStyle".freeze, - subClassOf: "oa:Style".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#Style".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataPositionSelector, comment: "DataPositionSelector describes a range of data by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first byte, position 1 would be immediately before the second byte, and so on. The start byte is thus included in the list, but the end byte is not.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "DataPositionSelector".freeze, - subClassOf: "oa:Selector".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Direction, comment: "A class to encapsulate the different text directions that a textual resource might take. It is not used directly in the Annotation Model, only its three instances.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "Direction".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FragmentSelector, comment: "The FragmentSelector class is used to record the segment of a representation using the IRI fragment specification defined by the representation's media type.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "FragmentSelector".freeze, - subClassOf: "oa:Selector".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HttpRequestState, comment: "The HttpRequestState class is used to record the HTTP request headers that a client SHOULD use to request the correct representation from the resource. ".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "HttpRequestState".freeze, - subClassOf: "oa:State".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#State".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Motivation, comment: "The Motivation class is used to record the user's intent or motivation for the creation of the Annotation, or the inclusion of the body or target, that it is associated with.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "Motivation".freeze, - subClassOf: "skos:Concept".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RangeSelector, comment: "A Range Selector can be used to identify the beginning and the end of the selection by using other Selectors. The selection consists of everything from the beginning of the starting selector through to the beginning of the ending selector, but not including it.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "RangeSelector".freeze, - subClassOf: "oa:Selector".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ResourceSelection, comment: "Instances of the ResourceSelection class identify part (described by an oa:Selector) of another resource (referenced with oa:hasSource), possibly from a particular representation of a resource (described by an oa:State). Please note that ResourceSelection is not used directly in the Web Annotation model, but is provided as a separate class for further application profiles to use, separate from oa:SpecificResource which has many Annotation specific features.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "ResourceSelection".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Selector, comment: "A resource which describes the segment of interest in a representation of a Source resource, indicated with oa:hasSelector from the Specific Resource. This class is not used directly in the Annotation model, only its subclasses.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "Selector".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SpecificResource, comment: "Instances of the SpecificResource class identify part of another resource (referenced with oa:hasSource), a particular representation of a resource, a resource with styling hints for renders, or any combination of these, as used within an Annotation.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "SpecificResource".freeze, - subClassOf: "oa:ResourceSelection".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#ResourceSelection".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :State, comment: "A State describes the intended state of a resource as applied to the particular Annotation, and thus provides the information needed to retrieve the correct representation of that resource.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "State".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Style, comment: "A Style describes the intended styling of a resource as applied to the particular Annotation, and thus provides the information to ensure that rendering is consistent across implementations.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "Style".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SvgSelector, comment: "An SvgSelector defines an area through the use of the Scalable Vector Graphics [SVG] standard. This allows the user to select a non-rectangular area of the content, such as a circle or polygon by describing the region using SVG. The SVG may be either embedded within the Annotation or referenced as an External Resource.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "SvgSelector".freeze, - subClassOf: "oa:Selector".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TextPositionSelector, comment: "The TextPositionSelector describes a range of text by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first character, position 1 would be immediately before the second character, and so on.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "TextPositionSelector".freeze, - subClassOf: "oa:Selector".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TextQuoteSelector, comment: "The TextQuoteSelector describes a range of text by copying it, and including some of the text immediately before (a prefix) and after (a suffix) it to distinguish between multiple copies of the same sequence of characters.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "TextQuoteSelector".freeze, - subClassOf: "oa:Selector".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TextualBody, comment: "".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "TextualBody".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TimeState, comment: "A TimeState records the time at which the resource's state is appropriate for the Annotation, typically the time that the Annotation was created and/or a link to a persistent copy of the current version.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "TimeState".freeze, - subClassOf: "oa:State".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#State".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :XPathSelector, comment: " An XPathSelector is used to select elements and content within a resource that supports the Document Object Model via a specified XPath value.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "XPathSelector".freeze, - subClassOf: "oa:Selector".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :annotationService, comment: "The object of the relationship is the end point of a service that conforms to the annotation-protocol, and it may be associated with any resource. The expectation of asserting the relationship is that the object is the preferred service for maintaining annotations about the subject resource, according to the publisher of the relationship.\n\n This relationship is intended to be used both within Linked Data descriptions and as the rel type of a Link, via HTTP Link Headers rfc5988 for binary resources and in HTML elements. For more information about these, please see the Annotation Protocol specification annotation-protocol.\n ".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "annotationService".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bodyValue, comment: "The object of the predicate is a plain text string to be used as the content of the body of the Annotation. The value MUST be an xsd:string and that data type MUST NOT be expressed in the serialization. Note that language MUST NOT be associated with the value either as a language tag, as that is only available for rdf:langString .\n ".freeze, - domain: "oa:Annotation".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#Annotation".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "bodyValue".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cachedSource, comment: "A object of the relationship is a copy of the Source resource's representation, appropriate for the Annotation.".freeze, - domain: "oa:TimeState".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#TimeState".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "cachedSource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :canonical, comment: "A object of the relationship is the canonical IRI that can always be used to deduplicate the Annotation, regardless of the current IRI used to access the representation.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "canonical".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :end, comment: "The end property is used to convey the 0-based index of the end position of a range of content.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "end".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exact, comment: "The object of the predicate is a copy of the text which is being selected, after normalization.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "exact".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasBody, comment: "The object of the relationship is a resource that is a body of the Annotation.".freeze, - domain: "oa:Annotation".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#Annotation".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "hasBody".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEndSelector, comment: "The relationship between a RangeSelector and the Selector that describes the end position of the range. ".freeze, - domain: "oa:RangeSelector".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#RangeSelector".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "hasEndSelector".freeze, - range: "oa:Selector".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPurpose, comment: "The purpose served by the resource in the Annotation.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "hasPurpose".freeze, - range: "oa:Motivation".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/oa#Motivation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasScope, comment: "The scope or context in which the resource is used within the Annotation.".freeze, - domain: "oa:SpecificResource".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#SpecificResource".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "hasScope".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSelector, comment: "The object of the relationship is a Selector that describes the segment or region of interest within the source resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model.".freeze, - domain: "oa:ResourceSelection".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#ResourceSelection".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "hasSelector".freeze, - range: "oa:Selector".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSource, comment: "The resource that the ResourceSelection, or its subclass SpecificResource, is refined from, or more specific than. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model.".freeze, - domain: "oa:ResourceSelection".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#ResourceSelection".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "hasSource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasStartSelector, comment: "The relationship between a RangeSelector and the Selector that describes the start position of the range. ".freeze, - domain: "oa:RangeSelector".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#RangeSelector".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "hasStartSelector".freeze, - range: "oa:Selector".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/oa#Selector".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasState, comment: "The relationship between the ResourceSelection, or its subclass SpecificResource, and a State resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model.".freeze, - domain: "oa:ResourceSelection".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#ResourceSelection".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "hasState".freeze, - range: "oa:State".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/oa#State".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasTarget, comment: "The relationship between an Annotation and its Target.".freeze, - domain: "oa:Annotation".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#Annotation".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "hasTarget".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :motivatedBy, comment: "The relationship between an Annotation and a Motivation that describes the reason for the Annotation's creation.".freeze, - domain: "oa:Annotation".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#Annotation".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "motivatedBy".freeze, - range: "oa:Motivation".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/oa#Motivation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prefix, comment: "The object of the property is a snippet of content that occurs immediately before the content which is being selected by the Selector.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "prefix".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :processingLanguage, comment: "The object of the property is the language that should be used for textual processing algorithms when dealing with the content of the resource, including hyphenation, line breaking, which font to use for rendering and so forth. The value must follow the recommendations of BCP47.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "processingLanguage".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :refinedBy, comment: "The relationship between a Selector and another Selector or a State and a Selector or State that should be applied to the results of the first to refine the processing of the source resource. ".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "refinedBy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :renderedVia, comment: "A system that was used by the application that created the Annotation to render the resource.".freeze, - domain: "oa:SpecificResource".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#SpecificResource".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "renderedVia".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourceDate, comment: "The timestamp at which the Source resource should be interpreted as being applicable to the Annotation.".freeze, - domain: "oa:TimeState".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#TimeState".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "sourceDate".freeze, - range: "xsd:dateTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourceDateEnd, comment: "The end timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation.".freeze, - domain: "oa:TimeState".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#TimeState".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "sourceDateEnd".freeze, - range: "xsd:dateTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourceDateStart, comment: "The start timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation.".freeze, - domain: "oa:TimeState".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#TimeState".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "sourceDateStart".freeze, - range: "xsd:dateTime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :start, comment: "The start position in a 0-based index at which a range of content is selected from the data in the source resource.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "start".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :styleClass, comment: "The name of the class used in the CSS description referenced from the Annotation that should be applied to the Specific Resource.".freeze, - domain: "oa:SpecificResource".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#SpecificResource".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "styleClass".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :styledBy, comment: "A reference to a Stylesheet that should be used to apply styles to the Annotation rendering.".freeze, - domain: "oa:Annotation".freeze, - isDefinedBy: "oa:".freeze, + domain: "http://www.w3.org/ns/oa#Annotation".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "styledBy".freeze, - range: "oa:Style".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/oa#Style".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suffix, comment: "The snippet of text that occurs immediately after the text which is being selected.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "suffix".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textDirection, comment: "The direction of the text of the subject resource. There MUST only be one text direction associated with any given resource.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "textDirection".freeze, - range: "oa:Direction".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/oa#Direction".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :via, comment: "A object of the relationship is a resource from which the source resource was retrieved by the providing system.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "via".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :PreferContainedDescriptions, comment: "An IRI to signal the client prefers to receive full descriptions of the Annotations from a container, not just their IRIs.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "PreferContainedDescriptions".freeze, - type: "rdfs:Resource".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze term :PreferContainedIRIs, comment: "An IRI to signal that the client prefers to receive only the IRIs of the Annotations from a container, not their full descriptions.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "PreferContainedIRIs".freeze, - type: "rdfs:Resource".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze term :assessing, comment: "The motivation for when the user intends to provide an assessment about the Target resource.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "assessing".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :bookmarking, comment: "The motivation for when the user intends to create a bookmark to the Target or part thereof.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "bookmarking".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :classifying, comment: "The motivation for when the user intends to that classify the Target as something.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "classifying".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :commenting, comment: "The motivation for when the user intends to comment about the Target.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "commenting".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :describing, comment: "The motivation for when the user intends to describe the Target, as opposed to a comment about them.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "describing".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :editing, comment: "The motivation for when the user intends to request a change or edit to the Target resource.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "editing".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :highlighting, comment: "The motivation for when the user intends to highlight the Target resource or segment of it.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "highlighting".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :identifying, comment: "The motivation for when the user intends to assign an identity to the Target or identify what is being depicted or described in the Target.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "identifying".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :linking, comment: "The motivation for when the user intends to link to a resource related to the Target.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "linking".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :ltrDirection, comment: "The direction of text that is read from left to right.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "ltrDirection".freeze, - type: "oa:Direction".freeze + type: "http://www.w3.org/ns/oa#Direction".freeze term :moderating, comment: "The motivation for when the user intends to assign some value or quality to the Target.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "moderating".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :questioning, comment: "The motivation for when the user intends to ask a question about the Target.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "questioning".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :replying, comment: "The motivation for when the user intends to reply to a previous statement, either an Annotation or another resource.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "replying".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze term :rtlDirection, comment: "The direction of text that is read from right to left.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "rtlDirection".freeze, - type: "oa:Direction".freeze + type: "http://www.w3.org/ns/oa#Direction".freeze term :tagging, comment: "The motivation for when the user intends to associate a tag with the Target.".freeze, - isDefinedBy: "oa:".freeze, + isDefinedBy: "http://www.w3.org/ns/oa#".freeze, label: "tagging".freeze, - type: "oa:Motivation".freeze + type: "http://www.w3.org/ns/oa#Motivation".freeze end end diff --git a/lib/rdf/vocab/og.rb b/lib/rdf/vocab/og.rb index 51a3f40..f5c1339 100644 --- a/lib/rdf/vocab/og.rb +++ b/lib/rdf/vocab/og.rb @@ -3,323 +3,242 @@ # This file generated automatically using rdf vocabulary format from http://ogp.me/ns# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class OG < RDF::Vocabulary - # # A relevant audio URL for your object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audio - # - # # A one to two sentence description of your object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # The word to precede the object's title in a sentence (e.g., "the" in "the statue of liberty"). Valid values are "a", "an", "the", "", and "auto". - # # @return [RDF::Vocabulary::Term] - # attr_reader :determiner - # - # # [DEPRECATED] Email of the contact for your object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :email - # - # # [DEPRECATED] Fax number of the contact for your object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fax_number - # - # # An image URL which should represent your object within the graph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :image - # - # # [DEPRECATED] International Standard Book Number for you object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isbn - # - # # [DEPRECATED] The latitude of the resource e.g., the latitude of a company. - # # @return [RDF::Vocabulary::Term] - # attr_reader :latitude - # - # # A Unix locale in which this markup is rendered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locale - # - # # [DEPRECATED] The locality of the resource e.g, "Palo Alto" - # # @return [RDF::Vocabulary::Term] - # attr_reader :locality - # - # # [DEPRECATED] The longitude of the resource e.g., the longitude of a company. - # # @return [RDF::Vocabulary::Term] - # attr_reader :longitude - # - # # [DEPRECATED] Phone number of the contact for your object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :phone_number - # - # # [DEPRECATED] The region of the resource e.g., "CA" - # # @return [RDF::Vocabulary::Term] - # attr_reader :region - # - # # If your object is part of a larger web site, the name which should be displayed for the overall site. e.g., "IMDb". - # # @return [RDF::Vocabulary::Term] - # attr_reader :site_name - # - # # The title of the object as it should appear within the graph, e.g., "The Rock". - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # The type of your object, e.g., "movie". Depending on the type you specify, other properties may also be required. - # # @return [RDF::Vocabulary::Term] - # attr_reader :type - # - # # [DEPRECATED] Universal Product Code for your object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :upc - # - # # The canonical URL of your object that will be used as its permanent ID in the graph, e.g., "http://www.imdb.com/title/tt0117500/". - # # @return [RDF::Vocabulary::Term] - # attr_reader :url - # - # # A relevant video URL for your object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :video - # - # end OG = Class.new(RDF::Vocabulary("http://ogp.me/ns#")) do # Property definitions property :audio, comment: "A relevant audio URL for your object.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "audio".freeze, - range: "ogc:url".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#url".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"audio:album", comment: "[DEPRECATED] An album to which some audio belongs.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "audio album".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"audio:artist", comment: "[DEPRECATED] An artist of some audio.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "audio artist".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"audio:secure_url", comment: "A relevant, secure audio URL for your object.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "audio secure URL".freeze, - range: "ogc:url".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#url".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"audio:title", comment: "[DEPRECATED] A title for some audio.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "audio title".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"audio:type", comment: "The mime type of an audio file e.g., \"application/mp3\"".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "audio type".freeze, - range: "ogc:mime_type_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#mime_type_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"country-name", comment: "[DEPRECATED] The country name of the resource e.g., \"USA\"".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2006/vcard/ns#country-name".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "country name".freeze, - "rdfs:seeAlso": "vcard:country-name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, comment: "A one to two sentence description of your object.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "description".freeze, - range: "ogc:string".freeze, - subPropertyOf: "rdfs:comment".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#string".freeze, + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#comment".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :determiner, comment: "The word to precede the object's title in a sentence (e.g., \"the\" in \"the statue of liberty\"). Valid values are \"a\", \"an\", \"the\", \"\", and \"auto\".".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "determiner".freeze, - range: "ogc:determiner_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#determiner_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :email, comment: "[DEPRECATED] Email of the contact for your object.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://xmlns.com/foaf/0.1/mbox".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "email".freeze, - "rdfs:seeAlso": "foaf:mbox".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fax_number, comment: "[DEPRECATED] Fax number of the contact for your object.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://xmlns.com/foaf/0.1/phone".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "fax number".freeze, - "rdfs:seeAlso": "foaf:phone".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :image, comment: "An image URL which should represent your object within the graph.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://xmlns.com/foaf/0.1/depiction".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "image".freeze, - range: "ogc:url".freeze, - "rdfs:seeAlso": "foaf:depiction".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#url".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://ogp.me/ns#image".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "image:alt".freeze, - range: "ogc:string".freeze, - "rdfs:seeAlso": "og:image".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"image:height", comment: "The height of an image.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "image height".freeze, - range: "ogc:integer_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#integer_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"image:secure_url", comment: "A secure image URL which should represent your object within the graph.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://xmlns.com/foaf/0.1/depiction".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "image secure url".freeze, - range: "ogc:url".freeze, - "rdfs:seeAlso": "foaf:depiction".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#url".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"image:type", comment: "The mime type of an image.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "image type".freeze, - range: "ogc:mime_type_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#mime_type_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"image:url", comment: "Identical to og:image.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://ogp.me/ns#image".freeze, + "http://www.w3.org/2002/07/owl#sameProperty": "http://ogp.me/ns#image".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "image:url".freeze, - "owl:sameProperty": "og:image".freeze, - range: "ogc:url".freeze, - "rdfs:seeAlso": "og:image".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#url".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"image:width", comment: "The width of an image.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "image width".freeze, - range: "ogc:integer_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#integer_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isbn, comment: "[DEPRECATED] International Standard Book Number for you object.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/ontology/bibo/isbn".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: ["International Standard Book Number".freeze, "isbn".freeze], - "rdfs:seeAlso": "bibo:isbn".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :latitude, comment: "[DEPRECATED] The latitude of the resource e.g., the latitude of a company.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2003/01/geo/wgs84_pos#lat".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "latitude".freeze, - "rdfs:seeAlso": "geo:lat".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locale, comment: "A Unix locale in which this markup is rendered.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "locale".freeze, - range: "ogc:string".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"locale:alternate", comment: "An array of other locales this page is available in.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://ogp.me/ns#locale".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "locale:alternate".freeze, - range: "ogc:string".freeze, - "rdfs:seeAlso": "og:locale".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locality, comment: "[DEPRECATED] The locality of the resource e.g, \"Palo Alto\"".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2006/vcard/ns#locality".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "locality".freeze, - "rdfs:seeAlso": "vcard:locality".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :longitude, comment: "[DEPRECATED] The longitude of the resource e.g., the longitude of a company.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2003/01/geo/wgs84_pos#long".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "longitude".freeze, - "rdfs:seeAlso": "geo:long".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :phone_number, comment: "[DEPRECATED] Phone number of the contact for your object.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://xmlns.com/foaf/0.1/phone".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "phone number".freeze, - "rdfs:seeAlso": "foaf:phone".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"postal-code", comment: "[DEPRECATED] The postal code of the resource e.g., \"94304\"".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2006/vcard/ns#postal-code".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "postal code".freeze, - "rdfs:seeAlso": "vcard:postal-code".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :region, comment: "[DEPRECATED] The region of the resource e.g., \"CA\"".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2006/vcard/ns#region".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "region".freeze, - "rdfs:seeAlso": "vcard:region".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :site_name, comment: "If your object is part of a larger web site, the name which should be displayed for the overall site. e.g., \"IMDb\".".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "site name".freeze, - range: "ogc:string".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"street-address", comment: "[DEPRECATED] The street address of the resource e.g., \"1601 S California Ave\".".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2006/vcard/ns#street-address".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "street address".freeze, - "rdfs:seeAlso": "vcard:street-address".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, comment: "The title of the object as it should appear within the graph, e.g., \"The Rock\".".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "title".freeze, - range: "ogc:string".freeze, - subPropertyOf: "rdfs:label".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#string".freeze, + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :type, comment: "The type of your object, e.g., \"movie\". Depending on the type you specify, other properties may also be required.".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/1999/02/22-rdf-syntax-ns#type".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "type".freeze, - range: "ogc:string".freeze, - "rdfs:seeAlso": "rdf:type".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :upc, comment: "[DEPRECATED] Universal Product Code for your object.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/goodrelations/v1#hasEAN_UCC-13".freeze, label: ["universal product code".freeze, "upc".freeze], - "rdfs:seeAlso": "gr:hasEAN_UCC-13".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :url, comment: "The canonical URL of your object that will be used as its permanent ID in the graph, e.g., \"http://www.imdb.com/title/tt0117500/\".".freeze, - isDefinedBy: "og:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/dc/elements/1.1/identifier".freeze, "http://xmlns.com/foaf/0.1/homepage".freeze], + isDefinedBy: "http://ogp.me/ns#".freeze, label: "url".freeze, - range: "ogc:url".freeze, - "rdfs:seeAlso": ["dc11:identifier".freeze, "foaf:homepage".freeze], - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#url".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :video, comment: "A relevant video URL for your object.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "video".freeze, - range: "ogc:url".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#url".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"video:height", comment: "The height of a video.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "video height".freeze, - range: "ogc:integer_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#integer_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"video:secure_url", comment: "A relevant, secure video URL for your object.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "video secure URL".freeze, - range: "ogc:url".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#url".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"video:type", comment: "The mime type of a video e.g., \"application/x-shockwave-flash\"".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "video type".freeze, - range: "ogc:mime_type_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#mime_type_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"video:width", comment: "The width of a video.".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "video width".freeze, - range: "ogc:integer_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#integer_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/ogc.rb b/lib/rdf/vocab/ogc.rb index 23c8f44..dcff9e7 100644 --- a/lib/rdf/vocab/ogc.rb +++ b/lib/rdf/vocab/ogc.rb @@ -3,94 +3,57 @@ # This file generated automatically using rdf vocabulary format from http://ogp.me/ns/class# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class OGC < RDF::Vocabulary - # # A string representation of a true or false value. The lexical space contains: "true", "false", "1", and "0". - # # @return [RDF::Vocabulary::Term] - # attr_reader :boolean_str - # - # # A string representation of a temporal value composed of a date (year, month, day) and an optional time component (hours, minutes). The lexical space is defined by ISO 8601. - # # @return [RDF::Vocabulary::Term] - # attr_reader :date_time_str - # - # # The lexical space: "", "the", "a", "an", and "auto". - # # @return [RDF::Vocabulary::Term] - # attr_reader :determiner_str - # - # # A string representation of a 64-bit signed floating point number. Example lexical values include "1.234", "-1.234", "1.2e3", "-1.2e3", and "7E-10". - # # @return [RDF::Vocabulary::Term] - # attr_reader :float_str - # - # # A string representation of a 32-bit signed integer. Example lexical values include "1234" and "-123". - # # @return [RDF::Vocabulary::Term] - # attr_reader :integer_str - # - # # Valid mime type strings (e.g., "application/mp3"). - # # @return [RDF::Vocabulary::Term] - # attr_reader :mime_type_str - # - # # A string of Unicode characters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :string - # - # # A string of Unicode characters forming a valid URL having the http or https scheme. - # # @return [RDF::Vocabulary::Term] - # attr_reader :url - # - # end OGC = Class.new(RDF::Vocabulary("http://ogp.me/ns/class#")) do # Datatype definitions term :boolean_str, comment: "A string representation of a true or false value. The lexical space contains: \"true\", \"false\", \"1\", and \"0\".".freeze, - isDefinedBy: "ogc:".freeze, + isDefinedBy: "http://ogp.me/ns/class#".freeze, label: "boolean string".freeze, - subClassOf: "xsd:string".freeze, - type: "rdfs:Datatype".freeze + subClassOf: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :date_time_str, comment: "A string representation of a temporal value composed of a date (year, month, day) and an optional time component (hours, minutes). The lexical space is defined by ISO 8601.".freeze, - isDefinedBy: "ogc:".freeze, + isDefinedBy: "http://ogp.me/ns/class#".freeze, label: "date/time string".freeze, - subClassOf: "xsd:string".freeze, - type: "rdfs:Datatype".freeze + subClassOf: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :determiner_str, comment: "The lexical space: \"\", \"the\", \"a\", \"an\", and \"auto\".".freeze, - isDefinedBy: "ogc:".freeze, + "http://www.w3.org/2002/07/owl#oneOf": list("".freeze, "the".freeze, "a".freeze, "an".freeze, "auto".freeze), + isDefinedBy: "http://ogp.me/ns/class#".freeze, label: "determiner".freeze, - "owl:oneOf": list("".freeze, "the".freeze, "a".freeze, "an".freeze, "auto".freeze), - subClassOf: "xsd:string".freeze, - type: "rdfs:Datatype".freeze + subClassOf: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :float_str, comment: "A string representation of a 64-bit signed floating point number. Example lexical values include \"1.234\", \"-1.234\", \"1.2e3\", \"-1.2e3\", and \"7E-10\".".freeze, - isDefinedBy: "ogc:".freeze, + isDefinedBy: "http://ogp.me/ns/class#".freeze, label: "float string".freeze, - subClassOf: "xsd:string".freeze, - type: "rdfs:Datatype".freeze + subClassOf: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :integer_str, comment: "A string representation of a 32-bit signed integer. Example lexical values include \"1234\" and \"-123\".".freeze, - isDefinedBy: "ogc:".freeze, + isDefinedBy: "http://ogp.me/ns/class#".freeze, label: "integer string".freeze, - subClassOf: "xsd:string".freeze, - type: "rdfs:Datatype".freeze + subClassOf: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :mime_type_str, comment: "Valid mime type strings (e.g., \"application/mp3\").".freeze, - isDefinedBy: "og:".freeze, + isDefinedBy: "http://ogp.me/ns#".freeze, label: "mime type string".freeze, - subClassOf: "xsd:string".freeze, - type: "rdfs:Datatype".freeze + subClassOf: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :string, comment: "A string of Unicode characters.".freeze, - isDefinedBy: "ogc:".freeze, + isDefinedBy: "http://ogp.me/ns/class#".freeze, label: "Unicode string".freeze, - subClassOf: "xsd:string".freeze, - type: "rdfs:Datatype".freeze + subClassOf: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze term :url, comment: "A string of Unicode characters forming a valid URL having the http or https scheme.".freeze, - isDefinedBy: "ogc:".freeze, + isDefinedBy: "http://ogp.me/ns/class#".freeze, label: "URL".freeze, - subClassOf: "ogc:string".freeze, - type: "rdfs:Datatype".freeze + subClassOf: "http://ogp.me/ns/class#string".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze end end diff --git a/lib/rdf/vocab/ore.rb b/lib/rdf/vocab/ore.rb index 7501dd8..d8714f6 100644 --- a/lib/rdf/vocab/ore.rb +++ b/lib/rdf/vocab/ore.rb @@ -3,163 +3,104 @@ # This file generated automatically using rdf vocabulary format from http://www.openarchives.org/ore/terms/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The OAI ORE terms vocabulary - # # - # # The OAI ORE terms vocabulary - # # - # # The set of terms provided by the OAI ORE initiative - # # @see http://www.openarchives.org/ore/toc - # class ORE < RDF::StrictVocabulary - # # A resource which is included in an Aggregation. Note that asserting that a resource is a member of the class of Aggregated Resources does not imply anything other than that it is aggregated by at least one Aggregation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AggregatedResource - # - # # A set of related resources (Aggregated Resources), grouped together such that the set can be treated as a single resource. This is the entity described within the ORE interoperability framework by a Resource Map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Aggregation - # - # # A Proxy represents an Aggregated Resource as it exists in a specific Aggregation. All assertions made about an entity are globally true, not only within the context of the Aggregation. As such, in order to make assertions which are only true of a resource as it exists in an Aggregation, a Proxy object is required. For example, one might want to cite an article as it appears in a specific journal, or assign aggregation-specific metadata to a Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Proxy - # - # # A description of an Aggregation according to the OAI-ORE data model. Resource Maps are serialised to a machine readable format according to the implementation guidelines. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResourceMap - # - # # Aggregations, by definition, aggregate resources. The ore:aggregates relationship expresses that the object resource is a member of the set of Aggregated Resources of the subject (the Aggregation). This relationship between the Aggregation and its Aggregated Resources is thus more specific than a simple part/whole relationship, as expressed by dcterms:hasPart for example. - # # @return [RDF::Vocabulary::Term] - # attr_reader :aggregates - # - # # This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - # # @return [RDF::Vocabulary::Term] - # attr_reader :describes - # - # # The inverse relationship of ore:aggregates, ore:isAggregatedBy asserts that an Aggregated Resource is aggregated by an Aggregation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAggregatedBy - # - # # The inverse relationship of ore:describes, in this case the object of the relationship is the Resource Map and the subject is the Aggregation which it describes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isDescribedBy - # - # # ore:lineage is a relationship between two Proxy objects, both of which MUST have the same Resource for which they are proxies. The meaning is that the Resource for which the subject of the relationship is a Proxy was discovered in the Aggregation in which the object Proxy's resource is aggregated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lineage - # - # # Proxy objects are used to represent a Resource as it is aggregated in a particular Aggregation. The ore:proxyFor relationship is used to link the proxy to the Aggregated Resource it is a proxy for. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregated Resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proxyFor - # - # # Proxy objects must link to the Aggregation in which the resource being proxied is aggregated. The ore:proxyIn relationship is used for this purpose. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proxyIn - # - # # The subject of this relationship MUST be an Aggregation. This Aggregation should be considered an expression within the ORE context of the object of the relationship, as it is broadly equivalent to the resource. For example, the Aggregation may consist of the resources which, together, make up a journal article which has a DOI assigned to it. The Aggregation is not the article to which the DOI was assigned, but is a representation of it in some manner. - # # @return [RDF::Vocabulary::Term] - # attr_reader :similarTo - # - # end ORE = Class.new(RDF::StrictVocabulary("http://www.openarchives.org/ore/terms/")) do # Ontology definition ontology :"http://www.openarchives.org/ore/terms/", comment: "The set of terms provided by the OAI ORE initiative".freeze, - "dc:license": "http://creativecommons.org/licenses/by-sa/3.0/".freeze, - "dc:publisher": term( + "http://purl.org/dc/terms/license": "http://creativecommons.org/licenses/by-sa/3.0/".freeze, + "http://purl.org/dc/terms/publisher": term( label: "The Open Archives Initiative ORE Project".freeze ), - "dc:title": "The OAI ORE terms vocabulary".freeze, - label: "The OAI ORE terms vocabulary".freeze, - "rdfs:seeAlso": "http://www.openarchives.org/ore/toc".freeze + "http://purl.org/dc/terms/title": "The OAI ORE terms vocabulary".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.openarchives.org/ore/toc".freeze, + label: "The OAI ORE terms vocabulary".freeze # Class definitions term :AggregatedResource, comment: "A resource which is included in an Aggregation. Note that asserting that a resource is a member of the class of Aggregated Resources does not imply anything other than that it is aggregated by at least one Aggregation.".freeze, - isDefinedBy: "ore:".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Aggregated Resource".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Aggregation, comment: "A set of related resources (Aggregated Resources), grouped together such that the set can be treated as a single resource. This is the entity described within the ORE interoperability framework by a Resource Map.".freeze, - isDefinedBy: "ore:".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Aggregation".freeze, - subClassOf: "dcmitype:Collection".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/dcmitype/Collection".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Proxy, comment: "A Proxy represents an Aggregated Resource as it exists in a specific Aggregation. All assertions made about an entity are globally true, not only within the context of the Aggregation. As such, in order to make assertions which are only true of a resource as it exists in an Aggregation, a Proxy object is required. For example, one might want to cite an article as it appears in a specific journal, or assign aggregation-specific metadata to a Resource.".freeze, - isDefinedBy: "ore:".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Proxy".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ResourceMap, comment: "A description of an Aggregation according to the OAI-ORE data model. Resource Maps are serialised to a machine readable format according to the implementation guidelines.".freeze, - isDefinedBy: "ore:".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Resource Map".freeze, subClassOf: "http://www.w3.org/2004/03/trix/rdfg-1/Graph".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :aggregates, comment: "Aggregations, by definition, aggregate resources. The ore:aggregates relationship expresses that the object resource is a member of the set of Aggregated Resources of the subject (the Aggregation). This relationship between the Aggregation and its Aggregated Resources is thus more specific than a simple part/whole relationship, as expressed by dcterms:hasPart for example.".freeze, - domain: "ore:Aggregation".freeze, - inverseOf: "ore:isAggregatedBy".freeze, - isDefinedBy: "ore:".freeze, + domain: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + inverseOf: "http://www.openarchives.org/ore/terms/isAggregatedBy".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Aggregates".freeze, - range: "ore:AggregatedResource".freeze, - subPropertyOf: "dc:hasPart".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/AggregatedResource".freeze, + subPropertyOf: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :describes, comment: "This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation).".freeze, - domain: "ore:ResourceMap".freeze, - inverseOf: "ore:isDescribedBy".freeze, - isDefinedBy: "ore:".freeze, + domain: "http://www.openarchives.org/ore/terms/ResourceMap".freeze, + inverseOf: "http://www.openarchives.org/ore/terms/isDescribedBy".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Describes".freeze, - range: "ore:Aggregation".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAggregatedBy, comment: "The inverse relationship of ore:aggregates, ore:isAggregatedBy asserts that an Aggregated Resource is aggregated by an Aggregation.".freeze, - domain: "ore:AggregatedResource".freeze, - inverseOf: "ore:aggregates".freeze, - isDefinedBy: "ore:".freeze, + domain: "http://www.openarchives.org/ore/terms/AggregatedResource".freeze, + inverseOf: "http://www.openarchives.org/ore/terms/aggregates".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Is Aggregated By".freeze, - range: "ore:Aggregation".freeze, - subPropertyOf: "dc:isPartOf".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + subPropertyOf: "http://purl.org/dc/terms/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isDescribedBy, comment: "The inverse relationship of ore:describes, in this case the object of the relationship is the Resource Map and the subject is the Aggregation which it describes.".freeze, - domain: "ore:Aggregation".freeze, - inverseOf: "ore:describes".freeze, - isDefinedBy: "ore:".freeze, + domain: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + inverseOf: "http://www.openarchives.org/ore/terms/describes".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Is Described By".freeze, - range: "ore:ResourceMap".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/ResourceMap".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lineage, comment: "ore:lineage is a relationship between two Proxy objects, both of which MUST have the same Resource for which they are proxies. The meaning is that the Resource for which the subject of the relationship is a Proxy was discovered in the Aggregation in which the object Proxy's resource is aggregated.".freeze, - domain: "ore:Proxy".freeze, - isDefinedBy: "ore:".freeze, + domain: "http://www.openarchives.org/ore/terms/Proxy".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Lineage".freeze, - range: "ore:Proxy".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/Proxy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :proxyFor, comment: "Proxy objects are used to represent a Resource as it is aggregated in a particular Aggregation. The ore:proxyFor relationship is used to link the proxy to the Aggregated Resource it is a proxy for. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregated Resource.".freeze, - domain: "ore:Proxy".freeze, - isDefinedBy: "ore:".freeze, + domain: "http://www.openarchives.org/ore/terms/Proxy".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Proxy For".freeze, - range: "ore:AggregatedResource".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/AggregatedResource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :proxyIn, comment: "Proxy objects must link to the Aggregation in which the resource being proxied is aggregated. The ore:proxyIn relationship is used for this purpose. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregation.".freeze, - domain: "ore:Proxy".freeze, - isDefinedBy: "ore:".freeze, + domain: "http://www.openarchives.org/ore/terms/Proxy".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Proxy In".freeze, - range: "ore:Aggregation".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :similarTo, comment: "The subject of this relationship MUST be an Aggregation. This Aggregation should be considered an expression within the ORE context of the object of the relationship, as it is broadly equivalent to the resource. For example, the Aggregation may consist of the resources which, together, make up a journal article which has a DOI assigned to it. The Aggregation is not the article to which the DOI was assigned, but is a representation of it in some manner.".freeze, - domain: "ore:Aggregation".freeze, - isDefinedBy: "ore:".freeze, + domain: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + isDefinedBy: "http://www.openarchives.org/ore/terms/".freeze, label: "Similar To".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/org.rb b/lib/rdf/vocab/org.rb index 6b1fa36..35e4249 100644 --- a/lib/rdf/vocab/org.rb +++ b/lib/rdf/vocab/org.rb @@ -3,591 +3,395 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/org# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Core organization ontology - # # - # # Core organization ontology - # # - # # Vocabulary for describing organizational structures, specializable to a broad variety of types of organization. - # # @version 0.8 - # # @see http://www.w3.org/TR/vocab-org/ - # class ORG < RDF::StrictVocabulary - # # Represents an event which resulted in a major change to an organization such as a merger or complete restructuring. It is intended for situations where the resulting organization is sufficient distinct from the original organizations that it has a distinct identity and distinct URI. Extension vocabularies should define sub-classes of this to denote particular categories of event. The instant or interval at which the event occurred should be given by `prov:startAtTime` and `prov:endedAtTime`, a description should be given by `dct:description`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChangeEvent - # - # # An Organization which is recognized in the world at large, in particular in legal jurisdictions, with associated rights and responsibilities. Examples include a Corporation, Charity, Government or Church. Note that this is a super class of `gr:BusinessEntity` and it is recommended to use the GoodRelations vocabulary to denote Business classifications such as DUNS or NAICS. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FormalOrganization - # - # # Indicates the nature of an Agent's membership of an organization. Represents an n-ary relation between an Agent, an Organization and a Role. It is possible to directly indicate membership, independent of the specific Role, through use of the `org:memberOf` property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Membership - # - # # Represents a collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organizations are often decomposable into hierarchical structures. It is recommended that SKOS lexical labels should be used to label the Organization. In particular `skos:prefLabel` for the primary (possibly legally recognized name), `skos:altLabel` for alternative names (trading names, colloquial names) and `skos:notation` to denote a code from a code list. Alternative names: _Collective_ _Body_ _Org_ _Group_ - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # A collaboration between two or more Organizations such as a project. It meets the criteria for being an Organization in that it has an identity and defining purpose independent of its particular members but is neither a formally recognized legal entity nor a sub-unit within some larger organization. Might typically have a shorter lifetime than the Organizations within it, but not necessarily. All members are `org:Organization`s rather than individuals and those Organizations can play particular roles within the venture. Alternative names: _Project_ _Venture_ _Endeavour_ _Consortium_ _Endeavour_ - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganizationalCollaboration - # - # # An Organization such as a University Support Unit which is part of some larger FormalOrganization and only has full recognition within the context of that FormalOrganization, it is not a Legal Entity in its own right. Units can be large and complex containing other Units and even FormalOrganizations. Alternative names: _OU_ _Unit_ _Department_ - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganizationalUnit - # - # # A Post represents some position within an organization that exists independently of the person or persons filling it. Posts may be used to represent situations where a person is a member of an organization ex officio (for example the Secretary of State for Scotland is part of UK Cabinet by virtue of being Secretary of State for Scotland, not as an individual person). A post can be held by multiple people and hence can be treated as a organization in its own right. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Post - # - # # Denotes a role that a Person or other Agent can take in an organization. Instances of this class describe the abstract role; to denote a specific instance of a person playing that role in a specific organization use an instance of `org:Membership`. It is common for roles to be arranged in some taxonomic structure and we use SKOS to represent that. The normal SKOS lexical properties should be used when labelling the Role. Additional descriptive properties for the Role, such as a Salary band, may be added by extension vocabularies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Role - # - # # An office or other premise at which the organization is located. Many organizations are spread across multiple sites and many sites will host multiple locations. In most cases a Site will be a physical location. However, we don't exclude the possibility of non-physical sites such as a virtual office with an associated post box and phone reception service. Extensions may provide subclasses to denote particular types of site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Site - # - # # Indicates the site at which a person is based. We do not restrict the possibility that a person is based at multiple sites. - # # @return [RDF::Vocabulary::Term] - # attr_reader :basedAt - # - # # Indicates a change event which resulted in a change to this organization. Depending on the event the organization may or may not have continued to exist after the event. Inverse of `org:originalOrganization`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :changedBy - # - # # Indicates a classification for this Organization within some classification scheme. Extension vocabularies may wish to specialize this property to have a range corresponding to a specific `skos:ConceptScheme`. This property is under discussion and may be revised or removed - in many cases organizations are best categorized by defining a sub-class hierarchy in an extension vocabulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :classification - # - # # Indicates a person who is a member of the subject Organization. Inverse of `org:memberOf`, see that property for further clarification. Provided for compatibility with `foaf:member`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMember - # - # # Indicates a membership relationship that the Agent plays. Inverse of `org:member`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMembership - # - # # Indicates a Post which exists within the Organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPost - # - # # Indicates a primary site for the Organization, this is the default means by which an Organization can be contacted and is not necessarily the formal headquarters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPrimarySite - # - # # Indicates the legally registered site for the organization, in many legal jurisdictions there is a requirement that FormalOrganizations such as Companies or Charities have such a primary designed site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRegisteredSite - # - # # Indicates a site at which the Organization has some presence even if only indirect (e.g. virtual office or a professional service which is acting as the registered address for a company). Inverse of `org:siteOf`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSite - # - # # Represents hierarchical containment of Organizations or Organizational Units; indicates an organization which is a sub-part or child of this organization. Inverse of `org:subOrganizationOf`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSubOrganization - # - # # Indicates a unit which is part of this Organization, e.g. a Department within a larger FormalOrganization. Inverse of `org:unitOf`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasUnit - # - # # Indicates that a person is the leader or formal head of the Organization. This will normally mean that they are the root of the `org:reportsTo` (acyclic) graph, though an organization may have more than one head. - # # @return [RDF::Vocabulary::Term] - # attr_reader :headOf - # - # # Indicates an Agent which holds a Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :heldBy - # - # # Indicates a Post held by some Agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :holds - # - # # Gives an identifier, such as a company registration number, that can be used to used to uniquely identify the organization. Many different national and international identier schemes are available. The org ontology is neutral to which schemes are used. The particular identifier scheme should be indicated by the datatype of the identifier value. Using datatypes to distinguish the notation scheme used is consistent with recommended best practice for `skos:notation` of which this property is a specialization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifier - # - # # Indicates an arbitrary relationship between two organizations. Specializations of this can be used to, for example, denote funding or supply chain relationships. - # # @return [RDF::Vocabulary::Term] - # attr_reader :linkedTo - # - # # Gives a location description for a person within the organization, for example a _Mail Stop_ for internal posting purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :location - # - # # Indicates the Person (or other Agent including Organization) involved in the Membership relationship. Inverse of `org:hasMembership` - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # Optional property to indicate the interval for which the membership is/was valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memberDuring - # - # # Indicates that a person is a member of the Organization with no indication of the nature of that membership or the role played. Note that the choice of property name is not meant to limit the property to only formal membership arrangements, it is also indended to cover related concepts such as affilliation or other involvement in the organization. Extensions can specialize this relationship to indicate particular roles within the organization or more nuanced relationships to the organization. Has an optional inverse, `org:hasmember`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memberOf - # - # # Indicates Organization in which the Agent is a member. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organization - # - # # Indicates one or more organizations that existed before the change event. Depending on the event they may or may not have continued to exist after the event. Inverse of `org:changedBy`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :originalOrganization - # - # # Indicates the Organization in which the Post exists. - # # @return [RDF::Vocabulary::Term] - # attr_reader :postIn - # - # # Indicates the purpose of this Organization. There can be many purposes at different levels of abstraction but the nature of an organization is to have a reason for existence and this property is a means to document that reason. An Organization may have multiple purposes. It is recommended that the purpose be denoted by a controlled term or code list, ideally a `skos:Concept`. However, the range is left open to allow for other types of descriptive schemes. It is expected that specializations or application profiles of this vocabulary will constrain the range of the purpose. Alternative names: _remit_ _responsibility_ (esp. if applied to OrganizationalUnits such as Government Departments). - # # @return [RDF::Vocabulary::Term] - # attr_reader :purpose - # - # # Indicates a salary or other reward associated with the role. Typically this will be denoted using an existing representation scheme such as `gr:PriceSpecification` but the range is left open to allow applications to specialize it (e.g. to remunerationInGBP). - # # @return [RDF::Vocabulary::Term] - # attr_reader :remuneration - # - # # Indicates a reporting relationship as might be depicted on an organizational chart. The precise semantics of the reporting relationship will vary by organization but is intended to encompass both direct supervisory relationships (e.g. carrying objective and salary setting authority) and more general reporting or accountability relationships (e.g. so called _dotted line_ reporting). - # # @return [RDF::Vocabulary::Term] - # attr_reader :reportsTo - # - # # Indicates an event which resulted in this organization. Inverse of `org:resultingOrganization`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultedFrom - # - # # Indicates an organization which was created or changed as a result of the event. Inverse of `org:resultedFrom`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultingOrganization - # - # # Indicates the Role that the Agent plays in a Membership relationship with an Organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # This is a metalevel property which is used to annotate an `org:Role` instance with a sub-property of `org:memberOf` that can be used to directly indicate the role for easy of query. The intended semantics is a Membership relation involving the Role implies the existence of a direct property relationship through an inference rule of the form: `{ [] org:member ?p; org:organization ?o; org:role [org:roleProperty ?r] } -> {?p ?r ?o}`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :roleProperty - # - # # Indicates an address for the site in a suitable encoding. Use of vCard (using the http://www.w3.org/TR/vcard-rdf/ vocabulary) is encouraged but the range is left open to allow other encodings to be used. The address may include email, telephone, and geo-location information and is not restricted to a physical address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :siteAddress - # - # # Indicates an Organization which has some presence at the given site. This is the inverse of `org:hasSite`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :siteOf - # - # # Represents hierarchical containment of Organizations or OrganizationalUnits; indicates an Organization which contains this Organization. Inverse of `org:hasSubOrganization`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subOrganizationOf - # - # # The transitive closure of subOrganizationOf, giving a representation of all organizations that contain this one. Note that technically this is a super property of the transitive closure so it could contain additional assertions but such usage is discouraged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :transitiveSubOrganizationOf - # - # # Indicates an Organization of which this Unit is a part, e.g. a Department within a larger FormalOrganization. This is the inverse of `org:hasUnit`. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unitOf - # - # # A role corresponding to the `org:headOf` property - # # @return [RDF::Vocabulary::Term] - # attr_reader :Head - # - # end ORG = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/org#")) do # Ontology definition ontology :"http://www.w3.org/ns/org#", comment: "Vocabulary for describing organizational structures, specializable to a broad variety of types of organization.".freeze, - "dc:contributor": [term( - "foaf:homepage": "http://www.asahi-net.or.jp/~ax2s-kmtn/".freeze, - "foaf:name": "Shuji Kamitsuna".freeze + "http://purl.org/dc/terms/contributor": [term( + "http://xmlns.com/foaf/0.1/homepage": "http://www.asahi-net.or.jp/~ax2s-kmtn/".freeze, + "http://xmlns.com/foaf/0.1/name": "Shuji Kamitsuna".freeze ), term( - "foaf:mbox": "antonio.maccioni@agid.gov.it".freeze, - "foaf:name": "Antonio Maccioni".freeze + "http://xmlns.com/foaf/0.1/mbox": "antonio.maccioni@agid.gov.it".freeze, + "http://xmlns.com/foaf/0.1/name": "Antonio Maccioni".freeze ), term( - "foaf:mbox": "dave@epimorphics.com".freeze, - "foaf:name": "Dave Reynolds".freeze + "http://xmlns.com/foaf/0.1/mbox": "dave@epimorphics.com".freeze, + "http://xmlns.com/foaf/0.1/name": "Dave Reynolds".freeze ), term( - "foaf:mbox": "dguardiola@quinode.fr".freeze, - "foaf:name": "Dominique Guardiola".freeze + "http://xmlns.com/foaf/0.1/mbox": "dguardiola@quinode.fr".freeze, + "http://xmlns.com/foaf/0.1/name": "Dominique Guardiola".freeze ), term( - "foaf:mbox": "emontiel@fi.upm.es".freeze, - "foaf:name": "Elena Montiel Ponsoda".freeze + "http://xmlns.com/foaf/0.1/mbox": "emontiel@fi.upm.es".freeze, + "http://xmlns.com/foaf/0.1/name": "Elena Montiel Ponsoda".freeze ), term( - "foaf:mbox": "giorgia.lodi@agid.gov.it".freeze, - "foaf:name": "Giorgia Lodi".freeze + "http://xmlns.com/foaf/0.1/mbox": "giorgia.lodi@agid.gov.it".freeze, + "http://xmlns.com/foaf/0.1/name": "Giorgia Lodi".freeze ), term( - "foaf:mbox": "lupe@fi.upm.es".freeze, - "foaf:name": "Guadalupe Aguado de Cea".freeze + "http://xmlns.com/foaf/0.1/mbox": "lupe@fi.upm.es".freeze, + "http://xmlns.com/foaf/0.1/name": "Guadalupe Aguado de Cea".freeze ), term( - "foaf:mbox": "mpoveda@fi.upm.es".freeze, - "foaf:name": "María Poveda Villalón".freeze + "http://xmlns.com/foaf/0.1/mbox": "mpoveda@fi.upm.es".freeze, + "http://xmlns.com/foaf/0.1/name": "María Poveda Villalón".freeze ), term( - "foaf:mbox": "ogiraldo@fi.upm.es".freeze, - "foaf:name": "Olga Ximena Giraldo".freeze + "http://xmlns.com/foaf/0.1/mbox": "ogiraldo@fi.upm.es".freeze, + "http://xmlns.com/foaf/0.1/name": "Olga Ximena Giraldo".freeze )], - "dc:created": "2010-05-28".freeze, - "dc:license": "http://www.opendatacommons.org/licenses/pddl/1.0/".freeze, - "dc:modified": ["2010-06-09".freeze, "2010-10-08".freeze, "2012-09-30".freeze, "2012-10-06".freeze, "2013-02-15".freeze, "2013-12-16".freeze, "2014-01-02".freeze, "2014-01-25".freeze, "2014-02-05".freeze, "2014-04-12".freeze], - "dc:title": "Core organization ontology".freeze, + "http://purl.org/dc/terms/created": "2010-05-28".freeze, + "http://purl.org/dc/terms/license": "http://www.opendatacommons.org/licenses/pddl/1.0/".freeze, + "http://purl.org/dc/terms/modified": ["2010-06-09".freeze, "2010-10-08".freeze, "2012-09-30".freeze, "2012-10-06".freeze, "2013-02-15".freeze, "2013-12-16".freeze, "2014-01-02".freeze, "2014-01-25".freeze, "2014-02-05".freeze, "2014-04-12".freeze], + "http://purl.org/dc/terms/title": "Core organization ontology".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/TR/vocab-org/".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "0.8".freeze, label: "Core organization ontology".freeze, - "owl:versionInfo": "0.8".freeze, - "rdfs:seeAlso": "http://www.w3.org/TR/vocab-org/".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :ChangeEvent, comment: "Represents an event which resulted in a major change to an organization such as a merger or complete restructuring. It is intended for situations where the resulting organization is sufficient distinct from the original organizations that it has a distinct identity and distinct URI. Extension vocabularies should define sub-classes of this to denote particular categories of event. The instant or interval at which the event occurred should be given by `prov:startAtTime` and `prov:endedAtTime`, a description should be given by `dct:description`. ".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "Change Event".freeze, - subClassOf: "prov:Activity".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/prov#Activity".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FormalOrganization, comment: "An Organization which is recognized in the world at large, in particular in legal jurisdictions, with associated rights and responsibilities. Examples include a Corporation, Charity, Government or Church. Note that this is a super class of `gr:BusinessEntity` and it is recommended to use the GoodRelations vocabulary to denote Business classifications such as DUNS or NAICS.".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "Formal Organization".freeze, - subClassOf: ["foaf:Organization".freeze, "org:Organization".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: ["http://www.w3.org/ns/org#Organization".freeze, "http://xmlns.com/foaf/0.1/Organization".freeze], + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Membership, comment: "Indicates the nature of an Agent's membership of an organization. Represents an n-ary relation between an Agent, an Organization and a Role. It is possible to directly indicate membership, independent of the specific Role, through use of the `org:memberOf` property.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/ns/org#ChangeEvent".freeze, "http://www.w3.org/ns/org#Site".freeze], isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "Membership".freeze, - "owl:disjointWith": ["org:ChangeEvent".freeze, "org:Site".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Organization, comment: "Represents a collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organizations are often decomposable into hierarchical structures. It is recommended that SKOS lexical labels should be used to label the Organization. In particular `skos:prefLabel` for the primary (possibly legally recognized name), `skos:altLabel` for alternative names (trading names, colloquial names) and `skos:notation` to denote a code from a code list. Alternative names: _Collective_ _Body_ _Org_ _Group_".freeze, - equivalentClass: "foaf:Organization".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Organization".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/ns/org#ChangeEvent".freeze, "http://www.w3.org/ns/org#Membership".freeze, "http://www.w3.org/ns/org#Role".freeze, "http://www.w3.org/ns/org#Site".freeze], + "http://www.w3.org/2002/07/owl#hasKey": list("http://www.w3.org/ns/org#identifier".freeze), isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "Organization".freeze, - "owl:disjointWith": ["org:ChangeEvent".freeze, "org:Membership".freeze, "org:Role".freeze, "org:Site".freeze], - "owl:hasKey": list("org:identifier".freeze), - subClassOf: "foaf:Agent".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OrganizationalCollaboration, comment: "A collaboration between two or more Organizations such as a project. It meets the criteria for being an Organization in that it has an identity and defining purpose independent of its particular members but is neither a formally recognized legal entity nor a sub-unit within some larger organization. Might typically have a shorter lifetime than the Organizations within it, but not necessarily. All members are `org:Organization`s rather than individuals and those Organizations can play particular roles within the venture. Alternative names: _Project_ _Venture_ _Endeavour_ _Consortium_ _Endeavour_".freeze, equivalentClass: term( - intersectionOf: list("org:Organization".freeze, term( - allValuesFrom: "org:Organization".freeze, - onProperty: "org:hasMember".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("http://www.w3.org/ns/org#Organization".freeze, "_:g9660".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "Endeavour".freeze, - subClassOf: "org:Organization".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OrganizationalUnit, comment: "An Organization such as a University Support Unit which is part of some larger FormalOrganization and only has full recognition within the context of that FormalOrganization, it is not a Legal Entity in its own right. Units can be large and complex containing other Units and even FormalOrganizations. Alternative names: _OU_ _Unit_ _Department_".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "OrganizationalUnit".freeze, - subClassOf: "org:Organization".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Post, comment: "A Post represents some position within an organization that exists independently of the person or persons filling it. Posts may be used to represent situations where a person is a member of an organization ex officio (for example the Secretary of State for Scotland is part of UK Cabinet by virtue of being Secretary of State for Scotland, not as an individual person). A post can be held by multiple people and hence can be treated as a organization in its own right.".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "Post".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Role, comment: "Denotes a role that a Person or other Agent can take in an organization. Instances of this class describe the abstract role; to denote a specific instance of a person playing that role in a specific organization use an instance of `org:Membership`. It is common for roles to be arranged in some taxonomic structure and we use SKOS to represent that. The normal SKOS lexical properties should be used when labelling the Role. Additional descriptive properties for the Role, such as a Salary band, may be added by extension vocabularies.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/ns/org#ChangeEvent".freeze, "http://www.w3.org/ns/org#Membership".freeze, "http://www.w3.org/ns/org#Site".freeze], isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "Role".freeze, - "owl:disjointWith": ["org:ChangeEvent".freeze, "org:Membership".freeze, "org:Site".freeze], - subClassOf: "skos:Concept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Site, comment: "An office or other premise at which the organization is located. Many organizations are spread across multiple sites and many sites will host multiple locations. In most cases a Site will be a physical location. However, we don't exclude the possibility of non-physical sites such as a virtual office with an associated post box and phone reception service. Extensions may provide subclasses to denote particular types of site.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/ns/org#ChangeEvent".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "Site".freeze, - "owl:disjointWith": "org:ChangeEvent".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :basedAt, comment: "Indicates the site at which a person is based. We do not restrict the possibility that a person is based at multiple sites.".freeze, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "based At".freeze, - range: "org:Site".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Site".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :changedBy, comment: "Indicates a change event which resulted in a change to this organization. Depending on the event the organization may or may not have continued to exist after the event. Inverse of `org:originalOrganization`.".freeze, - domain: "org:Organization".freeze, - inverseOf: "org:originalOrganization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, + inverseOf: "http://www.w3.org/ns/org#originalOrganization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "changed by".freeze, - range: "org:ChangeEvent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#ChangeEvent".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :classification, comment: "Indicates a classification for this Organization within some classification scheme. Extension vocabularies may wish to specialize this property to have a range corresponding to a specific `skos:ConceptScheme`. This property is under discussion and may be revised or removed - in many cases organizations are best categorized by defining a sub-class hierarchy in an extension vocabulary.".freeze, - domain: "org:Organization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "classification".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasMember, comment: "Indicates a person who is a member of the subject Organization. Inverse of `org:memberOf`, see that property for further clarification. Provided for compatibility with `foaf:member`.".freeze, - domain: "org:Organization".freeze, - equivalentProperty: "foaf:member".freeze, - inverseOf: "org:memberOf".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, + equivalentProperty: "http://xmlns.com/foaf/0.1/member".freeze, + inverseOf: "http://www.w3.org/ns/org#memberOf".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "has member".freeze, - range: "foaf:Agent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasMembership, comment: "Indicates a membership relationship that the Agent plays. Inverse of `org:member`.".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "org:member".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + inverseOf: "http://www.w3.org/ns/org#member".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "membership".freeze, - range: "org:Membership".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Membership".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasPost, comment: "Indicates a Post which exists within the Organization.".freeze, - domain: "org:Organization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "post".freeze, - range: "org:Post".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Post".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasPrimarySite, comment: "Indicates a primary site for the Organization, this is the default means by which an Organization can be contacted and is not necessarily the formal headquarters.".freeze, - domain: "org:Organization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "primary Site".freeze, - range: "org:Site".freeze, - subPropertyOf: "org:hasSite".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Site".freeze, + subPropertyOf: "http://www.w3.org/ns/org#hasSite".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasRegisteredSite, comment: "Indicates the legally registered site for the organization, in many legal jurisdictions there is a requirement that FormalOrganizations such as Companies or Charities have such a primary designed site. ".freeze, - domain: "org:FormalOrganization".freeze, + domain: "http://www.w3.org/ns/org#FormalOrganization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "registered Site".freeze, - range: "org:Site".freeze, - subPropertyOf: "org:hasPrimarySite".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Site".freeze, + subPropertyOf: "http://www.w3.org/ns/org#hasPrimarySite".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasSite, comment: "Indicates a site at which the Organization has some presence even if only indirect (e.g. virtual office or a professional service which is acting as the registered address for a company). Inverse of `org:siteOf`.".freeze, - domain: "org:Organization".freeze, - inverseOf: "org:siteOf".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, + inverseOf: "http://www.w3.org/ns/org#siteOf".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "has site".freeze, - range: "org:Site".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Site".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasSubOrganization, comment: "Represents hierarchical containment of Organizations or Organizational Units; indicates an organization which is a sub-part or child of this organization. Inverse of `org:subOrganizationOf`.".freeze, - domain: "org:Organization".freeze, - inverseOf: "org:subOrganizationOf".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, + inverseOf: "http://www.w3.org/ns/org#subOrganizationOf".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "has SubOrganization".freeze, - range: "org:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasUnit, comment: "Indicates a unit which is part of this Organization, e.g. a Department within a larger FormalOrganization. Inverse of `org:unitOf`.".freeze, - domain: "org:FormalOrganization".freeze, - inverseOf: "org:unitOf".freeze, + domain: "http://www.w3.org/ns/org#FormalOrganization".freeze, + inverseOf: "http://www.w3.org/ns/org#unitOf".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "has Unit".freeze, - range: "org:OrganizationalUnit".freeze, - subPropertyOf: "org:hasSubOrganization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#OrganizationalUnit".freeze, + subPropertyOf: "http://www.w3.org/ns/org#hasSubOrganization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :headOf, comment: "Indicates that a person is the leader or formal head of the Organization. This will normally mean that they are the root of the `org:reportsTo` (acyclic) graph, though an organization may have more than one head.".freeze, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "head of".freeze, - range: "org:Organization".freeze, - subPropertyOf: "org:memberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + subPropertyOf: "http://www.w3.org/ns/org#memberOf".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :heldBy, comment: "Indicates an Agent which holds a Post.".freeze, - domain: "org:Post".freeze, + domain: "http://www.w3.org/ns/org#Post".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "held by".freeze, - range: "foaf:Agent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :holds, comment: "Indicates a Post held by some Agent.".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "org:heldBy".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + inverseOf: "http://www.w3.org/ns/org#heldBy".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "holds".freeze, - range: "org:Post".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Post".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :identifier, comment: "Gives an identifier, such as a company registration number, that can be used to used to uniquely identify the organization. Many different national and international identier schemes are available. The org ontology is neutral to which schemes are used. The particular identifier scheme should be indicated by the datatype of the identifier value. Using datatypes to distinguish the notation scheme used is consistent with recommended best practice for `skos:notation` of which this property is a specialization.".freeze, - domain: "org:Organization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "identifier".freeze, - subPropertyOf: "skos:notation".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#notation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :linkedTo, comment: "Indicates an arbitrary relationship between two organizations. Specializations of this can be used to, for example, denote funding or supply chain relationships.".freeze, - domain: "org:Organization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "linked to".freeze, - range: "org:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :location, comment: "Gives a location description for a person within the organization, for example a _Mail Stop_ for internal posting purposes.".freeze, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "location".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :member, comment: "Indicates the Person (or other Agent including Organization) involved in the Membership relationship. Inverse of `org:hasMembership`".freeze, - domain: "org:Membership".freeze, - inverseOf: "org:hasMembership".freeze, + domain: "http://www.w3.org/ns/org#Membership".freeze, + inverseOf: "http://www.w3.org/ns/org#hasMembership".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "member".freeze, - range: "foaf:Agent".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :memberDuring, comment: "Optional property to indicate the interval for which the membership is/was valid.".freeze, - domain: "org:Membership".freeze, + domain: "http://www.w3.org/ns/org#Membership".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "member During".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :memberOf, comment: "Indicates that a person is a member of the Organization with no indication of the nature of that membership or the role played. Note that the choice of property name is not meant to limit the property to only formal membership arrangements, it is also indended to cover related concepts such as affilliation or other involvement in the organization. Extensions can specialize this relationship to indicate particular roles within the organization or more nuanced relationships to the organization. Has an optional inverse, `org:hasmember`.".freeze, - domain: "foaf:Agent".freeze, - inverseOf: "org:hasMember".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + inverseOf: "http://www.w3.org/ns/org#hasMember".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "member of".freeze, - range: "org:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :organization, comment: "Indicates Organization in which the Agent is a member.".freeze, - domain: "org:Membership".freeze, + domain: "http://www.w3.org/ns/org#Membership".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "organization".freeze, - range: "org:Organization".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :originalOrganization, comment: "Indicates one or more organizations that existed before the change event. Depending on the event they may or may not have continued to exist after the event. Inverse of `org:changedBy`.".freeze, - domain: "org:ChangeEvent".freeze, - inverseOf: "org:changedBy".freeze, + domain: "http://www.w3.org/ns/org#ChangeEvent".freeze, + inverseOf: "http://www.w3.org/ns/org#changedBy".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "original organization".freeze, - range: "org:Organization".freeze, - subPropertyOf: "prov:used".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#used".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :postIn, comment: "Indicates the Organization in which the Post exists.".freeze, - domain: "org:Post".freeze, - inverseOf: "org:hasPost".freeze, + domain: "http://www.w3.org/ns/org#Post".freeze, + inverseOf: "http://www.w3.org/ns/org#hasPost".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "post in".freeze, - range: "org:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :purpose, comment: "Indicates the purpose of this Organization. There can be many purposes at different levels of abstraction but the nature of an organization is to have a reason for existence and this property is a means to document that reason. An Organization may have multiple purposes. It is recommended that the purpose be denoted by a controlled term or code list, ideally a `skos:Concept`. However, the range is left open to allow for other types of descriptive schemes. It is expected that specializations or application profiles of this vocabulary will constrain the range of the purpose. Alternative names: _remit_ _responsibility_ (esp. if applied to OrganizationalUnits such as Government Departments).".freeze, - domain: "org:Organization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "purpose".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :remuneration, comment: "Indicates a salary or other reward associated with the role. Typically this will be denoted using an existing representation scheme such as `gr:PriceSpecification` but the range is left open to allow applications to specialize it (e.g. to remunerationInGBP).".freeze, - domain: "org:Role".freeze, + domain: "http://www.w3.org/ns/org#Role".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "remuneration".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :reportsTo, comment: "Indicates a reporting relationship as might be depicted on an organizational chart. The precise semantics of the reporting relationship will vary by organization but is intended to encompass both direct supervisory relationships (e.g. carrying objective and salary setting authority) and more general reporting or accountability relationships (e.g. so called _dotted line_ reporting).".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("foaf:Agent".freeze, "org:Post".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://xmlns.com/foaf/0.1/Agent".freeze, "http://www.w3.org/ns/org#Post".freeze) ), isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "reports to".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("foaf:Agent".freeze, "org:Post".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://xmlns.com/foaf/0.1/Agent".freeze, "http://www.w3.org/ns/org#Post".freeze) ), - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :resultedFrom, comment: "Indicates an event which resulted in this organization. Inverse of `org:resultingOrganization`.".freeze, - domain: "org:Organization".freeze, - inverseOf: "org:resultingOrganization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, + inverseOf: "http://www.w3.org/ns/org#resultingOrganization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "resulted from".freeze, - range: "org:ChangeEvent".freeze, - subPropertyOf: "prov:wasGeneratedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#ChangeEvent".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasGeneratedBy".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :resultingOrganization, comment: "Indicates an organization which was created or changed as a result of the event. Inverse of `org:resultedFrom`.".freeze, - domain: "org:ChangeEvent".freeze, - inverseOf: "org:resultedFrom".freeze, + domain: "http://www.w3.org/ns/org#ChangeEvent".freeze, + inverseOf: "http://www.w3.org/ns/org#resultedFrom".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "resulted in".freeze, - range: "org:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :role, comment: "Indicates the Role that the Agent plays in a Membership relationship with an Organization.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("org:Membership".freeze, "org:Post".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/ns/org#Membership".freeze, "http://www.w3.org/ns/org#Post".freeze) ), isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "role".freeze, - range: "org:Role".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Role".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :roleProperty, comment: "This is a metalevel property which is used to annotate an `org:Role` instance with a sub-property of `org:memberOf` that can be used to directly indicate the role for easy of query. The intended semantics is a Membership relation involving the Role implies the existence of a direct property relationship through an inference rule of the form: `{ [] org:member ?p; org:organization ?o; org:role [org:roleProperty ?r] } -> {?p ?r ?o}`.".freeze, - domain: "org:Role".freeze, + domain: "http://www.w3.org/ns/org#Role".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "role (property)".freeze, - range: "rdf:Property".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :siteAddress, comment: "Indicates an address for the site in a suitable encoding. Use of vCard (using the http://www.w3.org/TR/vcard-rdf/ vocabulary) is encouraged but the range is left open to allow other encodings to be used. The address may include email, telephone, and geo-location information and is not restricted to a physical address. ".freeze, - domain: "org:Site".freeze, + domain: "http://www.w3.org/ns/org#Site".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "site Address".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :siteOf, comment: "Indicates an Organization which has some presence at the given site. This is the inverse of `org:hasSite`.".freeze, - domain: "org:Site".freeze, - inverseOf: "org:hasSite".freeze, + domain: "http://www.w3.org/ns/org#Site".freeze, + inverseOf: "http://www.w3.org/ns/org#hasSite".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "site Of".freeze, - range: "org:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :subOrganizationOf, comment: "Represents hierarchical containment of Organizations or OrganizationalUnits; indicates an Organization which contains this Organization. Inverse of `org:hasSubOrganization`.".freeze, - domain: "org:Organization".freeze, - inverseOf: "org:hasSubOrganization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, + inverseOf: "http://www.w3.org/ns/org#hasSubOrganization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "subOrganization of".freeze, - range: "org:Organization".freeze, - subPropertyOf: "org:transitiveSubOrganizationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + subPropertyOf: "http://www.w3.org/ns/org#transitiveSubOrganizationOf".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :transitiveSubOrganizationOf, comment: "The transitive closure of subOrganizationOf, giving a representation of all organizations that contain this one. Note that technically this is a super property of the transitive closure so it could contain additional assertions but such usage is discouraged.".freeze, - domain: "org:Organization".freeze, + domain: "http://www.w3.org/ns/org#Organization".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "transitive sub-organization".freeze, - range: "org:Organization".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#Organization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :unitOf, comment: "Indicates an Organization of which this Unit is a part, e.g. a Department within a larger FormalOrganization. This is the inverse of `org:hasUnit`.".freeze, - domain: "org:OrganizationalUnit".freeze, - inverseOf: "org:hasUnit".freeze, + domain: "http://www.w3.org/ns/org#OrganizationalUnit".freeze, + inverseOf: "http://www.w3.org/ns/org#hasUnit".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "unit Of".freeze, - range: "org:FormalOrganization".freeze, - subPropertyOf: "org:subOrganizationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/org#FormalOrganization".freeze, + subPropertyOf: "http://www.w3.org/ns/org#subOrganizationOf".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] # Extra definitions term :Head, comment: "A role corresponding to the `org:headOf` property".freeze, + "http://www.w3.org/ns/org#roleProperty": "http://www.w3.org/ns/org#headOf".freeze, isDefinedBy: "http://www.w3.org/ns/org".freeze, label: "head".freeze, - "org:roleProperty": "org:headOf".freeze, prefLabel: "head".freeze, - type: "org:Role".freeze + type: "http://www.w3.org/ns/org#Role".freeze end end diff --git a/lib/rdf/vocab/pcdm.rb b/lib/rdf/vocab/pcdm.rb index bddaedf..be22e9e 100644 --- a/lib/rdf/vocab/pcdm.rb +++ b/lib/rdf/vocab/pcdm.rb @@ -3,144 +3,94 @@ # This file generated automatically using rdf vocabulary format from http://pcdm.org/models# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Portland Common Data Model - # # - # # Ontology for the Portland Common Data Model, intended to underlie a wide array of repository and DAMS applications. - # # @version 2016/04/18 - # # @see https://github.com/duraspace/pcdm/wiki - # class PCDM < RDF::StrictVocabulary - # # An AlternateOrder is an alternate ordering of its parent's members. It should only order the parent's members, and otherwise has all of the features of ordering (some members may be omitted from the order, members may appear more than once in the order, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :AlternateOrder - # - # # A Collection is a group of resources. Collections have descriptive metadata, access metadata, and may links to works and/or collections. By default, member works and collections are an unordered set, but can be ordered using the ORE Proxy class. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # A File is a sequence of binary data and is described by some accompanying metadata. The metadata typically includes at least basic technical metadata (size, content type, modification date, etc.), but can also include properties related to preservation, digitization process, provenance, etc. Files MUST be contained by exactly one Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :File - # - # # An Object is an intellectual entity, sometimes called a "work", "digital object", etc. Objects have descriptive metadata, access metadata, may contain files and other Objects as member "components". Each level of a work is therefore represented by an Object instance, and is capable of standing on its own, being linked to from Collections and other Objects. Member Objects can be ordered using the ORE Proxy class. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Object - # - # # Links from a File to its containing Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileOf - # - # # Links to a File contained by this Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFile - # - # # Links to a subsidiary Object or Collection. Typically used to link to component parts, such as a book linking to a page. Note on transitivity: hasMember is not defined as transitive, but applications may treat it as transitive as local needs dictate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMember - # - # # Links to a related Object that is not a component part, such as an object representing a donor agreement or policies that govern the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedObject - # - # # Links from an Object or Collection to a containing Object or Collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memberOf - # - # # Links from an Object to a Object or Collection that it is related to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedObjectOf - # - # end PCDM = Class.new(RDF::StrictVocabulary("http://pcdm.org/models#")) do # Ontology definition ontology :"http://pcdm.org/models#", comment: "Ontology for the Portland Common Data Model, intended to underlie a wide array of repository and DAMS applications.".freeze, - "dc:modified": "2016/04/18".freeze, - "dc:publisher": "http://www.duraspace.org/".freeze, - "dc:title": "Portland Common Data Model".freeze, - "owl:priorVersion": "http://pcdm.org/2015/09/28/models".freeze, - "owl:versionInfo": "2016/04/18".freeze, - "rdfs:seeAlso": "https://github.com/duraspace/pcdm/wiki".freeze + "http://purl.org/dc/terms/modified": "2016/04/18".freeze, + "http://purl.org/dc/terms/publisher": "http://www.duraspace.org/".freeze, + "http://purl.org/dc/terms/title": "Portland Common Data Model".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://github.com/duraspace/pcdm/wiki".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://pcdm.org/2015/09/28/models".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "2016/04/18".freeze # Class definitions term :AlternateOrder, comment: "\n An AlternateOrder is an alternate ordering of its parent's members. It should only order the\n parent's members, and otherwise has all of the features of ordering (some members may be\n omitted from the order, members may appear more than once in the order, etc.).\n ".freeze, - isDefinedBy: "pcdm:".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "Alternate Order".freeze, - subClassOf: "pcdm:Object".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://pcdm.org/models#Object".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Collection, comment: "\n A Collection is a group of resources. Collections have descriptive metadata, access metadata,\n and may links to works and/or collections. By default, member works and collections are an\n unordered set, but can be ordered using the ORE Proxy class.\n ".freeze, - isDefinedBy: "pcdm:".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "Collection".freeze, - subClassOf: "ore:Aggregation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :File, comment: "\n A File is a sequence of binary data and is described by some accompanying metadata.\n The metadata typically includes at least basic technical metadata (size, content type,\n modification date, etc.), but can also include properties related to preservation,\n digitization process, provenance, etc. Files MUST be contained by exactly one Object.\n ".freeze, - isDefinedBy: "pcdm:".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "File".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Object, comment: "\n An Object is an intellectual entity, sometimes called a \"work\", \"digital object\", etc.\n Objects have descriptive metadata, access metadata, may contain files and other Objects as\n member \"components\". Each level of a work is therefore represented by an Object instance,\n and is capable of standing on its own, being linked to from Collections and other Objects.\n Member Objects can be ordered using the ORE Proxy class.\n ".freeze, - isDefinedBy: "pcdm:".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "Object".freeze, - subClassOf: "ore:Aggregation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :fileOf, comment: "Links from a File to its containing Object.".freeze, - domain: "pcdm:File".freeze, - inverseOf: "pcdm:hasFile".freeze, - isDefinedBy: "pcdm:".freeze, + domain: "http://pcdm.org/models#File".freeze, + inverseOf: "http://pcdm.org/models#hasFile".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "is file of".freeze, - range: "pcdm:Object".freeze, - subPropertyOf: "ore:isAggregatedBy".freeze, - type: "rdf:Property".freeze + range: "http://pcdm.org/models#Object".freeze, + subPropertyOf: "http://www.openarchives.org/ore/terms/isAggregatedBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasFile, comment: "Links to a File contained by this Object.".freeze, - domain: "pcdm:Object".freeze, - isDefinedBy: "pcdm:".freeze, + domain: "http://pcdm.org/models#Object".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "has file".freeze, - range: "pcdm:File".freeze, - subPropertyOf: "ore:aggregates".freeze, - type: "rdf:Property".freeze + range: "http://pcdm.org/models#File".freeze, + subPropertyOf: "http://www.openarchives.org/ore/terms/aggregates".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMember, comment: "Links to a subsidiary Object or Collection. Typically used to link\n to component parts, such as a book linking to a page. Note on transitivity: hasMember is\n not defined as transitive, but applications may treat it as transitive as local needs\n dictate.".freeze, - domain: "ore:Aggregation".freeze, - isDefinedBy: "pcdm:".freeze, + domain: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "has member".freeze, - range: "ore:Aggregation".freeze, - subPropertyOf: "ore:aggregates".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + subPropertyOf: "http://www.openarchives.org/ore/terms/aggregates".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasRelatedObject, comment: "Links to a related Object that is not a component part, such as an object representing a donor agreement or policies that govern the resource.".freeze, - domain: "ore:Aggregation".freeze, - isDefinedBy: "pcdm:".freeze, + domain: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "has related object".freeze, - range: "pcdm:Object".freeze, - subPropertyOf: "ore:aggregates".freeze, - type: "rdf:Property".freeze + range: "http://pcdm.org/models#Object".freeze, + subPropertyOf: "http://www.openarchives.org/ore/terms/aggregates".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :memberOf, comment: "Links from an Object or Collection to a containing Object or Collection.".freeze, - domain: "ore:Aggregation".freeze, - inverseOf: "pcdm:hasMember".freeze, - isDefinedBy: "pcdm:".freeze, + domain: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + inverseOf: "http://pcdm.org/models#hasMember".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "is member of".freeze, - range: "ore:Aggregation".freeze, - subPropertyOf: "ore:isAggregatedBy".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + subPropertyOf: "http://www.openarchives.org/ore/terms/isAggregatedBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedObjectOf, comment: "Links from an Object to a Object or Collection that it is related to.".freeze, - domain: "pcdm:Object".freeze, - inverseOf: "pcdm:hasRelatedObject".freeze, - isDefinedBy: "pcdm:".freeze, + domain: "http://pcdm.org/models#Object".freeze, + inverseOf: "http://pcdm.org/models#hasRelatedObject".freeze, + isDefinedBy: "http://pcdm.org/models#".freeze, label: "is related object of".freeze, - range: "ore:Aggregation".freeze, - subPropertyOf: "ore:isAggregatedBy".freeze, - type: "rdf:Property".freeze + range: "http://www.openarchives.org/ore/terms/Aggregation".freeze, + subPropertyOf: "http://www.openarchives.org/ore/terms/isAggregatedBy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/pplan.rb b/lib/rdf/vocab/pplan.rb index b6086c4..b942451 100644 --- a/lib/rdf/vocab/pplan.rb +++ b/lib/rdf/vocab/pplan.rb @@ -3,33 +3,25 @@ # This file generated automatically using rdf vocabulary format from http://purl.org/net/p-plan# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # The P-Plan Ontology - # # - # # The P-PLAN Ontology - # class PPLAN < RDF::StrictVocabulary - # end PPLAN = Class.new(RDF::StrictVocabulary("http://purl.org/net/p-plan#")) do # Ontology definition ontology :"http://purl.org/net/p-plan#", - "dc:created": "17 September 2013".freeze, - "dc:creator": ["http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://www.isi.edu/~gil/".freeze], - "dc:isVersionOf": "http://purl.org/net/p-plan".freeze, - "dc:modified": "Release 12 March 2014".freeze, - "dc:rights": "https://creativecommons.org/licenses/by/4.0/".freeze, - "dc:title": ["The P-PLAN Ontology".freeze, "The P-Plan Ontology".freeze], - "prov:wasAttributedTo": ["http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://www.isi.edu/~gil/".freeze], - "schema:author": ["http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://www.isi.edu/~gil/".freeze], - "schema:creator": "http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, - "schema:dateCreated": "17 September 2013".freeze, - "schema:dateModified": "Release 12 March 2014".freeze, - "schema:mentions": ["http://www.w3.org/TR/prov-o/".freeze, "pplan:PROV-DM".freeze, "pplan:PROV-O".freeze], - "schema:name": ["The P-PLAN Ontology".freeze, "The P-Plan Ontology".freeze], - "schema:version": "1.3".freeze, - type: ["foaf:Document".freeze, "owl:Ontology".freeze, "schema:TechArticle".freeze, "schema:WebPage".freeze], - "xhv:license": "https://creativecommons.org/licenses/by/4.0/".freeze + "http://purl.org/dc/terms/created": "17 September 2013".freeze, + "http://purl.org/dc/terms/creator": ["http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://www.isi.edu/~gil/".freeze], + "http://purl.org/dc/terms/isVersionOf": "http://purl.org/net/p-plan".freeze, + "http://purl.org/dc/terms/modified": "Release 12 March 2014".freeze, + "http://purl.org/dc/terms/rights": "https://creativecommons.org/licenses/by/4.0/".freeze, + "http://purl.org/dc/terms/title": ["The P-PLAN Ontology".freeze, "The P-Plan Ontology".freeze], + "http://schema.org/author": ["http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://www.isi.edu/~gil/".freeze], + "http://schema.org/creator": "http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, + "http://schema.org/dateCreated": "17 September 2013".freeze, + "http://schema.org/dateModified": "Release 12 March 2014".freeze, + "http://schema.org/mentions": ["http://purl.org/net/p-plan#PROV-DM".freeze, "http://purl.org/net/p-plan#PROV-O".freeze, "http://www.w3.org/TR/prov-o/".freeze], + "http://schema.org/name": ["The P-PLAN Ontology".freeze, "The P-Plan Ontology".freeze], + "http://schema.org/version": "1.3".freeze, + "http://www.w3.org/1999/xhtml/vocab#license": "https://creativecommons.org/licenses/by/4.0/".freeze, + "http://www.w3.org/ns/prov#wasAttributedTo": ["http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://delicias.dia.fi.upm.es/members/DGarijo/#me".freeze, "http://www.isi.edu/~gil/".freeze], + type: ["http://schema.org/TechArticle".freeze, "http://schema.org/WebPage".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze, "http://xmlns.com/foaf/0.1/Document".freeze] end end diff --git a/lib/rdf/vocab/premis.rb b/lib/rdf/vocab/premis.rb index aead99a..a39f200 100644 --- a/lib/rdf/vocab/premis.rb +++ b/lib/rdf/vocab/premis.rb @@ -3,2242 +3,1091 @@ # This file generated automatically using rdf vocabulary format from http://www.loc.gov/premis/rdf/v1# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Preservation Metadata: Implementation Strategies (PREMIS) Ontology - # # - # # This ontology identifies the classes and properties used to describe preservation metadata in RDF. It aligns with PREMIS Data Dictionary version 2.2. - # # @version 1.0.0 - # # @see http://multimedialab.elis.ugent.be/users/samcoppe/ontologies/Premis/index.html for the OWL Documentation of the ontology. - # class PREMIS < RDF::StrictVocabulary - # # Entity properties: May hold or grant one or more rights. May carry out, authorize, or compel one or more events. May create or act upon one or more objects through an event or with respect to a rights statement. - # # - # # The Agent entity aggregates information about attributes or characteristics of agents (persons, organizations, or software) associated with rights management and preservation events in the life of a data object. Agent information serves to identify an agent unambiguously from all other Agent entities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agent - # - # # 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 - # - # # Definition: Contiguous or non-contiguous data within a file that has meaningful properties for preservation purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bitstream - # - # # 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 - # - # # 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 - # - # # 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. - # # - # # 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. - # # - # # 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 - # - # # 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. - # # - # # 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. - # # - # # 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 - # - # # Creation / Maintenance Notes: This information may be omitted when the repository is doing only bit-level preservation on the object. Rather than having each repository record this locally, it would be preferable to have a registry of environment information similar to proposed registries of format information. Repositories may choose to design mechanisms for inheritance, so that if the environment required for each file within a representation is identical to the environment recorded for the representation as a whole, it is not necessary to store this information in each file. - # # - # # Usage Notes: All of this semantic units’ subunits are optional. At least one subunit (i.e. environmentNote, dependency, software, hardware, and/or environmentExtension) must be present if this container is included. - # # - # # Rationale: Environment is the means by which the user renders and interacts with content. Separation of digital content from its environmental context can result in the content becoming unusable. - # # - # # Definition: Hardware/software combinations supporting use of the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Environment - # - # # The Event entity aggregates information about an action that involves one or more Object entities. Metadata about an Event would normally be recorded and stored separately from the digital object. Whether or not a preservation repository records an Event depends upon the importance of the event. Actions that modify objects should always be recorded. Other actions such as copying an object for backup purposes may be recorded in system logs or an audit trail but not necessarily in an Event entity. Mandatory semantic units are: eventIdentifier, eventType, and eventDateTime. - # # - # # Entity properties: Must be related to one or more objects. Can be related to one or more agents. Links between entities may be recorded from either direction and need not be bi-directional. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # 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. - # # - # # Rationale: An event outcome may be sufficiently complex that a coded description is not adequate to document it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventOutcomeDetail - # - # # Definition: Information about the outcome of an event. - # # - # # Usage Notes: A repository may wish to supplement a coded eventOutcome value with additional information in eventOutcomeDetail. Since events may have more than one outcome, the container is repeatable. All subunits of this semantic unit are optional. At least one subunit (i.e. eventOutcome or eventOutcomeDetail) must be present if this container is included. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventOutcomeInformation - # - # # Definition: A named and ordered sequence of bytes that is known to an operating system. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fixity - # - # # 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. - # # - # # 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. - # # - # # Definition: Identification of the format of a file or bitstream where format is the organization of digital information according to preset specifications. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Format - # - # # Usage Notes: Either formatDesignation or at least one instance of formatRegistry is required. Both may be included. The most specific format (or format profile) should be recorded. A repository (or formats registry) may wish to use multipart format names (e.g., “TIFF_GeoTIFF” or “WAVE_MPEG_BWF”) to achieve this specificity. - # # - # # Definition: An identification of the format of the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FormatDesignation - # - # # 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. - # # - # # Rationale: If central format registries are available to the preservation repository, they may provide an excellent way of referencing detailed format information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FormatRegistry - # - # # Definition: Hardware components needed by the software referenced in swName or the human user of the referenced software. - # # - # # Creation / Maintenance Notes: Hardware environment information can be very difficult to provide. Many different hardware environments may apply; there are a huge number of combinations of maker and type of CPU, memory, video drivers, and so on. Although at least one hardware environment should be recorded, it is not necessary to record them all and each repository will have to make its own decisions about which hardware environments to record. Because of the difficulty recording this information comprehensively, it would be optimal if central registries of environment information existed. In many cases the environment of a file object is directly associated with the format, making registry lookup by format feasible. In the absence of a global mechanism, repositories may be forced to develop their own local “registries” relating format to hwEnvironment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hardware - # - # # This class is used in PREMIS OWL to describe identifiers if the identifiers are not http URIs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Identifier - # - # # 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. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Inhibitors - # - # # 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 - # - # # Definition: Information about a license or other agreement granting permissions related to an object. - # # - # # Usage Note: When rights basis is a license, licenseInformation should be provided. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LicenseInformation - # - # # 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. - # # - # # 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 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 - # - # # 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. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ObjectCharacteristics - # - # # Definition: Basicly, the preservation information in PREMIS OWL consists of five entities related to each other. The entities are: Agent, Event, IntellectualEntity, Object, and RightsStatement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PremisEntity - # - # # 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. - # # - # # 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. - # # - # # 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). - # # - # # 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. - # # @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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :RelatedObjectIdentification - # - # # Definition: 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Representation - # - # # Definition: A designation used to uniquely identify documentation supporting the specified rights within the repository system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RightsDocumentation - # - # # Definition: The action(s) that the granting agency has allowed the repository. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RightsGranted - # - # # Extensions: In OWL one can define its own subclasses to the the RightsStatement class to denote OtherRightsInformation of the PREMIS data dictionary. - # # - # # Usage Notes: This semantic unit is optional because in some cases rights may be unknown. Institutions are encouraged to record rights information when possible. Either rightsStatement or rightsExtension must be present if the Rights entity is included. The rightsStatement should be repeated when the act(s) described has more than one basis, or when different acts have different bases. - # # - # # Definition: Documentation of the repository's right to perform one or more acts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RightsStatement - # - # # 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. - # # - # # Definition: Information needed to use a digital signature to authenticate the signer of an object and/or the information contained in the object. - # # - # # 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 - # - # # 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. - # # - # # Definition: Characteristics of a particular object subjectively determined to be important to maintain through preservation actions. - # # - # # 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. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Software - # - # # 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 - # - # # 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. - # # - # # Rationale: It is necessary for a repository to associate the contentLocation with the storageMedium. - # # - # # Definition: Information about how and where a file is stored in the storage system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Storage - # - # # Rationale: The permission to preserve may be time bounded. - # # - # # Definition: The time period for the permissions granted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TermOfGrant - # - # # Definition: The time period for the restriction granted. - # # - # # Rationale: The current definition of termOfGrant is "time period for the permissions granted." This allows for expressing information about the rights granted, but some repositories may need to express timebounded restrictions like embargoes. If this is applicable startDate for the beginning of the embargo and endDate for the end of the embargo should be recorded. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TermOfRestriction - # - # # 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 - # - # # 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 - # - # # Definition: A text string which could be used in addition to agentIdentifier to identify an agent. - # # - # # 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. - # # - # # Examples: Erik Owens, Pc - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAgentName - # - # # 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. - # # - # # Definition: A high-level characterization of the type of agent. - # # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/agentType - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAgentType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasApplicableDates - # - # # 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. - # # - # # Definition: An indication of whether the object is subject to one or more processes of decoding or unbundling. - # # - # # 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.” - # # - # # Examples: 0, 1, 2 - # # - # # 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. - # # - # # Data Constraints: Non-negative integers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCompositionLevel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContentLocation - # - # # 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/contentLocationType - # # - # # Rationale: To understand the meaning of the value it is necessary to know what location scheme is used. - # # - # # Definition: The means of referencing the location of the content. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasContentLocationValue - # - # # Definition: The country whose copyright laws apply. - # # - # # Rationale: Copyright law can vary from country to country. - # # - # # Examples: us, de, be - # # - # # Data Constraint: Values should be taken from ISO 3166. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCopyrightJurisdiction - # - # # Definition: A coded designation for the copyright status of the object at the time the rights statement is recorded. - # # - # # 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/copyrightStatus - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCopyrightStatus - # - # # 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 - # - # # Example: MSWord - # # - # # Definition: A designation for the name of the software program that created the object. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCreatingApplicationName - # - # # Definition: The version of the software program that created the object. - # # - # # Example: 2000 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCreatingApplicationVersion - # - # # Definition: The actual or approximate date and time the object was created. - # # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDateCreatedByApplication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDependency - # - # # 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 - # - # # Definition: The ending date of the permission granted. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEndDate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEnvironment - # - # # 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: 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEnvironmentCharacteristic - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEnvironmentNote - # - # # 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. - # # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/environmentPurpose - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEvent - # - # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime - # # - # # Example: 2001-10-26T19:32:52+00:00 - # # - # # Definition: The single date and time, or date and time range, at or during which the event occurred. - # # - # # 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 - # - # # Definition: Additional information about the event. - # # - # # Examples: Object permanently withdrawn by request of Caroline Hunt, Program=“MIGJP2JP2K”; version=“2.2” - # # - # # 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. - # # - # # 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”] - # # - # # Data Constraint: Value should be taken from a controlled vocabulary. - # # - # # 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. - # # @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. - # # - # # Examples: LZW compressed file, Non-standard tags found in header - # # - # # Rationale: Additional information in textual form may be needed about the outcome of the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventOutcomeDetailNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventOutcomeInformation - # - # # 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 - # - # # Definition: Information about an object associated with an event. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventRelatedObject - # - # # 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: Categorizing events will aid the preservation repository in machine processing of event information, particularly in reporting. - # # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/eventType - # # - # # Definition: A categorization of the nature of the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEventType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFixity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormatDesignation - # - # # Examples: Text/sgml, image/tiff/geotiff, Adobe PDF, DES, PGP, base64, unknown, LaTex - # # - # # Data Constraint: Value should be taken from a controlled vocabulary. - # # - # # Definition: A designation of the format of the file or bitstream. - # # - # # Usage Notes: For unidentified formats, formatName may be recorded as “unknown”. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormatName - # - # # Definition: Additional information about format. - # # - # # Examples: tentative identification, disjunction, multiple format identifications found - # # - # # Usage Notes: The formatNote may contain free text, a reference pointer, or a value from a controlled list. - # # - # # Rationale: Qualifying information may be needed to supplement format designation and registry information or record a status for identification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormatNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormatRegistry - # - # # Definition: The unique key used to reference an entry for this format in a format registry. - # # - # # Examples: info:gdfr/fred/f/tiff, TIFF/6.0 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormatRegistryKey - # - # # Definition: A designation identifying the referenced format registry. - # # - # # Usage Notes: This can be a formal name, internally used name, or URI. - # # - # # Examples: PRONOM, www.nationalarchives.gov.uk/pronom, Representation Information Registry Repository, FRED: A format registry demonstration, release 0.07 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormatRegistryName - # - # # 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. - # # - # # Definition: The purpose or expected use of the registry. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormatRegistryRole - # - # # 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. - # # - # # Definition: The version of the format named in formatName. - # # - # # Examples: 6.0, 2003 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFormatVersion - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasHardware - # - # # Examples: Intel Pentium III, 1 GB DRAM, Windows XPcompatible joystick - # # - # # 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. - # # - # # Definition: Manufacturer, model, and version (if applicable) of the hardware. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasHardwareName - # - # # Definition: Additional requirements or instructions related to the hardware referenced in hwName. - # # - # # 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. - # # - # # Usage Notes: This could be an identifier or URI used to point to hardware documentation. - # # - # # Examples: 32MB minimum, Required RAM for Apache is unknown - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasHardwareOtherInformation - # - # # 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: Class or category of the hardware. - # # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/hardwareType - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasHardwareType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasIdentifier - # - # # 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. - # # - # # 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. - # # - # # Definition: A designation of the domain within which the identifier is unique. - # # - # # Examples: DLC, DRS, hdl:4263537 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasIdentifierType - # - # # 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] - # # - # # Definition: The decryption key or password. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInhibitorKey - # - # # Definition: The content or function protected by the inhibitor. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInhibitorTarget - # - # # 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 - # # - # # Definition: The inhibitor method employed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInhibitorType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInhibitors - # - # # Definition: An intellectual entity associated with the object. - # # - # # Usage Notes: Use to link to an intellectual entity that is related to the object. This may be a link to descriptive metadata that describes the intellectual entity or some other surrogate for it that can be referenced. This link will likely be to an identifier of an object that is at a higher conceptual level than the object for which the metadata is provided, for example, to a collection or parent object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasIntellectualEntity - # - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLicenseTerms - # - # # Example: 7c9b35da4f2ebd436f1cf88e5a39b3a257edf4a22be3c955ac49da2e2107b67a1924419563 - # # - # # Definition: The output of the message digest algorithm. - # # - # # Rationale: This must be stored so that it can be compared in future fixity checks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMessageDigest - # - # # 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/cryptographicHashFunctions - # # - # # Definition: The specific algorithm used to construct the message digest for the digital object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMessageDigestAlgorithm - # - # # 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). - # # - # # Definition: The agent that created the original message digest that is compared in a fixity check. - # # - # # 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. - # # - # # Examples: DRS, A0000978 - # # - # # 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. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasObject - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasObjectCharacteristics - # - # # 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. - # # - # # Example: N419.pdf - # # - # # 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. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOriginalName - # - # # @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. - # # @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. - # # - # # 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 - # - # # 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: Repositories may assign preservationLevelValues in different contexts which must be differentiated, and may need to record more than one context. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPreservationLevelRole - # - # # 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. - # # - # # Creation / Maintenance Notes: The preservation level may be assigned by the repository or requested by the depositor and submitted as metadata. - # # - # # Data Constraint: Value should be taken from a controlled vocabulary. - # # - # # 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 - # # - # # Definition: A value indicating the set of preservation functions expected to be applied to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPreservationLevelValue - # - # # Definition: This property related to all object belonging to a RelatedObjectIdentification to describe the related objects as an aggregation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedObject - # - # # 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 - # - # # Definition: This property is used to relate certain StatuteInformation instances. The rationale for this is that in the PREMIS data dictionary, a RightsStatement instance can consist of several StatuteInformation instances. In the PREMIS OWL ontology, the StatuteInformation class is subclassed to RightsStatement. The restore the relation between the grouped StatuteInformation instances of a RightsStatement of the PREMIS data dictionary, this property is used is PREMIS OWL. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelatedStatuteInformation - # - # # Definition: This property links one object to one or more other objects. - # # - # # 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. - # # @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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRestriction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRightsDocumentation - # - # # Rationale: This information distinguishes the purpose of the supporting documentation especially when there are multiple documentation identifiers. - # # - # # Definition: This property denotes the role of the related documentation. The value must be taken from a skos vocabulary. A value indicating the purpose or expected use of the documentation being identified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRightsDocumentationRole - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRightsGranted - # - # # Definition: Additional information about the rights granted. - # # - # # Rationale: A textual description of the rights granted may be needed for additional explanation. - # # - # # Usage Notes: This semantic unit may include a statement about risk assessment, for example, when a repository is not certain about what permissions have been granted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRightsGrantedNote - # - # # 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 RightsStatement 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 :hasRightsRelatedAgent - # - # # Rationale: A repository may choose to link from a rights statement to an object or from an object to a rights statement or both. - # # - # # Definition: A rights statement associated with the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRightsStatement - # - # # Definition: Additional information about the RightsStatement of an object. - # # - # # Examples: Copyright expiration expected in 2010 unless renewed. License is embedded in XMP block in file header. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRightsStatementNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSignature - # - # # 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 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSignatureEncoding - # - # # 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 a SKOS vocabulary - # # - # # Definition: A designation for the encryption and hash algorithms used for signature generation. - # # - # # Rationale: The same algorithms must be used for signature validation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSignatureMethod - # - # # Definition: Additional information about the generation of the signature. - # # - # # Usage Notes: This may include the date/time of signature generation, the serial number of the cryptographic hardware used, or other information related to the generation of the signature. Repositories will likely want to define a suitably granular structure to signatureProperties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSignatureProperties - # - # # 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. - # # - # # 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. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSignatureValue - # - # # 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. - # # - # # 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 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSignificantProperties - # - # # Usage Notes: This semantic unit is optional and may be used as part of a facet:detail pair with significantPropertiesValue. - # # - # # Definition: The aspect, facet, or attribute of an object about which significant properties are being described. - # # - # # Rationale: Repositories may choose to describe significant properties based on a particular aspect or attribute of an object. - # # - # # 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. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSignificantPropertiesValue - # - # # Definition: The size in bytes of the file or bitstream stored in the repository. - # # - # # 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. - # # - # # 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. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSoftwareDependency - # - # # Examples: Adobe Photoshop, Adobe Acrobat Reader - # # - # # Usage Notes: Include manufacturer when this helps to identify or disambiguate the product, for example, use “Adobe Photoshop” rather than “Photoshop.” - # # - # # Definition: Manufacturer and title of the software application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSoftwareName - # - # # Usage Notes: This could be a reliable persistent identifier or URI pointing to software documentation within or outside the repository. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSoftwareOtherInformation - # - # # 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: Several different layers of software can be required to support an object. - # # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/softwareType - # # - # # Definition: Class or category of software. - # # @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. - # # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStartDate - # - # # Definition: An identifying designation for the statute. - # # - # # Usage Notes: Use standard citation form when applicable. - # # - # # 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 - # - # # 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. - # # - # # Example: 2001-10-26T19:32:52+00:00 - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStatuteInformationDeterminationDate - # - # # Data Constraint: Values should be taken from a controlled vocabulary. - # # - # # Rationale: The connection between the object and the rights granted is based on jurisdiction. - # # - # # Definition: The country or other political body enacting the statute. - # # - # # Examples: us, de, be - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStatuteJurisdiction - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStorage - # - # # Definition: The physical medium on which the object is stored (e.g., magnetic tape, hard disk, CD-ROM, DVD). - # # - # # 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. - # # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStorageMedium - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTermOfGrant - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTermOfRestriction - # - # end PREMIS = Class.new(RDF::StrictVocabulary("http://www.loc.gov/premis/rdf/v1#")) do # Ontology definition ontology :"http://www.loc.gov/premis/rdf/v1#", comment: "\n This ontology identifies the classes and properties used to describe preservation metadata in RDF.\n It aligns with PREMIS Data Dictionary version 2.2.".freeze, - "dc:modified": "2012-09-14T00:00:00Z".freeze, + "http://purl.org/dc/terms/modified": "2012-09-14T00:00:00Z".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://multimedialab.elis.ugent.be/users/samcoppe/ontologies/Premis/index.html for the OWL Documentation of the ontology.".freeze, + "http://www.w3.org/2002/07/owl#imports": ["http://id.loc.gov/vocabulary/preservation/actionsGranted".freeze, "http://id.loc.gov/vocabulary/preservation/agentType".freeze, "http://id.loc.gov/vocabulary/preservation/contentLocationType".freeze, "http://id.loc.gov/vocabulary/preservation/copyrightStatus".freeze, "http://id.loc.gov/vocabulary/preservation/cryptographicHashFunctions".freeze, "http://id.loc.gov/vocabulary/preservation/environmentCharacteristic".freeze, "http://id.loc.gov/vocabulary/preservation/environmentPurpose".freeze, "http://id.loc.gov/vocabulary/preservation/eventRelatedAgentRole".freeze, "http://id.loc.gov/vocabulary/preservation/eventRelatedObjectRole".freeze, "http://id.loc.gov/vocabulary/preservation/eventType".freeze, "http://id.loc.gov/vocabulary/preservation/formatRegistryRole".freeze, "http://id.loc.gov/vocabulary/preservation/hardwareType".freeze, "http://id.loc.gov/vocabulary/preservation/inhibitorTarget".freeze, "http://id.loc.gov/vocabulary/preservation/inhibitorType".freeze, "http://id.loc.gov/vocabulary/preservation/objectCategory".freeze, "http://id.loc.gov/vocabulary/preservation/preservationLevelRole".freeze, "http://id.loc.gov/vocabulary/preservation/relationshipSubType".freeze, "http://id.loc.gov/vocabulary/preservation/relationshipType".freeze, "http://id.loc.gov/vocabulary/preservation/rightsBasis".freeze, "http://id.loc.gov/vocabulary/preservation/rightsRelatedAgentRole".freeze, "http://id.loc.gov/vocabulary/preservation/signatureEncoding".freeze, "http://id.loc.gov/vocabulary/preservation/signatureMethod".freeze, "http://id.loc.gov/vocabulary/preservation/softwareType".freeze, "http://id.loc.gov/vocabulary/preservation/storageMedium".freeze], + "http://www.w3.org/2002/07/owl#versionInfo": "1.0.0".freeze, isDefinedBy: "http://www.loc.gov/standards/premis/v2/premis-2-2.pdf".freeze, label: "Preservation Metadata: Implementation Strategies (PREMIS) Ontology".freeze, - "owl:imports": ["http://id.loc.gov/vocabulary/preservation/actionsGranted".freeze, "http://id.loc.gov/vocabulary/preservation/agentType".freeze, "http://id.loc.gov/vocabulary/preservation/contentLocationType".freeze, "http://id.loc.gov/vocabulary/preservation/copyrightStatus".freeze, "http://id.loc.gov/vocabulary/preservation/cryptographicHashFunctions".freeze, "http://id.loc.gov/vocabulary/preservation/environmentCharacteristic".freeze, "http://id.loc.gov/vocabulary/preservation/environmentPurpose".freeze, "http://id.loc.gov/vocabulary/preservation/eventRelatedAgentRole".freeze, "http://id.loc.gov/vocabulary/preservation/eventRelatedObjectRole".freeze, "http://id.loc.gov/vocabulary/preservation/eventType".freeze, "http://id.loc.gov/vocabulary/preservation/formatRegistryRole".freeze, "http://id.loc.gov/vocabulary/preservation/hardwareType".freeze, "http://id.loc.gov/vocabulary/preservation/inhibitorTarget".freeze, "http://id.loc.gov/vocabulary/preservation/inhibitorType".freeze, "http://id.loc.gov/vocabulary/preservation/objectCategory".freeze, "http://id.loc.gov/vocabulary/preservation/preservationLevelRole".freeze, "http://id.loc.gov/vocabulary/preservation/relationshipSubType".freeze, "http://id.loc.gov/vocabulary/preservation/relationshipType".freeze, "http://id.loc.gov/vocabulary/preservation/rightsBasis".freeze, "http://id.loc.gov/vocabulary/preservation/rightsRelatedAgentRole".freeze, "http://id.loc.gov/vocabulary/preservation/signatureEncoding".freeze, "http://id.loc.gov/vocabulary/preservation/signatureMethod".freeze, "http://id.loc.gov/vocabulary/preservation/softwareType".freeze, "http://id.loc.gov/vocabulary/preservation/storageMedium".freeze], - "owl:versionInfo": "1.0.0".freeze, - "rdfs:seeAlso": "http://multimedialab.elis.ugent.be/users/samcoppe/ontologies/Premis/index.html for the OWL Documentation of the ontology.".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Agent, comment: ["Entity properties:\nMay hold or grant one or more rights.\nMay carry out, authorize, or compel one or more events.\nMay create or act upon one or more objects through an event or with respect to a rights statement.".freeze, "The Agent entity aggregates information about attributes or characteristics of agents (persons, organizations, or software) associated with rights management and preservation events in the life of a data object. Agent information serves to identify an agent unambiguously from all other\nAgent entities.".freeze], - subClassOf: ["dc:Agent".freeze, "foaf:Agent".freeze, "premis:PremisEntity".freeze], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://purl.org/dc/terms/Agent".freeze, "http://www.loc.gov/premis/rdf/v1#PremisEntity".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ApplicableDates, comment: ["Definition: The date range during which the particular rights statement applies or is\napplied to the content.".freeze, "Rationale Specific dates may apply to the particular rights statement.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: [term( maxCardinality: "1".freeze, - onProperty: "premis:hasEndDate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasEndDate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "premis:hasStartDate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasStartDate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Bitstream, comment: "Definition: Contiguous or non-contiguous data within a file that has meaningful properties for preservation purposes.".freeze, - "rdfs:seeAlso": "Object class definition".freeze, - subClassOf: ["premis:Object".freeze, term( + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Object class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://www.loc.gov/premis/rdf/v1#Object".freeze, term( minCardinality: "1".freeze, - onProperty: "premis:hasObjectCharacteristics".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasObjectCharacteristics".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ContentLocation, comment: ["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.".freeze, "Definition: Information needed to retrieve a file from the storage system, or to access a bitstream within a file.".freeze, "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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasContentLocationType".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasContentLocationValue".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("_:g17620".freeze, "_:g17660".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CopyrightInformation, comment: ["Definition: Information about the copyright status of the object(s).".freeze, "Usage Notes: When rights basis is a copyright, copyrightInformation should be provided.\nRepositories 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.".freeze], - subClassOf: ["premis:RightsStatement".freeze, term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasCopyrightStatus".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasCopyrightJurisdiction".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, term( + intersectionOf: list("_:g16140".freeze, "_:g16180".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CreatingApplication, comment: ["Creation / Maintenance Notes: If the object was created by the repository, assignment of creating application information should be straightforward.\nIf 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.".freeze, "Definition: Information about the application that created the object.".freeze, "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.".freeze, "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.\nThe 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.”\nIt 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.\nThe amount of information needed for creatingApplication given here is minimal. For more granularity, extensibility is provided.\nRather than having each repository record this locally, it would be preferable to have a registry of this information similar to format or environment registries.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - type: "owl:Class".freeze, - unionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasCreatingApplicationName".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "premis:hasCreatingApplicationVersion".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "premis:hasDateCreatedByApplication".freeze, - type: "owl:Restriction".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g16280".freeze, "_:g16320".freeze, "_:g16360".freeze) ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dependency, comment: ["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.".freeze, "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.".freeze, "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.\nThis 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”.\nIt is up to the repository to determine what constitutes a dependency in the context of the designated community.\nThe objects noted may be internal or external to the preservation repository.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - type: "owl:Class".freeze, - unionOf: list(term( - maxCardinality: "1".freeze, - onProperty: "premis:hasIdentifier".freeze, - type: "owl:Restriction".freeze - ), term( - minCardinality: "1".freeze, - onProperty: "premis:hasDependencyName".freeze, - type: "owl:Restriction".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g16860".freeze, "_:g16900".freeze) ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Environment, comment: ["Creation / Maintenance Notes: This information may be omitted when the repository is doing only bit-level preservation on the object.\nRather than having each repository record this locally, it would be preferable to have a registry of environment information similar to proposed registries of format information.\nRepositories may choose to design mechanisms for inheritance, so that if the environment required for each file within a representation is identical to the environment recorded for the representation as a whole, it is not necessary to store this information in each file.".freeze, "Definition: Hardware/software combinations supporting use of the object.".freeze, "Rationale: Environment is the means by which the user renders and interacts with content. Separation of digital content from its environmental context can result in the content becoming unusable.".freeze, "Usage Notes: All of this semantic units’ subunits are optional. At least one subunit (i.e. environmentNote, dependency, software, hardware, and/or environmentExtension) must be present if this container is included.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( maxCardinality: "1".freeze, - onProperty: "premis:hasEnvironmentCharacteristic".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasEnvironmentCharacteristic".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Event, comment: ["Entity properties:\nMust be related to one or more objects.\nCan be related to one or more agents.\nLinks between entities may be recorded from either direction and need not be bi-directional.".freeze, "The Event entity aggregates information about an action that involves one or more Object entities. Metadata about an Event would normally be recorded and stored separately from the digital object.\nWhether or not a preservation repository records an Event depends upon the importance of the event. Actions that modify objects should always be recorded. Other actions such as copying an object for backup purposes may be recorded in system logs or an audit trail but not necessarily in\nan Event entity.\nMandatory semantic units are: eventIdentifier, eventType, and eventDateTime.".freeze], - subClassOf: ["premis:PremisEntity".freeze, term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasEventType".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "premis:hasIdentifier".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasEventDateTime".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://www.loc.gov/premis/rdf/v1#PremisEntity".freeze, term( + intersectionOf: list("_:g18160".freeze, "_:g18200".freeze, "_:g18240".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EventOutcomeDetail, comment: ["Definition: A detailed description of the result or product of the event.".freeze, "Rationale: An event outcome may be sufficiently complex that a coded description is not adequate to document it.".freeze, "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.\nIf the event was a validity check (e.g., profile conformance) any anomalies or quirks discovered would be recorded here.\nAll 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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( maxCardinality: "1".freeze, - onProperty: "premis:hasEventOutcomeDetailNote".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasEventOutcomeDetailNote".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EventOutcomeInformation, comment: ["Definition: Information about the outcome of an event.".freeze, "Usage Notes: A repository may wish to supplement a coded eventOutcome value with additional information in eventOutcomeDetail. Since events may have more than one outcome, the container is repeatable.\nAll subunits of this semantic unit are optional. At least one subunit (i.e. eventOutcome or eventOutcomeDetail) must be present if this container is included.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( maxCardinality: "1".freeze, - onProperty: "premis:hasEventOutcome".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasEventOutcome".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :File, comment: "Definition: A named and ordered sequence of bytes that is known to an operating system.".freeze, - "rdfs:seeAlso": "Object class definition".freeze, - subClassOf: ["premis:Object".freeze, term( + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Object class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://www.loc.gov/premis/rdf/v1#Object".freeze, term( minCardinality: "1".freeze, - onProperty: "premis:hasObjectCharacteristics".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasObjectCharacteristics".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Fixity, comment: ["Creation / Maintenance Notes: Automatically calculated and recorded by repository.".freeze, "Definition: Information used to verify whether an object has been altered in an undocumented or unauthorized way.".freeze, "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.)\nThe 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.\nRepresentation 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.\nBitstream 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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasMessageDigestAlgorithm".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasMessageDigest".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("_:g18780".freeze, "_:g18820".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Format, comment: ["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.".freeze, "Definition: Identification of the format of a file or bitstream where format is the organization of digital information according to preset specifications.".freeze, "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.".freeze, "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.\nAlthough 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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - type: "owl:Class".freeze, - unionOf: list(term( - maxCardinality: "1".freeze, - onProperty: "premis:hasFormatDesignation".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "premis:hasFormatRegistry".freeze, - type: "owl:Restriction".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g15920".freeze, "_:g15960".freeze) ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FormatDesignation, comment: ["Definition: An identification of the format of the object.".freeze, "Usage Notes: Either formatDesignation or at least one instance of formatRegistry is required. Both may be included.\nThe most specific format (or format profile) should be recorded. A repository (or formats registry) may wish to use multipart format names (e.g., “TIFF_GeoTIFF” or “WAVE_MPEG_BWF”) to achieve this specificity.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( cardinality: "1".freeze, - onProperty: "premis:hasFormatName".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasFormatName".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FormatRegistry, comment: ["Definition: Identifies and/or gives further information about the format by reference to an entry in a format registry.".freeze, "Rationale: If central format registries are available to the preservation repository, they may provide an excellent way of referencing detailed format information.".freeze, "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.\nThe 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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: [term( cardinality: "1".freeze, - onProperty: "premis:hasFormatRegistryKey".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasFormatRegistryKey".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( cardinality: "1".freeze, - onProperty: "premis:hasFormatRegistryName".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasFormatRegistryName".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Hardware, comment: ["Creation / Maintenance Notes: Hardware environment information can be very difficult to provide. Many different hardware environments may apply; there are a huge number of combinations of maker and type of CPU, memory, video drivers, and so on. Although at least one hardware environment should be recorded, it is not necessary to record them all and each repository will have to make its own decisions about which hardware environments to record.\nBecause of the difficulty recording this information comprehensively, it would be optimal if central registries of environment information existed. In many cases the environment of a file object is directly associated with the format, making registry lookup by format feasible. In the absence of a global mechanism, repositories may be forced to develop their own local “registries” relating format to hwEnvironment.".freeze, "Definition: Hardware components needed by the software referenced in swName or the human user of the referenced software.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasHardwareType".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasHardwareName".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("_:g16940".freeze, "_:g16980".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Identifier, comment: "This class is used in PREMIS OWL to describe identifiers if the identifiers are not http URIs.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: [term( cardinality: "1".freeze, - onProperty: "premis:hasIdentifierType".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasIdentifierType".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( cardinality: "1".freeze, - onProperty: "premis:hasIdentifierValue".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasIdentifierValue".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Inhibitors, comment: ["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.".freeze, "Definition: Features of the object intended to inhibit access, use, or migration.".freeze, "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.".freeze, "Usage Notes: Some file formats allow encryption for embedded bitstreams.\nSome 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.\nFor 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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( cardinality: "1".freeze, - onProperty: "premis:hasInhibitorType".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasInhibitorType".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IntellectualEntity, comment: ["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.".freeze, "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".freeze], - subClassOf: "premis:PremisEntity".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: "http://www.loc.gov/premis/rdf/v1#PremisEntity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LicenseInformation, comment: ["Definition: Information about a license or other agreement granting permissions related to an object.".freeze, "Usage Note: When rights basis is a license, licenseInformation should be provided.".freeze], - subClassOf: ["premis:RightsStatement".freeze, term( + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, term( maxCardinality: "1".freeze, - onProperty: "premis:hasLicenseTerms".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasLicenseTerms".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Object, comment: ["Entity properties:\nCan be associated with one or more rights statements.\nCan participate in one or more events.\nLinks between entities may be recorded from either direction and need not be bi-directional.".freeze, "Entity types: \nRepresentation: 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.\nFile: A named and ordered sequence of bytes that is known to an operating system.\nBitstream: Contiguous or non-contiguous data within a file that has meaningful properties for preservation purposes.".freeze, "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.\nThe object class has three subclasses: Representation, File, and Bitstream.".freeze], - subClassOf: "premis:PremisEntity".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: "http://www.loc.gov/premis/rdf/v1#PremisEntity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ObjectCharacteristics, comment: ["Definition: Technical properties of a file or bitstream that are applicable to all or most formats.".freeze, "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.".freeze, "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.\nWhen encryption is applied, the objectCharacteristics block must include an inhibitors semantic unit.\nA bitstream embedded within a file may have different object characteristics than the file. Where these characteristics are relevant for preservation, they should be recorded.\nWhen 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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: [term( cardinality: "1".freeze, - onProperty: "premis:hasCompositionLevel".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasCompositionLevel".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "premis:hasFormat".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasFormat".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PremisEntity, comment: "Definition: Basicly, the preservation information in PREMIS OWL consists of five entities related to each other. The entities are: Agent, Event, IntellectualEntity, Object, and RightsStatement.".freeze, - "owl:versionInfo": "PREMIS 2.2 Owl v2".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2002/07/owl#versionInfo": "PREMIS 2.2 Owl v2".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PreservationLevel, comment: ["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.".freeze, "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.".freeze, "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.".freeze, "Usage Notes: If the repository offers only a single preservation level, this value does not need to be explicitly recorded within the repository.\nApplication 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.\nThe container may be repeated if a preservation level value needs to be recorded in additional contexts (see preservationLevelRole).".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: [term( cardinality: "1".freeze, - onProperty: "premis:hasPreservationLevelValue".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasPreservationLevelValue".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "premis:hasPreservationLevelRole".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasPreservationLevelRole".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RelatedObjectIdentification, comment: [" Definition: The identifier and sequential context of the related resource".freeze, "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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasRelatedObject".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasRelatedObjectSequence".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("_:g14700".freeze, "_:g14740".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Representation, comment: "Definition: 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.".freeze, - "rdfs:seeAlso": "Object class definition".freeze, - subClassOf: "premis:Object".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Object class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: "http://www.loc.gov/premis/rdf/v1#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RightsDocumentation, comment: "Definition: A designation used to uniquely identify documentation supporting the\nspecified rights within the repository system.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( maxCardinality: "1".freeze, - onProperty: "premis:hasRightsDocumentationRole".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasRightsDocumentationRole".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RightsGranted, comment: "Definition: The action(s) that the granting agency has allowed the repository.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: [term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasAct".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "premis:hasTermOfGrant".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("_:g17540".freeze, "_:g17580".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( maxCardinality: "1".freeze, - onProperty: "premis:hasTermOfRestriction".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasTermOfRestriction".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RightsStatement, comment: ["Definition: Documentation of the repository's right to perform one or more acts.".freeze, "Extensions: In OWL one can define its own subclasses to the the RightsStatement class to denote OtherRightsInformation of the PREMIS data dictionary.".freeze, "Usage Notes: This semantic unit is optional because in some cases rights may be unknown. Institutions are encouraged to record rights information when possible.\nEither rightsStatement or rightsExtension must be present if the Rights entity is included.\nThe rightsStatement should be repeated when the act(s) described has more than one basis, or when different acts have different bases.".freeze], - subClassOf: ["dc:RightsStatement".freeze, "premis:PremisEntity".freeze, term( + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.loc.gov/premis/rdf/v1#PremisEntity".freeze, term( maxCardinality: "1".freeze, - onProperty: "premis:hasApplicableDates".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasApplicableDates".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "premis:hasIdentifier".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasIdentifier".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Signature, comment: ["Definition: Information needed to use a digital signature to authenticate the signer of an object and/or the information contained in the object.".freeze, "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.".freeze, "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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasSignatureEncoding".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasSignatureMethod".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasSignatureValidationRules".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasSignatureValue".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("_:g19340".freeze, "_:g19380".freeze, "_:g19420".freeze, "_:g19460".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SignificantProperties, comment: ["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.".freeze, "Definition: Characteristics of a particular object subjectively determined to be important to maintain through preservation actions.".freeze, "Rationale: Objects that have the same technical properties may still differ as to the properties that should be preserved for future presentation or use.".freeze, "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.\nSignificant 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.\nListing 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.\nIn 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.\nMore experience with digital preservation is needed to determine the best ways of representing significant properties in general, and of representing modification of significant properties.\nThe 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.\nFor 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:\nsignificantPropertiesType = “content”\nsignificantPropertiesValue = “all textual content and images”\nsignificantPropertiesType = “behavior”\nsignificantPropertiesValue = “editable”\nOther repositories may choose to describe significant properties at a more granular attribute level; for example:\nsignificantPropertiesType = “page count”\nsignificantPropertiesValue = “7”\nsignificantPropertiesType = “page width”\nsignificantPropertiesValue = “210 mm”\nEach facet:detail pair should be contained in a separate, repeated significantProperties container.\nFurther work on determining and describing significant properties may yield more detailed schemes to facilitate general description.\nRepresenting 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.".freeze], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Software, comment: ["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.\nAlso, 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.\nAs 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.".freeze, "Definition: Software required to render or use the object.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasSoftwareType".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasSoftwareName".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("_:g17760".freeze, "_:g17800".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StatuteInformation, comment: ["Definition: Information about the statute allowing use of the object.".freeze, "Usage Notes: When rights basis is a statute, statuteInformation should be provided.".freeze], - subClassOf: ["premis:RightsStatement".freeze, term( - intersectionOf: list(term( - cardinality: "1".freeze, - onProperty: "premis:hasStatuteCitation".freeze, - type: "owl:Restriction".freeze - ), term( - cardinality: "1".freeze, - onProperty: "premis:hasStatuteJurisdiction".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, term( + intersectionOf: list("_:g15500".freeze, "_:g15540".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Storage, comment: ["Definition: Information about how and where a file is stored in the storage system.".freeze, "Rationale: It is necessary for a repository to associate the contentLocation with the storageMedium.".freeze, "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.\nAlthough 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.".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, subClassOf: term( - type: "owl:Class".freeze, - unionOf: list(term( - maxCardinality: "1".freeze, - onProperty: "premis:hasContentLocation".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "premis:hasStorageMedium".freeze, - type: "owl:Restriction".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g18340".freeze, "_:g18380".freeze) ), - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TermOfGrant, comment: ["Definition: The time period for the permissions granted.".freeze, "Rationale: The permission to preserve may be time bounded.".freeze], - subClassOf: ["premis:ApplicableDates".freeze, term( + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://www.loc.gov/premis/rdf/v1#ApplicableDates".freeze, term( cardinality: "1".freeze, - onProperty: "premis:hasStartDate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasStartDate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TermOfRestriction, comment: ["Definition: The time period for the restriction granted.".freeze, "Rationale: The current definition of termOfGrant is \"time period for the permissions granted.\" This allows for expressing information about the rights granted, but some repositories may need to express timebounded restrictions like embargoes. If this is applicable startDate for the beginning of the embargo and endDate for the end of the embargo should be recorded.".freeze], - subClassOf: ["premis:ApplicableDates".freeze, term( + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + subClassOf: ["http://www.loc.gov/premis/rdf/v1#ApplicableDates".freeze, term( cardinality: "1".freeze, - onProperty: "premis:hasStartDate".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.loc.gov/premis/rdf/v1#hasStartDate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :hasAct, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/actionsGranted ".freeze, "Definition: The action the preservation repository is allowed to take.".freeze, "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.".freeze], - domain: "premis:RightsGranted".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#RightsGranted".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/actionsGranted".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/actionsGranted".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasAgent, comment: ["Definition: link to the associated Agent.".freeze, "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.".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:Event".freeze, "premis:RightsStatement".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Event".freeze, "http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze) ), - range: "premis:Agent".freeze, - "rdfs:seeAlso": "Agent class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Agent class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasAgentName, comment: ["Definition: A text string which could be used in addition to agentIdentifier to identify an agent.".freeze, "Examples: Erik Owens, Pc".freeze, "Rationale: This semantic unit provides a more reader-friendly version of the agent identified by the agentIdentifier.".freeze, "Usage Note: The value is not necessarily unique.".freeze], - domain: "premis:Agent".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasAgentNote, comment: ["Definition: Additional information about the agent.\n".freeze, "Rationale: Additional information may be needed to describe or disambiguate\nthe agent.".freeze], - domain: "premis:Agent".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasAgentType, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/agentType ".freeze, "Definition: A high-level characterization of the type of agent.".freeze, "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.".freeze], - domain: "premis:Agent".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Agent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/agentType".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/agentType".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasApplicableDates, - domain: "premis:RightsStatement".freeze, - range: "premis:ApplicableDates".freeze, - "rdfs:seeAlso": "ApplicableDates class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "ApplicableDates class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#ApplicableDates".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCompositionLevel, comment: ["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.".freeze, "Data Constraints: Non-negative integers.".freeze, "Definition: An indication of whether the object is subject to one or more processes of decoding or unbundling.".freeze, "Examples: 0, 1, 2".freeze, "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.".freeze, "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.\nNumbering goes lowest to highest (first encoded = 0). 0 is base object; 1-n are subsequent encodings.\nUse 0 as the default if there is only one compositionLevel.\nWhen 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.”".freeze], - domain: "premis:ObjectCharacteristics".freeze, - range: "xsd:int".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#ObjectCharacteristics".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#int".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasContentLocation, - domain: "premis:Storage".freeze, - range: "premis:ContentLocation".freeze, - "rdfs:seeAlso": "Storage class definition and ContentLocation class definition".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Storage".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Storage class definition and ContentLocation class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#ContentLocation".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasContentLocationType, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/contentLocationType".freeze, "Definition: The means of referencing the location of the content.".freeze, "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.".freeze, "Rationale: To understand the meaning of the value it is necessary to know what location scheme is used.".freeze], - domain: "premis:ContentLocation".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#ContentLocation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/contentLocationType".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/contentLocationType".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasContentLocationValue, comment: ["Definition: The reference to the location of the content used by the storage system.".freeze, "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)".freeze, "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.".freeze], - domain: "premis:ContentLocation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#ContentLocation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasCopyrightJurisdiction, comment: ["Data Constraint: Values should be taken from ISO 3166.".freeze, "Definition: The country whose copyright laws apply.".freeze, "Examples: us, de, be".freeze, "Rationale: Copyright law can vary from country to country.".freeze], - domain: "premis:CopyrightInformation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#CopyrightInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasCopyrightStatus, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/copyrightStatus".freeze, "Definition: A coded designation for the copyright status of the object at the time the rights statement is recorded.".freeze, "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.".freeze], - domain: "premis:CopyrightInformation".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#CopyrightInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/copyrightStatus".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/copyrightStatus".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasCopyrightStatusDeterminationDate, comment: ["Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime".freeze, "Definition: The date that the copyright status recorded in copyrightStatus was determined.".freeze, "Example: 2001-10-26T19:32:52+00:00".freeze], - domain: "premis:CopyrightInformation".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#CopyrightInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasCreatingApplication, - domain: "premis:ObjectCharacteristics".freeze, - range: "premis:CreatingApplication".freeze, - "rdfs:seeAlso": "ObjectCharacteristics class definition and CreatingApplication class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#ObjectCharacteristics".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "ObjectCharacteristics class definition and CreatingApplication class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#CreatingApplication".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCreatingApplicationName, comment: ["Definition: A designation for the name of the software program that created the object.".freeze, "Example: MSWord".freeze, "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.".freeze], - domain: "premis:CreatingApplication".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#CreatingApplication".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasCreatingApplicationVersion, comment: ["Definition: The version of the software program that created the object.".freeze, "Example: 2000".freeze], - domain: "premis:CreatingApplication".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#CreatingApplication".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasDateCreatedByApplication, comment: ["Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime".freeze, "Definition: The actual or approximate date and time the object was created.".freeze, "Example: 2001-10-26T19:32:52+00:00".freeze, "Usage Notes: Use the most precise date available.\nThis 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.\nIf the object itself contains internal creation and modification dates, the modification date should be used as dateCreatedByApplication.\nIf the application is a Web harvester capturing an object at a point of time, use for date captured.".freeze], - domain: "premis:CreatingApplication".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#CreatingApplication".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasDependency, - domain: "premis:Environment".freeze, - range: "premis:Dependency".freeze, - "rdfs:seeAlso": "Environment class definition and Dependency class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Environment".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Environment class definition and Dependency class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDependencyName, comment: ["Definition: A designation for a component or associated file needed by the representation or file.".freeze, "Example: Additional Element Set for Language Corpora".freeze, "Rationale: It may not be self-evident from the dependencyIdentifier what the name of the object actually is.".freeze], - domain: "premis:Dependency".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Dependency".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasEndDate, comment: ["Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime".freeze, "Definition: The ending date of the permission granted.".freeze, "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.".freeze], - domain: "premis:ApplicableDates".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#ApplicableDates".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasEnvironment, - domain: "premis:Object".freeze, - range: "premis:Environment".freeze, - "rdfs:seeAlso": "Object class definition and Environment class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Object".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Object class definition and Environment class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Environment".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEnvironmentCharacteristic, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/environmentCharacteristic".freeze, "Definition: An assessment of the extent to which the described environment supports its purpose.".freeze, "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.".freeze, "Rationale: If multiple environments are described, this element can help to distinguish among them.".freeze], - domain: "premis:Environment".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Environment".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/environmentCharacteristic".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/environmentCharacteristic".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasEnvironmentNote, comment: ["Definition: Additional information about the environment.".freeze, "Example: This environment assumes that the PDF will be stored locally\nand used with a standalone PDF reader.".freeze, "Rationale: There may be a need to give a textual description of the environment for additional explanation.".freeze, "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.\nThe note should not be used for a textual description of environment information recorded more rigorously elsewhere.".freeze], - domain: "premis:Environment".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Environment".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasEnvironmentPurpose, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/environmentPurpose".freeze, "Definition: The use(s) supported by the specified environment.".freeze, "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.".freeze, "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.".freeze], - domain: "premis:Environment".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Environment".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/environmentPurpose".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/environmentPurpose".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEvent, comment: ["Definition: The event associated with the object or an agent.".freeze, "Usage Notes: Use to link to events that are not associated with relationships between objects, such as format validation, virus checking, etc.".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:Agent".freeze, "premis:Object".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Agent".freeze, "http://www.loc.gov/premis/rdf/v1#Object".freeze) ), - range: "premis:Event".freeze, - "rdfs:seeAlso": "Object class definition, the Agent class Definition and Event class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Object class definition, the Agent class Definition and Event class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Event".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEventDateTime, comment: ["Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime".freeze, "Definition: The single date and time, or date and time range, at or during which the event occurred.".freeze, "Example: 2001-10-26T19:32:52+00:00".freeze, "Usage Notes: Recommended practice is to record the most specific time possible and to designate the time zone.".freeze], - domain: "premis:Event".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Event".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasEventDetail, comment: ["Definition: Additional information about the event.".freeze, "Examples: Object permanently withdrawn by request of Caroline Hunt, \nProgram=“MIGJP2JP2K”; version=“2.2”".freeze, "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.".freeze], - domain: "premis:Event".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Event".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasEventOutcome, comment: ["Data Constraint: Value should be taken from a controlled vocabulary.".freeze, "Definition: A categorization of the overall result of the event in terms of success, partial success, or failure.".freeze, "Examples: 00 [a code meaning “action successfully completed”], CV-01 [a code meaning “checksum validated”]".freeze, "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.".freeze, "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.\nRecommended practice is to define events with sufficient granularity that each event has a single outcome.".freeze], - domain: "premis:EventOutcomeInformation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#EventOutcomeInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasEventOutcomeDetail, - domain: "premis:EventOutcomeInformation".freeze, - range: "premis:EventOutcomeDetail".freeze, - "rdfs:seeAlso": "EventOutcomeInformation class definition and EventOutcomeDetail class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#EventOutcomeInformation".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "EventOutcomeInformation class definition and EventOutcomeDetail class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#EventOutcomeDetail".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEventOutcomeDetailNote, comment: ["Definition: A detailed description of the result or product of the event in textual form.".freeze, "Examples: LZW compressed file, Non-standard tags found in header".freeze, "Rationale: Additional information in textual form may be needed about the outcome of the event.".freeze], - domain: "premis:EventOutcomeDetail".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#EventOutcomeDetail".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasEventOutcomeInformation, - domain: "premis:Event".freeze, - range: "premis:EventOutcomeInformation".freeze, - "rdfs:seeAlso": "Event class definition and EventOutcomeInformation class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Event".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Event class definition and EventOutcomeInformation class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#EventOutcomeInformation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEventRelatedAgent, comment: ["Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property.".freeze, "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.".freeze], - domain: "premis:Event".freeze, - range: "premis:Agent".freeze, - "rdfs:seeAlso": "http://id.loc.gov/vocabulary/preservation/eventRelatedAgentRole".freeze, - subPropertyOf: "premis:hasAgent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Event".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://id.loc.gov/vocabulary/preservation/eventRelatedAgentRole".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Agent".freeze, + subPropertyOf: "http://www.loc.gov/premis/rdf/v1#hasAgent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEventRelatedObject, comment: ["Definition: Information about an object associated with an event.".freeze, "Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property.".freeze, "Rationale: Digital provenance often requires that relationships between objects and events are documented.".freeze], - domain: "premis:Event".freeze, - range: "premis:Object".freeze, - "rdfs:seeAlso": ["Event class definition and Object class definition".freeze, "http://id.loc.gov/vocabulary/preservation/eventRelatedObjectRole".freeze], - subPropertyOf: "premis:hasObject".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Event".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["Event class definition and Object class definition".freeze, "http://id.loc.gov/vocabulary/preservation/eventRelatedObjectRole".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Object".freeze, + subPropertyOf: "http://www.loc.gov/premis/rdf/v1#hasObject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEventType, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/eventType".freeze, "Definition: A categorization of the nature of the event.".freeze, "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.".freeze, "Rationale: Categorizing events will aid the preservation repository in machine processing of event information, particularly in reporting.".freeze], - domain: "premis:Event".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Event".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/eventType".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/eventType".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "testing".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasFixity, - domain: "premis:ObjectCharacteristics".freeze, - range: "premis:Fixity".freeze, - "rdfs:seeAlso": "ObjectCharacteristics class definition and Fixity class definition".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#ObjectCharacteristics".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "ObjectCharacteristics class definition and Fixity class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Fixity".freeze, + type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasFormat, - domain: "premis:ObjectCharacteristics".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#ObjectCharacteristics".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "ObjectCharacteristics class definition and Format class definition. Next to the premis:Format class this property can also link to a pronom:file-format or udfr:AbstractFormat .".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("premis:Format".freeze, "http://reference.data.gov.uk/technical-registry/file-format".freeze, "http://www.udfr.org/onto#AbstractFormat".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Format".freeze, "http://reference.data.gov.uk/technical-registry/file-format".freeze, "http://www.udfr.org/onto#AbstractFormat".freeze) ), - "rdfs:seeAlso": "ObjectCharacteristics class definition and Format class definition. Next to the premis:Format class this property can also link to a pronom:file-format or udfr:AbstractFormat .".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasFormatDesignation, - domain: "premis:Format".freeze, - range: "premis:FormatDesignation".freeze, - "rdfs:seeAlso": "Format class definition and FormatDesignation class definition".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Format".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Format class definition and FormatDesignation class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#FormatDesignation".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasFormatName, comment: ["Data Constraint: Value should be taken from a controlled vocabulary.".freeze, "Definition: A designation of the format of the file or bitstream.".freeze, "Examples: Text/sgml, image/tiff/geotiff, Adobe PDF, DES, PGP, base64, unknown, LaTex".freeze, "Usage Notes: For unidentified formats, formatName may be recorded as “unknown”.".freeze], - domain: "premis:FormatDesignation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#FormatDesignation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasFormatNote, comment: ["Definition: Additional information about format.".freeze, "Examples: tentative identification, disjunction, multiple format identifications found".freeze, "Rationale: Qualifying information may be needed to supplement format designation and registry information or record a status for identification.".freeze, "Usage Notes: The formatNote may contain free text, a reference pointer, or a value from a controlled list.".freeze], - domain: "premis:Format".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Format".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasFormatRegistry, - domain: "premis:Format".freeze, - range: "premis:FormatRegistry".freeze, - "rdfs:seeAlso": "Format class definition and FormatRegistry class definition".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Format".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Format class definition and FormatRegistry class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#FormatRegistry".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasFormatRegistryKey, comment: ["Definition: The unique key used to reference an entry for this format in a format registry.".freeze, "Examples: info:gdfr/fred/f/tiff, TIFF/6.0".freeze], - domain: "premis:FormatRegistry".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#FormatRegistry".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasFormatRegistryName, comment: ["Definition: A designation identifying the referenced format registry.".freeze, "Examples: PRONOM, www.nationalarchives.gov.uk/pronom, Representation Information Registry Repository, FRED: A format registry demonstration, release 0.07".freeze, "Usage Notes: This can be a formal name, internally used name, or URI.".freeze], - domain: "premis:FormatRegistry".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#FormatRegistry".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasFormatRegistryRole, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/formatRegistryRole".freeze, "Definition: The purpose or expected use of the registry.".freeze, "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.".freeze, "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.".freeze], - domain: "premis:FormatRegistry".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#FormatRegistry".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/formatRegistryRole".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/formatRegistryRole".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasFormatVersion, comment: ["Definition: The version of the format named in formatName.".freeze, "Examples: 6.0, 2003".freeze, "Rationale: Many authority lists of format names are not granular enough to indicate version, for example, MIME Media types.".freeze, "Usage Notes: If the format is versioned, formatVersion should be recorded. It can be either a numeric or chronological designation.".freeze], - domain: "premis:FormatDesignation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#FormatDesignation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasHardware, - domain: "premis:Environment".freeze, - range: "premis:Hardware".freeze, - "rdfs:seeAlso": "Environment class definition and Hardware class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Environment".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Environment class definition and Hardware class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Hardware".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasHardwareName, comment: ["Definition: Manufacturer, model, and version (if applicable) of the hardware.".freeze, "Examples: Intel Pentium III, 1 GB DRAM, Windows XPcompatible joystick".freeze, "Usage Notes: Include manufacturer when this helps to identify or disambiguate the product.\nInclude version for firmware or other components where that information is pertinent.".freeze], - domain: "premis:Hardware".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Hardware".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasHardwareOtherInformation, comment: ["Definition: Additional requirements or instructions related to the hardware referenced in hwName.".freeze, "Examples: 32MB minimum, Required RAM for Apache is unknown".freeze, "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.".freeze, "Usage Notes: This could be an identifier or URI used to point to hardware documentation.".freeze], - domain: "premis:Hardware".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Hardware".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasHardwareType, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/hardwareType".freeze, "Definition: Class or category of the hardware.".freeze, "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.".freeze], - domain: "premis:Hardware".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Hardware".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/hardwareType".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/hardwareType".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasIdentifier, domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:Agent".freeze, "premis:Dependency".freeze, "premis:Event".freeze, "premis:LicenseInformation".freeze, "premis:Object".freeze, "premis:RightsDocumentation".freeze, "premis:RightsStatement".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Agent".freeze, "http://www.loc.gov/premis/rdf/v1#Dependency".freeze, "http://www.loc.gov/premis/rdf/v1#Event".freeze, "http://www.loc.gov/premis/rdf/v1#LicenseInformation".freeze, "http://www.loc.gov/premis/rdf/v1#Object".freeze, "http://www.loc.gov/premis/rdf/v1#RightsDocumentation".freeze, "http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze) ), - "rdfs:seeAlso": "Identifier class definition".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Identifier class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasIdentifierType, comment: ["Data Constraint: Value should be taken from controlled vocabulary.".freeze, "Definition: A designation of the domain within which the identifier is unique.".freeze, "Examples: DLC, DRS, hdl:4263537".freeze, "Rationale: Identifier values cannot be assumed to be unique across domains. The combination of identifierType and identifierValue should ensure uniqueness.".freeze, "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.".freeze], - domain: "premis:Identifier".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Identifier".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasIdentifierValue, comment: ["Defnition: The value of the Identifier.".freeze, "Examples: 0000000312 (Representation), IU2440 (File), WAC1943.56 (File), http://nrs.harvard.edu/urn-3:FHCL.Loeb:sal (File), IU2440-1 (Bitstream)".freeze], - domain: "premis:Identifier".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Identifier".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasInhibitorKey, comment: ["Definition: The decryption key or password.".freeze, "Example: [DES decryption key]".freeze, "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.".freeze], - domain: "premis:Inhibitors".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Inhibitors".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasInhibitorTarget, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/inhibitorTarget".freeze, "Definition: The content or function protected by the inhibitor.".freeze, "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.".freeze], - domain: "premis:Inhibitors".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Inhibitors".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/inhibitorTarget".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/inhibitorTarget".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasInhibitorType, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/inhibitorType".freeze, "Definition: The inhibitor method employed.".freeze, "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.".freeze], - domain: "premis:Inhibitors".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Inhibitors".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/inhibitorType".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/inhibitorType".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasInhibitors, - domain: "premis:ObjectCharacteristics".freeze, - range: "premis:Inhibitors".freeze, - "rdfs:seeAlso": "ObjectCharacteristics class definition and Inhibitors class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#ObjectCharacteristics".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "ObjectCharacteristics class definition and Inhibitors class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Inhibitors".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasIntellectualEntity, comment: ["Definition: An intellectual entity associated with the object.".freeze, "Usage Notes: Use to link to an intellectual entity that is related to the object. This may be a link to descriptive metadata that describes the intellectual entity or some other surrogate for it that can be referenced. This link will likely be to an identifier of an object that is at a higher conceptual level than the object for which the metadata is provided, for example, to a collection or parent object.".freeze], - domain: "premis:Object".freeze, - range: "premis:IntellectualEntity".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Object".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#IntellectualEntity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasKeyInformation, - domain: "premis:Signature".freeze, - "rdfs:seeAlso": "Signature class definition and KeyInformation class definition".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "unstable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Signature".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Signature class definition and KeyInformation class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasLicenseTerms, comment: ["Definition: Text describing the license or agreement by which permission was granted.".freeze, "Usage Notes: This could contain the actual text of the license or agreement or a paraphrase or summary.".freeze], - domain: "premis:LicenseInformation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#LicenseInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasMessageDigest, comment: ["Definition: The output of the message digest algorithm.".freeze, "Example: 7c9b35da4f2ebd436f1cf88e5a39b3a257edf4a22be3c955ac49da2e2107b67a1924419563".freeze, "Rationale: This must be stored so that it can be compared in future fixity checks.".freeze], - domain: "premis:Fixity".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Fixity".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasMessageDigestAlgorithm, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/cryptographicHashFunctions".freeze, "Definition: The specific algorithm used to construct the message digest for the digital object.".freeze, "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.".freeze], - domain: "premis:Fixity".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Fixity".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/cryptographicHashFunctions".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/cryptographicHashFunctions".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasMessageDigestOriginator, comment: ["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.".freeze, "Definition: The agent that created the original message digest that is compared in a fixity check.".freeze, "Examples: DRS, A0000978".freeze, "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.".freeze, "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).".freeze], - domain: "premis:Fixity".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Fixity".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasObject, comment: ["Definition: Information about an object associated with an event or rightsstatement.".freeze, "Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property.".freeze, "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.".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:Event".freeze, "premis:RightsStatement".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Event".freeze, "http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze) ), - range: "premis:Object".freeze, - "rdfs:seeAlso": ["Event and RightsStatement class definition and Object class definition".freeze, "http://id.loc.gov/vocabulary/preservation/eventRelatedObjectRole".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["Event and RightsStatement class definition and Object class definition".freeze, "http://id.loc.gov/vocabulary/preservation/eventRelatedObjectRole".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Object".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasObjectCharacteristics, domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:Bitstream".freeze, "premis:File".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Bitstream".freeze, "http://www.loc.gov/premis/rdf/v1#File".freeze) ), - range: "premis:ObjectCharacteristics".freeze, - "rdfs:seeAlso": "Object class definition and ObjectCharacteristics class definition".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Object class definition and ObjectCharacteristics class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#ObjectCharacteristics".freeze, + type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasOriginalName, comment: ["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.".freeze, "Definition: The name of the object as submitted to or harvested by the repository, before any renaming by the repository.".freeze, "Example: N419.pdf".freeze, "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.".freeze, "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.".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:File".freeze, "premis:Representation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#File".freeze, "http://www.loc.gov/premis/rdf/v1#Representation".freeze) ), - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasPreservationLevel, domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:File".freeze, "premis:Representation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#File".freeze, "http://www.loc.gov/premis/rdf/v1#Representation".freeze) ), - range: "premis:PreservationLevel".freeze, - "rdfs:seeAlso": "Object class definition and PreservationLevel class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Object class definition and PreservationLevel class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#PreservationLevel".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPreservationLevelDateAssigned, comment: ["Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime".freeze, "Definition: The date, or date and time, when a particular preservationLevelValue was assigned to the object.".freeze, "Examples: 2001-10-26T19:32:52+00:00".freeze, "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.".freeze], - domain: "premis:PreservationLevel".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#PreservationLevel".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasPreservationLevelRationale, comment: ["Definition: The reason a particular preservationLevelValue was applied to \n the object.".freeze, "Examples: user pays, legislation, defective file, bit-level preservation only available for this format".freeze, "Rationale: Application of a particular preservationLevelValue may require justification, especially if it differs from that usually applied according to repository policy.".freeze, "Usage Notes: This optional semantic unit records the reason for applying the preservationLevelValue.\nThis information can be particularly important when the assigned preservationLevelValue differs from usual repository policy.\nFor 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.\nSimilarly, 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.\npreservationLevelRationale may be repeated if more than one reason needs to be recorded.".freeze], - domain: "premis:PreservationLevel".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#PreservationLevel".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasPreservationLevelRole, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/preservationLevelRole".freeze, "Definition: A value indicating the context in which a set of preservation options is applicable.".freeze, "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.".freeze, "Rationale: Repositories may assign preservationLevelValues in different contexts which must be differentiated, and may need to record more than one context.".freeze], - domain: "premis:PreservationLevel".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#PreservationLevel".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/preservationLevelRole".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/preservationLevelRole".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasPreservationLevelValue, comment: ["Creation / Maintenance Notes: The preservation level may be assigned by the repository or requested by the depositor and submitted as metadata.".freeze, "Data Constraint: Value should be taken from a controlled vocabulary.".freeze, "Definition: A value indicating the set of preservation functions expected to be applied to the object.".freeze, "Examples: bit-level, full, fully supported with future migrations (File), 0".freeze, "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.".freeze, "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.".freeze], - domain: "premis:PreservationLevel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#PreservationLevel".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasRelatedObject, comment: "Definition: This property related to all object belonging to a RelatedObjectIdentification to describe the related objects as an aggregation.".freeze, - domain: "premis:RelatedObjectIdentification".freeze, - range: "premis:Object".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RelatedObjectIdentification".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Object".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRelatedObjectSequence, comment: ["Definition: The order of the related object relative to other objects with the same\ntype of relationship.".freeze, "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.".freeze], - domain: "premis:RelatedObjectIdentification".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RelatedObjectIdentification".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasRelatedStatuteInformation, comment: "Definition: This property is used to relate certain StatuteInformation instances. The rationale for this is that in the PREMIS data dictionary, a RightsStatement instance can consist of several StatuteInformation instances. In the PREMIS OWL ontology, the StatuteInformation class is subclassed to RightsStatement. The restore the relation between the grouped StatuteInformation instances of a RightsStatement of the PREMIS data dictionary, this property is used is PREMIS OWL.".freeze, - domain: "premis:StatuteInformation".freeze, - range: "premis:StatuteInformation".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#StatuteInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#StatuteInformation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRelationship, comment: ["Definition: This property links one object to one or more other objects.".freeze, "Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property.".freeze, "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.".freeze], - domain: "premis:Object".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Object".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://id.loc.gov/vocabulary/preservation/relationshipSubType".freeze, "http://id.loc.gov/vocabulary/preservation/relationshipType".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("premis:Object".freeze, "premis:RelatedObjectIdentification".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Object".freeze, "http://www.loc.gov/premis/rdf/v1#RelatedObjectIdentification".freeze) ), - "rdfs:seeAlso": ["http://id.loc.gov/vocabulary/preservation/relationshipSubType".freeze, "http://id.loc.gov/vocabulary/preservation/relationshipType".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRestriction, comment: ["Definition: A condition or limitation on the act.".freeze, "Examples: No more than three, Allowed only after one year of archival retention has elapsed, Rightsholder must be notified after completion of act".freeze], - domain: "premis:RightsGranted".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsGranted".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasRightsDocumentation, - domain: "premis:RightsStatement".freeze, - range: "premis:RightsDocumentation".freeze, - "rdfs:seeAlso": "RiightsDocumentation class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "RiightsDocumentation class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#RightsDocumentation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRightsDocumentationRole, comment: ["Definition: This property denotes the role of the related documentation. The value must be taken from a skos vocabulary. A value indicating the purpose or expected use of the documentation being identified.".freeze, "Rationale: This information distinguishes the purpose of the supporting documentation especially when there are multiple documentation identifiers.".freeze], - domain: "premis:RightsDocumentation".freeze, - range: "skos:Concept".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsDocumentation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRightsGranted, - domain: "premis:RightsStatement".freeze, - range: "premis:RightsGranted".freeze, - "rdfs:seeAlso": "RightsStatement class definition and RightsGranted class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "RightsStatement class definition and RightsGranted class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#RightsGranted".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRightsGrantedNote, comment: ["Definition: Additional information about the rights granted.".freeze, "Rationale: A textual description of the rights granted may be needed for additional explanation.".freeze, "Usage Notes: This semantic unit may include a statement about risk assessment, for example, when a repository is not certain about what permissions have been granted.".freeze], - domain: "premis:RightsGranted".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsGranted".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasRightsRelatedAgent, comment: ["Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property.".freeze, "This propety links a RightsStatement instance to an Agent instance. Via this property a distinction can be made in the linkingAgent properties based on the domain.".freeze], - domain: "premis:RightsStatement".freeze, - range: "premis:Agent".freeze, - "rdfs:seeAlso": "http://id.loc.gov/vocabulary/preservation/rightsRelatedAgentRole".freeze, - subPropertyOf: "premis:hasAgent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://id.loc.gov/vocabulary/preservation/rightsRelatedAgentRole".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Agent".freeze, + subPropertyOf: "http://www.loc.gov/premis/rdf/v1#hasAgent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRightsStatement, comment: ["Definition: A rights statement associated with the object.".freeze, "Rationale: A repository may choose to link from a rights statement to an object or from an object to a rights statement or both.".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:Agent".freeze, "premis:Object".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Agent".freeze, "http://www.loc.gov/premis/rdf/v1#Object".freeze) ), - range: "premis:RightsStatement".freeze, - "rdfs:seeAlso": "RightsStatement class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "RightsStatement class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRightsStatementNote, comment: ["Definition: Additional information about the RightsStatement of an object.".freeze, "Examples: Copyright expiration expected in 2010 unless renewed.\nLicense is embedded in XMP block in file header.".freeze], - domain: "premis:RightsStatement".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasSignature, domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:Bitstream".freeze, "premis:File".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Bitstream".freeze, "http://www.loc.gov/premis/rdf/v1#File".freeze) ), - range: "premis:Signature".freeze, - "rdfs:seeAlso": "Signature class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Signature class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Signature".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSignatureEncoding, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/signatureEncoding".freeze, "Definition: The encoding used for the values of signatureValue, keyInformation.".freeze, "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.".freeze, "Rationale: These values cannot be interpreted correctly if the encoding is unknown.".freeze], - domain: "premis:Signature".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Signature".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/signatureEncoding".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/signatureEncoding".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasSignatureMethod, comment: ["Data Constraint: Values are taken from a SKOS vocabulary".freeze, "Definition: A designation for the encryption and hash algorithms used for signature generation.".freeze, "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.".freeze, "Rationale: The same algorithms must be used for signature validation.".freeze], - domain: "premis:Signature".freeze, - range: "skos:Concept".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Signature".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasSignatureProperties, comment: ["Definition: Additional information about the generation of the signature.".freeze, "Usage Notes: This may include the date/time of signature generation, the serial number of the cryptographic hardware used, or other information related to the generation of the signature. Repositories will likely want to define a suitably granular structure to signatureProperties.".freeze], - domain: "premis:Signature".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Signature".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasSignatureValidationRules, comment: ["Definition: The operations to be performed in order to validate the digital signature.".freeze, "Rationale: The repository should not assume that the procedure for validating any particular signature will be known many years in the future without documentation.".freeze, "Usage Notes: This may include the canonicalization method used before calculating the message digest, if the object was normalized before signing.\nThis value could also be a pointer to archive documentation.".freeze], - domain: "premis:Signature".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Signature".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasSignatureValue, comment: ["Definition: The digital signature; a value generated from the application of a private key to a message digest.".freeze, "Example: juS5RhJ884qoFR8flVXd/rbrSDVGn40CapgB7qeQiT+rr0NekEQ6BHhUA8dT3+BCTBUQI0dBjlml9lwzENXvS83zRECjzXbMRTUtVZiPZG2pqKPnL2YU3A9645UCjTXU+jgFumv7k78hieAGDzNci+PQ9KRmm//icT7JaYztgt4=".freeze], - domain: "premis:Signature".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Signature".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasSigner, comment: ["Definition: The individual, institution, or authority responsible for generating the signature.".freeze, "Rationale: The signer might also be carried in the keyInformation, but it can be accessed more conveniently if recorded here.".freeze, "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".freeze], - domain: "premis:Signature".freeze, - range: ["premis:Agent".freeze, "xsd:string".freeze], - type: "owl:AnnotationProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Signature".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: ["http://www.loc.gov/premis/rdf/v1#Agent".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze], + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :hasSignificantProperties, - domain: "premis:Object".freeze, - range: "premis:SignificantProperties".freeze, - "rdfs:seeAlso": "Object class definition and SignificantProperties class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Object".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Object class definition and SignificantProperties class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#SignificantProperties".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSignificantPropertiesType, comment: ["Definition: The aspect, facet, or attribute of an object about which significant properties are being described.".freeze, "Examples: content, structure, behavior, page count, page width, typeface, hyperlinks (representation), image count (representation), color space [for an embedded image] (bitstream)".freeze, "Rationale: Repositories may choose to describe significant properties based on a particular aspect or attribute of an object.".freeze, "Usage Notes: This semantic unit is optional and may be used as part of a facet:detail pair with significantPropertiesValue.".freeze], - domain: "premis:SignificantProperties".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#SignificantProperties".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasSignificantPropertiesValue, comment: ["Definition: Description of the characteristics of a particular object subjectively determined to be important to maintain through preservation actions.".freeze, "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".freeze, "Rationale: Repositories may choose to describe significant properties based on a particular aspect or attribute of an object.".freeze, "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.\nIf facet:detail pairs are not used, significantPropertiesValue may be used to freely describe any characteristic of an object.\nsignificantPropertiesValue is not repeatable. Multiple significant properties should be described in separate, repeated significantProperties container units.".freeze], - domain: "premis:SignificantProperties".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#SignificantProperties".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasSize, comment: ["Creation / Maintenance Notes: Automatically obtained by the repository.".freeze, "Definition: The size in bytes of the file or bitstream stored in the repository.".freeze, "Example: 2038937".freeze, "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.".freeze, "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.".freeze], - domain: "premis:ObjectCharacteristics".freeze, - range: "xsd:long".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#ObjectCharacteristics".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#long".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasSoftware, - domain: "premis:Environment".freeze, - range: "premis:Software".freeze, - "rdfs:seeAlso": "Environment class definition and Software class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Environment".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Environment class definition and Software class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Software".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSoftwareDependency, comment: ["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.".freeze, "Example: GNU gcc >=2.7.2".freeze, "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.".freeze], - domain: "premis:Software".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Software".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasSoftwareName, comment: ["Definition: Manufacturer and title of the software application.".freeze, "Examples: Adobe Photoshop, Adobe Acrobat Reader".freeze, "Usage Notes: Include manufacturer when this helps to identify or disambiguate the product, for example, use “Adobe Photoshop” rather than “Photoshop.”".freeze], - domain: "premis:Software".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Software".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasSoftwareOtherInformation, comment: ["Definition: Additional requirements or instructions related to the software referenced in swName.".freeze, "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.".freeze, "Usage Notes: This could be a reliable persistent identifier or URI pointing to software documentation within or outside the repository.".freeze], - domain: "premis:Software".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Software".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasSoftwareType, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/softwareType".freeze, "Definition: Class or category of software.".freeze, "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.".freeze, "Rationale: Several different layers of software can be required to support an object.".freeze], - domain: "premis:Software".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Software".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/softwareType".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/softwareType".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasSoftwareVersion, comment: ["Definition: The version or versions of the software referenced in swName.".freeze, "Examples: >=2.2.0, 6.0, 2003".freeze, "Usage Notes: If there is no formal version, the date of issuance can be used.".freeze], - domain: "premis:Software".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#Software".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasStartDate, comment: ["Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime".freeze, "Definition: The beginning date of the permission granted.".freeze], - domain: "premis:ApplicableDates".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#ApplicableDates".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasStatuteCitation, comment: ["Definition: An identifying designation for the statute.".freeze, "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".freeze, "Usage Notes: Use standard citation form when applicable.".freeze], - domain: "premis:StatuteInformation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#StatuteInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasStatuteInformationDeterminationDate, comment: ["Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime".freeze, "Definition: The date that the determination was made that the statute authorized the permission(s) noted.".freeze, "Example: 2001-10-26T19:32:52+00:00".freeze, "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.".freeze], - domain: "premis:StatuteInformation".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#StatuteInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasStatuteJurisdiction, comment: ["Data Constraint: Values should be taken from a controlled vocabulary.".freeze, "Definition: The country or other political body enacting the statute.".freeze, "Examples: us, de, be".freeze, "Rationale: The connection between the object and the rights granted is based on jurisdiction.".freeze], - domain: "premis:StatuteInformation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#StatuteInformation".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasStorage, domain: term( - type: "owl:Class".freeze, - unionOf: list("premis:Bitstream".freeze, "premis:File".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.loc.gov/premis/rdf/v1#Bitstream".freeze, "http://www.loc.gov/premis/rdf/v1#File".freeze) ), - range: "premis:Storage".freeze, - "rdfs:seeAlso": "Object class definition and Storage class definition".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "Object class definition and Storage class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#Storage".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasStorageMedium, comment: ["Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/storageMedium".freeze, "Definition: The physical medium on which the object is stored (e.g., magnetic tape, hard disk, CD-ROM, DVD).".freeze, "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.".freeze, "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.".freeze], - domain: "premis:Storage".freeze, + domain: "http://www.loc.gov/premis/rdf/v1#Storage".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, range: term( - onProperty: "skos:inScheme".freeze, - "owl:hasValue": "http://id.loc.gov/vocabulary/preservation/storageMedium".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "http://id.loc.gov/vocabulary/preservation/storageMedium".freeze, + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasTermOfGrant, - domain: "premis:RightsGranted".freeze, - range: "premis:TermOfGrant".freeze, - "rdfs:seeAlso": "RightsGranted class definition and TermOfGrant class definition".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsGranted".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "RightsGranted class definition and TermOfGrant class definition".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#TermOfGrant".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasTermOfRestriction, - domain: "premis:RightsGranted".freeze, - range: "premis:TermOfRestriction".freeze, - "rdfs:seeAlso": "RightsGranted and TermOfRestriction class definitions".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + domain: "http://www.loc.gov/premis/rdf/v1#RightsGranted".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "RightsGranted and TermOfRestriction class definitions".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + range: "http://www.loc.gov/premis/rdf/v1#TermOfRestriction".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze end end diff --git a/lib/rdf/vocab/premiseventtype.rb b/lib/rdf/vocab/premiseventtype.rb index fce99db..06c5ea1 100644 --- a/lib/rdf/vocab/premiseventtype.rb +++ b/lib/rdf/vocab/premiseventtype.rb @@ -3,370 +3,212 @@ # This file generated automatically using rdf vocabulary format from http://id.loc.gov/vocabulary/preservation/eventType/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Event Type - # # - # #   Event Types are actions performed within or outside the repository that affect the long term preservation of digital objects. - # class PremisEventType < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :acc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :app - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cap - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :com - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cop - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cre - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dea - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dec - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :del - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :der - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dig - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dis - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dsg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dsp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :enc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :exe - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :exp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ext - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ffa - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fix - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :for - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ima - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ine - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ing - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ins - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :int - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ipc - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ipm - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ips - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mee - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mem - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mig - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :mod - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pac - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :poa - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prt - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qua - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rec - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :red - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ref - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ren - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :rep - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tra - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unp - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unq - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :val - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :vir - # - # end PremisEventType = Class.new(RDF::StrictVocabulary("http://id.loc.gov/vocabulary/preservation/eventType/")) do # Ontology definition ontology :"http://id.loc.gov/vocabulary/preservation/eventType/", comment: "  Event Types are actions performed within or outside the repository that affect the long term preservation of digital objects.".freeze, - label: "Event Type".freeze, - "mads:adminMetadata": [term( + "http://www.loc.gov/mads/rdf/v1#adminMetadata": [term( "http://id.loc.gov/ontologies/RecordInfo#recordChangeDate": "2010-06-01T00:00:01".freeze, - "http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "premiseventtype:dlc".freeze, + "http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "http://id.loc.gov/vocabulary/preservation/eventType/dlc".freeze, "http://id.loc.gov/ontologies/RecordInfo#recordStatus": "new".freeze, type: "http://id.loc.gov/ontologies/RecordInfo#RecordInfo".freeze ), term( "http://id.loc.gov/ontologies/RecordInfo#recordChangeDate": "2012-06-01T00:00:01".freeze, - "http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "premiseventtype:dlc".freeze, + "http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "http://id.loc.gov/vocabulary/preservation/eventType/dlc".freeze, "http://id.loc.gov/ontologies/RecordInfo#recordStatus": "modified".freeze, type: "http://id.loc.gov/ontologies/RecordInfo#RecordInfo".freeze ), term( "http://id.loc.gov/ontologies/RecordInfo#recordChangeDate": "2017-09-07T00:00:01".freeze, - "http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "premiseventtype:dlc".freeze, + "http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "http://id.loc.gov/vocabulary/preservation/eventType/dlc".freeze, "http://id.loc.gov/ontologies/RecordInfo#recordStatus": "modified".freeze, type: "http://id.loc.gov/ontologies/RecordInfo#RecordInfo".freeze ), term( "http://id.loc.gov/ontologies/RecordInfo#recordChangeDate": "2018-09-24T00:00:01".freeze, - "http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "premiseventtype:dlc".freeze, + "http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "http://id.loc.gov/vocabulary/preservation/eventType/dlc".freeze, "http://id.loc.gov/ontologies/RecordInfo#recordStatus": "modified".freeze, type: "http://id.loc.gov/ontologies/RecordInfo#RecordInfo".freeze )], - "mads:hasMADSSchemeMember": ["premiseventtype:acc".freeze, "premiseventtype:app".freeze, "premiseventtype:cap".freeze, "premiseventtype:com".freeze, "premiseventtype:cop".freeze, "premiseventtype:cre".freeze, "premiseventtype:dea".freeze, "premiseventtype:dec".freeze, "premiseventtype:del".freeze, "premiseventtype:der".freeze, "premiseventtype:dig".freeze, "premiseventtype:dis".freeze, "premiseventtype:dsg".freeze, "premiseventtype:dsp".freeze, "premiseventtype:enc".freeze, "premiseventtype:exe".freeze, "premiseventtype:exp".freeze, "premiseventtype:ext".freeze, "premiseventtype:ffa".freeze, "premiseventtype:fil".freeze, "premiseventtype:fix".freeze, "premiseventtype:for".freeze, "premiseventtype:ima".freeze, "premiseventtype:ine".freeze, "premiseventtype:ing".freeze, "premiseventtype:ins".freeze, "premiseventtype:int".freeze, "premiseventtype:ipc".freeze, "premiseventtype:ipm".freeze, "premiseventtype:ips".freeze, "premiseventtype:mee".freeze, "premiseventtype:mem".freeze, "premiseventtype:mes".freeze, "premiseventtype:mig".freeze, "premiseventtype:mod".freeze, "premiseventtype:nor".freeze, "premiseventtype:pac".freeze, "premiseventtype:poa".freeze, "premiseventtype:prt".freeze, "premiseventtype:qua".freeze, "premiseventtype:rec".freeze, "premiseventtype:red".freeze, "premiseventtype:ref".freeze, "premiseventtype:ren".freeze, "premiseventtype:rep".freeze, "premiseventtype:tra".freeze, "premiseventtype:unp".freeze, "premiseventtype:unq".freeze, "premiseventtype:val".freeze, "premiseventtype:vir".freeze], - "mads:useFor": ["http://id.loc.gov/vocabulary/preservation/actionsGranted".freeze, "http://id.loc.gov/vocabulary/preservation/environmentPurpose".freeze, "http://id.loc.gov/vocabulary/preservation/inhibitorTarget".freeze], - "skos:changeNote": [term( + "http://www.loc.gov/mads/rdf/v1#hasMADSSchemeMember": ["http://id.loc.gov/vocabulary/preservation/eventType/acc".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/app".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/cap".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/com".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/cop".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/cre".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/dea".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/dec".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/del".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/der".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/dig".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/dis".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/dsg".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/dsp".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/enc".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/exe".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/exp".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ext".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ffa".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/fil".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/fix".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/for".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ima".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ine".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ing".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ins".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/int".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ipc".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ipm".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ips".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/mee".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/mem".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/mes".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/mig".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/mod".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/nor".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/pac".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/poa".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/prt".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/qua".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/rec".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/red".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ref".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/ren".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/rep".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/tra".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/unp".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/unq".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/val".freeze, "http://id.loc.gov/vocabulary/preservation/eventType/vir".freeze], + "http://www.loc.gov/mads/rdf/v1#useFor": ["http://id.loc.gov/vocabulary/preservation/actionsGranted".freeze, "http://id.loc.gov/vocabulary/preservation/environmentPurpose".freeze, "http://id.loc.gov/vocabulary/preservation/inhibitorTarget".freeze], + "http://www.w3.org/2004/02/skos/core#changeNote": [term( "http://purl.org/vocab/changeset/schema#changeReason": "modified".freeze, "http://purl.org/vocab/changeset/schema#createdDate": "2012-06-01T00:00:01".freeze, - "http://purl.org/vocab/changeset/schema#creatorName": "premiseventtype:dlc".freeze, + "http://purl.org/vocab/changeset/schema#creatorName": "http://id.loc.gov/vocabulary/preservation/eventType/dlc".freeze, "http://purl.org/vocab/changeset/schema#subjectOfChange": "http://id.loc.gov/vocabulary/preservation/eventType".freeze, type: "http://purl.org/vocab/changeset/schema#ChangeSet".freeze ), term( "http://purl.org/vocab/changeset/schema#changeReason": "modified".freeze, "http://purl.org/vocab/changeset/schema#createdDate": "2017-09-07T00:00:01".freeze, - "http://purl.org/vocab/changeset/schema#creatorName": "premiseventtype:dlc".freeze, + "http://purl.org/vocab/changeset/schema#creatorName": "http://id.loc.gov/vocabulary/preservation/eventType/dlc".freeze, "http://purl.org/vocab/changeset/schema#subjectOfChange": "http://id.loc.gov/vocabulary/preservation/eventType".freeze, type: "http://purl.org/vocab/changeset/schema#ChangeSet".freeze ), term( "http://purl.org/vocab/changeset/schema#changeReason": "modified".freeze, "http://purl.org/vocab/changeset/schema#createdDate": "2018-09-24T00:00:01".freeze, - "http://purl.org/vocab/changeset/schema#creatorName": "premiseventtype:dlc".freeze, + "http://purl.org/vocab/changeset/schema#creatorName": "http://id.loc.gov/vocabulary/preservation/eventType/dlc".freeze, "http://purl.org/vocab/changeset/schema#subjectOfChange": "http://id.loc.gov/vocabulary/preservation/eventType".freeze, type: "http://purl.org/vocab/changeset/schema#ChangeSet".freeze ), term( "http://purl.org/vocab/changeset/schema#changeReason": "new".freeze, "http://purl.org/vocab/changeset/schema#createdDate": "2010-06-01T00:00:01".freeze, - "http://purl.org/vocab/changeset/schema#creatorName": "premiseventtype:dlc".freeze, + "http://purl.org/vocab/changeset/schema#creatorName": "http://id.loc.gov/vocabulary/preservation/eventType/dlc".freeze, "http://purl.org/vocab/changeset/schema#subjectOfChange": "http://id.loc.gov/vocabulary/preservation/eventType".freeze, type: "http://purl.org/vocab/changeset/schema#ChangeSet".freeze )], - type: ["mads:MADSScheme".freeze, "skos:ConceptScheme".freeze] + label: "Event Type".freeze, + type: ["http://www.loc.gov/mads/rdf/v1#MADSScheme".freeze, "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze] # Extra definitions term :acc, - "mads:authoritativeLabel": "accession".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "accession".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :app, - "mads:authoritativeLabel": "appraisal".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "appraisal".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cap, - "mads:authoritativeLabel": "capture".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "capture".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :com, - "mads:authoritativeLabel": "compression".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "compression".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cop, - "mads:authoritativeLabel": "compiling".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "compiling".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :cre, - "mads:authoritativeLabel": "creation".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "creation".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dea, - "mads:authoritativeLabel": "deaccession".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "deaccession".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dec, - "mads:authoritativeLabel": "decompression".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "decompression".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :del, - "mads:authoritativeLabel": "deletion".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "deletion".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :der, - "mads:authoritativeLabel": "decryption".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "decryption".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dig, - "mads:authoritativeLabel": "digital signature validation".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "digital signature validation".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dis, - "mads:authoritativeLabel": "dissemination".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "dissemination".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dsg, - "mads:authoritativeLabel": "digital signature generation".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "digital signature generation".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :dsp, - "mads:authoritativeLabel": "displaying".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "displaying".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :enc, - "mads:authoritativeLabel": "encryption".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "encryption".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :exe, - "mads:authoritativeLabel": "execution".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "execution".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :exp, - "mads:authoritativeLabel": "exporting".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "exporting".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ext, - "mads:authoritativeLabel": "extraction".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "extraction".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ffa, - "mads:authoritativeLabel": "forensic feature analysis".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "forensic feature analysis".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fil, - "mads:authoritativeLabel": "filename change".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "filename change".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :fix, - "mads:authoritativeLabel": "fixity check".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "fixity check".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :for, - "mads:authoritativeLabel": "format identification".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "format identification".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ima, - "mads:authoritativeLabel": "imaging".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "imaging".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ine, - "mads:authoritativeLabel": "ingestion end".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "ingestion end".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ing, - "mads:authoritativeLabel": "ingestion".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "ingestion".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ins, - "mads:authoritativeLabel": "ingestion start".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "ingestion start".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :int, - "mads:authoritativeLabel": "interpreting".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "interpreting".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ipc, - "mads:authoritativeLabel": "information package creation".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "information package creation".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ipm, - "mads:authoritativeLabel": "information package merging".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "information package merging".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ips, - "mads:authoritativeLabel": "information package splitting".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "information package splitting".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mee, - "mads:authoritativeLabel": "metadata extraction".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "metadata extraction".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mem, - "mads:authoritativeLabel": "metadata modification".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "metadata modification".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mes, - "mads:authoritativeLabel": "message digest calculation".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "message digest calculation".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mig, - "mads:authoritativeLabel": "migration".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "migration".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :mod, - "mads:authoritativeLabel": "modification".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "modification".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :nor, - "mads:authoritativeLabel": "normalization".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "normalization".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :pac, - "mads:authoritativeLabel": "packing".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "packing".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :poa, - "mads:authoritativeLabel": "policy assignment".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "policy assignment".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :prt, - "mads:authoritativeLabel": "printing".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "printing".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :qua, - "mads:authoritativeLabel": "quarantine".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "quarantine".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rec, - "mads:authoritativeLabel": "recovery".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "recovery".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :red, - "mads:authoritativeLabel": "redaction".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "redaction".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ref, - "mads:authoritativeLabel": "refreshment".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "refreshment".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :ren, - "mads:authoritativeLabel": "rendering".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "rendering".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :rep, - "mads:authoritativeLabel": "replication".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "replication".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :tra, - "mads:authoritativeLabel": "transfer".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "transfer".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :unp, - "mads:authoritativeLabel": "unpacking".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "unpacking".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :unq, - "mads:authoritativeLabel": "unquarantine".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "unquarantine".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :val, - "mads:authoritativeLabel": "validation".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "validation".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze term :vir, - "mads:authoritativeLabel": "virus check".freeze, - type: "mads:Authority".freeze + "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": "virus check".freeze, + type: "http://www.loc.gov/mads/rdf/v1#Authority".freeze end end diff --git a/lib/rdf/vocab/prov.rb b/lib/rdf/vocab/prov.rb index 4b5df11..06b6bce 100644 --- a/lib/rdf/vocab/prov.rb +++ b/lib/rdf/vocab/prov.rb @@ -3,2182 +3,1560 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/prov# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # 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 - # class PROV < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :Accept - # - # # @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. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AgentInfluence - # - # # An instance of prov:Association provides additional descriptions about the binary prov:wasAssociatedWith relation from an prov:Activity to some prov:Agent that had some responsiblity for it. For example, :baking prov:wasAssociatedWith :baker; prov:qualifiedAssociation [ a prov:Association; prov:agent :baker; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Association - # - # # An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Attribution - # - # # Note that there are kinds of bundles (e.g. handwritten letters, audio recordings, etc.) that are not expressed in PROV-O, but can be still be described by PROV-O. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bundle - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # An instance of prov:Communication provides additional descriptions about the binary prov:wasInformedBy relation from an informed prov:Activity to the prov:Activity that informed it. For example, :you_jumping_off_bridge prov:wasInformedBy :everyone_else_jumping_off_bridge; prov:qualifiedCommunication [ a prov:Communication; prov:activity :everyone_else_jumping_off_bridge; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Communication - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Contribute - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Contributor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Copyright - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Create - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Creator - # - # # An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Delegation - # - # # An instance of prov:Derivation provides additional descriptions about the binary prov:wasDerivedFrom relation from some derived prov:Entity to another prov:Entity from which it was derived. For example, :chewed_bubble_gum prov:wasDerivedFrom :unwrapped_bubble_gum; prov:qualifiedDerivation [ a prov:Derivation; prov:entity :unwrapped_bubble_gum; :foo :bar ]. - # # - # # The more specific forms of prov:Derivation (i.e., prov:Revision, prov:Quotation, prov:PrimarySource) should be asserted if they apply. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Derivation - # - # # A given dictionary forms a given structure for its members. A different structure (obtained either by insertion or removal of members) constitutes a different dictionary. - # # - # # This concept allows for the provenance of the dictionary, but also of its constituents to be expressed. Such a notion of dictionary corresponds to a wide variety of concrete data structures, such as a maps or associative arrays. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dictionary - # - # # Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DirectQueryService - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmptyCollection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmptyDictionary - # - # # An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :End - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Entity - # - # # It is not recommended that the type EntityInfluence be asserted without also asserting one of its more specific subclasses. - # # - # # EntityInfluence provides additional descriptions of an Entity's binary influence upon any other kind of resource. Instances of EntityInfluence use the prov:entity property to cite the influencing Entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EntityInfluence - # - # # An instance of prov:Generation provides additional descriptions about the binary prov:wasGeneratedBy relation from a generated prov:Entity to the prov:Activity that generated it. For example, :cake prov:wasGeneratedBy :baking; prov:qualifiedGeneration [ a prov:Generation; prov:activity :baking; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Generation - # - # # 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 - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Insertion - # - # # An instantaneous event, or event for short, happens in the world and marks a change in the world, in its activities and in its entities. The term 'event' is commonly used in process algebra with a similar meaning. Events represent communications or interactions; they are assumed to be atomic and instantaneous. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InstantaneousEvent - # - # # An instance of prov:Invalidation provides additional descriptions about the binary prov:wasInvalidatedBy relation from an invalidated prov:Entity to the prov:Activity that invalidated it. For example, :uncracked_egg prov:wasInvalidatedBy :baking; prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :baking; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Invalidation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :KeyEntityPair - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Location - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Modify - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # There exist no prescriptive requirement on the nature of plans, their representation, the actions or steps they consist of, or their intended goals. Since plans may evolve over time, it may become necessary to track their provenance, so plans themselves are entities. Representing the plan explicitly in the provenance can be useful for various tasks: for example, to validate the execution as represented in the provenance record, to manage expectation failures, or to provide explanations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Plan - # - # # An instance of prov:PrimarySource provides additional descriptions about the binary prov:hadPrimarySource relation from some secondary prov:Entity to an earlier, primary prov:Entity. For example, :blog prov:hadPrimarySource :newsArticle; prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :newsArticle; :foo :bar ] . - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrimarySource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Publish - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Publisher - # - # # An instance of prov:Quotation provides additional descriptions about the binary prov:wasQuotedFrom relation from some taken prov:Entity from an earlier, larger prov:Entity. For example, :here_is_looking_at_you_kid prov:wasQuotedFrom :casablanca_script; prov:qualifiedQuotation [ a prov:Quotation; prov:entity :casablanca_script; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Quotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Removal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Replace - # - # # An instance of prov:Revision provides additional descriptions about the binary prov:wasRevisionOf relation from some newer prov:Entity to an earlier prov:Entity. For example, :draft_2 prov:wasRevisionOf :draft_1; prov:qualifiedRevision [ a prov:Revision; prov:entity :draft_1; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Revision - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RightsAssignment - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :RightsHolder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Role - # - # # Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ServiceDescription - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoftwareAgent - # - # # An instance of prov:Start provides additional descriptions about the binary prov:wasStartedBy relation from some started prov:Activity to an prov:Entity that started it. For example, :foot_race prov:wasStartedBy :bang; prov:qualifiedStart [ a prov:Start; prov:entity :bang; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ] . - # # @return [RDF::Vocabulary::Term] - # attr_reader :Start - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Submit - # - # # An instance of prov:Usage provides additional descriptions about the binary prov:used relation from some prov:Activity to an prov:Entity that it used. For example, :keynote prov:used :podium; prov:qualifiedUsage [ a prov:Usage; prov:entity :podium; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Usage - # - # # An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actedOnBehalfOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agent - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternateOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :aq - # - # # prov:asInBundle is used to specify which bundle the general entity of a prov:mentionOf property is described. When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :atLocation - # - # # The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime. - # # @return [RDF::Vocabulary::Term] - # attr_reader :atTime - # - # # Classify prov-o terms into three categories, including 'starting-point', 'qualifed', and 'extended'. This classification is used by the prov-o html document to gently introduce prov-o terms to its users. - # # @return [RDF::Vocabulary::Term] - # attr_reader :category - # - # # Classify prov-o terms into six components according to prov-dm, including 'agents-responsibility', 'alternate', 'annotations', 'collections', 'derivations', and 'entities-activities'. This classification is used so that readers of prov-o specification can find its correspondence with the prov-dm specification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :component - # - # # A reference to the principal section of the PROV-CONSTRAINTS document that describes this concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :constraints - # - # # A definition quoted from PROV-DM or PROV-CONSTRAINTS that describes the concept expressed with this OWL term. - # # @return [RDF::Vocabulary::Term] - # attr_reader :definition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivedByInsertionFrom - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :derivedByRemovalFrom - # - # # relates a generic provenance query service resource (type prov:ServiceDescription) to a specific query service description (e.g. a prov:DirectQueryService or a sd:Service). - # # @return [RDF::Vocabulary::Term] - # attr_reader :describesService - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :dictionary - # - # # A reference to the principal section of the PROV-DM document that describes this concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dm - # - # # A note by the OWL development team about how this term expresses the PROV-DM concept, or how it should be used in context of semantic web or linked data. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorialNote - # - # # When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorsDefinition - # - # # The time at which an activity ended. See also prov:startedAtTime. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endedAtTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :entity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generated - # - # # The time at which an entity was completely created and is available for use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :generatedAtTime - # - # # This property has multiple RDFS domains to suit multiple OWL Profiles. See PROV-O OWL Profile. - # # - # # The _optional_ Activity of an Influence, which used, generated, invalidated, or was the responsibility of some Entity. This property is _not_ used by ActivityInfluence (use prov:activity instead). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadActivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadDictionaryMember - # - # # The _optional_ Generation involved in an Entity's Derivation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadGeneration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadMember - # - # # The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadPlan - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadPrimarySource - # - # # 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 - # - # # The _optional_ Usage involved in an Entity's Derivation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadUsage - # - # # Indicates anchor URI for a potentially dynamic resource instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_anchor - # - # # Indicates a provenance-URI for a resource; the resource identified by this property presents a provenance record about its subject or anchor resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_provenance - # - # # Indicates a provenance query service that can access provenance related to its subject or anchor resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_query_service - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :influenced - # - # # Subproperties of prov:influencer are used to cite the object of an unqualified PROV-O triple whose predicate is a subproperty of prov:wasInfluencedBy (e.g. prov:used, prov:wasGeneratedBy). prov:influencer is used much like rdf:object is used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :influencer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :insertedKeyEntityPair - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :invalidated - # - # # The time at which an entity was invalidated (i.e., no longer usable). - # # @return [RDF::Vocabulary::Term] - # attr_reader :invalidatedAtTime - # - # # PROV-O does not define all property inverses. The directionalities defined in PROV-O should be given preference over those not defined. However, if users wish to name the inverse of a PROV-O property, the local name given by prov:inverse should be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inverse - # - # # prov:mentionOf is used to specialize an entity as described in another bundle. It is to be used in conjuction with prov:asInBundle. prov:asInBundle is used to cite the Bundle in which the generalization was mentioned. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :n - # - # # The position that this OWL term should be listed within documentation. The scope of the documentation (e.g., among all terms, among terms within a prov:category, among properties applying to a particular class, etc.) is unspecified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :order - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pairEntity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pairKey - # - # # Relates a resource to a provenance pingback service that may receive additional provenance links about the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pingback - # - # # Relates a provenance service to a URI template string for constructing provenance-URIs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provenanceUriTemplate - # - # # If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association; prov:agent :ag; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedAssociation - # - # # If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution; prov:agent :ag; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedAttribution - # - # # If this Activity prov:wasInformedBy Activity :a, then it can qualify how it was influenced using prov:qualifiedCommunication [ a prov:Communication; prov:activity :a; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedCommunication - # - # # If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility; prov:agent :ag; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedDelegation - # - # # If this Entity prov:wasDerivedFrom Entity :e, then it can qualify how it was derived using prov:qualifiedDerivation [ a prov:Derivation; prov:entity :e; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedDerivation - # - # # If this Activity prov:wasEndedBy Entity :e1, then it can qualify how it was ended using prov:qualifiedEnd [ a prov:End; prov:entity :e1; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedEnd - # - # # This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it. Example annotation: prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation . Then this unqualified assertion: :entity1 prov:wasGeneratedBy :activity1 . can be qualified by adding: :entity1 prov:qualifiedGeneration :entity1Gen . :entity1Gen a prov:Generation, prov:Influence; prov:activity :activity1; :customValue 1337 . Note how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedForm - # - # # If this Activity prov:generated Entity :e, then it can qualify how it performed the Generation using prov:qualifiedGeneration [ a prov:Generation; prov:entity :e; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedGeneration - # - # # Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedInfluence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedInsertion - # - # # If this Entity prov:wasInvalidatedBy Activity :a, then it can qualify how it was invalidated using prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :a; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedInvalidation - # - # # If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedPrimarySource - # - # # If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation; prov:entity :e; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedQuotation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedRemoval - # - # # If this Entity prov:wasRevisionOf Entity :e, then it can qualify how it was revised using prov:qualifiedRevision [ a prov:Revision; prov:entity :e; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedRevision - # - # # If this Activity prov:wasStartedBy Entity :e1, then it can qualify how it was started using prov:qualifiedStart [ a prov:Start; prov:entity :e1; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedStart - # - # # If this Activity prov:used Entity :e, then it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; prov:entity :e; :foo :bar ]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedUsage - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :removedKey - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sharesDefinitionWith - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :specializationOf - # - # # The time at which an activity started. See also prov:endedAtTime. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startedAtTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :todo - # - # # Classes and properties used to qualify relationships are annotated with prov:unqualifiedForm to indicate the property used to assert an unqualified provenance relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unqualifiedForm - # - # # A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven . - # # @return [RDF::Vocabulary::Term] - # attr_reader :used - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :value - # - # # An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasAssociatedWith - # - # # Attribution is the ascribing of an entity to an agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasAttributedTo - # - # # The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasDerivedFrom - # - # # End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasEndedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasGeneratedBy - # - # # This property has multiple RDFS domains to suit multiple OWL Profiles. See PROV-O OWL Profile. - # # - # # Because prov:wasInfluencedBy is a broad relation, its more specific subproperties (e.g. prov:wasInformedBy, prov:actedOnBehalfOf, prov:wasEndedBy, etc.) should be used when applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasInfluencedBy - # - # # An activity a2 is dependent on or informed by another activity a1, by way of some unspecified entity that is generated by a1 and used by a2. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasInformedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasInvalidatedBy - # - # # An entity is derived from an original entity by copying, or 'quoting', some or all of it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasQuotedFrom - # - # # A revision is a derivation that revises an entity into a revised version. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasRevisionOf - # - # # Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasStartedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :activityOfInfluence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :agentOfInfluence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :contributed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ended - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :entityOfInfluence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generalizationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generatedAsDerivation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadDelegate - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadDerivation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadInfluence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hadRevision - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :informed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedAssociationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedAttributionOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedCommunicationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedDelegationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedDerivationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedEndOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedGenerationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedInfluenceOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedInvalidationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedQuotationOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedSourceOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedStartOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedUsingActivity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :quotedAs - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :revisedEntity - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :started - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasActivityOfInfluence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasAssociateFor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasMemberOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasPlanOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasPrimarySourceOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasRoleIn - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasUsedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :wasUsedInDerivation - # - # end PROV = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/prov#")) do # Ontology definition ontology :"http://www.w3.org/ns/prov#", comment: "This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page).\n\nIf 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/\nArchives/Public/public-prov-comments/). All feedback is welcome.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://www.w3.org/TR/prov-o/#names-of-inverse-properties".freeze, "http://www.w3.org/TR/prov-overview/".freeze], + "http://www.w3.org/2002/07/owl#imports": ["http://www.w3.org/ns/prov-aq#".freeze, "http://www.w3.org/ns/prov-dc#".freeze, "http://www.w3.org/ns/prov-dictionary#".freeze, "http://www.w3.org/ns/prov-links#".freeze, "http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], + "http://www.w3.org/2002/07/owl#versionIRI": ["http://www.w3.org/ns/prov-20130430".freeze, "http://www.w3.org/ns/prov-o-inverses-20130430".freeze], + "http://www.w3.org/ns/prov#specializationOf": "http://www.w3.org/ns/prov-o-inverses".freeze, + "http://www.w3.org/ns/prov#wasDerivedFrom": ["http://www.w3.org/ns/prov-aq#".freeze, "http://www.w3.org/ns/prov-dc#".freeze, "http://www.w3.org/ns/prov-dictionary#".freeze, "http://www.w3.org/ns/prov-links#".freeze, "http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-20130430".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], + "http://www.w3.org/ns/prov#wasRevisionOf": ["http://www.w3.org/ns/prov-20130312".freeze, "http://www.w3.org/ns/prov-o-inverses-20120312".freeze], isDefinedBy: "http://www.w3.org/ns/prov".freeze, label: "W3C PROVenance Interchange".freeze, - "owl:imports": ["http://www.w3.org/ns/prov-aq#".freeze, "http://www.w3.org/ns/prov-dc#".freeze, "http://www.w3.org/ns/prov-dictionary#".freeze, "http://www.w3.org/ns/prov-links#".freeze, "http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], - "owl:versionIRI": ["http://www.w3.org/ns/prov-20130430".freeze, "http://www.w3.org/ns/prov-o-inverses-20130430".freeze], - "prov:specializationOf": "http://www.w3.org/ns/prov-o-inverses".freeze, - "prov:wasDerivedFrom": ["http://www.w3.org/ns/prov-aq#".freeze, "http://www.w3.org/ns/prov-dc#".freeze, "http://www.w3.org/ns/prov-dictionary#".freeze, "http://www.w3.org/ns/prov-links#".freeze, "http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-20130430".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], - "prov:wasRevisionOf": ["http://www.w3.org/ns/prov-20130312".freeze, "http://www.w3.org/ns/prov-o-inverses-20120312".freeze], - "rdfs:seeAlso": ["http://www.w3.org/TR/prov-o/#names-of-inverse-properties".freeze, "http://www.w3.org/TR/prov-overview/".freeze], - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Accept, + "http://www.w3.org/ns/prov#definition": "Activity that identifies the acceptance of a resource (e.g., an article in a conference)".freeze, label: "Accept".freeze, - "prov:definition": "Activity that identifies the acceptance of a resource (e.g., an article in a conference)".freeze, - subClassOf: "prov:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Activity, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Activity".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Activity".freeze, - "owl:disjointWith": "prov:Entity".freeze, - "prov:category": "starting-point".freeze, - "prov:component": "entities-activities".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Activity".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ActivityInfluence, comment: ["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.".freeze, "It is not recommended that the type ActivityInfluence be asserted without also asserting one of its more specific subclasses.".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/prov#activity".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/ns/prov#EntityInfluence".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#editorsDefinition": "ActivitiyInfluence is the capacity of an activity to have an effect on the character, development, or behavior of another by means of generation, invalidation, communication, or other.".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "ActivityInfluence".freeze, - "owl:disjointWith": "prov:EntityInfluence".freeze, - "prov:category": "qualified".freeze, - "prov:editorsDefinition": "ActivitiyInfluence is the capacity of an activity to have an effect on the character, development, or behavior of another by means of generation, invalidation, communication, or other.".freeze, - "rdfs:seeAlso": "prov:activity".freeze, - subClassOf: ["prov:Influence".freeze, term( + subClassOf: ["http://www.w3.org/ns/prov#Influence".freeze, term( maxCardinality: "0".freeze, - onProperty: "prov:hadActivity".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/ns/prov#hadActivity".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Agent, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/ns/prov#InstantaneousEvent".freeze, + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#definition": "An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. ".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Agent".freeze, - "owl:disjointWith": "prov:InstantaneousEvent".freeze, - "prov:category": "starting-point".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:definition": "An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. ".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AgentInfluence, comment: ["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.".freeze, "It is not recommended that the type AgentInfluence be asserted without also asserting one of its more specific subclasses.".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/prov#agent".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#editorsDefinition": "AgentInfluence is the capacity of an agent to have an effect on the character, development, or behavior of another by means of attribution, association, delegation, or other.".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "AgentInfluence".freeze, - "prov:category": "qualified".freeze, - "prov:editorsDefinition": "AgentInfluence is the capacity of an agent to have an effect on the character, development, or behavior of another by means of attribution, association, delegation, or other.".freeze, - "rdfs:seeAlso": "prov:agent".freeze, - subClassOf: "prov:Influence".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Influence".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Association, comment: "An instance of prov:Association provides additional descriptions about the binary prov:wasAssociatedWith relation from an prov:Activity to some prov:Agent that had some responsiblity for it. For example, :baking prov:wasAssociatedWith :baker; prov:qualifiedAssociation [ a prov:Association; prov:agent :baker; :foo :bar ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#definition": "An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasAssociatedWith".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Association".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:definition": "An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association".freeze, - "prov:unqualifiedForm": "prov:wasAssociatedWith".freeze, - subClassOf: "prov:AgentInfluence".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#AgentInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Attribution, comment: "An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "Attribution is the ascribing of an entity to an agent.\n\nWhen an entity e is attributed to agent ag, entity e was generated by some unspecified activity that in turn was associated to agent ag. Thus, this relation is useful when the activity is not known, or irrelevant.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribution".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasAttributedTo".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Attribution".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "Attribution is the ascribing of an entity to an agent.\n\nWhen an entity e is attributed to agent ag, entity e was generated by some unspecified activity that in turn was associated to agent ag. Thus, this relation is useful when the activity is not known, or irrelevant.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribution".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution".freeze, - "prov:unqualifiedForm": "prov:wasAttributedTo".freeze, - subClassOf: "prov:AgentInfluence".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#AgentInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Bundle, comment: "Note that there are kinds of bundles (e.g. handwritten letters, audio recordings, etc.) that are not expressed in PROV-O, but can be still be described by PROV-O.".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#definition": "A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-bundle-entity".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-bundle-declaration".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Bundle".freeze, - "prov:category": "expanded".freeze, - "prov:definition": "A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-bundle-entity".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-bundle-declaration".freeze, - subClassOf: "prov:Entity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Collection, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#definition": "A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Collection".freeze, - "prov:category": "expanded".freeze, - "prov:component": "collections".freeze, - "prov:definition": "A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection".freeze, - subClassOf: "prov:Entity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Communication, comment: "An instance of prov:Communication provides additional descriptions about the binary prov:wasInformedBy relation from an informed prov:Activity to the prov:Activity that informed it. For example, :you_jumping_off_bridge prov:wasInformedBy :everyone_else_jumping_off_bridge; prov:qualifiedCommunication [ a prov:Communication; prov:activity :everyone_else_jumping_off_bridge; :foo :bar ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "Communication is the exchange of an entity by two activities, one activity using the entity generated by the other.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Communication".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-wasInformedBy".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasInformedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Communication".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "Communication is the exchange of an entity by two activities, one activity using the entity generated by the other.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Communication".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-wasInformedBy".freeze, - "prov:unqualifiedForm": "prov:wasInformedBy".freeze, - subClassOf: "prov:ActivityInfluence".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#ActivityInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Contribute, + "http://www.w3.org/ns/prov#definition": "Activity that identifies any contribution of an agent to a resource. ".freeze, label: "Contribute\n".freeze, - "prov:definition": "Activity that identifies any contribution of an agent to a resource. ".freeze, - subClassOf: "prov:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Contributor, + "http://www.w3.org/ns/prov#definition": "Role with the function of having responsibility for making contributions to a resource. The Agent assigned to this role is associated with a Modify or Create Activities".freeze, label: "Contributor".freeze, - "prov:definition": "Role with the function of having responsibility for making contributions to a resource. The Agent assigned to this role is associated with a Modify or Create Activities".freeze, - subClassOf: "prov:Role".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Role".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Copyright, + "http://www.w3.org/ns/prov#definition": "Activity that identifies the Copyrighting activity associated to a resource.".freeze, label: "Copyright".freeze, - "prov:definition": "Activity that identifies the Copyrighting activity associated to a resource.".freeze, - subClassOf: "prov:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Create, + "http://www.w3.org/ns/prov#definition": "Activity that identifies the creation of a resource".freeze, label: "Create".freeze, - "prov:definition": "Activity that identifies the creation of a resource".freeze, - subClassOf: "prov:Contribute".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Contribute".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Creator, + "http://www.w3.org/ns/prov#definition": "Role with the function of creating a resource. The Agent assigned to this role is associated with a Create Activity".freeze, label: "Creator".freeze, - "prov:definition": "Role with the function of creating a resource. The Agent assigned to this role is associated with a Create Activity".freeze, - subClassOf: "prov:Contributor".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Contributor".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Delegation, comment: "An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#definition": "Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.\n\nFor example, a student acted on behalf of his supervisor, who acted on behalf of the department chair, who acted on behalf of the university; all those agents are responsible in some way for the activity that took place but we do not say explicitly who bears responsibility and to what degree.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-delegation".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#actedOnBehalfOf".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Delegation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:definition": "Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.\n\nFor example, a student acted on behalf of his supervisor, who acted on behalf of the department chair, who acted on behalf of the university; all those agents are responsible in some way for the activity that took place but we do not say explicitly who bears responsibility and to what degree.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-delegation".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation".freeze, - "prov:unqualifiedForm": "prov:actedOnBehalfOf".freeze, - subClassOf: "prov:AgentInfluence".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#AgentInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Derivation, comment: ["An instance of prov:Derivation provides additional descriptions about the binary prov:wasDerivedFrom relation from some derived prov:Entity to another prov:Entity from which it was derived. For example, :chewed_bubble_gum prov:wasDerivedFrom :unwrapped_bubble_gum; prov:qualifiedDerivation [ a prov:Derivation; prov:entity :unwrapped_bubble_gum; :foo :bar ].".freeze, "The more specific forms of prov:Derivation (i.e., prov:Revision, prov:Quotation, prov:PrimarySource) should be asserted if they apply.".freeze], + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Derivation".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#Derivation-Relation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Derivation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Derivation".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#Derivation-Relation".freeze, - "prov:unqualifiedForm": "prov:wasDerivedFrom".freeze, - subClassOf: "prov:EntityInfluence".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#EntityInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dictionary, comment: ["A given dictionary forms a given structure for its members. A different structure (obtained either by insertion or removal of members) constitutes a different dictionary.".freeze, "This concept allows for the provenance of the dictionary, but also of its constituents to be expressed. Such a notion of dictionary corresponds to a wide variety of concrete data structures, such as a maps or associative arrays.".freeze], - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "A dictionary is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the dictionary.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "Dictionary".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "A dictionary is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the dictionary.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DirectQueryService, comment: "Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments.".freeze, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery".freeze, + "http://www.w3.org/ns/prov#category": "access-and-query".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "ProvenanceService".freeze, - "prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery".freeze, - "prov:category": "access-and-query".freeze, - subClassOf: "prov:SoftwareAgent".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#SoftwareAgent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EmptyCollection, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#definition": "An empty collection is a collection without members.".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "EmptyCollection".freeze, - "prov:category": "expanded".freeze, - "prov:component": "collections".freeze, - "prov:definition": "An empty collection is a collection without members.".freeze, - subClassOf: "prov:Collection".freeze, - type: ["owl:Class".freeze, "owl:NamedIndividual".freeze] + subClassOf: "http://www.w3.org/ns/prov#Collection".freeze, + type: ["http://www.w3.org/2002/07/owl#Class".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :EmptyDictionary, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "An empty dictionary (i.e. has no members).".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "Empty Dictionary".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "An empty dictionary (i.e. has no members).".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary".freeze, - subClassOf: ["prov:Dictionary".freeze, "prov:EmptyCollection".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.w3.org/ns/prov#Dictionary".freeze, "http://www.w3.org/ns/prov#EmptyCollection".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :End, comment: "An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "End is when an activity is deemed to have been ended by an entity, known as trigger. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to a trigger entity that terminated the activity, or to an activity, known as ender that generated the trigger.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-End".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-End".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasEndedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "End".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "End is when an activity is deemed to have been ended by an entity, known as trigger. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to a trigger entity that terminated the activity, or to an activity, known as ender that generated the trigger.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-End".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-End".freeze, - "prov:unqualifiedForm": "prov:wasEndedBy".freeze, - subClassOf: ["prov:EntityInfluence".freeze, "prov:InstantaneousEvent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.w3.org/ns/prov#EntityInfluence".freeze, "http://www.w3.org/ns/prov#InstantaneousEvent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Entity, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/ns/prov#InstantaneousEvent".freeze, + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. ".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-entity".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Entity".freeze, - "owl:disjointWith": "prov:InstantaneousEvent".freeze, - "prov:category": "starting-point".freeze, - "prov:component": "entities-activities".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. ".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-entity".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EntityInfluence, comment: ["EntityInfluence provides additional descriptions of an Entity's binary influence upon any other kind of resource. Instances of EntityInfluence use the prov:entity property to cite the influencing Entity.".freeze, "It is not recommended that the type EntityInfluence be asserted without also asserting one of its more specific subclasses.".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/prov#entity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#editorsDefinition": "EntityInfluence is the capacity of an entity to have an effect on the character, development, or behavior of another by means of usage, start, end, derivation, or other. ".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "EntityInfluence".freeze, - "prov:category": "qualified".freeze, - "prov:editorsDefinition": "EntityInfluence is the capacity of an entity to have an effect on the character, development, or behavior of another by means of usage, start, end, derivation, or other. ".freeze, - "rdfs:seeAlso": "prov:entity".freeze, - subClassOf: "prov:Influence".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Influence".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Generation, comment: "An instance of prov:Generation provides additional descriptions about the binary prov:wasGeneratedBy relation from a generated prov:Entity to the prov:Activity that generated it. For example, :cake prov:wasGeneratedBy :baking; prov:qualifiedGeneration [ a prov:Generation; prov:activity :baking; :foo :bar ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Generation".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Generation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasGeneratedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Generation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Generation".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Generation".freeze, - "prov:unqualifiedForm": "prov:wasGeneratedBy".freeze, - subClassOf: ["prov:ActivityInfluence".freeze, "prov:InstantaneousEvent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.w3.org/ns/prov#ActivityInfluence".freeze, "http://www.w3.org/ns/prov#InstantaneousEvent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Influence, comment: ["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.".freeze, "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.".freeze], + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#definition": "Influence is the capacity of an entity, activity, or agent to have an effect on the character, development, or behavior of another by means of usage, start, end, generation, invalidation, communication, derivation, attribution, association, or delegation.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-influence".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Influence".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:definition": "Influence is the capacity of an entity, activity, or agent to have an effect on the character, development, or behavior of another by means of usage, start, end, generation, invalidation, communication, derivation, attribution, association, or delegation.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-influence".freeze, - "prov:unqualifiedForm": "prov:wasInfluencedBy".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Insertion, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "Insertion is a derivation that transforms a dictionary into another, by insertion of one or more key-entity pairs.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#derivedByInsertionFrom".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "Insertion".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "Insertion is a derivation that transforms a dictionary into another, by insertion of one or more key-entity pairs.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, - "prov:unqualifiedForm": "prov:derivedByInsertionFrom".freeze, - subClassOf: ["prov:Derivation".freeze, term( + subClassOf: ["http://www.w3.org/ns/prov#Derivation".freeze, term( cardinality: "1".freeze, - onProperty: "prov:dictionary".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/ns/prov#dictionary".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "prov:insertedKeyEntityPair".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/ns/prov#insertedKeyEntityPair".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InstantaneousEvent, comment: "An instantaneous event, or event for short, happens in the world and marks a change in the world, in its activities and in its entities. The term 'event' is commonly used in process algebra with a similar meaning. Events represent communications or interactions; they are assumed to be atomic and instantaneous.".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#dfn-event".freeze, + "http://www.w3.org/ns/prov#definition": "The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics.".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "InstantaneousEvent".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#dfn-event".freeze, - "prov:definition": "The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics.".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Invalidation, comment: "An instance of prov:Invalidation provides additional descriptions about the binary prov:wasInvalidatedBy relation from an invalidated prov:Entity to the prov:Activity that invalidated it. For example, :uncracked_egg prov:wasInvalidatedBy :baking; prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :baking; :foo :bar ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Invalidation".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Invalidation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasInvalidatedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Invalidation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Invalidation".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Invalidation".freeze, - "prov:unqualifiedForm": "prov:wasInvalidatedBy".freeze, - subClassOf: ["prov:ActivityInfluence".freeze, "prov:InstantaneousEvent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.w3.org/ns/prov#ActivityInfluence".freeze, "http://www.w3.org/ns/prov#InstantaneousEvent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :KeyEntityPair, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "A key-entity pair. Part of a prov:Dictionary through prov:hadDictionaryMember. The key is any RDF Literal, the value is a prov:Entity.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "Key-Entity Pair".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "A key-entity pair. Part of a prov:Dictionary through prov:hadDictionaryMember. The key is any RDF Literal, the value is a prov:Entity.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze, subClassOf: [term( cardinality: "1".freeze, - onProperty: "prov:pairEntity".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/ns/prov#pairEntity".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( cardinality: "1".freeze, - onProperty: "prov:pairKey".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/ns/prov#pairKey".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Location, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/prov#atLocation".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#definition": "A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-location".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Location".freeze, - "prov:category": "expanded".freeze, - "prov:definition": "A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-location".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute".freeze, - "rdfs:seeAlso": "prov:atLocation".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Modify, + "http://www.w3.org/ns/prov#definition": "Activity that identifies the modification of a resource. ".freeze, label: "Modify".freeze, - "prov:definition": "Activity that identifies the modification of a resource. ".freeze, - subClassOf: "prov:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Organization, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#definition": "An organization is a social or legal institution such as a company, society, etc.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Organization".freeze, - "prov:category": "expanded".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:definition": "An organization is a social or legal institution such as a company, society, etc.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types".freeze, - subClassOf: "prov:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Person, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#definition": "Person agents are people.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Person".freeze, - "prov:category": "expanded".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:definition": "Person agents are people.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types".freeze, - subClassOf: "prov:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Plan, comment: "There exist no prescriptive requirement on the nature of plans, their representation, the actions or steps they consist of, or their intended goals. Since plans may evolve over time, it may become necessary to track their provenance, so plans themselves are entities. Representing the plan explicitly in the provenance can be useful for various tasks: for example, to validate the execution as represented in the provenance record, to manage expectation failures, or to provide explanations.".freeze, + "http://www.w3.org/ns/prov#category": ["expanded".freeze, "qualified".freeze], + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#definition": "A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Plan".freeze, - "prov:category": ["expanded".freeze, "qualified".freeze], - "prov:component": "agents-responsibility".freeze, - "prov:definition": "A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association".freeze, - subClassOf: "prov:Entity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PrimarySource, comment: "An instance of prov:PrimarySource provides additional descriptions about the binary prov:hadPrimarySource relation from some secondary prov:Entity to an earlier, primary prov:Entity. For example, :blog prov:hadPrimarySource :newsArticle; prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :newsArticle; :foo :bar ] .".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#definition": "A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.\n\nBecause of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.\n\nA primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#hadPrimarySource".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "PrimarySource".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:definition": "A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.\n\nBecause of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.\n\nA primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source".freeze, - "prov:unqualifiedForm": "prov:hadPrimarySource".freeze, - subClassOf: "prov:Derivation".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Derivation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Publish, + "http://www.w3.org/ns/prov#definition": "Activity that identifies the publication of a resource".freeze, label: "Publish".freeze, - "prov:definition": "Activity that identifies the publication of a resource".freeze, - subClassOf: "prov:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Publisher, + "http://www.w3.org/ns/prov#definition": "Role with the function of publishing a resource. The Agent assigned to this role is associated with a Publish Activity".freeze, label: "Publisher".freeze, - "prov:definition": "Role with the function of publishing a resource. The Agent assigned to this role is associated with a Publish Activity".freeze, - subClassOf: "prov:Role".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Role".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Quotation, comment: "An instance of prov:Quotation provides additional descriptions about the binary prov:wasQuotedFrom relation from some taken prov:Entity from an earlier, larger prov:Entity. For example, :here_is_looking_at_you_kid prov:wasQuotedFrom :casablanca_script; prov:qualifiedQuotation [ a prov:Quotation; prov:entity :casablanca_script; :foo :bar ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#definition": "A quotation is the repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author. Quotation is a particular case of derivation.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-quotation".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-quotation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasQuotedFrom".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Quotation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:definition": "A quotation is the repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author. Quotation is a particular case of derivation.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-quotation".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-quotation".freeze, - "prov:unqualifiedForm": "prov:wasQuotedFrom".freeze, - subClassOf: "prov:Derivation".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Derivation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Removal, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "Removal is a derivation that transforms a dictionary into another, by removing one or more key-entity pairs.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#derivedByRemovalFrom".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "Removal".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "Removal is a derivation that transforms a dictionary into another, by removing one or more key-entity pairs.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze, - "prov:unqualifiedForm": "prov:derivedByRemovalFrom".freeze, - subClassOf: ["prov:Derivation".freeze, term( + subClassOf: ["http://www.w3.org/ns/prov#Derivation".freeze, term( cardinality: "1".freeze, - onProperty: "prov:dictionary".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/ns/prov#dictionary".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "prov:removedKey".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/ns/prov#removedKey".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Replace, + "http://www.w3.org/ns/prov#definition": "Activity that identifies the replacement of a resource.".freeze, label: "Replace".freeze, - "prov:definition": "Activity that identifies the replacement of a resource.".freeze, - subClassOf: "prov:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Revision, comment: "An instance of prov:Revision provides additional descriptions about the binary prov:wasRevisionOf relation from some newer prov:Entity to an earlier prov:Entity. For example, :draft_2 prov:wasRevisionOf :draft_1; prov:qualifiedRevision [ a prov:Revision; prov:entity :draft_1; :foo :bar ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#definition": "A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-revision".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Revision".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasRevisionOf".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Revision".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:definition": "A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-revision".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Revision".freeze, - "prov:unqualifiedForm": "prov:wasRevisionOf".freeze, - subClassOf: "prov:Derivation".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Derivation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RightsAssignment, + "http://www.w3.org/ns/prov#definition": "Activity that identifies the rights assignment of a resource.".freeze, label: "RightsAssignment".freeze, - "prov:definition": "Activity that identifies the rights assignment of a resource.".freeze, - subClassOf: "prov:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RightsHolder, + "http://www.w3.org/ns/prov#definition": "Role with the function of owning or managing rights over a resource. The Agent assigned to this role is associated with a RightsAssignment Activity".freeze, label: "RightsHolder".freeze, - "prov:definition": "Role with the function of owning or managing rights over a resource. The Agent assigned to this role is associated with a RightsAssignment Activity".freeze, - subClassOf: "prov:Role".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Role".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Role, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/prov#hadRole".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#definition": "A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-role".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Role".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:definition": "A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-role".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute".freeze, - "rdfs:seeAlso": "prov:hadRole".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ServiceDescription, comment: "Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments.".freeze, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery".freeze, + "http://www.w3.org/ns/prov#category": "access-and-query".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "ServiceDescription".freeze, - "prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery".freeze, - "prov:category": "access-and-query".freeze, - subClassOf: "prov:SoftwareAgent".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#SoftwareAgent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SoftwareAgent, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#definition": "A software agent is running software.".freeze, + "http://www.w3.org/ns/prov#dm": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent".freeze, "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze], + "http://www.w3.org/ns/prov#n": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types".freeze, "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types".freeze], + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], label: "SoftwareAgent".freeze, - "prov:category": "expanded".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:definition": "A software agent is running software.".freeze, - "prov:dm": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent".freeze, "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent".freeze], - "prov:n": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types".freeze, "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types".freeze], - subClassOf: ["owl:Thing".freeze, "prov:Agent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.w3.org/2002/07/owl#Thing".freeze, "http://www.w3.org/ns/prov#Agent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Start, comment: "An instance of prov:Start provides additional descriptions about the binary prov:wasStartedBy relation from some started prov:Activity to an prov:Entity that started it. For example, :foot_race prov:wasStartedBy :bang; prov:qualifiedStart [ a prov:Start; prov:entity :bang; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ] .".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "Start is when an activity is deemed to have been started by an entity, known as trigger. The activity did not exist before its start. Any usage, generation, or invalidation involving an activity follows the activity's start. A start may refer to a trigger entity that set off the activity, or to an activity, known as starter, that generated the trigger.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Start".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Start".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasStartedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Start".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "Start is when an activity is deemed to have been started by an entity, known as trigger. The activity did not exist before its start. Any usage, generation, or invalidation involving an activity follows the activity's start. A start may refer to a trigger entity that set off the activity, or to an activity, known as starter, that generated the trigger.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Start".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Start".freeze, - "prov:unqualifiedForm": "prov:wasStartedBy".freeze, - subClassOf: ["prov:EntityInfluence".freeze, "prov:InstantaneousEvent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.w3.org/ns/prov#EntityInfluence".freeze, "http://www.w3.org/ns/prov#InstantaneousEvent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Submit, + "http://www.w3.org/ns/prov#definition": "Activity that identifies the issuance (e.g., publication) of a resource. ".freeze, label: "Submit".freeze, - "prov:definition": "Activity that identifies the issuance (e.g., publication) of a resource. ".freeze, - subClassOf: "prov:Activity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/ns/prov#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Usage, comment: "An instance of prov:Usage provides additional descriptions about the binary prov:used relation from some prov:Activity to an prov:Entity that it used. For example, :keynote prov:used :podium; prov:qualifiedUsage [ a prov:Usage; prov:entity :podium; :foo :bar ].".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Usage".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Usage".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#used".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "Usage".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Usage".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Usage".freeze, - "prov:unqualifiedForm": "prov:used".freeze, - subClassOf: ["prov:EntityInfluence".freeze, "prov:InstantaneousEvent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.w3.org/ns/prov#EntityInfluence".freeze, "http://www.w3.org/ns/prov#InstantaneousEvent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :actedOnBehalfOf, comment: "An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity. ".freeze, - domain: "prov:Agent".freeze, + domain: "http://www.w3.org/ns/prov#Agent".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedDelegation".freeze, "http://www.w3.org/ns/prov#agent".freeze), + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#inverse": "hadDelegate".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Delegation".freeze, "http://www.w3.org/ns/prov#qualifiedDelegation".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "actedOnBehalfOf".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedDelegation".freeze, "prov:agent".freeze), - "prov:category": "starting-point".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:inverse": "hadDelegate".freeze, - "prov:qualifiedForm": ["prov:Delegation".freeze, "prov:qualifiedDelegation".freeze], - range: "prov:Agent".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Agent".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :activity, - domain: "prov:ActivityInfluence".freeze, + domain: "http://www.w3.org/ns/prov#ActivityInfluence".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#editorialNote": "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.".freeze, + "http://www.w3.org/ns/prov#editorsDefinition": "The prov:activity property references an prov:Activity which influenced a resource. This property applies to an prov:ActivityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.".freeze, + "http://www.w3.org/ns/prov#inverse": "activityOfInfluence".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "activity".freeze, - "prov:category": "qualified".freeze, - "prov:editorialNote": "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.".freeze, - "prov:editorsDefinition": "The prov:activity property references an prov:Activity which influenced a resource. This property applies to an prov:ActivityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.".freeze, - "prov:inverse": "activityOfInfluence".freeze, - range: "prov:Activity".freeze, - subPropertyOf: "prov:influencer".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Activity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#influencer".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :agent, - domain: "prov:AgentInfluence".freeze, + domain: "http://www.w3.org/ns/prov#AgentInfluence".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#editorialNote": "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.".freeze, + "http://www.w3.org/ns/prov#editorsDefinition": "The prov:agent property references an prov:Agent which influenced a resource. This property applies to an prov:AgentInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.".freeze, + "http://www.w3.org/ns/prov#inverse": "agentOfInfluence".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "agent".freeze, - "prov:category": "qualified".freeze, - "prov:editorialNote": "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.".freeze, - "prov:editorsDefinition": "The prov:agent property references an prov:Agent which influenced a resource. This property applies to an prov:AgentInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.".freeze, - "prov:inverse": "agentOfInfluence".freeze, - range: "prov:Agent".freeze, - subPropertyOf: "prov:influencer".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Agent".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#influencer".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :alternateOf, - domain: "prov:Entity".freeze, - inverseOf: "prov:alternateOf".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/prov#specializationOf".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "alternate".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, + "http://www.w3.org/ns/prov#definition": "Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate".freeze, + "http://www.w3.org/ns/prov#inverse": "alternateOf".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate".freeze, + inverseOf: "http://www.w3.org/ns/prov#alternateOf".freeze, isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], label: "alternateOf".freeze, - "prov:category": "expanded".freeze, - "prov:component": "alternate".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze, - "prov:definition": "Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate".freeze, - "prov:inverse": "alternateOf".freeze, - "prov:n": "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate".freeze, - range: "prov:Entity".freeze, - "rdfs:seeAlso": "prov:specializationOf".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :aq, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :asInBundle, comment: "prov:asInBundle is used to specify which bundle the general entity of a prov:mentionOf property is described.\n\nWhen :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described.".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#inverse": "contextOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#mentionOf".freeze, isDefinedBy: "http://www.w3.org/ns/prov-links#".freeze, label: "asInBundle".freeze, - "prov:inverse": "contextOf".freeze, - "prov:sharesDefinitionWith": "prov:mentionOf".freeze, - range: "prov:Bundle".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Bundle".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :atLocation, comment: ["The Location of any resource.".freeze, "This property has multiple RDFS domains to suit multiple OWL Profiles. See PROV-O OWL Profile.".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze, "prov:InstantaneousEvent".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/ns/prov#Activity".freeze, "http://www.w3.org/ns/prov#Agent".freeze, "http://www.w3.org/ns/prov#Entity".freeze, "http://www.w3.org/ns/prov#InstantaneousEvent".freeze) ), + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#editorialNote": ["The naming of prov:atLocation parallels prov:atTime, and is not named prov:hadLocation to avoid conflicting with the convention that prov:had* properties are used on prov:Influence classes.".freeze, "This property is not functional because the many values could be at a variety of granularies (In this building, in this room, in that chair).".freeze], + "http://www.w3.org/ns/prov#inverse": "locationOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Location".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "atLocation".freeze, - "prov:category": "expanded".freeze, - "prov:editorialNote": ["The naming of prov:atLocation parallels prov:atTime, and is not named prov:hadLocation to avoid conflicting with the convention that prov:had* properties are used on prov:Influence classes.".freeze, "This property is not functional because the many values could be at a variety of granularies (In this building, in this room, in that chair).".freeze], - "prov:inverse": "locationOf".freeze, - "prov:sharesDefinitionWith": "prov:Location".freeze, - range: "prov:Location".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Location".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :atTime, comment: "The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime.".freeze, - domain: "prov:InstantaneousEvent".freeze, + domain: "http://www.w3.org/ns/prov#InstantaneousEvent".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#InstantaneousEvent".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": ["http://www.w3.org/ns/prov#endedAtTime".freeze, "http://www.w3.org/ns/prov#generatedAtTime".freeze, "http://www.w3.org/ns/prov#invalidatedAtTime".freeze, "http://www.w3.org/ns/prov#startedAtTime".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "atTime".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:sharesDefinitionWith": "prov:InstantaneousEvent".freeze, - "prov:unqualifiedForm": ["prov:endedAtTime".freeze, "prov:generatedAtTime".freeze, "prov:invalidatedAtTime".freeze, "prov:startedAtTime".freeze], - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :category, comment: "Classify prov-o terms into three categories, including 'starting-point', 'qualifed', and 'extended'. This classification is used by the prov-o html document to gently introduce prov-o terms to its users. ".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :component, comment: "Classify prov-o terms into six components according to prov-dm, including 'agents-responsibility', 'alternate', 'annotations', 'collections', 'derivations', and 'entities-activities'. This classification is used so that readers of prov-o specification can find its correspondence with the prov-dm specification.".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :constraints, comment: "A reference to the principal section of the PROV-CONSTRAINTS document that describes this concept.".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :definition, comment: "A definition quoted from PROV-DM or PROV-CONSTRAINTS that describes the concept expressed with this OWL term.".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :derivedByInsertionFrom, - domain: "prov:Dictionary".freeze, - isDefinedBy: "prov:".freeze, + domain: "http://www.w3.org/ns/prov#Dictionary".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "The dictionary was derived from the other by insertion. prov:qualifiedInsertion shows details of the insertion, in particular the inserted key-entity pairs.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "derivedByInsertionFrom".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "The dictionary was derived from the other by insertion. prov:qualifiedInsertion shows details of the insertion, in particular the inserted key-entity pairs.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, - range: "prov:Dictionary".freeze, - subPropertyOf: "prov:wasDerivedFrom".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Dictionary".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :derivedByRemovalFrom, - domain: "prov:Dictionary".freeze, - isDefinedBy: "prov:".freeze, + domain: "http://www.w3.org/ns/prov#Dictionary".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "The dictionary was derived from the other by removal. prov:qualifiedRemoval shows details of the removal, in particular the removed key-entity pairs.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "derivedByRemovalFrom".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "The dictionary was derived from the other by removal. prov:qualifiedRemoval shows details of the removal, in particular the removed key-entity pairs.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze, - range: "prov:Dictionary".freeze, - subPropertyOf: "prov:wasDerivedFrom".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Dictionary".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :describesService, comment: "relates a generic provenance query service resource (type prov:ServiceDescription) to a specific query service description (e.g. a prov:DirectQueryService or a sd:Service).".freeze, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/rovenance-query-service-description".freeze, + "http://www.w3.org/ns/prov#category": "access-and-query".freeze, + "http://www.w3.org/ns/prov#inverse": "serviceDescribedBy".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "describesService".freeze, - "prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/rovenance-query-service-description".freeze, - "prov:category": "access-and-query".freeze, - "prov:inverse": "serviceDescribedBy".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :dictionary, - domain: ["prov:Insertion".freeze, "prov:Removal".freeze], - isDefinedBy: "prov:".freeze, + domain: ["http://www.w3.org/ns/prov#Insertion".freeze, "http://www.w3.org/ns/prov#Removal".freeze], + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "The property used by a prov:Insertion and prov:Removal to cite the prov:Dictionary that was prov:derivedByInsertionFrom or prov:derivedByRemovalFrom another dictionary.".freeze, + "http://www.w3.org/ns/prov#dm": ["http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze], + "http://www.w3.org/ns/prov#n": ["http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze], + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "dictionary".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "The property used by a prov:Insertion and prov:Removal to cite the prov:Dictionary that was prov:derivedByInsertionFrom or prov:derivedByRemovalFrom another dictionary.".freeze, - "prov:dm": ["http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze], - "prov:n": ["http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze], - range: "prov:Dictionary".freeze, - subPropertyOf: "prov:entity".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Dictionary".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#entity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :dm, comment: "A reference to the principal section of the PROV-DM document that describes this concept.".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :editorialNote, comment: "A note by the OWL development team about how this term expresses the PROV-DM concept, or how it should be used in context of semantic web or linked data.".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :editorsDefinition, comment: "When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one.".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - subPropertyOf: "prov:definition".freeze, - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + subPropertyOf: "http://www.w3.org/ns/prov#definition".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :endedAtTime, comment: "The time at which an activity ended. See also prov:startedAtTime.".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#editorialNote": "It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime.".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#End".freeze, "http://www.w3.org/ns/prov#atTime".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "endedAtTime".freeze, - "prov:category": "starting-point".freeze, - "prov:component": "entities-activities".freeze, - "prov:editorialNote": "It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime.".freeze, - "prov:qualifiedForm": ["prov:End".freeze, "prov:atTime".freeze], - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :entity, - domain: "prov:EntityInfluence".freeze, + domain: "http://www.w3.org/ns/prov#EntityInfluence".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#editorialNote": "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.".freeze, + "http://www.w3.org/ns/prov#editorsDefinition": "The prov:entity property references an prov:Entity which influenced a resource. This property applies to an prov:EntityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.".freeze, + "http://www.w3.org/ns/prov#inverse": "entityOfInfluence".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "entity".freeze, - "prov:category": "qualified".freeze, - "prov:editorialNote": "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.".freeze, - "prov:editorsDefinition": "The prov:entity property references an prov:Entity which influenced a resource. This property applies to an prov:EntityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.".freeze, - "prov:inverse": "entityOfInfluence".freeze, - range: "prov:Entity".freeze, - subPropertyOf: "prov:influencer".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#influencer".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generated, - domain: "prov:Activity".freeze, - inverseOf: "prov:wasGeneratedBy".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#editorialNote": "prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.".freeze, + "http://www.w3.org/ns/prov#inverse": "wasGeneratedBy".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Generation".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasGeneratedBy".freeze, isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], label: "generated".freeze, - "prov:category": "expanded".freeze, - "prov:component": "entities-activities".freeze, - "prov:editorialNote": "prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.".freeze, - "prov:inverse": "wasGeneratedBy".freeze, - "prov:sharesDefinitionWith": "prov:Generation".freeze, - range: "prov:Entity".freeze, - subPropertyOf: "prov:influenced".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#influenced".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generatedAtTime, comment: "The time at which an entity was completely created and is available for use.".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#editorialNote": "It is the intent that the property chain holds: (prov:qualifiedGeneration o prov:atTime) rdfs:subPropertyOf prov:generatedAtTime.".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Generation".freeze, "http://www.w3.org/ns/prov#atTime".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "generatedAtTime".freeze, - "prov:category": "expanded".freeze, - "prov:component": "entities-activities".freeze, - "prov:editorialNote": "It is the intent that the property chain holds: (prov:qualifiedGeneration o prov:atTime) rdfs:subPropertyOf prov:generatedAtTime.".freeze, - "prov:qualifiedForm": ["prov:Generation".freeze, "prov:atTime".freeze], - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hadActivity, comment: ["The _optional_ Activity of an Influence, which used, generated, invalidated, or was the responsibility of some Entity. This property is _not_ used by ActivityInfluence (use prov:activity instead).".freeze, "This property has multiple RDFS domains to suit multiple OWL Profiles. See PROV-O OWL Profile.".freeze], - domain: ["prov:Influence".freeze, term( - type: "owl:Class".freeze, - unionOf: list("prov:Delegation".freeze, "prov:Derivation".freeze, "prov:End".freeze, "prov:Start".freeze) + domain: ["http://www.w3.org/ns/prov#Influence".freeze, term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/ns/prov#Delegation".freeze, "http://www.w3.org/ns/prov#Derivation".freeze, "http://www.w3.org/ns/prov#End".freeze, "http://www.w3.org/ns/prov#Start".freeze) )], + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#editorialNote": "The multiple rdfs:domain assertions are intended. One is simpler and works for OWL-RL, the union is more specific but is not recognized by OWL-RL.".freeze, + "http://www.w3.org/ns/prov#inverse": "wasActivityOfInfluence".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Activity".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "hadActivity".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:editorialNote": "The multiple rdfs:domain assertions are intended. One is simpler and works for OWL-RL, the union is more specific but is not recognized by OWL-RL.".freeze, - "prov:inverse": "wasActivityOfInfluence".freeze, - "prov:sharesDefinitionWith": "prov:Activity".freeze, - range: "prov:Activity".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Activity".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hadDictionaryMember, - domain: "prov:Dictionary".freeze, - isDefinedBy: "prov:".freeze, + domain: "http://www.w3.org/ns/prov#Dictionary".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "Describes the key-entity pair that was member of a prov:Dictionary. A dictionary can have multiple members.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "hadDictionaryMember".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "Describes the key-entity pair that was member of a prov:Dictionary. A dictionary can have multiple members.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze, - range: "prov:KeyEntityPair".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#KeyEntityPair".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hadGeneration, comment: "The _optional_ Generation involved in an Entity's Derivation.".freeze, - domain: "prov:Derivation".freeze, + domain: "http://www.w3.org/ns/prov#Derivation".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "generatedAsDerivation".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Generation".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "hadGeneration".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "generatedAsDerivation".freeze, - "prov:sharesDefinitionWith": "prov:Generation".freeze, - range: "prov:Generation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Generation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hadMember, - domain: "prov:Collection".freeze, + domain: "http://www.w3.org/ns/prov#Collection".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "expanded".freeze, + "http://www.w3.org/ns/prov#inverse": "wasMemberOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Collection".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "hadMember".freeze, - "prov:category": "expanded".freeze, - "prov:component": "expanded".freeze, - "prov:inverse": "wasMemberOf".freeze, - "prov:sharesDefinitionWith": "prov:Collection".freeze, - range: "prov:Entity".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hadPlan, comment: "The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification.".freeze, - domain: "prov:Association".freeze, + domain: "http://www.w3.org/ns/prov#Association".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#inverse": "wasPlanOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Plan".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "hadPlan".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:inverse": "wasPlanOf".freeze, - "prov:sharesDefinitionWith": "prov:Plan".freeze, - range: "prov:Plan".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Plan".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hadPrimarySource, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedPrimarySource".freeze, "http://www.w3.org/ns/prov#entity".freeze), + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "wasPrimarySourceOf".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#PrimarySource".freeze, "http://www.w3.org/ns/prov#qualifiedPrimarySource".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "hadPrimarySource".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedPrimarySource".freeze, "prov:entity".freeze), - "prov:category": "expanded".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "wasPrimarySourceOf".freeze, - "prov:qualifiedForm": ["prov:PrimarySource".freeze, "prov:qualifiedPrimarySource".freeze], - range: "prov:Entity".freeze, - subPropertyOf: "prov:wasDerivedFrom".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hadRole, comment: ["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 ].".freeze, "This property has multiple RDFS domains to suit multiple OWL Profiles. See PROV-O OWL Profile.".freeze], - domain: ["prov:Influence".freeze, term( - type: "owl:Class".freeze, - unionOf: list("prov:Association".freeze, "prov:InstantaneousEvent".freeze) + domain: ["http://www.w3.org/ns/prov#Influence".freeze, term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/ns/prov#Association".freeze, "http://www.w3.org/ns/prov#InstantaneousEvent".freeze) )], + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#editorsDefinition": "prov:hadRole references the Role (i.e. the function of an entity with respect to an activity), in the context of an instantaneous usage, generation, association, start, and end.".freeze, + "http://www.w3.org/ns/prov#inverse": "wasRoleIn".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Role".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "hadRole".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:editorsDefinition": "prov:hadRole references the Role (i.e. the function of an entity with respect to an activity), in the context of an instantaneous usage, generation, association, start, and end.".freeze, - "prov:inverse": "wasRoleIn".freeze, - "prov:sharesDefinitionWith": "prov:Role".freeze, - range: "prov:Role".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Role".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hadUsage, comment: "The _optional_ Usage involved in an Entity's Derivation.".freeze, - domain: "prov:Derivation".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], + domain: "http://www.w3.org/ns/prov#Derivation".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "wasUsedInDerivation".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Usage".freeze, + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], label: "hadUsage".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "wasUsedInDerivation".freeze, - "prov:sharesDefinitionWith": "prov:Usage".freeze, - range: "prov:Usage".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Usage".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_anchor, comment: "Indicates anchor URI for a potentially dynamic resource instance.".freeze, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html".freeze, + "http://www.w3.org/ns/prov#category": "access-and-query".freeze, + "http://www.w3.org/ns/prov#inverse": "anchorOf".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "has_anchor".freeze, - "prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html".freeze, - "prov:category": "access-and-query".freeze, - "prov:inverse": "anchorOf".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_provenance, comment: "Indicates a provenance-URI for a resource; the resource identified by this property presents a provenance record about its subject or anchor resource.".freeze, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html".freeze, + "http://www.w3.org/ns/prov#category": "access-and-query".freeze, + "http://www.w3.org/ns/prov#inverse": "provenanceOf".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "has_provenance".freeze, - "prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html".freeze, - "prov:category": "access-and-query".freeze, - "prov:inverse": "provenanceOf".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_query_service, comment: "Indicates a provenance query service that can access provenance related to its subject or anchor resource.".freeze, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/".freeze, + "http://www.w3.org/ns/prov#category": "access-and-query".freeze, + "http://www.w3.org/ns/prov#inverse": "provenanceQueryServiceOf".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "hasProvenanceService".freeze, - "prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/".freeze, - "prov:category": "access-and-query".freeze, - "prov:inverse": "provenanceQueryServiceOf".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :influenced, - inverseOf: "prov:wasInfluencedBy".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#inverse": "wasInfluencedBy".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Influence".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], label: "influenced".freeze, - "prov:category": "expanded".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:inverse": "wasInfluencedBy".freeze, - "prov:sharesDefinitionWith": "prov:Influence".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :influencer, comment: "Subproperties of prov:influencer are used to cite the object of an unqualified PROV-O triple whose predicate is a subproperty of prov:wasInfluencedBy (e.g. prov:used, prov:wasGeneratedBy). prov:influencer is used much like rdf:object is used.".freeze, - domain: "prov:Influence".freeze, + domain: "http://www.w3.org/ns/prov#Influence".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence".freeze, + "http://www.w3.org/ns/prov#editorialNote": "This property and its subproperties are used in the same way as the rdf:object property, i.e. to reference the object of an unqualified prov:wasInfluencedBy or prov:influenced triple.".freeze, + "http://www.w3.org/ns/prov#editorsDefinition": "This property is used as part of the qualified influence pattern. Subclasses of prov:Influence use these subproperties to reference the resource (Entity, Agent, or Activity) whose influence is being qualified.".freeze, + "http://www.w3.org/ns/prov#inverse": "hadInfluence".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "influencer".freeze, - "prov:category": "qualified".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence".freeze, - "prov:editorialNote": "This property and its subproperties are used in the same way as the rdf:object property, i.e. to reference the object of an unqualified prov:wasInfluencedBy or prov:influenced triple.".freeze, - "prov:editorsDefinition": "This property is used as part of the qualified influence pattern. Subclasses of prov:Influence use these subproperties to reference the resource (Entity, Agent, or Activity) whose influence is being qualified.".freeze, - "prov:inverse": "hadInfluence".freeze, - range: "owl:Thing".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2002/07/owl#Thing".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :insertedKeyEntityPair, - domain: "prov:Insertion".freeze, - isDefinedBy: "prov:".freeze, + domain: "http://www.w3.org/ns/prov#Insertion".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "An object property to refer to the prov:KeyEntityPair inserted into a prov:Dictionary.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "insertedKeyEntityPair".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "An object property to refer to the prov:KeyEntityPair inserted into a prov:Dictionary.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, - range: "prov:KeyEntityPair".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#KeyEntityPair".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :invalidated, - domain: "prov:Activity".freeze, - inverseOf: "prov:wasInvalidatedBy".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#editorialNote": "prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.".freeze, + "http://www.w3.org/ns/prov#inverse": "wasInvalidatedBy".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Invalidation".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasInvalidatedBy".freeze, isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], label: "invalidated".freeze, - "prov:category": "expanded".freeze, - "prov:component": "entities-activities".freeze, - "prov:editorialNote": "prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.".freeze, - "prov:inverse": "wasInvalidatedBy".freeze, - "prov:sharesDefinitionWith": "prov:Invalidation".freeze, - range: "prov:Entity".freeze, - subPropertyOf: "prov:influenced".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#influenced".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :invalidatedAtTime, comment: "The time at which an entity was invalidated (i.e., no longer usable).".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#editorialNote": "It is the intent that the property chain holds: (prov:qualifiedInvalidation o prov:atTime) rdfs:subPropertyOf prov:invalidatedAtTime.".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Invalidation".freeze, "http://www.w3.org/ns/prov#atTime".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "invalidatedAtTime".freeze, - "prov:category": "expanded".freeze, - "prov:component": "entities-activities".freeze, - "prov:editorialNote": "It is the intent that the property chain holds: (prov:qualifiedInvalidation o prov:atTime) rdfs:subPropertyOf prov:invalidatedAtTime.".freeze, - "prov:qualifiedForm": ["prov:Invalidation".freeze, "prov:atTime".freeze], - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :inverse, comment: "PROV-O does not define all property inverses. The directionalities defined in PROV-O should be given preference over those not defined. However, if users wish to name the inverse of a PROV-O property, the local name given by prov:inverse should be used.".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - "rdfs:seeAlso": "http://www.w3.org/TR/prov-o/#names-of-inverse-properties".freeze, - type: "owl:AnnotationProperty".freeze + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/TR/prov-o/#names-of-inverse-properties".freeze, + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :mentionOf, comment: "prov:mentionOf is used to specialize an entity as described in another bundle. It is to be used in conjuction with prov:asInBundle.\n\nprov:asInBundle is used to cite the Bundle in which the generalization was mentioned.".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#inverse": "hadMention".freeze, isDefinedBy: "http://www.w3.org/ns/prov-links#".freeze, label: "mentionOf".freeze, - "prov:inverse": "hadMention".freeze, - range: "prov:Entity".freeze, - subPropertyOf: "prov:specializationOf".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#specializationOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :n, comment: ["A reference to the principal section of the PROV-DM document that describes this concept.".freeze, "A reference to the principal section of the PROV-M document that describes this concept.".freeze], - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :order, comment: "The position that this OWL term should be listed within documentation. The scope of the documentation (e.g., among all terms, among terms within a prov:category, among properties applying to a particular class, etc.) is unspecified.".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :pairEntity, - domain: "prov:KeyEntityPair".freeze, - isDefinedBy: "prov:".freeze, + domain: "http://www.w3.org/ns/prov#KeyEntityPair".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "The value of a KeyEntityPair.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "pairKey".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "The value of a KeyEntityPair.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze, - range: "prov:Entity".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://www.w3.org/ns/prov#Entity".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :pairKey, - domain: "prov:KeyEntityPair".freeze, - isDefinedBy: "prov:".freeze, + domain: "http://www.w3.org/ns/prov#KeyEntityPair".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "The key of a KeyEntityPair, which is an element of a prov:Dictionary.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "pairKey".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "The key of a KeyEntityPair, which is an element of a prov:Dictionary.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :pingback, comment: "Relates a resource to a provenance pingback service that may receive additional provenance links about the resource.".freeze, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-pingback".freeze, + "http://www.w3.org/ns/prov#category": "access-and-query".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "provenance pingback".freeze, - "prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-pingback".freeze, - "prov:category": "access-and-query".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :provenanceUriTemplate, comment: "Relates a provenance service to a URI template string for constructing provenance-URIs.".freeze, - isDefinedBy: "prov:".freeze, + "http://www.w3.org/ns/prov#aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/".freeze, + "http://www.w3.org/ns/prov#category": "access-and-query".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "provenanceUriTemplate".freeze, - "prov:aq": "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/".freeze, - "prov:category": "access-and-query".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :qualifiedAssociation, comment: "If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association; prov:agent :ag; :foo :bar ].".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedAssociationOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Association".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasAssociatedWith".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedAssociation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:inverse": "qualifiedAssociationOf".freeze, - "prov:sharesDefinitionWith": "prov:Association".freeze, - "prov:unqualifiedForm": "prov:wasAssociatedWith".freeze, - range: "prov:Association".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Association".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedAttribution, comment: "If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution; prov:agent :ag; :foo :bar ].".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedAttributionOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Attribution".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasAttributedTo".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedAttribution".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:inverse": "qualifiedAttributionOf".freeze, - "prov:sharesDefinitionWith": "prov:Attribution".freeze, - "prov:unqualifiedForm": "prov:wasAttributedTo".freeze, - range: "prov:Attribution".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Attribution".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedCommunication, comment: "If this Activity prov:wasInformedBy Activity :a, then it can qualify how it was influenced using prov:qualifiedCommunication [ a prov:Communication; prov:activity :a; :foo :bar ].".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedCommunicationOf".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": "http://www.w3.org/ns/prov#Communication".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Communication".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedCommunication".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "qualifiedCommunicationOf".freeze, - "prov:qualifiedForm": "prov:Communication".freeze, - "prov:sharesDefinitionWith": "prov:Communication".freeze, - range: "prov:Communication".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Communication".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedDelegation, comment: "If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility; prov:agent :ag; :foo :bar ].".freeze, - domain: "prov:Agent".freeze, + domain: "http://www.w3.org/ns/prov#Agent".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedDelegationOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Delegation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#actedOnBehalfOf".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedDelegation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:inverse": "qualifiedDelegationOf".freeze, - "prov:sharesDefinitionWith": "prov:Delegation".freeze, - "prov:unqualifiedForm": "prov:actedOnBehalfOf".freeze, - range: "prov:Delegation".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Delegation".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedDerivation, comment: "If this Entity prov:wasDerivedFrom Entity :e, then it can qualify how it was derived using prov:qualifiedDerivation [ a prov:Derivation; prov:entity :e; :foo :bar ].".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedDerivationOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Derivation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedDerivation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "qualifiedDerivationOf".freeze, - "prov:sharesDefinitionWith": "prov:Derivation".freeze, - "prov:unqualifiedForm": "prov:wasDerivedFrom".freeze, - range: "prov:Derivation".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Derivation".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedEnd, comment: "If this Activity prov:wasEndedBy Entity :e1, then it can qualify how it was ended using prov:qualifiedEnd [ a prov:End; prov:entity :e1; :foo :bar ].".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedEndOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#End".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasEndedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedEnd".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "qualifiedEndOf".freeze, - "prov:sharesDefinitionWith": "prov:End".freeze, - "prov:unqualifiedForm": "prov:wasEndedBy".freeze, - range: "prov:End".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#End".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedForm, comment: "This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it. \n\nExample annotation:\n\n prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation .\n\nThen this unqualified assertion:\n\n :entity1 prov:wasGeneratedBy :activity1 .\n\ncan be qualified by adding:\n\n :entity1 prov:qualifiedGeneration :entity1Gen .\n :entity1Gen \n a prov:Generation, prov:Influence;\n prov:activity :activity1;\n :customValue 1337 .\n\nNote how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class.".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :qualifiedGeneration, comment: "If this Activity prov:generated Entity :e, then it can qualify how it performed the Generation using prov:qualifiedGeneration [ a prov:Generation; prov:entity :e; :foo :bar ].".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedGenerationOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Generation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasGeneratedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedGeneration".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "qualifiedGenerationOf".freeze, - "prov:sharesDefinitionWith": "prov:Generation".freeze, - "prov:unqualifiedForm": "prov:wasGeneratedBy".freeze, - range: "prov:Generation".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Generation".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedInfluence, comment: "Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/ns/prov#Activity".freeze, "http://www.w3.org/ns/prov#Agent".freeze, "http://www.w3.org/ns/prov#Entity".freeze) ), + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedInfluenceOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Influence".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedInfluence".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "qualifiedInfluenceOf".freeze, - "prov:sharesDefinitionWith": "prov:Influence".freeze, - "prov:unqualifiedForm": "prov:wasInfluencedBy".freeze, - range: "prov:Influence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Influence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedInsertion, - domain: "prov:Dictionary".freeze, - isDefinedBy: "prov:".freeze, + domain: "http://www.w3.org/ns/prov#Dictionary".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "The dictionary was derived from the other by insertion. prov:qualifiedInsertion shows details of the insertion, in particular the inserted key-entity pairs.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "qualifiedInsertion".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "The dictionary was derived from the other by insertion. prov:qualifiedInsertion shows details of the insertion, in particular the inserted key-entity pairs.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion".freeze, - range: "prov:Insertion".freeze, - subPropertyOf: "prov:qualifiedDerivation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Insertion".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedDerivation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedInvalidation, comment: "If this Entity prov:wasInvalidatedBy Activity :a, then it can qualify how it was invalidated using prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :a; :foo :bar ].".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedInvalidationOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Invalidation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasInvalidatedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedInvalidation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "qualifiedInvalidationOf".freeze, - "prov:sharesDefinitionWith": "prov:Invalidation".freeze, - "prov:unqualifiedForm": "prov:wasInvalidatedBy".freeze, - range: "prov:Invalidation".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Invalidation".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedPrimarySource, comment: "If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ].".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedSourceOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#PrimarySource".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#hadPrimarySource".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedPrimarySource".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "qualifiedSourceOf".freeze, - "prov:sharesDefinitionWith": "prov:PrimarySource".freeze, - "prov:unqualifiedForm": "prov:hadPrimarySource".freeze, - range: "prov:PrimarySource".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#PrimarySource".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedQuotation, comment: "If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation; prov:entity :e; :foo :bar ].".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedQuotationOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Quotation".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasQuotedFrom".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedQuotation".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "qualifiedQuotationOf".freeze, - "prov:sharesDefinitionWith": "prov:Quotation".freeze, - "prov:unqualifiedForm": "prov:wasQuotedFrom".freeze, - range: "prov:Quotation".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Quotation".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedRemoval, - domain: "prov:Dictionary".freeze, - isDefinedBy: "prov:".freeze, + domain: "http://www.w3.org/ns/prov#Dictionary".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "The dictionary was derived from the other by removal. prov:qualifiedRemoval shows details of the removal, in particular the removed keys.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "qualifiedRemoval".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "The dictionary was derived from the other by removal. prov:qualifiedRemoval shows details of the removal, in particular the removed keys.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze, - range: "prov:Removal".freeze, - subPropertyOf: "prov:qualifiedDerivation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Removal".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedDerivation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedRevision, comment: "If this Entity prov:wasRevisionOf Entity :e, then it can qualify how it was revised using prov:qualifiedRevision [ a prov:Revision; prov:entity :e; :foo :bar ].".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "revisedEntity".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Revision".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasRevisionOf".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedRevision".freeze, - "prov:category": "qualified".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "revisedEntity".freeze, - "prov:sharesDefinitionWith": "prov:Revision".freeze, - "prov:unqualifiedForm": "prov:wasRevisionOf".freeze, - range: "prov:Revision".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Revision".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedStart, comment: "If this Activity prov:wasStartedBy Entity :e1, then it can qualify how it was started using prov:qualifiedStart [ a prov:Start; prov:entity :e1; :foo :bar ].".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedStartOf".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Start".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#wasStartedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedStart".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "qualifiedStartOf".freeze, - "prov:sharesDefinitionWith": "prov:Start".freeze, - "prov:unqualifiedForm": "prov:wasStartedBy".freeze, - range: "prov:Start".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Start".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :qualifiedUsage, comment: "If this Activity prov:used Entity :e, then it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; prov:entity :e; :foo :bar ].".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "qualifiedUsingActivity".freeze, + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Usage".freeze, + "http://www.w3.org/ns/prov#unqualifiedForm": "http://www.w3.org/ns/prov#used".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "qualifiedUsage".freeze, - "prov:category": "qualified".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "qualifiedUsingActivity".freeze, - "prov:sharesDefinitionWith": "prov:Usage".freeze, - "prov:unqualifiedForm": "prov:used".freeze, - range: "prov:Usage".freeze, - subPropertyOf: "prov:qualifiedInfluence".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Usage".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :removedKey, - domain: "prov:Removal".freeze, - isDefinedBy: "prov:".freeze, + domain: "http://www.w3.org/ns/prov#Removal".freeze, + "http://www.w3.org/ns/prov#category": "collections".freeze, + "http://www.w3.org/ns/prov#component": "collections".freeze, + "http://www.w3.org/ns/prov#constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, + "http://www.w3.org/ns/prov#definition": "The key removed in a Removal.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze, + "http://www.w3.org/ns/prov#n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze, + isDefinedBy: "http://www.w3.org/ns/prov#".freeze, label: "removedKey".freeze, - "prov:category": "collections".freeze, - "prov:component": "collections".freeze, - "prov:constraints": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints".freeze, - "prov:definition": "The key removed in a Removal.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal".freeze, - "prov:n": "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :sharesDefinitionWith, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :specializationOf, - domain: "prov:Entity".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/ns/prov#alternateOf".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "alternate".freeze, + "http://www.w3.org/ns/prov#constraints": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig".freeze, "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze], + "http://www.w3.org/ns/prov#definition": "An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity.".freeze, + "http://www.w3.org/ns/prov#dm": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-specialization".freeze, "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization".freeze], + "http://www.w3.org/ns/prov#inverse": "generalizationOf".freeze, + "http://www.w3.org/ns/prov#n": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-specialization".freeze, "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization".freeze], + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], label: "specializationOf".freeze, - "prov:category": "expanded".freeze, - "prov:component": "alternate".freeze, - "prov:constraints": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig".freeze, "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig".freeze], - "prov:definition": "An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity.".freeze, - "prov:dm": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-specialization".freeze, "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization".freeze], - "prov:inverse": "generalizationOf".freeze, - "prov:n": ["http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-specialization".freeze, "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization".freeze], - range: "prov:Entity".freeze, - "rdfs:seeAlso": "prov:alternateOf".freeze, - subPropertyOf: ["owl:topObjectProperty".freeze, "prov:alternateOf".freeze], - type: ["owl:AnnotationProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: ["http://www.w3.org/2002/07/owl#topObjectProperty".freeze, "http://www.w3.org/ns/prov#alternateOf".freeze], + type: ["http://www.w3.org/2002/07/owl#AnnotationProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :startedAtTime, comment: "The time at which an activity started. See also prov:endedAtTime.".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#editorialNote": "It is the intent that the property chain holds: (prov:qualifiedStart o prov:atTime) rdfs:subPropertyOf prov:startedAtTime.".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Start".freeze, "http://www.w3.org/ns/prov#atTime".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "startedAtTime".freeze, - "prov:category": "starting-point".freeze, - "prov:component": "entities-activities".freeze, - "prov:editorialNote": "It is the intent that the property chain holds: (prov:qualifiedStart o prov:atTime) rdfs:subPropertyOf prov:startedAtTime.".freeze, - "prov:qualifiedForm": ["prov:Start".freeze, "prov:atTime".freeze], - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :todo, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :unqualifiedForm, comment: "Classes and properties used to qualify relationships are annotated with prov:unqualifiedForm to indicate the property used to assert an unqualified provenance relation.".freeze, - isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "prov:".freeze], - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + isDefinedBy: ["http://www.w3.org/ns/prov#".freeze, "http://www.w3.org/ns/prov-o#".freeze], + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :used, comment: "A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven .".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedUsage".freeze, "http://www.w3.org/ns/prov#entity".freeze), + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "wasUsedBy".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Usage".freeze, "http://www.w3.org/ns/prov#qualifiedUsage".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "used".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedUsage".freeze, "prov:entity".freeze), - "prov:category": "starting-point".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "wasUsedBy".freeze, - "prov:qualifiedForm": ["prov:Usage".freeze, "prov:qualifiedUsage".freeze], - range: "prov:Entity".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :value, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#definition": "Provides a value that is a direct representation of an entity.".freeze, + "http://www.w3.org/ns/prov#dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-value".freeze, + "http://www.w3.org/ns/prov#editorialNote": ["The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue".freeze, "This property serves the same purpose as rdf:value, but has been reintroduced to avoid some of the definitional ambiguity in the RDF specification (specifically, 'may be used in describing structured values').".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "value".freeze, - "prov:category": "expanded".freeze, - "prov:component": "entities-activities".freeze, - "prov:definition": "Provides a value that is a direct representation of an entity.".freeze, - "prov:dm": "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-value".freeze, - "prov:editorialNote": ["The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue".freeze, "This property serves the same purpose as rdf:value, but has been reintroduced to avoid some of the definitional ambiguity in the RDF specification (specifically, 'may be used in describing structured values').".freeze], - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :wasAssociatedWith, comment: "An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity.".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedAssociation".freeze, "http://www.w3.org/ns/prov#agent".freeze), + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#inverse": "wasAssociateFor".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Association".freeze, "http://www.w3.org/ns/prov#qualifiedAssociation".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "wasAssociatedWith".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedAssociation".freeze, "prov:agent".freeze), - "prov:category": "starting-point".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:inverse": "wasAssociateFor".freeze, - "prov:qualifiedForm": ["prov:Association".freeze, "prov:qualifiedAssociation".freeze], - range: "prov:Agent".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Agent".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wasAttributedTo, comment: "Attribution is the ascribing of an entity to an agent.".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedAttribution".freeze, "http://www.w3.org/ns/prov#agent".freeze), + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#definition": "Attribution is the ascribing of an entity to an agent.".freeze, + "http://www.w3.org/ns/prov#inverse": "contributed".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Attribution".freeze, "http://www.w3.org/ns/prov#qualifiedAttribution".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "wasAttributedTo".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedAttribution".freeze, "prov:agent".freeze), - "prov:category": "starting-point".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:definition": "Attribution is the ascribing of an entity to an agent.".freeze, - "prov:inverse": "contributed".freeze, - "prov:qualifiedForm": ["prov:Attribution".freeze, "prov:qualifiedAttribution".freeze], - range: "prov:Agent".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Agent".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wasDerivedFrom, comment: "The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable.".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedDerivation".freeze, "http://www.w3.org/ns/prov#entity".freeze), + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#definition": "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.".freeze, + "http://www.w3.org/ns/prov#inverse": "hadDerivation".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Derivation".freeze, "http://www.w3.org/ns/prov#qualifiedDerivation".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "wasDerivedFrom".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedDerivation".freeze, "prov:entity".freeze), - "prov:category": "starting-point".freeze, - "prov:component": "derivations".freeze, - "prov:definition": "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.".freeze, - "prov:inverse": "hadDerivation".freeze, - "prov:qualifiedForm": ["prov:Derivation".freeze, "prov:qualifiedDerivation".freeze], - range: "prov:Entity".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wasEndedBy, comment: "End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity.".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedEnd".freeze, "http://www.w3.org/ns/prov#entity".freeze), + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "ended".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#End".freeze, "http://www.w3.org/ns/prov#qualifiedEnd".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "wasEndedBy".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedEnd".freeze, "prov:entity".freeze), - "prov:category": "expanded".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "ended".freeze, - "prov:qualifiedForm": ["prov:End".freeze, "prov:qualifiedEnd".freeze], - range: "prov:Entity".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wasGeneratedBy, - domain: "prov:Entity".freeze, - inverseOf: "prov:generated".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedGeneration".freeze, "http://www.w3.org/ns/prov#activity".freeze), + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "generated".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Generation".freeze, "http://www.w3.org/ns/prov#qualifiedGeneration".freeze], + inverseOf: "http://www.w3.org/ns/prov#generated".freeze, isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], label: "wasGeneratedBy".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedGeneration".freeze, "prov:activity".freeze), - "prov:category": "starting-point".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "generated".freeze, - "prov:qualifiedForm": ["prov:Generation".freeze, "prov:qualifiedGeneration".freeze], - range: "prov:Activity".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Activity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wasInfluencedBy, comment: ["Because prov:wasInfluencedBy is a broad relation, its more specific subproperties (e.g. prov:wasInformedBy, prov:actedOnBehalfOf, prov:wasEndedBy, etc.) should be used when applicable.".freeze, "This property has multiple RDFS domains to suit multiple OWL Profiles. See PROV-O OWL Profile.".freeze], domain: term( - type: "owl:Class".freeze, - unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/ns/prov#Activity".freeze, "http://www.w3.org/ns/prov#Agent".freeze, "http://www.w3.org/ns/prov#Entity".freeze) ), - inverseOf: "prov:influenced".freeze, + "http://www.w3.org/ns/prov#category": "qualified".freeze, + "http://www.w3.org/ns/prov#component": "agents-responsibility".freeze, + "http://www.w3.org/ns/prov#editorialNote": "The sub-properties of prov:wasInfluencedBy can be elaborated in more detail using the Qualification Pattern. For example, the binary relation :baking prov:used :spoon can be qualified by asserting :baking prov:qualifiedUsage [ a prov:Usage; prov:entity :spoon; prov:atLocation :kitchen ] .\n\nSubproperties of prov:wasInfluencedBy may also be asserted directly without being qualified.\n\nprov:wasInfluencedBy should not be used without also using one of its subproperties. \n".freeze, + "http://www.w3.org/ns/prov#inverse": "influenced".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Influence".freeze, "http://www.w3.org/ns/prov#qualifiedInfluence".freeze], + "http://www.w3.org/ns/prov#sharesDefinitionWith": "http://www.w3.org/ns/prov#Influence".freeze, + inverseOf: "http://www.w3.org/ns/prov#influenced".freeze, isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], label: "wasInfluencedBy".freeze, - "prov:category": "qualified".freeze, - "prov:component": "agents-responsibility".freeze, - "prov:editorialNote": "The sub-properties of prov:wasInfluencedBy can be elaborated in more detail using the Qualification Pattern. For example, the binary relation :baking prov:used :spoon can be qualified by asserting :baking prov:qualifiedUsage [ a prov:Usage; prov:entity :spoon; prov:atLocation :kitchen ] .\n\nSubproperties of prov:wasInfluencedBy may also be asserted directly without being qualified.\n\nprov:wasInfluencedBy should not be used without also using one of its subproperties. \n".freeze, - "prov:inverse": "influenced".freeze, - "prov:qualifiedForm": ["prov:Influence".freeze, "prov:qualifiedInfluence".freeze], - "prov:sharesDefinitionWith": "prov:Influence".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("prov:Activity".freeze, "prov:Agent".freeze, "prov:Entity".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/ns/prov#Activity".freeze, "http://www.w3.org/ns/prov#Agent".freeze, "http://www.w3.org/ns/prov#Entity".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wasInformedBy, comment: "An activity a2 is dependent on or informed by another activity a1, by way of some unspecified entity that is generated by a1 and used by a2.".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedCommunication".freeze, "http://www.w3.org/ns/prov#activity".freeze), + "http://www.w3.org/ns/prov#category": "starting-point".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "informed".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Communication".freeze, "http://www.w3.org/ns/prov#qualifiedCommunication".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "wasInformedBy".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedCommunication".freeze, "prov:activity".freeze), - "prov:category": "starting-point".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "informed".freeze, - "prov:qualifiedForm": ["prov:Communication".freeze, "prov:qualifiedCommunication".freeze], - range: "prov:Activity".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Activity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wasInvalidatedBy, - domain: "prov:Entity".freeze, - inverseOf: "prov:invalidated".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedInvalidation".freeze, "http://www.w3.org/ns/prov#activity".freeze), + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "invalidated".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Invalidation".freeze, "http://www.w3.org/ns/prov#qualifiedInvalidation".freeze], + inverseOf: "http://www.w3.org/ns/prov#invalidated".freeze, isDefinedBy: ["http://www.w3.org/ns/prov-o#".freeze, "http://www.w3.org/ns/prov-o-inverses#".freeze], label: "wasInvalidatedBy".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedInvalidation".freeze, "prov:activity".freeze), - "prov:category": "expanded".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "invalidated".freeze, - "prov:qualifiedForm": ["prov:Invalidation".freeze, "prov:qualifiedInvalidation".freeze], - range: "prov:Activity".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Activity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wasQuotedFrom, comment: "An entity is derived from an original entity by copying, or 'quoting', some or all of it.".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedQuotation".freeze, "http://www.w3.org/ns/prov#entity".freeze), + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "quotedAs".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Quotation".freeze, "http://www.w3.org/ns/prov#qualifiedQuotation".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "wasQuotedFrom".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedQuotation".freeze, "prov:entity".freeze), - "prov:category": "expanded".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "quotedAs".freeze, - "prov:qualifiedForm": ["prov:Quotation".freeze, "prov:qualifiedQuotation".freeze], - range: "prov:Entity".freeze, - subPropertyOf: "prov:wasDerivedFrom".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :wasRevisionOf, comment: "A revision is a derivation that revises an entity into a revised version.".freeze, - domain: "prov:Entity".freeze, + domain: "http://www.w3.org/ns/prov#Entity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedRevision".freeze, "http://www.w3.org/ns/prov#entity".freeze), + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "derivations".freeze, + "http://www.w3.org/ns/prov#inverse": "hadRevision".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Revision".freeze, "http://www.w3.org/ns/prov#qualifiedRevision".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "wasRevisionOf".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedRevision".freeze, "prov:entity".freeze), - "prov:category": "expanded".freeze, - "prov:component": "derivations".freeze, - "prov:inverse": "hadRevision".freeze, - "prov:qualifiedForm": ["prov:Revision".freeze, "prov:qualifiedRevision".freeze], - range: "prov:Entity".freeze, - subPropertyOf: "prov:wasDerivedFrom".freeze, - type: ["owl:AnnotationProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, + type: ["http://www.w3.org/2002/07/owl#AnnotationProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :wasStartedBy, comment: "Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity.".freeze, - domain: "prov:Activity".freeze, + domain: "http://www.w3.org/ns/prov#Activity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.w3.org/ns/prov#qualifiedStart".freeze, "http://www.w3.org/ns/prov#entity".freeze), + "http://www.w3.org/ns/prov#category": "expanded".freeze, + "http://www.w3.org/ns/prov#component": "entities-activities".freeze, + "http://www.w3.org/ns/prov#inverse": "started".freeze, + "http://www.w3.org/ns/prov#qualifiedForm": ["http://www.w3.org/ns/prov#Start".freeze, "http://www.w3.org/ns/prov#qualifiedStart".freeze], isDefinedBy: "http://www.w3.org/ns/prov-o#".freeze, label: "wasStartedBy".freeze, - "owl:propertyChainAxiom": list("prov:qualifiedStart".freeze, "prov:entity".freeze), - "prov:category": "expanded".freeze, - "prov:component": "entities-activities".freeze, - "prov:inverse": "started".freeze, - "prov:qualifiedForm": ["prov:Start".freeze, "prov:qualifiedStart".freeze], - range: "prov:Entity".freeze, - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/ns/prov#Entity".freeze, + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze # Extra definitions term :activityOfInfluence, - inverseOf: "prov:activity".freeze, + inverseOf: "http://www.w3.org/ns/prov#activity".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "activityOfInfluence".freeze term :agentOfInfluence, - inverseOf: "prov:agent".freeze, + inverseOf: "http://www.w3.org/ns/prov#agent".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "agentOfInfluence".freeze term :contributed, - inverseOf: "prov:wasAttributedTo".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasAttributedTo".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "contributed".freeze term :ended, - inverseOf: "prov:wasEndedBy".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasEndedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "ended".freeze term :entityOfInfluence, - inverseOf: "prov:entity".freeze, + inverseOf: "http://www.w3.org/ns/prov#entity".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "entityOfInfluence".freeze term :generalizationOf, - inverseOf: "prov:specializationOf".freeze, + inverseOf: "http://www.w3.org/ns/prov#specializationOf".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "generalizationOf".freeze term :generatedAsDerivation, - inverseOf: "prov:hadGeneration".freeze, + inverseOf: "http://www.w3.org/ns/prov#hadGeneration".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "generatedAsDerivation".freeze term :hadDelegate, - inverseOf: "prov:actedOnBehalfOf".freeze, + inverseOf: "http://www.w3.org/ns/prov#actedOnBehalfOf".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "hadDelegate".freeze term :hadDerivation, - inverseOf: "prov:wasDerivedFrom".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "hadDerivation".freeze term :hadInfluence, - inverseOf: "prov:influencer".freeze, + inverseOf: "http://www.w3.org/ns/prov#influencer".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "hadInfluence".freeze term :hadRevision, - inverseOf: "prov:wasRevisionOf".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasRevisionOf".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "hadRevision".freeze term :informed, - inverseOf: "prov:wasInformedBy".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasInformedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "informed".freeze term :locationOf, - inverseOf: "prov:atLocation".freeze, + inverseOf: "http://www.w3.org/ns/prov#atLocation".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "locationOf".freeze term :qualifiedAssociationOf, - inverseOf: "prov:qualifiedAssociation".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedAssociation".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedAssociationOf".freeze term :qualifiedAttributionOf, - inverseOf: "prov:qualifiedAttribution".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedAttribution".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedAttributionOf".freeze term :qualifiedCommunicationOf, - inverseOf: "prov:qualifiedCommunication".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedCommunication".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedCommunicationOf".freeze term :qualifiedDelegationOf, - inverseOf: "prov:qualifiedDelegation".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedDelegation".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedDelegationOf".freeze term :qualifiedDerivationOf, - inverseOf: "prov:qualifiedDerivation".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedDerivation".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedDerivationOf".freeze term :qualifiedEndOf, - inverseOf: "prov:qualifiedEnd".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedEnd".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedEndOf".freeze term :qualifiedGenerationOf, - inverseOf: "prov:qualifiedGeneration".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedGeneration".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedGenerationOf".freeze term :qualifiedInfluenceOf, - inverseOf: "prov:qualifiedInfluence".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedInfluence".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedInfluenceOf".freeze term :qualifiedInvalidationOf, - inverseOf: "prov:qualifiedInvalidation".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedInvalidation".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedInvalidationOf".freeze term :qualifiedQuotationOf, - inverseOf: "prov:qualifiedQuotation".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedQuotation".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedQuotationOf".freeze term :qualifiedSourceOf, - inverseOf: "prov:qualifiedPrimarySource".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedPrimarySource".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedSourceOf".freeze term :qualifiedStartOf, - inverseOf: "prov:qualifiedStart".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedStart".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedStartOf".freeze term :qualifiedUsingActivity, - inverseOf: "prov:qualifiedUsage".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedUsage".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "qualifiedUsingActivity".freeze term :quotedAs, - inverseOf: "prov:wasQuotedFrom".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasQuotedFrom".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "quotedAs".freeze term :revisedEntity, - inverseOf: "prov:qualifiedRevision".freeze, + inverseOf: "http://www.w3.org/ns/prov#qualifiedRevision".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "revisedEntity".freeze term :started, - inverseOf: "prov:wasStartedBy".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasStartedBy".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "started".freeze term :wasActivityOfInfluence, - inverseOf: "prov:hadActivity".freeze, + inverseOf: "http://www.w3.org/ns/prov#hadActivity".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "wasActivityOfInfluence".freeze term :wasAssociateFor, - inverseOf: "prov:wasAssociatedWith".freeze, + inverseOf: "http://www.w3.org/ns/prov#wasAssociatedWith".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "wasAssociateFor".freeze term :wasMemberOf, - inverseOf: "prov:hadMember".freeze, + inverseOf: "http://www.w3.org/ns/prov#hadMember".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "wasMemberOf".freeze term :wasPlanOf, - inverseOf: "prov:hadPlan".freeze, + inverseOf: "http://www.w3.org/ns/prov#hadPlan".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "wasPlanOf".freeze term :wasPrimarySourceOf, - inverseOf: "prov:hadPrimarySource".freeze, + inverseOf: "http://www.w3.org/ns/prov#hadPrimarySource".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "wasPrimarySourceOf".freeze term :wasRoleIn, - inverseOf: "prov:hadRole".freeze, + inverseOf: "http://www.w3.org/ns/prov#hadRole".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "wasRoleIn".freeze term :wasUsedBy, - inverseOf: "prov:used".freeze, + inverseOf: "http://www.w3.org/ns/prov#used".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "wasUsedBy".freeze term :wasUsedInDerivation, - inverseOf: "prov:hadUsage".freeze, + inverseOf: "http://www.w3.org/ns/prov#hadUsage".freeze, isDefinedBy: "http://www.w3.org/ns/prov-o-inverses#".freeze, label: "wasUsedInDerivation".freeze end diff --git a/lib/rdf/vocab/ptr.rb b/lib/rdf/vocab/ptr.rb index 00210b6..bc4abad 100644 --- a/lib/rdf/vocab/ptr.rb +++ b/lib/rdf/vocab/ptr.rb @@ -3,330 +3,189 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2009/pointers# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class PTR < RDF::StrictVocabulary - # # Pointer to a byte range with a defined start and a byte offset from there. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ByteOffsetCompoundPointer - # - # # Single pointer using a byte offset from the start of the reference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ByteOffsetPointer - # - # # Pointer to a range with a defined start and a byte snippet from there. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ByteSnippetCompoundPointer - # - # # Single pointer using a CSS selector. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CSSSelectorPointer - # - # # Pointer to a char range with a defined start and a char offset from there. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CharOffsetCompoundPointer - # - # # Single pointer using a character offset from the start of the reference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CharOffsetPointer - # - # # Pointer to a range with a defined start and a character snippet from there. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CharSnippetCompoundPointer - # - # # An abstract method made of a pair of pointers to a defined section to be subclassed for extensibility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CompoundPointer - # - # # Group of equivalent pointers that point to the same places. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EquivalentPointers - # - # # Generic single pointer that make use of an expression language such as xPath, CSS selectors, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExpressionPointer - # - # # Single pointer using line and char numbers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LineCharPointer - # - # # Generic single pointer based on an offset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OffsetPointer - # - # # Abstract Pointer to be subclassed for extensibility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pointer - # - # # Generic container for a group of Pointers - # # @return [RDF::Vocabulary::Term] - # attr_reader :PointersGroup - # - # # Group of related pointers you use together for some purpose. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RelatedPointers - # - # # Abstract pointer to a single point to be subclassed for extensibility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SinglePointer - # - # # Compound pointer to a range with a start and an end point. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StartEndPointer - # - # # An XML Namespace. - # # @return [RDF::Vocabulary::Term] - # attr_reader :XMLNamespace - # - # # Single pointer using an XPath expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :XPathPointer - # - # # Single pointer using an XPointer expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :XPointerPointer - # - # # Number of bytes counting from the start point. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byteOffset - # - # # Char number within a line starting at one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :charNumber - # - # # Number of characters counting from the start point. - # # @return [RDF::Vocabulary::Term] - # attr_reader :charOffset - # - # # Pointer to the end point of the range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endPointer - # - # # Expressions, such as xPath or CSS selectors, that identify points. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expression - # - # # A Pointer that is part of a Group - # # @return [RDF::Vocabulary::Term] - # attr_reader :groupPointer - # - # # Line number within the reference starting at one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lineNumber - # - # # The namespace being used for the XPath expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namespace - # - # # The namespace name being used for an XML Namespace. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namespaceName - # - # # Offset from the start of the reference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offset - # - # # The namespace prefix being used for an XML Namespace. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefix - # - # # Scope within which a single pointer operates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reference - # - # # Pointer to the start point of the range in a compound pointer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startPointer - # - # # Version for the expression language being used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # end PTR = Class.new(RDF::StrictVocabulary("http://www.w3.org/2009/pointers#")) do # Class definitions term :ByteOffsetCompoundPointer, comment: "Pointer to a byte range with a defined start and a byte offset from there.".freeze, label: "Byte Offset Compound Pointer".freeze, - subClassOf: "ptr:CompoundPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#CompoundPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ByteOffsetPointer, comment: "Single pointer using a byte offset from the start of the reference.".freeze, label: "Byte Offset Pointer".freeze, - subClassOf: "ptr:OffsetPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#OffsetPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ByteSnippetCompoundPointer, comment: "Pointer to a range with a defined start and a byte snippet from there.".freeze, label: "Byte Snippet Compound Pointer".freeze, - subClassOf: "ptr:CompoundPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#CompoundPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CSSSelectorPointer, comment: "Single pointer using a CSS selector.".freeze, label: "CSS selector Pointer".freeze, - subClassOf: "ptr:ExpressionPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#ExpressionPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CharOffsetCompoundPointer, comment: "Pointer to a char range with a defined start and a char offset from there.".freeze, label: "Char Offset Compound Pointer".freeze, - subClassOf: "ptr:CompoundPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#CompoundPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CharOffsetPointer, comment: "Single pointer using a character offset from the start of the reference.".freeze, label: "Char Offset Pointer".freeze, - subClassOf: "ptr:OffsetPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#OffsetPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CharSnippetCompoundPointer, comment: "Pointer to a range with a defined start and a character snippet from there.".freeze, label: "Char Snippet Compound Pointer".freeze, - subClassOf: "ptr:CompoundPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#CompoundPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CompoundPointer, comment: "An abstract method made of a pair of pointers to a defined section to be subclassed for extensibility.".freeze, label: "Compound Pointer".freeze, - subClassOf: "ptr:Pointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#Pointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EquivalentPointers, comment: "Group of equivalent pointers that point to the same places.".freeze, label: "Equivalent Pointers".freeze, - subClassOf: "ptr:PointersGroup".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#PointersGroup".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExpressionPointer, comment: "Generic single pointer that make use of an expression language such as xPath, CSS selectors, etc.".freeze, label: "Expression Pointer".freeze, - subClassOf: "ptr:SinglePointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#SinglePointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LineCharPointer, comment: "Single pointer using line and char numbers.".freeze, label: "Line-Char Pointer".freeze, - subClassOf: "ptr:SinglePointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#SinglePointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OffsetPointer, comment: "Generic single pointer based on an offset.".freeze, label: "Offset Pointer".freeze, - subClassOf: "ptr:SinglePointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#SinglePointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Pointer, comment: "Abstract Pointer to be subclassed for extensibility.".freeze, label: "Pointer".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PointersGroup, comment: "Generic container for a group of Pointers".freeze, label: "Pointers Group".freeze, - subClassOf: "ptr:Pointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#Pointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RelatedPointers, comment: "Group of related pointers you use together for some purpose.".freeze, label: "Related Pointers".freeze, - subClassOf: "ptr:PointersGroup".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#PointersGroup".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SinglePointer, comment: "Abstract pointer to a single point to be subclassed for extensibility.".freeze, label: "Single Pointer".freeze, - subClassOf: "ptr:Pointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#Pointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StartEndPointer, comment: "Compound pointer to a range with a start and an end point.".freeze, label: "Start-End Pointer".freeze, - subClassOf: "ptr:CompoundPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#CompoundPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :XMLNamespace, comment: "An XML Namespace.".freeze, label: "XMLNamespace".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :XPathPointer, comment: "Single pointer using an XPath expression.".freeze, label: "XPath Pointer".freeze, - subClassOf: "ptr:ExpressionPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#ExpressionPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :XPointerPointer, comment: "Single pointer using an XPointer expression.".freeze, label: "XPointer Pointer".freeze, - subClassOf: "ptr:XPathPointer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2009/pointers#XPathPointer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :byteOffset, comment: "Number of bytes counting from the start point.".freeze, - domain: "ptr:ByteOffsetCompoundPointer".freeze, + domain: "http://www.w3.org/2009/pointers#ByteOffsetCompoundPointer".freeze, label: "byte offset".freeze, - range: "xsd:positiveInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :charNumber, comment: "Char number within a line starting at one.\n\t\t".freeze, - domain: "ptr:LineCharPointer".freeze, + domain: "http://www.w3.org/2009/pointers#LineCharPointer".freeze, label: "char number".freeze, - range: "xsd:positiveInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :charOffset, comment: "Number of characters counting from the start point.".freeze, - domain: "ptr:CharOffsetCompoundPointer".freeze, + domain: "http://www.w3.org/2009/pointers#CharOffsetCompoundPointer".freeze, label: "char offset".freeze, - range: "xsd:positiveInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endPointer, comment: "Pointer to the end point of the range.".freeze, - domain: "ptr:StartEndPointer".freeze, + domain: "http://www.w3.org/2009/pointers#StartEndPointer".freeze, label: "end pointer".freeze, - range: "ptr:SinglePointer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2009/pointers#SinglePointer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expression, comment: "Expressions, such as xPath or CSS selectors, that identify points.".freeze, - domain: "ptr:ExpressionPointer".freeze, + domain: "http://www.w3.org/2009/pointers#ExpressionPointer".freeze, label: "expression".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :groupPointer, comment: "A Pointer that is part of a Group".freeze, - domain: "ptr:PointersGroup".freeze, + domain: "http://www.w3.org/2009/pointers#PointersGroup".freeze, label: "groupPointer".freeze, - range: "ptr:Pointer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2009/pointers#Pointer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lineNumber, comment: "Line number within the reference starting at one.\n\t\t".freeze, - domain: "ptr:LineCharPointer".freeze, + domain: "http://www.w3.org/2009/pointers#LineCharPointer".freeze, label: "line number".freeze, - range: "xsd:positiveInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :namespace, comment: "The namespace being used for the XPath expression.".freeze, - domain: "ptr:XPathPointer".freeze, + domain: "http://www.w3.org/2009/pointers#XPathPointer".freeze, label: "namespace".freeze, - range: "ptr:XMLNamespace".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2009/pointers#XMLNamespace".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :namespaceName, comment: "The namespace name being used for an XML Namespace.".freeze, - domain: "ptr:XMLNamespace".freeze, + domain: "http://www.w3.org/2009/pointers#XMLNamespace".freeze, label: "namespace name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offset, comment: "Offset from the start of the reference.".freeze, - domain: "ptr:OffsetPointer".freeze, + domain: "http://www.w3.org/2009/pointers#OffsetPointer".freeze, label: "offset".freeze, - range: "xsd:positiveInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prefix, comment: "The namespace prefix being used for an XML Namespace.".freeze, - domain: "ptr:XMLNamespace".freeze, + domain: "http://www.w3.org/2009/pointers#XMLNamespace".freeze, label: "prefix".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reference, comment: "Scope within which a single pointer operates.".freeze, - domain: "ptr:SinglePointer".freeze, + domain: "http://www.w3.org/2009/pointers#SinglePointer".freeze, label: "reference".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startPointer, comment: "Pointer to the start point of the range in a compound pointer.".freeze, - domain: "ptr:CompoundPointer".freeze, + domain: "http://www.w3.org/2009/pointers#CompoundPointer".freeze, label: "start pointer".freeze, - range: "ptr:SinglePointer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2009/pointers#SinglePointer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :version, comment: "Version for the expression language being used.".freeze, - domain: "ptr:ExpressionPointer".freeze, + domain: "http://www.w3.org/2009/pointers#ExpressionPointer".freeze, label: "version".freeze, - range: "rdfs:Literal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/rdau.rb b/lib/rdf/vocab/rdau.rb index 7c283b9..ca937bb 100644 --- a/lib/rdf/vocab/rdau.rb +++ b/lib/rdf/vocab/rdau.rb @@ -3,11 +3,6 @@ # This file generated automatically using rdf vocabulary format from http://rdaregistry.info/Elements/u require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class RDAU < RDF::StrictVocabulary - # end RDAU = Class.new(RDF::StrictVocabulary("http://rdaregistry.info/Elements/u")) do # Property definitions @@ -19,7 +14,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is respondent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60002", definition: "Relates an agent to a resource that is a thesis or dissertation associated with an academic degree that is approved by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/degreeGrantingInstitutionOf.en".freeze, @@ -28,7 +23,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is degree granting institution of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60003", definition: "Relates an agent hosting an event, exhibit, conference, etc., which gave rise to a resource to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/hostInstitutionOf.en".freeze, @@ -37,7 +32,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is host institution of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60004", definition: "Relates an agent to a resource that involves a responsibility of an agent for managing the financial, technical, and organizational aspects of a production for stage, screen, sound recording, television, webcast, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/productionCompanyOf.en".freeze, @@ -46,7 +41,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is production company of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60005", definition: "Relates an agent to a resource of a court governed by court rules, regardless of their official nature to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/courtGovernedOf.en".freeze, @@ -55,7 +50,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is court governed of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60006", definition: "Relates an agent to a resource brought together with resources from various sources that are arranged, described, and catalogued as a collection.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/collectorOf.en".freeze, @@ -64,7 +59,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is collector of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60604".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60007", definition: "Relates a curator to a resource that is listed or inventoried in an aggregate resource such as a collection of resources.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/collectionRegistrarOf.en".freeze, @@ -73,7 +68,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is collection registrar of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60604".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60008", definition: "Relates an agent to a resource that is deposited into the custody of another agent without transferring ownership.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/depositorOf.en".freeze, @@ -82,7 +77,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is depositor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60628".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60009", definition: "Relates an agent to a resource that involves a responsibility of an agent for the general management and supervision of a filmed performance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/filmDirectorOf.en".freeze, @@ -91,7 +86,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is film director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60673".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60010", definition: "Relates an agent to a resource that involves a responsibility of an agent for the general management and supervision of a radio program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/radioDirectorOf.en".freeze, @@ -100,7 +95,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is radio director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60673".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60011", definition: "Relates an agent to a resource that involves a responsibility of an agent for the general management and supervision of a television program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/televisionDirectorOf.en".freeze, @@ -109,7 +104,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is television director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60673".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60012", definition: "Relates an agent to a resource donated to another owner.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/donorOf.en".freeze, @@ -118,7 +113,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is donor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60630".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60013", definition: "Relates an agent to a resource that is sold to another owner who is an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sellerOf.en".freeze, @@ -127,7 +122,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is seller of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60630".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60014", definition: "Relates an agent to a resource that is a law, regulation, constitution, court rule, etc. enacted by a government body.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/enactingJurisdictionOf.en".freeze, @@ -136,7 +131,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is enacting jurisdiction of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60015", definition: "Relates an agent to a place that is a jurisdiction governed by a law, regulation, etc., that was enacted by another government.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/jurisdictionGovernedOf.en".freeze, @@ -144,7 +139,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60097".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is jurisdiction governed of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60016", definition: "Relates an agent to a resource that includes a contribution by an agent of leading of a performing group in a musical or dramatic presentation, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60843".freeze, "http://rdaregistry.info/Elements/u/P60845".freeze], @@ -154,7 +149,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is conductor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60017", definition: "Relates an agent to a resource that includes a contribution by an agent of acting as a cast member or player in a musical or dramatic presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60027".freeze, @@ -164,18 +159,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is actor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60018", definition: "Relates a performer who contributes to a resource by appearing on screen to provide contextual or background information. an on-screen presenter may appear in nonfiction moving image materials or in introductions to fiction moving image materials to a resource.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60825".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/onscreenPresenterOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Appearance in nonfiction moving image materials or in introductions to fiction moving image materials is included. Appearance on screen in a non-performing role is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60143".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is onscreen presenter of".freeze, - "skos:scopeNote": "Appearance in nonfiction moving image materials or in introductions to fiction moving image materials is included. Appearance on screen in a non-performing role is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60019", definition: "Relates an agent to a resource that includes a contribution by an agent of dancing in a musical or dramatic presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dancerOf.en".freeze, @@ -184,7 +179,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is dancer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60020", definition: "Relates an agent to a resource that includes a contribution by an agent of teaching or providing a demonstration.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/instructorOf.en".freeze, @@ -193,7 +188,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is instructor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60021", definition: "Relates an agent to a resource that includes a contribution by an agent who is a performer of leading a program, often broadcast, that includes other performers.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/hostOf.en".freeze, @@ -202,7 +197,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is host of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60022", definition: "Relates an agent to a resource that includes a contribution by an agent of leading a program, often broadcast, where topics are discussed, usually with participation of experts in fields related to the discussion.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/moderatorOf.en".freeze, @@ -211,7 +206,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is moderator of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60023", definition: "Relates an agent to a resource that includes a contribution by an agent of manipulating, controlling, or directing puppets or marionettes in a moving image production or a musical or dramatic presentation or entertainment".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/puppeteerOf.en".freeze, @@ -220,7 +215,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is puppeteer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60024", definition: "Relates an agent to a resource that includes a contribution by an agent of participating in a program, often broadcast, where topics are discussed, usually with participation of experts in fields related to the discussion.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/panelistOf.en".freeze, @@ -229,7 +224,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is panelist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60025", definition: "Relates an agent to a resource that includes a contribution by an agent of playing a musical instrument.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/instrumentalistOf.en".freeze, @@ -238,7 +233,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is instrumentalist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60026", definition: "Relates a performer who contributes to a resource by providing interpretation, analysis, or a discussion of the subject matter on a recording, film, or other audiovisual medium to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/commentatorOf.en".freeze, @@ -247,7 +242,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is commentator of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60027", definition: "Relates an agent to a resource that includes a contribution by an agent of providing the voice for characters in radio and audio productions and for animated characters in moving image resources, as well as voice-overs in radio and television commercials, dubbed resources, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/voiceActorOf.en".freeze, @@ -256,7 +251,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is voice actor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60017".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60028", definition: "Relates an agent to an resource that includes a contribution by an agent of reading aloud or giving an account of an act, occurrence, or other event.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/narratorOf.en".freeze, @@ -265,7 +260,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is narrator of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60029", definition: "Relates an agent to a resource that includes a contribution by an agent who is a performer of relaying a story with dramatic or theatrical interpretation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/storytellerOf.en".freeze, @@ -274,7 +269,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is storyteller of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60030", definition: "Relates an agent to a resource that includes a contribution by an agent of speaking words, such as a lecture, speech, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/speakerOf.en".freeze, @@ -283,7 +278,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is speaker of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60031", definition: "Relates an agent to a resource that includes a contribution by an agent who is a performer of voice, with or without instrumental accompaniment, to produce music.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/singerOf.en".freeze, @@ -292,7 +287,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is singer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60615".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60032", definition: "Relates an agent held to be a channel of communication between the earthly world and a world of spirits to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mediumOf.en".freeze, @@ -301,7 +296,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is medium of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60033", definition: "Relates an agent to a resource that involves a responsibility of an agent for most of the business aspects of the production of a film.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/filmProducerOf.en".freeze, @@ -310,7 +305,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is film producer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60668".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60034", definition: "Relates an agent to a resource that involves a responsibility of an agent for most of the business aspects of the production of a radio program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/radioProducerOf.en".freeze, @@ -319,7 +314,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is radio producer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60668".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60035", definition: "Relates an agent to a resource that involves a responsibility of an agent for most of the business aspects of the production of a television program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/televisionProducerOf.en".freeze, @@ -328,21 +323,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is television producer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60668".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60036", definition: "Relates an agent to a nomen that is a pseudonym or other appellation used by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/alternateIdentity.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has alternate identity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60037", definition: "Relates a real agent who assumes an alternate identity to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/realIdentity.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has real identity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60045", definition: "Relates a resource to an agent who is a candidate for a degree who defends or opposes a thesis provided by the praeses in an academic disputation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/respondent.en".freeze, @@ -351,14 +346,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has respondent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60046", definition: "Relates a name to a categorization indicating that a name is insufficient to differentiate between two or more entities.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/undifferentiatedNameIndicator.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has undifferentiated name indicator".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60047", altLabel: "type of agent".freeze, definition: "Relates an agent to a type to which an agent belongs.".freeze, @@ -366,47 +361,47 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has category of agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60048", definition: "Relates a resource to a categorization reflecting the format of the storage medium and housing of a carrier in combination with the type of intermediation device required to view, play, run, or otherwise access the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/carrierType.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has carrier type".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60049", definition: "Relates a resource to a categorization reflecting a fundamental form of communication in which a content is expressed and a human sense through which it is intended to be perceived.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contentType.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Content type also reflects the number of spatial dimensions and the presence or absence of movement in which content expressed in the form of an image or images is intended to be perceived.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has content type".freeze, - "skos:scopeNote": "Content type also reflects the number of spatial dimensions and the presence or absence of movement in which content expressed in the form of an image or images is intended to be perceived.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60050", definition: "Relates a resource to a categorization reflecting the general type of intermediation device required to view, play, run, or otherwise access the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mediaType.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has media type".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60051", definition: "Relates a resource to a categorization reflecting whether a resource is issued in one or more parts, the way it is updated, and its intended termination.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/modeOfIssuance.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has mode of issuance".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60052", definition: "Relates a resource to an appellation of resource that consists of a code, number, or other string, usually independent of natural language and social naming conventions, used to identify a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60139".freeze, "http://rdaregistry.info/Elements/u/P60140".freeze, "http://rdaregistry.info/Elements/u/P60945".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForResource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60938".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has identifier for resource".freeze, - "skos:scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60919".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60053", definition: "Relates an agent to an appellation of agent that consists of a code, number, or other string, usually independent of natural language and social naming conventions, used to identify an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForAgent.en".freeze, @@ -415,14 +410,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has identifier for agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60919".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60054", definition: "Relates a resource to a characteristic, other than form, date, or place of origin, that serves to differentiate a resource from another resource with the same preferred title of resource. (Deorecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/otherDistinguishingCharacteristicOfResource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has other distinguishing characteristic of resource (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60055", definition: "Relates a resource to a characteristic that applies to the carrier or carriers of the specific early printed resource being described and is assumed not to apply to other resources exemplifying the same resource. includes rubrication, illumination, and other hand colouring, manuscript additions, and binding. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/itemSpecificCarrierCharacteristicOfEarlyPrintedResource.en".freeze, @@ -430,7 +425,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource-specific carrier characteristic of early printed resource (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60056".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60056", definition: "Relates a resource to a modification that is specific to a resource and is assumed not to apply to other resources exemplifying the same resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60055".freeze, @@ -438,14 +433,14 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has modification of resource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60057", definition: "Relates a resource to a citation for a resource in the form preferred by a creator, publisher, custodian, indexing or abstracting service, or other agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredCitation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has preferred citation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60058", altLabel: "has form of resource".freeze, definition: "Relates a resource to a type to which a resource belongs.".freeze, @@ -454,7 +449,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has category of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60944".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60059", definition: "Relates a resource to a designation for one or more regions of the world for which a videodisc or video game carrier is encoded, indicating that playback is restricted to a device configured to decode it.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/regionalEncoding.en".freeze, @@ -462,7 +457,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has regional encoding".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60350".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60060", definition: "Relates a resource to an agent who approves a resource that is a thesis or dissertation associated with an academic degree.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/degreeGrantingInstitution.en".freeze, @@ -471,7 +466,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has degree granting institution".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60061", definition: "Relates a resource to an agent who hosts a conference, exhibition, or other event that gives rise to a resource, but has little or no responsibility of an agent for the content.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/hostInstitution.en".freeze, @@ -480,7 +475,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has host institution".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60062", definition: "Relates a resource to an agent who is responsible for managing the financial, technical, and organizational aspects of a production for stage, screen, sound recording, television, webcast, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/productionCompany.en".freeze, @@ -489,7 +484,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has production company".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60063", definition: "Relates a resource to a country with which an agent is identified.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/countryAssociatedWithPerson.en".freeze, @@ -497,7 +492,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60999".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has country associated with agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60064", definition: "Relates a resource to a country, state, province, etc., or local place in which an organization has its headquarters. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/locationOfHeadquarters.en".freeze, @@ -505,7 +500,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has location of headquarters (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60325".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60065", definition: "Relates a resource to a court governed by court rules, regardless of their official nature.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/courtGoverned.en".freeze, @@ -514,7 +509,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has court governed".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60066", definition: "Relates a resource to a curator that brings together resources from various sources that are arranged, described, or catalogued as a collection.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/collector.en".freeze, @@ -523,7 +518,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has collector".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60376".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60067", definition: "Relates a resource to a curator that lists or inventories resources in an aggregate resource such as a collection of resources.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/collectionRegistrar.en".freeze, @@ -532,7 +527,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has collection registrar".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60376".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60068", definition: "Relates a resource to an agent who is a current owner of a resource who deposits the resource into the custody of another agent without transferring ownership.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/depositor.en".freeze, @@ -541,7 +536,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has depositor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60400".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60069", definition: "Relates a resource to a timespan associated with a claim of protection under copyright or a similar regime.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/copyrightDate.en".freeze, @@ -549,7 +544,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61108".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has copyright date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60070", definition: "Relates a resource to a timespan during which a published resource is distributed.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfDistribution.en".freeze, @@ -558,7 +553,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of distribution".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61020".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60071", definition: "Relates a resource to a timespan during which an unpublished resource is inscribed, fabricated, constructed, or otherwise produced.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfProduction.en".freeze, @@ -567,7 +562,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of production".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61020".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60072", definition: "Relates a resource to a timespan during which a published resource is printed, duplicated, cast, or otherwise manufactured.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfManufacture.en".freeze, @@ -576,7 +571,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of manufacture".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61020".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60073", definition: "Relates a resource to a timespan during which a published resource is published, released, or issued.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfPublication.en".freeze, @@ -585,7 +580,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of publication".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61020".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60074", definition: "Relates a resource to a timespan associated with recording, filming, etc., the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfCapture.en".freeze, @@ -593,7 +588,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60976".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of capture".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60075", definition: "Relates a nomen to a date or range of dates that is associated with the use of an appellation of an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfUsage.en".freeze, @@ -601,7 +596,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60986".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of usage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60076", definition: "Relates an agent to a date or range of dates indicative of a period in which an agent was active in its primary field of endeavor.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/periodOfActivityOfAgent.en".freeze, @@ -610,53 +605,53 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has period of activity of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60324".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60077", definition: "Relates a resource to a designation of a named revision of an edition in a language or script that differs from that recorded in a designation of a named revision of an edition element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelDesignationOfNamedRevisionOfEdition.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel designation of named revision of edition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60078", definition: "Relates a resource to a designation of edition in a language or script that differs from that recorded in a designation of edition element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelDesignationOfEdition.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel designation of edition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60079", definition: "Relates a resource to a designation of a sequencing of a conference, etc., within a series of conferences, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/numberOfConference.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has number of conference".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60080", definition: "Relates a resource to a designation in the form of numbers or alphabetic characters, or a date or other timespan, that is used to indicate a sequence of a part resource within a whole resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/numberingOfPart.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Numbering may consist of a numeral, a letter, any other character, or the combination of these with or without an accompanying caption, and/or a chronological designation.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has numbering of part".freeze, - "skos:scopeNote": "Numbering may consist of a numeral, a letter, any other character, or the combination of these with or without an accompanying caption, and/or a chronological designation.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60081", definition: "Relates a resource to a designation of a sequencing of a part or parts within a series.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/numberingWithinSequence.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Numbering may include dates or other timespans, alphanumeric or other characters, and an accompanying caption.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61209".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has numbering within sequence".freeze, - "skos:scopeNote": "Numbering may include dates or other timespans, alphanumeric or other characters, and an accompanying caption.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60082", definition: "Relates a resource to a designation of a sequencing of a part or parts within a subseries. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/numberingWithinSubseries.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Numbering may consist of a numeral, a letter, any other character, or the combination of these with or without an accompanying caption and/or a chronological designation. (Deprecated)".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has numbering within subseries (Deprecated".freeze, - "skos:scopeNote": "Numbering may consist of a numeral, a letter, any other character, or the combination of these with or without an accompanying caption and/or a chronological designation. (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60083", definition: "Relates a resource to a resource in a digital format that is a result of a transfer of a resource in an analog format.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/electronicReproduction.en".freeze, @@ -665,7 +660,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has electronic reproduction".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60272".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60084", definition: "Relates a resource to an agent who is a director who is responsible for the general management and supervision of a filmed performance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/filmDirector.en".freeze, @@ -674,7 +669,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has film director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60449".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60085", definition: "Relates a resource to an agent who is a director who is responsible for the general management and supervision of a radio program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/radioDirector.en".freeze, @@ -683,7 +678,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has radio director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60449".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60086", definition: "Relates a resource to an agent who is a director who is responsible for the general management and supervision of a television program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/televisionDirector.en".freeze, @@ -692,14 +687,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has television director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60449".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60087", definition: "Relates a resource to a name of distributor in a language or script that differs from that recorded in a name of distributor element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelNameOfDistributor.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel name of distributor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60088", definition: "Relates a resource to a dramatic resource adapted from another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dramatizedAs.en".freeze, @@ -708,21 +703,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is dramatized as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60089", definition: "Relates an agent to a field of endeavour, area of expertise, competence, responsibility, jurisdiction etc., in which an agent is engaged.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fieldOfActivityOfAgent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has field of activity of agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60090", definition: "Relates a resource to a formal recognition of excellence or other merit given by an award- or prize-granting body, for the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/award.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has award".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60091", definition: "Relates a resource to a former owner of a resource that donated the resource to another owner.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/donor.en".freeze, @@ -731,7 +726,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has donor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60401".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60092", definition: "Relates a resource to a former owner of a resource that sold the resource to another owner.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/seller.en".freeze, @@ -740,7 +735,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has seller".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60401".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60093", definition: "Relates a resource to a general type of data content encoded in a computer file.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fileType.en".freeze, @@ -748,14 +743,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has file type".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60350".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60095", definition: "Relates a resource to a group with which an agent is affiliated or is affiliated through employment, membership, cultural identity, etc. (Deprecation)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/affiliation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has affiliation (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60096", definition: "Relates a resource to an agent who is a government enacting a resourcce that is a law, regulation, constitution, court rule, or other legislation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/enactingJurisdiction.en".freeze, @@ -764,7 +759,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has enacting jurisdiction".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60097", definition: "Relates a place that is a jurisdiction to an agent who is a government of a jurisdiction governed by a law, regulation, etc., that was enacted by another government.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/jurisdictionGoverned.en".freeze, @@ -773,21 +768,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has jurisdiction governed".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61018".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60098", definition: "Relates a resource to a language an agent uses in its communications, when writing for publication, broadcasting, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/languageOfAgent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has language of agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60099", definition: "Relates a resource to a language used for the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/languageOfResource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has language of resource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60100", definition: "Relates a resource to a larger resource of which a part is a discrete component that exactly reproduces a related resource embodying a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/facsimilePartOf.en".freeze, @@ -796,7 +791,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is facsimile part of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60101".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60101", altLabel: "is contained in resource".freeze, definition: "Relates a resource to a resource that has another resource as a discrete component.".freeze, @@ -807,7 +802,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is part of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60714".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60102", altLabel: "is prequel to".freeze, definition: "Relates a resource to a resource that extends the narrative of another resource forwards in time.".freeze, @@ -817,34 +812,34 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sequel".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60103", definition: "Relates a resource to a resource whose content partially supersedes and renders obsolete the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/replacedInPartBy.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This relationship applies generally to single-part units, multipart monographs, and integrating resources.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60479".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is replaced in part by".freeze, - "skos:scopeNote": "This relationship applies generally to single-part units, multipart monographs, and integrating resources.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60104", definition: "Relates a resource to a resource whose content supersedes and renders obsolete the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/replacedBy.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This relationship applies generally to single-part units, multipart monographs, and integrating resources.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60480".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is replaced by".freeze, - "skos:scopeNote": "This relationship applies generally to single-part units, multipart monographs, and integrating resources.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60105", definition: "Relates a resource to a listing of agents, families, or corporate bodies making contributions to the artistic and/or technical production of a resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/artisticAndOrTechnicalCredit.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has artistic or technical credit (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60106", definition: "Relates a resource to a literary composition in verse form adapted from another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedInVerseAs.en".freeze, @@ -853,7 +848,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted in verse as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60107", definition: "Relates a resource to a local place in which a conference, congress, meeting, exhibition, fair, festival, etc., was held.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfConference.en".freeze, @@ -862,14 +857,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of conference".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61018".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60108", definition: "Relates a resource to a name of manufacturer in a language or script that differs from that recorded in a name of manufacturer element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelNameOfManufacturer.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel name of manufacturer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60109", definition: "Relates a resource to a mathematical system for identifying a place covered by the cartographic content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60345".freeze, "http://rdaregistry.info/Elements/u/P60346".freeze, "http://rdaregistry.info/Elements/u/P60347".freeze], @@ -878,7 +873,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61191".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has coordinates of cartographic content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60110", definition: "Relates a resource to a motion picture that is based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsMotionPicture.en".freeze, @@ -887,7 +882,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as motion picture".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60111", definition: "Relates a resource to a moving image resource in which spoken dialogue is translated into a language different from that of an original resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dubbedVersionOf.en".freeze, @@ -896,7 +891,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is dubbed version of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60244".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60112", definition: "Relates a resource to a moving image resource that translates spoken dialogue of an original resource into a different language.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dubbedVersion.en".freeze, @@ -905,7 +900,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has dubbed version".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60280".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60113", definition: "Relates a resource to a musical resource that is an ornamental passage for a soloist added to a musical resource, such as a concerto, by the same or a different composer.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/cadenza.en".freeze, @@ -914,7 +909,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has cadenza".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60114", definition: "Relates a resource to a musical resource from which melodic, thematic, or harmonic material is taken to form a discrete theme, which is repeated one or more times with subsequent modifications.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variationsBasedOn.en".freeze, @@ -923,7 +918,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variations based on".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60115", definition: "Relates a resource to a musical resource in which melodic, thematic, or harmonic material taken from another resource forms a discrete theme, which is repeated one or more times with subsequent modifications.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/modifiedByVariationAs.en".freeze, @@ -932,7 +927,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is modified by variation as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60116", definition: "Relates a resource to a musical resource, such as a concerto, to which is added a musical resource that is an ornamental passage for a soloist by the same or a different composer.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/cadenzaComposedFor.en".freeze, @@ -941,7 +936,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is cadenza composed for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60117", definition: "Relates a resource to a resource that is a musical or choreographic resource such as an opera, a ballet, or other resource for the musical stage, or an oratorio, that is complemented by a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/librettoFor.en".freeze, @@ -950,7 +945,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is libretto for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60118", definition: "Relates a resource to a musical resource that complements a resource that is a play or other resource for the stage that is realized as spoken word.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/incidentalMusic.en".freeze, @@ -959,7 +954,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has incidental music".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60723".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60119", definition: "Relates an agent to a name of agent that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantNameOfAgent.en".freeze, @@ -968,7 +963,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant name of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60368".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60120", definition: "Relates a resource to a motion picture, radio program, television program, or video based on an earlier resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/remadeAs.en".freeze, @@ -977,7 +972,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is remade as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60121", definition: "Relates a resource to a non-dramatic musical resource, other than an oratorio, that uses a text of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/setToMusicAs.en".freeze, @@ -986,7 +981,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is set to music as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60122", definition: "Relates a resource to a note on resource that identifies an issue or part of a multipart monograph or serial, or an iteration of an integrating resource that has been used as a basis for the identification of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnIssuePartOrIterationUsedAsBasisForIdentificationOfResource.en".freeze, @@ -994,7 +989,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on issue, part, or iteration used as basis for identification of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60123", definition: "Relates a resource to a note on resource that provides information on variations in the content characteristics of parts, issues, or iterations of a diachronic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnChangesInContentCharacteristics.en".freeze, @@ -1002,7 +997,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on changes in content characteristics".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60124", definition: "Relates a resource to a note on resource that provides information on variations in the carrier characteristics that are found on resources of parts, issues, or iterations of a diachronic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnChangesInCarrierCharacteristics.en".freeze, @@ -1010,7 +1005,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on changes in carrier characteristics".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60125", definition: "Relates a resource to a note on resource that provides information on the distribution of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnDistributionStatement.en".freeze, @@ -1018,7 +1013,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on distribution statement".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60126", definition: "Relates a resource to a note on resource that provides information on the manufacture of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnManufactureStatement.en".freeze, @@ -1026,7 +1021,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on manufacture statement".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60127", definition: "Relates a resource to a note on resource that provides information on the production of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnProductionStatement.en".freeze, @@ -1034,7 +1029,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on production statement".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60128", definition: "Relates a resource to a note on resource that provides information on the publication of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnPublicationStatement.en".freeze, @@ -1042,7 +1037,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on publication statement".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60129", definition: "Relates a resource to a note providing details on the currency of the contents, on the frequency of release of issues or parts of a serial or the frequency of updates to an integrating resource, or on changes in frequency. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnFrequency.en".freeze, @@ -1050,7 +1045,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on frequency (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60130", definition: "Relates a resource to note on resource that provides information on an agent, and their function, who is responsible for a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnStatementOfResponsibility.en".freeze, @@ -1058,7 +1053,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on statement of responsibility".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60131", definition: "Relates a resource to a note on resource that provides information on a series with which a resource is associated.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnSeriesStatement.en".freeze, @@ -1066,7 +1061,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on series statement".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60132", definition: "Relates a resource to a note on resource that provides information on a copyright date.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnCopyrightDate.en".freeze, @@ -1074,7 +1069,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on copyright date".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60133", definition: "Relates a resource to a note on resource that provides information on the dimensions of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnDimensionsOfResource.en".freeze, @@ -1082,7 +1077,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on dimensions of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60134", definition: "Relates a resource to a note on resource that provides information on the extent of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnExtentOfResource.en".freeze, @@ -1090,7 +1085,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on extent of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60135", definition: "Relates a resource to a note providing information on the range of designators that is used to indicate a sequence of the individual parts or iterations of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnNumberingOfSequence.en".freeze, @@ -1098,7 +1093,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on numbering of sequence".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60136", definition: "Relates a resource to a note on resource that provides information on inaccuracies appearing in titles, complex changes in titles, or on other information relating to a title.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnTitle.en".freeze, @@ -1106,7 +1101,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on title".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60137", definition: "Relates a resource to a note on resource that provides information on an edition of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnEditionStatement.en".freeze, @@ -1114,7 +1109,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on edition statement".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60138", definition: "Relates a resource to a novel adapted from another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsNovel.en".freeze, @@ -1123,27 +1118,27 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as novel".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60139", definition: "Relates a resource to a numbering designation assigned to a notated music resource by a publisher.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/publisherNumberForNotatedMusic.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A publisher number for notated music sometimes includes initials, abbreviations, or words identifying the publisher.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60989".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has publisher number for notated music".freeze, - "skos:scopeNote": "A publisher number for notated music sometimes includes initials, abbreviations, or words identifying the publisher.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60052".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60140", definition: "Relates a resource to a numbering designation assigned to a notated music resource by a publisher.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/plateNumberForNotatedMusic.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A plate number for notated music sometimes includes initials, abbreviations, or words identifying the publisher. It is sometimes followed by a number corresponding to the number of pages or plates or a number corresponding to an individual page or plate.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60988".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has plate number for notated music".freeze, - "skos:scopeNote": "A plate number for notated music sometimes includes initials, abbreviations, or words identifying the publisher. It is sometimes followed by a number corresponding to the number of pages or plates or a number corresponding to an individual page or plate.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60052".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60141", definition: "Relates a resource to an agent who is a performer who contributes to a musical resource by leading a performing group in a musical or dramatic presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60842".freeze, "http://rdaregistry.info/Elements/u/P60844".freeze], @@ -1153,7 +1148,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has conductor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60142", definition: "Relates a resource to an agent who is a performer who contributes to a resource by acting as a cast member or player in a musical or dramatic presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60152".freeze, @@ -1163,18 +1158,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has actor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60143", definition: "Relates a resource to a performer who contributes to a resource by appearing on screen to provide contextual or background information. an on-screen presenter may appear in nonfiction moving image materials or in introductions to fiction moving image materials.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60824".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/onscreenPresenter.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Appearance in nonfiction moving image materials or in introductions to fiction moving image materials is included. Appearance on screen in a non-performing role is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60018".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has onscreen presenter".freeze, - "skos:scopeNote": "Appearance in nonfiction moving image materials or in introductions to fiction moving image materials is included. Appearance on screen in a non-performing role is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60144", definition: "Relates a resource to an agent who is a performer who contributes to a resource by dancing in a musical or dramatic presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dancer.en".freeze, @@ -1183,14 +1178,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has dancer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60145", "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/instructor.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60020".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60146", definition: "Relates a resource to an agent who is a performer who contributes to a resource by leading a program, often broadcast, that includes other performers.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/host.en".freeze, @@ -1199,7 +1194,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has host".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60147", definition: "Relates a resource to a performer who contributes to a resource by leading a program, often broadcast, where topics are discussed, usually with participation of experts in fields related to the discussion.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/moderator.en".freeze, @@ -1208,7 +1203,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has moderator".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60148", definition: "Relates a resource to a performer who contributes to a resource by manipulating, controlling, or directing puppets or marionettes in a moving image production or a musical or dramatic presentation or entertainment.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/puppeteer.en".freeze, @@ -1217,7 +1212,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has puppeteer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60149", definition: "Relates a resource to a performer who contributes to a resource by participating in a program, often broadcast, where topics are discussed, usually with participation of experts in fields related to the discussion.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/panelist.en".freeze, @@ -1226,7 +1221,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has panelist".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60150", definition: "Relates a resource to a performer who contributes to a resource by playing a musical instrument.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/instrumentalist.en".freeze, @@ -1235,7 +1230,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has instrumentalist".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60151", definition: "Relates a resource to a performer who contributes to a resource by providing interpretation, analysis, or a discussion of the subject matter on a recording, film, or other audiovisual medium.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/commentator.en".freeze, @@ -1244,7 +1239,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has commentator".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60152", definition: "Relates a resource to a performer who contributes to a resource by providing a voice for characters in radio and audio productions and for animated characters in moving image resources as well as by providing voice-overs in radio and television commercials, dubbed resources, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/voiceActor.en".freeze, @@ -1253,7 +1248,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has voice actor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60142".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60153", definition: "Relates a resource to an agent who is a performer who contributes to a resource by reading aloud or giving an account of an act, occurrence, or other event.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/narrator.en".freeze, @@ -1262,7 +1257,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has narrator".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60154", definition: "Relates a resource to an agent who is a performer who contributes to a resource by relaying a story with dramatic or theatrical interpretation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/storyteller.en".freeze, @@ -1271,7 +1266,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has storyteller".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60155", definition: "Relates a resource to an agent who is a performer who contributes to a resource by speaking words.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/speaker.en".freeze, @@ -1280,7 +1275,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has speaker".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60156", definition: "Relates a resource to an agent who is a performer who contributes to a resource by using their voice, with or without instrumental accompaniment, to produce music.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/singer.en".freeze, @@ -1289,7 +1284,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has singer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60157", definition: "Relates a resource to an agent who claims to be a channel of communication with a world of spirits.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/medium.en".freeze, @@ -1298,16 +1293,16 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has medium".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60158", definition: "Relates a resource to a person, family, or corporate body other than a creator, custodian, owner, producer, publisher, distributor or manufacturer associated with a manifestation. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60884".freeze, "http://rdaregistry.info/Elements/u/P60886".freeze, "http://rdaregistry.info/Elements/u/P60887".freeze, "http://rdaregistry.info/Elements/u/P60888".freeze, "http://rdaregistry.info/Elements/u/P60890".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/otherAgentAssociatedWithAResource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Book designers, platemakers, etc., agents, etc., to whom correspondence is addressed, agents, etc., honoured by a festschrift, directors, cinematographers, sponsoring bodies, production companies, institutions, etc., hosting an exhibition or event, etc., curators, binders, restorationists, etc., are included.. (Deprecated)".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has other agent associated with a resource (Deprecated)".freeze, - "skos:scopeNote": "Book designers, platemakers, etc., agents, etc., to whom correspondence is addressed, agents, etc., honoured by a festschrift, directors, cinematographers, sponsoring bodies, production companies, institutions, etc., hosting an exhibition or event, etc., curators, binders, restorationists, etc., are included.. (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60159", definition: "Relates a resource to a physical or chemical substance applied to a base material of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60344".freeze, @@ -1316,7 +1311,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has applied material".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60995".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60160", definition: "Relates a resource to a place associated with the distribution of a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60164".freeze, @@ -1326,7 +1321,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of distribution".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61014".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60161", definition: "Relates a resource to a place that is associated with the inscription, fabrication, construction, or other method of production of an unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60166".freeze, @@ -1336,7 +1331,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of production".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61014".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60162", definition: "Relates a resource to a place that is associated with the printing, duplicating, casting, or other method of manufacturing of a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60165".freeze, @@ -1346,7 +1341,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of manufacture".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61014".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60163", definition: "Relates a resource to a place associated with the publication, release, or issuing of a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60167".freeze, @@ -1356,7 +1351,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of publication".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61014".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60164", definition: "Relates a resource to a place of distribution in a language or script that differs from that recorded in a place of distribution element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelPlaceOfDistribution.en".freeze, @@ -1364,7 +1359,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel place of distribution".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60160".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60165", definition: "Relates a resource to a place of manufacture in a language or script that differs from that recorded in a place of manufacture element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelPlaceOfManufacture.en".freeze, @@ -1372,7 +1367,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel place of manufacture".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60162".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60166", definition: "Relates a resource to a place of production in a language or script that differs from that recorded in a place of production element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelPlaceOfProduction.en".freeze, @@ -1380,7 +1375,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel place of production".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60161".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60167", definition: "Relates a resource to a place of publication in a language or script that differs from that recorded in a place of publication element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelPlaceOfPublication.en".freeze, @@ -1388,7 +1383,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel place of publication".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60163".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60168", definition: "Relates a resource to a resource that reissues the same resource as a printed resource being described.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/reprintOf.en".freeze, @@ -1397,7 +1392,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is reprint of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60297".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60169", definition: "Relates a resource to an agent who is a producer who is responsible for most of the business aspects ofthe production of a film.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/filmProducer.en".freeze, @@ -1406,7 +1401,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has film producer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60441".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60170", definition: "Relates a resource to an agent who is a producer who is responsible for most of the business aspects of a radio program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/radioProducer.en".freeze, @@ -1415,7 +1410,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has radio producer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60441".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60171", definition: "Relates a resource to an agent who is a producer who is responsible for most of the business aspects of a television program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/televisionProducer.en".freeze, @@ -1424,21 +1419,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has television producer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60441".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60172", definition: "Relates a resource to a name of producer in a language or script that differs from that recorded in a name of producer element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelNameOfProducer.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel name of producer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60173", definition: "Relates a resource to a name of publisher name in a language or script that differs from that recorded in a name of publisher element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelNameOfPublisher.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel name of publisher".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60174", definition: "Relates a resource to a radio program based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsRadioProgram.en".freeze, @@ -1447,21 +1442,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as radio program".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60175", definition: "Relates a resource to a rank conferred as a guarantee of academic proficiency.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/academicDegree.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has academic degree".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60176", definition: "Relates a resource to a record of previous ownership or custodianship of a resource, including agent, place, and timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/custodialHistoryOfResource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has custodial history of resource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60177", definition: "Relates a resource to a resource that abstracts the contents of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/abstractedIn.en".freeze, @@ -1470,7 +1465,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is abstracted in".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60178", definition: "Relates a resource to a resource that is an abstracting and indexing service that indexes the contents of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/indexedIn.en".freeze, @@ -1479,7 +1474,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is indexed in".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60179", definition: "Relates a resource to a resource that consists of an exact reproduction on preservation-quality media, such as acid-free permanent or archival paper.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preservationFacsimile.en".freeze, @@ -1488,7 +1483,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has preservation facsimile".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60217".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60180", definition: "Relates a resource to a choreographic resource based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsChoreography.en".freeze, @@ -1497,7 +1492,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as choreography".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60181", definition: "Relates a resource to a resource that consists of errors discovered after the publication of a predominant resource, with their corrections.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/errata.en".freeze, @@ -1506,7 +1501,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has errata".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60182", definition: "Relates a resource to a resource that consists of pictorial content designed to explain or decorate an augmented resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/illustrations.en".freeze, @@ -1515,7 +1510,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has illustrations".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60183", definition: "Relates a resource to a resource that is a separate part of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/insert.en".freeze, @@ -1524,7 +1519,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has insert".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60249".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60184", definition: "Relates a resource to a resource that consists of a screenplay for a motion picture, based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsMotionPictureScreenplay.en".freeze, @@ -1533,7 +1528,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as motion picture screenplay".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60185".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60185", definition: "Relates a resource to a resource that consists of a screenplay for a motion picture, television program, or video, based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60184".freeze, "http://rdaregistry.info/Elements/u/P60186".freeze, "http://rdaregistry.info/Elements/u/P60187".freeze], @@ -1543,7 +1538,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as screenplay".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60186", definition: "Relates a resource to a resource that consists of a screenplay for a television program, based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsTelevisionScreenplay.en".freeze, @@ -1552,7 +1547,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as television screenplay".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60185".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60187", definition: "Relates a resource to a resource that consists of a screenplay for a video, based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsVideoScreenplay.en".freeze, @@ -1561,7 +1556,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as video screenplay".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60185".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60188", definition: "Relates a resource to a resource that consists of a script for a radio program, based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsRadioScript.en".freeze, @@ -1570,7 +1565,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as radio script".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60189", definition: "Relates a resource to a resource that is both an adaptation and a translation into another language of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/freelyTranslatedAs.en".freeze, @@ -1579,7 +1574,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is freely translated as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60190", definition: "Relates a resource to an entity that is described by a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60239".freeze, "http://rdaregistry.info/Elements/u/P60255".freeze, "http://rdaregistry.info/Elements/u/P60288".freeze, "http://rdaregistry.info/Elements/u/P60292".freeze, "http://rdaregistry.info/Elements/u/P60298".freeze], @@ -1589,7 +1584,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is description of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60805".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60191", definition: "Relates a resource to a resource that carries the same content as a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60195".freeze, "http://rdaregistry.info/Elements/u/P60197".freeze, "http://rdaregistry.info/Elements/u/P60272".freeze, "http://rdaregistry.info/Elements/u/P60297".freeze], @@ -1599,7 +1594,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has equivalent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60712".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60192", definition: "Relates a resource to a resource that is a successive aggregating resource that inspires the editorial policy, scope, and style of another successive aggregating resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/subseriesOf.en".freeze, @@ -1608,7 +1603,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is subseries of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60101".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60193", altLabel: "is in series".freeze, definition: "Relates a resource to a resource that is a successive aggregating resource that inspires the editorial policy, scope, and style of a static resource.".freeze, @@ -1618,7 +1613,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is issue of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60101".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60194", definition: "Relates a resource to a resource into which material is inserted that is not an integral part of the publication.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/insertedIn.en".freeze, @@ -1627,7 +1622,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is inserted in".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60101".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60195", definition: "Relates a resource to a resource that carries the same content of a resource in a different format.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/alsoIssuedAs.en".freeze, @@ -1636,7 +1631,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is also issued as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60191".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60196", definition: "Relates a resource to a resource that is issued with a related resource, without any relationship to its content.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60237".freeze, "http://rdaregistry.info/Elements/u/P60256".freeze], @@ -1646,7 +1641,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is accompanied by".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60709".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60197", definition: "Relates a resource to a resource that is an exact copy of a website, used to reduce network traffic or improve the availability of the content of the original site.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mirrorSite.en".freeze, @@ -1655,7 +1650,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has mirror site".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60191".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60198", definition: "Relates a resource to a resource paired with a related resource without either resource being considered to be predominant.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60117".freeze, "http://rdaregistry.info/Elements/u/P60201".freeze, "http://rdaregistry.info/Elements/u/P60264".freeze, "http://rdaregistry.info/Elements/u/P60267".freeze, "http://rdaregistry.info/Elements/u/P60270".freeze, "http://rdaregistry.info/Elements/u/P60285".freeze, "http://rdaregistry.info/Elements/u/P60723".freeze, "http://rdaregistry.info/Elements/u/P60724".freeze, "http://rdaregistry.info/Elements/u/P60740".freeze, "http://rdaregistry.info/Elements/u/P60741".freeze, "http://rdaregistry.info/Elements/u/P61047".freeze, "http://rdaregistry.info/Elements/u/P61048".freeze, "http://rdaregistry.info/Elements/u/P61049".freeze, "http://rdaregistry.info/Elements/u/P61050".freeze, "http://rdaregistry.info/Elements/u/P61051".freeze, "http://rdaregistry.info/Elements/u/P61052".freeze], @@ -1665,17 +1660,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is complemented by".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60709".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60199", definition: "Relates a resource to a resource that is a diachronic resource that continues the partial content of another diachronic resource that is continuing.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/separatedInto.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This element applies in general to a successive resource.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60277".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is separated into".freeze, - "skos:scopeNote": "This element applies in general to a successive resource.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60200", definition: "Relates a resource to a resource in a digital format that results from a transfer of a resource in another digital format.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/digitalTransfer.en".freeze, @@ -1684,7 +1679,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has digital transfer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60272".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60201", definition: "Relates a resource to a resource that uses a screenplay and that is complemented by a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60282".freeze, "http://rdaregistry.info/Elements/u/P60283".freeze, "http://rdaregistry.info/Elements/u/P60284".freeze], @@ -1694,7 +1689,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is screenplay for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60202", definition: "Relates a resource to a resource that is a play or other resource for the stage that is realized as spoken word and that is complemented by a musical resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/incidentalMusicFor.en".freeze, @@ -1703,7 +1698,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is incidental music for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60724".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60203", definition: "Relates a resource to a resource that abbreviates another resource in a brief, objective manner.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/abstractedAs.en".freeze, @@ -1712,7 +1707,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is abstracted as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60204", definition: "Relates a resource to a resource that adds to the content of a predominant resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60113".freeze, "http://rdaregistry.info/Elements/u/P60181".freeze, "http://rdaregistry.info/Elements/u/P60182".freeze, "http://rdaregistry.info/Elements/u/P60206".freeze, "http://rdaregistry.info/Elements/u/P60208".freeze, "http://rdaregistry.info/Elements/u/P60209".freeze, "http://rdaregistry.info/Elements/u/P60221".freeze, "http://rdaregistry.info/Elements/u/P60222".freeze, "http://rdaregistry.info/Elements/u/P60262".freeze, "http://rdaregistry.info/Elements/u/P60263".freeze, "http://rdaregistry.info/Elements/u/P60281".freeze], @@ -1722,7 +1717,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is augmented by".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60709".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60205", definition: "Relates a resource to a resource that consists of a brief recapitulation of the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/summarizedAs.en".freeze, @@ -1731,7 +1726,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is summarized as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60206", definition: "Relates a resource to a resource that consists of a complete enumeration of resources arranged systematically.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/catalogue.en".freeze, @@ -1740,7 +1735,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has catalogue".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60207", definition: "Relates a resource to a resource that is an issue that is devoted to a specific topic.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/specialIssue.en".freeze, @@ -1749,7 +1744,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has special issue".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60249".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60208", definition: "Relates a resource to a resource that consists of an index of all or selected words that occur in a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/concordance.en".freeze, @@ -1758,7 +1753,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has concordance".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60209", definition: "Relates a resource to a resource that consists of brief content that is essential for the completeness of a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/addenda.en".freeze, @@ -1767,7 +1762,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has addenda".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60210", definition: "Relates a resource to a musical or choreographic resource such as an opera, a ballet, or other resource for the musical stage, or an oratorio".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsLibretto.en".freeze, @@ -1776,7 +1771,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as libretto".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60211", definition: "Relates a resource to a resource that is a brief evaluation of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/reviewedIn.en".freeze, @@ -1785,7 +1780,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is reviewed in".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60215".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60212", definition: "Relates a resource to a resource that is a critical evaluation of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/critiquedIn.en".freeze, @@ -1794,7 +1789,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is critiqued in".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60215".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60213", definition: "Relates a resource to a resource that is a set of explanatory or critical notes on a resource".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/commentaryIn.en".freeze, @@ -1803,7 +1798,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is commentary in".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60215".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60214", definition: "Relates a resource to a resource that copies the style or content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60246".freeze, @@ -1813,7 +1808,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is imitated as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60215", definition: "Relates an entity to a resource that describes a entity.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60211".freeze, "http://rdaregistry.info/Elements/u/P60212".freeze, "http://rdaregistry.info/Elements/u/P60213".freeze, "http://rdaregistry.info/Elements/u/P60218".freeze, "http://rdaregistry.info/Elements/u/P60219".freeze], @@ -1823,7 +1818,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is described in".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60806".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60216", definition: "Relates a resource to a resource that enlarges upon the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/expandedAs.en".freeze, @@ -1832,7 +1827,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is expanded as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60217", definition: "Relates a resource to a resource that exactly reproduces a related resource embodying a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60179".freeze, @@ -1842,7 +1837,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has facsimile".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60272".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60218", definition: "Relates a resource to a resource that examines or judges a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/evaluatedIn.en".freeze, @@ -1851,7 +1846,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is evaluated in".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60215".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60219", definition: "Relates a resource to a resource that describes the structure and composition of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/analysedIn.en".freeze, @@ -1860,7 +1855,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is analysed in".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60215".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60220", altLabel: "is sequel to".freeze, definition: "Relates a resource to a resource that extends the narrative of another resource backwards in time.".freeze, @@ -1870,7 +1865,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has prequel".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60221", definition: "Relates a resource to a resource whose content augments a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/appendix.en".freeze, @@ -1879,7 +1874,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has appendix".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60222", definition: "Relates a resource to a resource that guides a user through the use of a predominant resource, using notes, learning and study aids, exercises, problems, questions and answers, instructor or student materials, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/guide.en".freeze, @@ -1888,7 +1883,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has guide".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60223", definition: "Relates a resource to a resource that is shortened as a related resoure without changing the general meaning or manner of presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/abridgementOf.en".freeze, @@ -1897,7 +1892,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is abridgement of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60224", definition: "Relates a resource to a resource that is abbreviated in a brief, objective manner.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/abstractOf.en".freeze, @@ -1906,7 +1901,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is abstract of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60225", definition: "Relates a resource to a resource that is adapted as a drama.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dramatizationOf.en".freeze, @@ -1915,7 +1910,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is dramatization of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60226", definition: "Relates a resource to a resource that is adapted as a literary composition in verse form.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/verseAdaptationOf.en".freeze, @@ -1924,7 +1919,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is verse adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60227", definition: "Relates a resource to a resource that is adapted as a motion picture.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/motionPictureAdaptationOf.en".freeze, @@ -1933,7 +1928,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is motion picture adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60228", definition: "Relates a resource to a resource that is adapted as a novel.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/novelizationOf.en".freeze, @@ -1942,7 +1937,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is novelization of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60229", definition: "Relates a resource to a resource that is adapted as a radio program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/radioAdaptationOf.en".freeze, @@ -1951,7 +1946,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is radio adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60230", definition: "Relates a resource to a resource that is adapted as a television program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/televisionAdaptationOf.en".freeze, @@ -1960,7 +1955,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is television adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60231", definition: "Relates a resource to a resource that is adapted as a screenplay for a motion picture, television program, or video.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60232".freeze, "http://rdaregistry.info/Elements/u/P60233".freeze, "http://rdaregistry.info/Elements/u/P60234".freeze], @@ -1970,7 +1965,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is screenplay based on".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60232", definition: "Relates a resource to a resource that is adapted as a screenplay for a motion picture.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/motionPictureScreenplayBasedOn.en".freeze, @@ -1979,7 +1974,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is motion picture screenplay based on".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60231".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60233", definition: "Relates a resource to a resource that is adapted as a screenplay for a television program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/televisionScreenplayBasedOn.en".freeze, @@ -1988,7 +1983,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is television screenplay based on".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60231".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60234", definition: "Relates a resource to a resource that is adapted as a screenplay for a video.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/videoScreenplayBasedOn.en".freeze, @@ -1997,7 +1992,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is video screenplay based on".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60231".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60235", definition: "Relates a resource to a resource that is adapted as a script for a radio program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/radioScriptBasedOn.en".freeze, @@ -2006,7 +2001,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is radio script based on".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60236", definition: "Relates a resource to a resource that is adapted for video.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/videoAdaptationOf.en".freeze, @@ -2015,7 +2010,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is video adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60237", definition: "Relates a resource to a resource that is physically combined or joined with a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/boundWith.en".freeze, @@ -2024,7 +2019,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is bound with".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60196".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60238", definition: "Relates a resource to a resource that is a systematic and comprehensive condensing of a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/digestOf.en".freeze, @@ -2033,7 +2028,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is digest of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60239", definition: "Relates a resource to a resource whose structure is described by a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/analysisOf.en".freeze, @@ -2042,7 +2037,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is analysis of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60190".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60240", altLabel: "is series container of".freeze, definition: "Relates a resource to a resource that is a static resource that is inspired by the overall editorial policy, scope, and style of a successive aggregating resource.".freeze, @@ -2052,18 +2047,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has issue".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60249".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60241", definition: "Relates a resource to a resource that is modified for a purpose, use, or medium other than that for which it was originally intended.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60225".freeze, "http://rdaregistry.info/Elements/u/P60226".freeze, "http://rdaregistry.info/Elements/u/P60227".freeze, "http://rdaregistry.info/Elements/u/P60228".freeze, "http://rdaregistry.info/Elements/u/P60229".freeze, "http://rdaregistry.info/Elements/u/P60230".freeze, "http://rdaregistry.info/Elements/u/P60231".freeze, "http://rdaregistry.info/Elements/u/P60235".freeze, "http://rdaregistry.info/Elements/u/P60236".freeze, "http://rdaregistry.info/Elements/u/P60719".freeze, "http://rdaregistry.info/Elements/u/P60720".freeze, "http://rdaregistry.info/Elements/u/P60743".freeze, "http://rdaregistry.info/Elements/u/P60745".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptationOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This relationship applies to changes in form or to resources completely rewritten in the same form.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60260".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adaptation of".freeze, - "skos:scopeNote": "This relationship applies to changes in form or to resources completely rewritten in the same form.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60242", definition: "Relates a resource to a resource that is rewritten as a musical composition for a medium of performance different from that for which a resource was originally intended.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/arrangementOf.en".freeze, @@ -2072,7 +2067,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is arrangement of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60243", definition: "Relates a resource to a resource that is adapted and translated into another language.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/freeTranslationOf.en".freeze, @@ -2081,7 +2076,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is free translation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60244", definition: "Relates a resource to a resource that is translated, i.e., the text expressed in a language different from that of an original resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60111".freeze, @@ -2091,7 +2086,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is translation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60245", definition: "Relates a resource to a resource that is updated, corrected, or expanded.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/revisedAs.en".freeze, @@ -2100,7 +2095,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is revised as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60246", definition: "Relates a resource to a resource that imitates the style or content of another resource for comic effect.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parodiedAs.en".freeze, @@ -2109,7 +2104,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is parodied as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60214".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60247", definition: "Relates a resource to a resource whose content incorporates the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/absorbedBy.en".freeze, @@ -2118,7 +2113,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is absorbed by".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60248", definition: "Relates a resource to a resource whose content incorporates the partial content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/absorbedInPartBy.en".freeze, @@ -2127,7 +2122,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is absorbed in part by".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60249", altLabel: "is container of resource".freeze, definition: "Relates a resource to a resource that is a discrete component of another resource.".freeze, @@ -2138,7 +2133,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has part resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60714".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60250", definition: "Relates a resource to a resource that is a modification of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60115".freeze, "http://rdaregistry.info/Elements/u/P60120".freeze, "http://rdaregistry.info/Elements/u/P60121".freeze, "http://rdaregistry.info/Elements/u/P60177".freeze, "http://rdaregistry.info/Elements/u/P60178".freeze, "http://rdaregistry.info/Elements/u/P60180".freeze, "http://rdaregistry.info/Elements/u/P60189".freeze, "http://rdaregistry.info/Elements/u/P60203".freeze, "http://rdaregistry.info/Elements/u/P60205".freeze, "http://rdaregistry.info/Elements/u/P60210".freeze, "http://rdaregistry.info/Elements/u/P60214".freeze, "http://rdaregistry.info/Elements/u/P60216".freeze, "http://rdaregistry.info/Elements/u/P60245".freeze, "http://rdaregistry.info/Elements/u/P60260".freeze, "http://rdaregistry.info/Elements/u/P60273".freeze, "http://rdaregistry.info/Elements/u/P60274".freeze, "http://rdaregistry.info/Elements/u/P60275".freeze, "http://rdaregistry.info/Elements/u/P60279".freeze, "http://rdaregistry.info/Elements/u/P60280".freeze, "http://rdaregistry.info/Elements/u/P60831".freeze, "http://rdaregistry.info/Elements/u/P60833".freeze], @@ -2148,7 +2143,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has derivative".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60710".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60251", definition: "Relates a resource to a resource that is augmented by a list of errors in a predominant resource, discovered after publication, with their corrections.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/errataTo.en".freeze, @@ -2157,7 +2152,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is errata to".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60252", definition: "Relates a resource to a resource that is augmented by a related resource that consists of material, such as notes, learning and study aids, exercises, problems, questions and answers, instructor or student materials, etc., to help a user of a predominant resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/guideTo.en".freeze, @@ -2166,7 +2161,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is guide to".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60253", definition: "Relates a resource to a resource whose content is augmented with content from a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/appendixTo.en".freeze, @@ -2175,7 +2170,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is appendix to".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60254", definition: "Relates a resource to a resource that is augmented by pictorial content designed to explain or decorate it.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/illustrationsFor.en".freeze, @@ -2184,7 +2179,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is illustrations for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60255", definition: "Relates a resource to a resource that is examined or judged.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/evaluationOf.en".freeze, @@ -2193,7 +2188,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is evaluation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60190".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60256", definition: "Relates a resource to a resource that is issued on the same carrier as a resource being described.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60257".freeze, "http://rdaregistry.info/Elements/u/P60258".freeze], @@ -2203,7 +2198,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is issued with".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60196".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60257", definition: "Relates a resource to a resource that is contained on the same disc as a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/onDiscWith.en".freeze, @@ -2212,7 +2207,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is on disc with".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60256".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60258", definition: "Relates a resource to a resource that is contained on the same microform as a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/filmedWith.en".freeze, @@ -2221,7 +2216,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is filmed with".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60256".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60259", definition: "Relates a resource to a resource that is updated or otherwise complemented by an augmenting resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/supplementTo.en".freeze, @@ -2230,18 +2225,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is supplement to".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60260", definition: "Relates a resource to a resource that modifies another resource for a purpose, use, or medium other than that for which it was originally intended.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60088".freeze, "http://rdaregistry.info/Elements/u/P60106".freeze, "http://rdaregistry.info/Elements/u/P60110".freeze, "http://rdaregistry.info/Elements/u/P60138".freeze, "http://rdaregistry.info/Elements/u/P60174".freeze, "http://rdaregistry.info/Elements/u/P60185".freeze, "http://rdaregistry.info/Elements/u/P60188".freeze, "http://rdaregistry.info/Elements/u/P60354".freeze, "http://rdaregistry.info/Elements/u/P60361".freeze, "http://rdaregistry.info/Elements/u/P60721".freeze, "http://rdaregistry.info/Elements/u/P60722".freeze, "http://rdaregistry.info/Elements/u/P60742".freeze, "http://rdaregistry.info/Elements/u/P60744".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAs.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This relationship applies to changes in form or to resources completely rewritten in the same form.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60241".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as".freeze, - "skos:scopeNote": "This relationship applies to changes in form or to resources completely rewritten in the same form.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60261", definition: "Relates a resource to a resource whose chronological coverage is before that of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60220".freeze, "http://rdaregistry.info/Elements/u/P60276".freeze, "http://rdaregistry.info/Elements/u/P60277".freeze, "http://rdaregistry.info/Elements/u/P60479".freeze, "http://rdaregistry.info/Elements/u/P60480".freeze, "http://rdaregistry.info/Elements/u/P60505".freeze, "http://rdaregistry.info/Elements/u/P60574".freeze, "http://rdaregistry.info/Elements/u/P60575".freeze, "http://rdaregistry.info/Elements/u/P60576".freeze, "http://rdaregistry.info/Elements/u/P60577".freeze], @@ -2251,7 +2246,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is preceded by".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60713".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60262", definition: "Relates a resource to a resource that provides a guide to the organization, arrangement, and contents of an archival collection.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/findingAid.en".freeze, @@ -2260,7 +2255,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has finding aid".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60263", definition: "Relates a resource to a resource that provides a systematic, alphabetical guide to the contents of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/index.en".freeze, @@ -2269,7 +2264,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has index".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60264", definition: "Relates a resource to a resource that is realized as text that complements a resource that uses a screenplay.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60265".freeze, "http://rdaregistry.info/Elements/u/P60268".freeze, "http://rdaregistry.info/Elements/u/P60269".freeze], @@ -2279,7 +2274,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has screenplay".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60265", definition: "Relates a resource to a resource that is textual resource that complements a resource that is a motion picture.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/motionPictureScreenplay.en".freeze, @@ -2288,7 +2283,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has motion picture screenplay".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60264".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60266", definition: "Relates a resource to a resource that provides text for a non-dramatic musical resource, other than an oratorio.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/musicalSettingOf.en".freeze, @@ -2297,7 +2292,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is musical setting of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60267", definition: "Relates a resource to a resource that is texual resource that complements a work that is a radio program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/radioScript.en".freeze, @@ -2306,7 +2301,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has radio script".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60268", definition: "Relates a resource to a resource that is a textual resource that complements a resource that is a television program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/televisionScreenplay.en".freeze, @@ -2315,7 +2310,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has television screenplay".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60264".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60269", definition: "Relates a resource to a resource that is a textual resource that complements a resource that is a video.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/videoScreenplay.en".freeze, @@ -2324,7 +2319,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has video screenplay".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60264".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60270", definition: "Relates a resource to a resource that is realized as text that complements a resource that is an opera or other resource for the musical stage, or an oratorio.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/libretto.en".freeze, @@ -2333,7 +2328,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has libretto".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60271", definition: "Relates a resource to a resource that reissues the same resource as a printed resource being described.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/reprintedAs.en".freeze, @@ -2342,7 +2337,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is reprinted as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60272".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60272", definition: "Relates a resource to a resource that reproduces a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60083".freeze, "http://rdaregistry.info/Elements/u/P60200".freeze, "http://rdaregistry.info/Elements/u/P60217".freeze, "http://rdaregistry.info/Elements/u/P60271".freeze], @@ -2352,7 +2347,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is reproduced as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60191".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60273", definition: "Relates a resource to a resource that restates a content of anothere resource in a different form.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/paraphrasedAs.en".freeze, @@ -2361,7 +2356,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is paraphrased as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60274", definition: "Relates a resource to a resource that rewrites a musical composition for a medium of performance different from that for which a resource was originally intended.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/arrangedAs.en".freeze, @@ -2370,7 +2365,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is arranged as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60275", definition: "Relates a resource to a resource that shortens a related resource without changing the general meaning or manner of presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/abridgedAs.en".freeze, @@ -2379,17 +2374,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is abridged as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60276", definition: "Relates a resource to a resource that is a diachronic resource that is completed whose partial content is continued by another diachronic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/splitFrom.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This element applies in general to a successive resource.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60503".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is split from".freeze, - "skos:scopeNote": "This element applies in general to a successive resource.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60277", definition: "Relates a resource to a resource that is a diachronic resource that is continuing whose partial content is continued by another diachronic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/separatedFrom.en".freeze, @@ -2398,7 +2393,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is separated from".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60278", definition: "Relates a resource to a resource whose chronological coverage is after that of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60102".freeze, "http://rdaregistry.info/Elements/u/P60103".freeze, "http://rdaregistry.info/Elements/u/P60104".freeze, "http://rdaregistry.info/Elements/u/P60199".freeze, "http://rdaregistry.info/Elements/u/P60247".freeze, "http://rdaregistry.info/Elements/u/P60248".freeze, "http://rdaregistry.info/Elements/u/P60306".freeze, "http://rdaregistry.info/Elements/u/P60310".freeze, "http://rdaregistry.info/Elements/u/P60503".freeze, "http://rdaregistry.info/Elements/u/P60504".freeze], @@ -2408,7 +2403,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is succeeded by".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60713".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60279", definition: "Relates a resource to a resource that systematically and comprehensively condenses a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/digestedAs.en".freeze, @@ -2417,7 +2412,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is digested as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60280", definition: "Relates a resource to a resource that translates the text of another resource into a different language.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60112".freeze, @@ -2427,7 +2422,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is translated as".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60281", definition: "Relates a resource to a resource that updates or otherwise complements a predominant resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/supplement.en".freeze, @@ -2436,7 +2431,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has supplement".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60204".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60282", definition: "Relates a resource to a resource that is a motion picture that is complemented by a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/screenplayForMotionPicture.en".freeze, @@ -2445,7 +2440,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is screenplay for motion picture".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60201".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60283", definition: "Relates a resource to a resource that is a television program that is complemented by a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/screenplayForTelevisionProgram.en".freeze, @@ -2454,7 +2449,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is screenplay for television program".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60201".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60284", definition: "Relates a resource to a resource that is a video that is complemented by a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/screenplayForVideo.en".freeze, @@ -2463,7 +2458,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is screenplay for video".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60201".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60285", definition: "Relates a resource to a resource that is a radio program that is complemented by a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/scriptForRadioProgram.en".freeze, @@ -2472,7 +2467,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is script for radio program".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60286", definition: "Relates a resource to a resource whose content is completed with brief content from a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/addendaTo.en".freeze, @@ -2481,7 +2476,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is addenda to".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60287", definition: "Relates a resource to a resource in a digital format that is transferred to another digital format.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/digitalTransferOf.en".freeze, @@ -2490,7 +2485,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is digital transfer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60297".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60288", definition: "Relates a resource to a resource used as a basis for a brief evaluation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/reviewOf.en".freeze, @@ -2499,7 +2494,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is review of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60190".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60289", definition: "Relates a resource to a resource used as a basis for a brief recapitulation of its content.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/summaryOf.en".freeze, @@ -2508,7 +2503,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is summary of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60290", definition: "Relates a resource to a resource used as a basis for a complete enumeration of resources arranged systematically.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/catalogueOf.en".freeze, @@ -2517,7 +2512,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is catalogue of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60291", definition: "Relates a resource to a resource used as a basis for an index of all or selected words that occur in a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/concordanceTo.en".freeze, @@ -2526,7 +2521,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is concordance to".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60292", definition: "Relates a resource to a resource used as a basis for a critical evaluation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/critiqueOf.en".freeze, @@ -2535,7 +2530,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is critique of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60190".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60293", definition: "Relates a resource to a resource that is adapted as a choreographic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/choreographicAdaptationOf.en".freeze, @@ -2544,7 +2539,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is choreographic adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60294", definition: "Relates a resource to a resource used as a basis for a derivative resource that enlarges upon the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/expandedVersionOf.en".freeze, @@ -2553,7 +2548,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is expanded version of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60295", definition: "Relates a resource to a resource used as a basis for a new motion picture, radio program, television program, or video.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/remakeOf.en".freeze, @@ -2562,7 +2557,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is remake of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60296", definition: "Relates a resource to a resource used as a basis for a restating of the content of another resource in a different form.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/paraphraseOf.en".freeze, @@ -2571,7 +2566,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is paraphrase of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60297", definition: "Relates a resource to a resource that is used as a basis for a reproduction.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60168".freeze, "http://rdaregistry.info/Elements/u/P60287".freeze, "http://rdaregistry.info/Elements/u/P60301".freeze, "http://rdaregistry.info/Elements/u/P60469".freeze], @@ -2581,7 +2576,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is reproduction of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60191".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60298", definition: "Relates a resource to a resource used as a basis for a set of explanatory or critical notes.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/commentaryOn.en".freeze, @@ -2590,7 +2585,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is commentary on".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60190".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60299", definition: "Relates a resource to a resource that is used as a basis for an exact reproduction on preservation-quality media, such as acid-free permanent or archival paper.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preservationFacsimileOf.en".freeze, @@ -2599,7 +2594,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is preservation facsimile of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60301".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60300", definition: "Relates a resource to a resource used as a basis for an exact reproduction that is a discrete component of a larger entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/facsimilePart.en".freeze, @@ -2608,7 +2603,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has facsimile part".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60249".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60301", definition: "Relates a resource to a resource that is used as a basis for an exact reproduction.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60299".freeze, @@ -2618,7 +2613,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is facsimile of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60297".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60302", definition: "Relates a resource to a resource that is used as a basis for a resource that is a systematic, alphabetical guide to its contents.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/indexTo.en".freeze, @@ -2627,7 +2622,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is index to".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60303", definition: "Relates a resource to a resource used as a basis for an updated, corrected, or expanded version.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/revisionOf.en".freeze, @@ -2636,7 +2631,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is revision of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60304", definition: "Relates a resource to a musical or choreographic resource such as an opera, a ballet, or other resource for the musical stage, or an oratorio".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/librettoBasedOn.en".freeze, @@ -2645,7 +2640,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is libretto based on".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60305", definition: "Relates a resource to a resource used as a source for a derivative resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60114".freeze, "http://rdaregistry.info/Elements/u/P60223".freeze, "http://rdaregistry.info/Elements/u/P60224".freeze, "http://rdaregistry.info/Elements/u/P60238".freeze, "http://rdaregistry.info/Elements/u/P60241".freeze, "http://rdaregistry.info/Elements/u/P60242".freeze, "http://rdaregistry.info/Elements/u/P60243".freeze, "http://rdaregistry.info/Elements/u/P60244".freeze, "http://rdaregistry.info/Elements/u/P60266".freeze, "http://rdaregistry.info/Elements/u/P60289".freeze, "http://rdaregistry.info/Elements/u/P60293".freeze, "http://rdaregistry.info/Elements/u/P60294".freeze, "http://rdaregistry.info/Elements/u/P60295".freeze, "http://rdaregistry.info/Elements/u/P60296".freeze, "http://rdaregistry.info/Elements/u/P60303".freeze, "http://rdaregistry.info/Elements/u/P60304".freeze, "http://rdaregistry.info/Elements/u/P60308".freeze, "http://rdaregistry.info/Elements/u/P60309".freeze, "http://rdaregistry.info/Elements/u/P60311".freeze, "http://rdaregistry.info/Elements/u/P60830".freeze, "http://rdaregistry.info/Elements/u/P60832".freeze], @@ -2655,17 +2650,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is based on".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60710".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60306", definition: "Relates a resource to a resource that is a diachronic resource that continues the content of another diachronic resource that is completed.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/continuedBy.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This element applies in general to a successive resource.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60576".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is continued by".freeze, - "skos:scopeNote": "This element applies in general to a successive resource.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60307", definition: "Relates a resource to a resource whose content is added to by a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60116".freeze, "http://rdaregistry.info/Elements/u/P60251".freeze, "http://rdaregistry.info/Elements/u/P60252".freeze, "http://rdaregistry.info/Elements/u/P60253".freeze, "http://rdaregistry.info/Elements/u/P60254".freeze, "http://rdaregistry.info/Elements/u/P60259".freeze, "http://rdaregistry.info/Elements/u/P60286".freeze, "http://rdaregistry.info/Elements/u/P60290".freeze, "http://rdaregistry.info/Elements/u/P60291".freeze, "http://rdaregistry.info/Elements/u/P60302".freeze, "http://rdaregistry.info/Elements/u/P60474".freeze], @@ -2675,7 +2670,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is augmentation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60709".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60308", definition: "Relates a resource to a resource that is abstracted by another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/abstractsFor.en".freeze, @@ -2684,7 +2679,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is abstracts for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60309", definition: "Relates a resource to a resource whose contents have been indexed by a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/indexingFor.en".freeze, @@ -2693,7 +2688,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is indexing for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60310", definition: "Relates a resource to a resource whose narrative is extended backwards in time by the later resource.. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/prequelTo.en".freeze, @@ -2702,7 +2697,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is prequel to (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60311", definition: "Relates a resource to a resource whose style or content is copied in a derivative resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60312".freeze, @@ -2712,7 +2707,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is imitation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60312", definition: "Relates a resource to a resource whose style or content is imitated for comic effect.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parodyOf.en".freeze, @@ -2721,7 +2716,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is parody of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60311".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60313", altLabel: "related resource".freeze, definition: "Relates a resource to a resource that is associated with a resource.".freeze, @@ -2732,7 +2727,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related resource of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61034".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60314", definition: "Relates a resource to a schema or standard that is used to encode the digital content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/encodingFormat.en".freeze, @@ -2740,17 +2735,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has encoding format".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60350".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60315", definition: "Relates a resource to a serial number, opus number, or thematic index number assigned to a musical resource by a composer, publisher, or a musicologist.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60953".freeze, "http://rdaregistry.info/Elements/u/P60954".freeze, "http://rdaregistry.info/Elements/u/P60955".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/numericDesignationOfMusicalResource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A numeric designation of a musical resource includes a caption such as e.g., no., op., BWV, and it may include a numeral, a letter, a word, any other character, or the combination of these.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60963".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has numeric designation of musical resource".freeze, - "skos:scopeNote": "A numeric designation of a musical resource includes a caption such as e.g., no., op., BWV, and it may include a numeral, a letter, a word, any other character, or the combination of these.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60316", definition: "Relates a resource to a resource that is a successive aggregating resource that is inspired by the overall editorial policy, scope, and style of another successive aggregating resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/subseries.en".freeze, @@ -2759,7 +2754,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has subseries".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60249".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60317", definition: "Relates a resource to a resource that has an issue that is devoted to a specific topic.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/specialIssueOf.en".freeze, @@ -2768,7 +2763,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is special issue of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60101".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60318", definition: "Relates a resource to a set of characters or symbols used to express the content of a resource in a form that can be perceived through touch.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/formOfTactileNotation.en".freeze, @@ -2776,7 +2771,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has form of tactile notation".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60319".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60319", definition: "Relates a resource to a set of characters or symbols used to express the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60318".freeze, "http://rdaregistry.info/Elements/u/P60320".freeze, "http://rdaregistry.info/Elements/u/P60321".freeze, "http://rdaregistry.info/Elements/u/P60322".freeze], @@ -2784,7 +2779,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has form of notation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60320", definition: "Relates a resource to a set of characters or symbols used to express movement content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/formOfNotatedMovement.en".freeze, @@ -2792,7 +2787,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has form of notated movement".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60319".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60321", definition: "Relates a resource to a set of characters or symbols used to express musical content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/formOfMusicalNotation.en".freeze, @@ -2800,7 +2795,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has form of musical notation".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60319".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60322", definition: "Relates a resource to a set of characters or symbols used to express written language content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/script.en".freeze, @@ -2808,7 +2803,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has script".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60319".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60323", definition: "Relates a resource to a set of technical details relating to an encoding of geospatial information in a cartographic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/digitalRepresentationOfCartographicContent.en".freeze, @@ -2816,7 +2811,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has digital representation of cartographic content".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60350".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60324", definition: "Relates a resource to a significant date associated with the history of an agent, or the date or range of dates on which a conference, etc., was held, or a date with which an agent is otherwise associated. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60076".freeze, "http://rdaregistry.info/Elements/u/P60524".freeze, "http://rdaregistry.info/Elements/u/P60525".freeze, "http://rdaregistry.info/Elements/u/P60526".freeze, "http://rdaregistry.info/Elements/u/P60598".freeze, "http://rdaregistry.info/Elements/u/P60599".freeze], @@ -2826,7 +2821,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date associated with agent (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61020".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60325", definition: "Relates an agent to a significant location associated with an agent, or a place where an agent resides or has resided or has some connection. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60064".freeze, @@ -2836,7 +2831,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place associated with agent (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61018".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60326", definition: "Relates a resource to a schema or standard that is used to encode the analog video content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/videoFormat.en".freeze, @@ -2844,7 +2839,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has video format".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60352".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60327", definition: "Relates a resource to a statement associated with a title proper of a resource that relates to an identification or function of agents responsible for the creation of, or who contributes to a realization of, the intellectual or artistic content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/statementOfResponsibilityRelatingToTitleProper.en".freeze, @@ -2852,80 +2847,80 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has statement of responsibility relating to title proper".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60339".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60328", definition: "Relates a resource to a statement that identifies a series that is associated with a resource and a numbering of a resource within the series,".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/seriesStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A series statement may also include information identifying one or more subseries to which the resource being described belongs. A series statement sometimes includes statements of responsibility relating to a series or subseries.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has series statement".freeze, - "skos:scopeNote": "A series statement may also include information identifying one or more subseries to which the resource being described belongs. A series statement sometimes includes statements of responsibility relating to a series or subseries.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60329", definition: "Relates a resource to a statement identifying an edition to which a resource belongs.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/editionStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has edition statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60330", definition: "Relates a resource to a statement that identifies a place of distribution, a distributor, or a date of distribution of a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/distributionStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has distribution statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60331", definition: "Relates a resource to a statement that identifies a place of manufacture, a manufacturer, or a date of manufacture of a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/manufactureStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A manufacture statement includes a statement about the printing, duplicating, casting, etc., of a published resource.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has manufacture statement".freeze, - "skos:scopeNote": "A manufacture statement includes a statement about the printing, duplicating, casting, etc., of a published resource.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60332", definition: "Relates a resource to a statement that identifies a place of production, a producer, or a date of production of an unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/productionStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A production statement includes a statement about the inscription, fabrication, construction, etc., of an unpublished resource.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has production statement".freeze, - "skos:scopeNote": "A production statement includes a statement about the inscription, fabrication, construction, etc., of an unpublished resource.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60333", definition: "Relates a resource to a statement that identifies a place of publication, a publisher, or a date of publication of a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/publicationStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has publication statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60334", definition: "Relates a resource to a statement of responsibility relating to a named revision of an edition in a language or script that differs from that recorded in a statement of responsibility relating to a named revision of an edition element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelStatementOfResponsibilityRelatingToNamedRevisionOfEdition.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel statement of responsibility relating to named revision of edition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60335", definition: "Relates a resource to a statement of responsibility relating to series in a language or script that differs from that recorded in a statement of responsibility relating to series element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelStatementOfResponsibilityRelatingToSeries.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel statement of responsibility relating to series".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60336", definition: "Relates a resource to a statement of responsibility relating to subseries in a language or script that differs from that recorded in a statement of responsibility relating to subseries element. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelStatementOfResponsibilityRelatingToSubseries.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel statement of responsibility relating to subseries (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60337", definition: "Relates a resource to a statement of responsibility relating to an edition in a language or script that differs from that recorded in a statement of responsibility relating to an edition element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelStatementOfResponsibilityRelatingToEdition.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel statement of responsibility relating to edition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60338", definition: "Relates a resource to a statement of responsibility relating to title proper in a language or script that differs from that recorded in a statement of responsibility relating to title proper element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelStatementOfResponsibilityRelatingToTitleProper.en".freeze, @@ -2933,7 +2928,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel statement of responsibility relating to title proper".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60339".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60339", definition: "Relates a resource to a statement relating to anidentification or function of any agents responsible for the creation of, or who contributes to a realization of, the intellectual or artistic content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60327".freeze, "http://rdaregistry.info/Elements/u/P60338".freeze], @@ -2941,35 +2936,35 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has statement of responsibility".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60340", definition: "Relates a resource to a statement relating to an identification of agents responsible for a named revision of an edition.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/statementOfResponsibilityRelatingToNamedRevisionOfEdition.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has statement of responsibility relating to named revision of edition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60341", definition: "Relates a resource to a statement relating to an identification of agents responsible for a series.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/statementOfResponsibilityRelatingToSeries.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has statement of responsibility relating to series".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60342", definition: "Relates a resource to a statement relating to an identification of agents responsible for a subseries. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/statementOfResponsibilityRelatingToSubseries.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has statement of responsibility relating to subseries (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60343", definition: "Relates a resource to a statement relating to an identification of agents responsible for an edition being described but not to all editions.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/statementOfResponsibilityRelatingToEdition.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has statement of responsibility relating to edition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60344", definition: "Relates a resource to a suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/emulsionOnMicrofilmAndMicrofiche.en".freeze, @@ -2977,7 +2972,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has emulsion on microfilm and microfiche".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60159".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60345", definition: "Relates a resource to a place that identifies the area covered by the cartographic content of a resource using longitude of the westernmost and easternmost boundaries and latitude of the northernmost and southernmost boundaries.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/longitudeAndLatitude.en".freeze, @@ -2986,7 +2981,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has longitude and latitude".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60109".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60346", definition: "Relates a resource to a system for identifying the location of a celestial object in the sky covered by the cartographic content of a resource using angles of right ascension and declination.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/rightAscensionAndDeclination.en".freeze, @@ -2995,7 +2990,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has right ascension and declination".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60109".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60347", definition: "Relates a resource to a system for identifying the precise area covered by the cartographic content of a resource using coordinates for each vertex of a polygon.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/stringsOfCoordinatePairs.en".freeze, @@ -3004,14 +2999,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has strings of coordinate pairs".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60109".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60348", definition: "Relates a resource to a system of arranging materials in an archival resource or a collection.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/systemOfOrganization.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has system of organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60349", definition: "Relates a resource to a system used to format a video resource for television broadcast.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/broadcastStandard.en".freeze, @@ -3019,7 +3014,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has broadcast standard".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60352".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60350", definition: "Relates a resource to a technical specification relating to a digital encoding of text, image, audio, video, and other types of data in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60059".freeze, "http://rdaregistry.info/Elements/u/P60093".freeze, "http://rdaregistry.info/Elements/u/P60314".freeze, "http://rdaregistry.info/Elements/u/P60323".freeze, "http://rdaregistry.info/Elements/u/P60519".freeze, "http://rdaregistry.info/Elements/u/P60551".freeze, "http://rdaregistry.info/Elements/u/P60587".freeze], @@ -3027,7 +3022,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has digital file characteristic".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60351", definition: "Relates a resource to a technical specification relating to an encoding of sound in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60481".freeze, "http://rdaregistry.info/Elements/u/P60522".freeze, "http://rdaregistry.info/Elements/u/P60532".freeze, "http://rdaregistry.info/Elements/u/P60543".freeze, "http://rdaregistry.info/Elements/u/P60552".freeze, "http://rdaregistry.info/Elements/u/P60553".freeze, "http://rdaregistry.info/Elements/u/P60586".freeze, "http://rdaregistry.info/Elements/u/P60594".freeze], @@ -3035,7 +3030,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sound characteristic".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60352", definition: "Relates a resource to a technical specification relating to an encoding of video images in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60326".freeze, "http://rdaregistry.info/Elements/u/P60349".freeze], @@ -3043,7 +3038,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has video characteristic".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60353", definition: "Relates a resource to a technical specification relating to the projection of a motion picture film.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60529".freeze, "http://rdaregistry.info/Elements/u/P60585".freeze], @@ -3051,7 +3046,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has projection characteristic of motion picture film".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60354", definition: "Relates a resource to a television program based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsTelevisionProgram.en".freeze, @@ -3060,7 +3055,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as television program".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60355", definition: "Relates a resource to a title of resource that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantTitleOfResource.en".freeze, @@ -3069,14 +3064,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant title of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60367".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60356", definition: "Relates an agent to a title of nobility, etc., associated with an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/hereditaryTitle.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has hereditary title".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60357", definition: "Relates a resource to a title proper appearing on a later issue or part of a multipart monograph or serial that differs from that on the first or earliest issue or part. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/laterTitleProper.en".freeze, @@ -3084,7 +3079,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has later title proper (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60369".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60358", definition: "Relates a resource to a title proper appearing on an earlier iteration of an integrating resource that differs from that on a current iteration. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/earlierTitleProper.en".freeze, @@ -3092,7 +3087,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has earlier title proper (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60369".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60359", definition: "Relates a resource to a title that is abbreviated for purposes of indexing or identification.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/abbreviatedTitle.en".freeze, @@ -3101,17 +3096,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has abbreviated title".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60369".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60360", definition: "Relates an agent to a town, city, province, state, or country in which an agent resides or has resided, or another significant place associated with an agent other than place of birth, place of death, or residence.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfResidence.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A place where an agent has worked or studied is included.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60973".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of residence".freeze, - "skos:scopeNote": "A place where an agent has worked or studied is included.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61018".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60361", definition: "Relates a resource to a video based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsVideo.en".freeze, @@ -3120,7 +3115,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as video".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60362", definition: "Relates an agent to a well-known individual who is a member of an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/prominentMemberOfFamily.en".freeze, @@ -3128,28 +3123,28 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60996".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has prominent member of agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60363", definition: "Relates an agent to a word or phrase indicative of royalty, nobility, or ecclesiastical rank or office, a term of address for an agent of religious vocation, or another term indicative of rank, honour, or office.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/termOfRankHonourOrOffice.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has term of rank, honour, or office".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60364", definition: "Relates a resource to a word, character or group of words or characters, identifying a particular revision of a named edition.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/designationOfNamedRevisionOfEdition.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has designation of named revision of edition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60365", definition: "Relates a resource to a word, character or group of words or characters, identifying an edition to which a resource belongs.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/designationOfEdition.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has designation of edition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60366", definition: "Relates a place to an appellation of place in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60548".freeze, "http://rdaregistry.info/Elements/u/P60880".freeze], @@ -3159,7 +3154,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has name of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60939".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60367", definition: "Relates a resource to an appellation of resource in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60355".freeze, "http://rdaregistry.info/Elements/u/P60516".freeze, "http://rdaregistry.info/Elements/u/P60588".freeze], @@ -3169,7 +3164,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has title of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60369".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60368", definition: "Relates an agent to an appellation of agent in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60119".freeze, "http://rdaregistry.info/Elements/u/P60549".freeze], @@ -3179,7 +3174,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has name of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60369", definition: "Relates an entity to an appellation in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60357".freeze, "http://rdaregistry.info/Elements/u/P60358".freeze, "http://rdaregistry.info/Elements/u/P60359".freeze, "http://rdaregistry.info/Elements/u/P60367".freeze, "http://rdaregistry.info/Elements/u/P60493".freeze, "http://rdaregistry.info/Elements/u/P60507".freeze, "http://rdaregistry.info/Elements/u/P60515".freeze, "http://rdaregistry.info/Elements/u/P60589".freeze], @@ -3188,32 +3183,32 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has title".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60370", definition: "Relates a resource to a word, phrase, or abbreviation indicating incorporation or legal status of an agent, or any term serving to differentiate a an agent from other agents, etc., or a term other than a title that is associated with an agent’s name. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/otherDesignationAssociatedWithAgent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has other designation associated with agent (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60371", definition: "Relates a resource to a writer of words added to a musical resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60477".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfAddedLyrics.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Writing of lyrics in collaboration with a composer to form an original resource is excluded.. (Deprecated)".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60600".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has writer of added lyrics (Deprecated)".freeze, - "skos:scopeNote": "Writing of lyrics in collaboration with a composer to form an original resource is excluded.. (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60380".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60372", definition: "Relates a resource to an abstract, summary, synopsis, or other description of the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/summarizationOfContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has summarization of content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60373", definition: "Relates a resource to an agent against whom an appeal is taken on a decision of a lower court recorded in a legal resource of a higher court.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/appellee.en".freeze, @@ -3222,7 +3217,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has appellee".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60374", definition: "Relates a resource to an agent other than a creator, custodian, owner, producer, publisher, distributor, or manufacturer associated with a resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60060".freeze, "http://rdaregistry.info/Elements/u/P60061".freeze, "http://rdaregistry.info/Elements/u/P60062".freeze, "http://rdaregistry.info/Elements/u/P60065".freeze, "http://rdaregistry.info/Elements/u/P60157".freeze, "http://rdaregistry.info/Elements/u/P60373".freeze, "http://rdaregistry.info/Elements/u/P60375".freeze, "http://rdaregistry.info/Elements/u/P60376".freeze, "http://rdaregistry.info/Elements/u/P60406".freeze, "http://rdaregistry.info/Elements/u/P60421".freeze, "http://rdaregistry.info/Elements/u/P60441".freeze, "http://rdaregistry.info/Elements/u/P60449".freeze, "http://rdaregistry.info/Elements/u/P60450".freeze, "http://rdaregistry.info/Elements/u/P60451".freeze, "http://rdaregistry.info/Elements/u/P60452".freeze, "http://rdaregistry.info/Elements/u/P60455".freeze, "http://rdaregistry.info/Elements/u/P60456".freeze, "http://rdaregistry.info/Elements/u/P60457".freeze, "http://rdaregistry.info/Elements/u/P60458".freeze, "http://rdaregistry.info/Elements/u/P60459".freeze, "http://rdaregistry.info/Elements/u/P60460".freeze, "http://rdaregistry.info/Elements/u/P60461".freeze, "http://rdaregistry.info/Elements/u/P60462".freeze, "http://rdaregistry.info/Elements/u/P60464".freeze, "http://rdaregistry.info/Elements/u/P60466".freeze, "http://rdaregistry.info/Elements/u/P60467".freeze, "http://rdaregistry.info/Elements/u/P60483".freeze, "http://rdaregistry.info/Elements/u/P60815".freeze, "http://rdaregistry.info/Elements/u/P60834".freeze, "http://rdaregistry.info/Elements/u/P60836".freeze, "http://rdaregistry.info/Elements/u/P60849".freeze, "http://rdaregistry.info/Elements/u/P60869".freeze, "http://rdaregistry.info/Elements/u/P60871".freeze], @@ -3231,7 +3226,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60602".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has other agent associated with resource (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60375", definition: "Relates a resource to an agent who assigns a resource as an acknowledgement of the inspiration or support of a related agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dedicator.en".freeze, @@ -3240,7 +3235,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has dedicator".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60376", definition: "Relates a resource to an agent who conceives, aggregates, or organizes an exhibition or collection of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60066".freeze, "http://rdaregistry.info/Elements/u/P60067".freeze], @@ -3250,7 +3245,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has curator".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60377", definition: "Relates a resource to an agent who is a contributor agent of cartography who provides measurements or dimensional relationships for a geographic area.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/surveyor.en".freeze, @@ -3259,29 +3254,29 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has surveyor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60378", definition: "Relates a resource to an agent who contributes to a resource by giving apparent movement to inanimate objects or drawings.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60431".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/animator.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Creation of the drawings that are animated is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60606".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has animator".freeze, - "skos:scopeNote": "Creation of the drawings that are animated is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60379", definition: "Relates a resource to an agent who contributes to a resource by rewriting a composition for a medium of performance different from that for which a resource was originally intended.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60426".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/arrangerOfMusic.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Modification of the resource for the same medium of performance, etc., keeping the musical substance of the original composition essentially unchanged, is included. Substantial modification that results in the creation of a new musical resource is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60607".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has arranger of music".freeze, - "skos:scopeNote": "Modification of the resource for the same medium of performance, etc., keeping the musical substance of the original composition essentially unchanged, is included. Substantial modification that results in the creation of a new musical resource is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60380", definition: "Relates a resource to an agent who contributes to a primarily non-textual resource by providing text, such as writing captions for photographs or descriptions of maps. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60371".freeze, @@ -3291,7 +3286,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has writer of added text (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60392".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60381", definition: "Relates a resource to an agent who contributes to a resource by an architect, inventor, or other agent by making detailed plans or drawings for buildings, ships, aircraft, machines, objects, or other constructions.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/draftsman.en".freeze, @@ -3300,18 +3295,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has draftsman".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60382", definition: "Relates a resource to an agent who contributes to a resource by writing down or notating unwritten or unnotated content, or by changing it from one system of notation to another.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60379".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/transcriber.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Transcription of a musical resource for a different instrument or performing group is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60610".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has transcriber".freeze, - "skos:scopeNote": "Transcription of a musical resource for a different instrument or performing group is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60383", definition: "Relates a resource to an agent who contributes to a resource by coordinating the activities of composers, sound editors, and sound mixers for a moving image production or for a musical or dramatic presentation or entertainment.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/musicalDirector.en".freeze, @@ -3320,7 +3315,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has musical director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60384", definition: "Relates a resource to an agent who contributes to a resource by designing costumes for a moving image production or for a musical or dramatic presentation or entertainment.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/costumeDesigner.en".freeze, @@ -3329,17 +3324,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has costume designer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60385", definition: "Relates a resource to an agent who contributes to a resource by expressing linguistic content of a resource in a language different from that of previous resources.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/translator.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Translation of linguistic content between forms of the same language from different time periods is included.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60613".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has translator".freeze, - "skos:scopeNote": "Translation of linguistic content between forms of the same language from different time periods is included.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60386", definition: "Relates a resource to an agent who contributes to a resource by overseeing artists and craftspeople who build sets for moving image productions.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/artDirector.en".freeze, @@ -3348,7 +3343,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has art director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60387", definition: "Relates a resource to an agent who contributes to a resource by performing music, acting, dancing, speaking, and other roles, often in a musical or dramatic presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60141".freeze, "http://rdaregistry.info/Elements/u/P60142".freeze, "http://rdaregistry.info/Elements/u/P60143".freeze, "http://rdaregistry.info/Elements/u/P60144".freeze, "http://rdaregistry.info/Elements/u/P60145".freeze, "http://rdaregistry.info/Elements/u/P60146".freeze, "http://rdaregistry.info/Elements/u/P60147".freeze, "http://rdaregistry.info/Elements/u/P60148".freeze, "http://rdaregistry.info/Elements/u/P60149".freeze, "http://rdaregistry.info/Elements/u/P60150".freeze, "http://rdaregistry.info/Elements/u/P60151".freeze, "http://rdaregistry.info/Elements/u/P60153".freeze, "http://rdaregistry.info/Elements/u/P60154".freeze, "http://rdaregistry.info/Elements/u/P60155".freeze, "http://rdaregistry.info/Elements/u/P60156".freeze, "http://rdaregistry.info/Elements/u/P61202".freeze], @@ -3358,7 +3353,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has performer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60388", definition: "Relates a resource to an agent who contributes to a resource by preparing a court's opinions for publication.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/courtReporter.en".freeze, @@ -3367,7 +3362,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has court reporter".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60389", definition: "Relates a resource to an agent who contributes to a resource by providing a preface to an original resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfPreface.en".freeze, @@ -3376,7 +3371,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has writer of preface (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60392".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60390", definition: "Relates a resource to an agent who contributes to a resource by providing an interpretation or critical explanation of an original resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfAddedCommentary.en".freeze, @@ -3385,7 +3380,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has writer of added commentary (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60392".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60391", definition: "Relates a resource to an agent who contributes to a resource by providing an introduction to an original resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfIntroduction.en".freeze, @@ -3394,7 +3389,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has writer of introduction (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60392".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60392", definition: "Relates a resource to an agent who contributes to a resource by providing supplementary textual content (e.g., an appendix, an introduction, a preface) to an original resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60380".freeze, "http://rdaregistry.info/Elements/u/P60389".freeze, "http://rdaregistry.info/Elements/u/P60390".freeze, "http://rdaregistry.info/Elements/u/P60391".freeze, "http://rdaregistry.info/Elements/u/P60715".freeze, "http://rdaregistry.info/Elements/u/P60716".freeze], @@ -3404,29 +3399,29 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has writer of supplementary textual content (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60393", definition: "Relates a resource to an agent who contributes to a resource by revising or clarifying the content, or by selecting and putting together resources, or parts of resources, by one or more creators. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60434".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/editor.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Addition of an introduction, notes, or other critical matter, or preparing a resource for production, publication, or distribution is included. Major revision, adaptation, etc., that substantially changes the nature and content of the original resource, resulting in a new resource, is excluded. (Deprecated)".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60621".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has editor (Deprecated".freeze, - "skos:scopeNote": "Addition of an introduction, notes, or other critical matter, or preparing a resource for production, publication, or distribution is included. Major revision, adaptation, etc., that substantially changes the nature and content of the original resource, resulting in a new resource, is excluded. (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60394", definition: "Relates a resource to an agent who contributes to a resource by shortening an a related resource without changing the general meaning or manner of presentation.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60434".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/abridger.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Substantial modification that results in the creation of a new resource is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60622".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has abridger".freeze, - "skos:scopeNote": "Substantial modification that results in the creation of a new resource is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60395", definition: "Relates a resource to an agent who contributes to a resource by supervising the technical aspects of a sound or video recording session.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/recordingEngineer.en".freeze, @@ -3435,7 +3430,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has recording engineer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60396", definition: "Relates a resource to an agent who is a contributor to aggregate who creates a still image resource that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60750".freeze, @@ -3445,7 +3440,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent of still image".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60397", definition: "Relates a resource to an agent who contributes to a resource by using a recording device to capture sound or video during a recording session.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/recordist.en".freeze, @@ -3454,17 +3449,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has recordist".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60398", definition: "Relates a resource to an agent who contributes to a resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60377".freeze, "http://rdaregistry.info/Elements/u/P60378".freeze, "http://rdaregistry.info/Elements/u/P60379".freeze, "http://rdaregistry.info/Elements/u/P60381".freeze, "http://rdaregistry.info/Elements/u/P60382".freeze, "http://rdaregistry.info/Elements/u/P60383".freeze, "http://rdaregistry.info/Elements/u/P60384".freeze, "http://rdaregistry.info/Elements/u/P60385".freeze, "http://rdaregistry.info/Elements/u/P60386".freeze, "http://rdaregistry.info/Elements/u/P60387".freeze, "http://rdaregistry.info/Elements/u/P60388".freeze, "http://rdaregistry.info/Elements/u/P60392".freeze, "http://rdaregistry.info/Elements/u/P60393".freeze, "http://rdaregistry.info/Elements/u/P60394".freeze, "http://rdaregistry.info/Elements/u/P60395".freeze, "http://rdaregistry.info/Elements/u/P60396".freeze, "http://rdaregistry.info/Elements/u/P60397".freeze, "http://rdaregistry.info/Elements/u/P60399".freeze, "http://rdaregistry.info/Elements/u/P60419".freeze, "http://rdaregistry.info/Elements/u/P60422".freeze, "http://rdaregistry.info/Elements/u/P60437".freeze, "http://rdaregistry.info/Elements/u/P60446".freeze, "http://rdaregistry.info/Elements/u/P60748".freeze, "http://rdaregistry.info/Elements/u/P60749".freeze, "http://rdaregistry.info/Elements/u/P60809".freeze, "http://rdaregistry.info/Elements/u/P60811".freeze, "http://rdaregistry.info/Elements/u/P60813".freeze, "http://rdaregistry.info/Elements/u/P60824".freeze, "http://rdaregistry.info/Elements/u/P60828".freeze, "http://rdaregistry.info/Elements/u/P60838".freeze, "http://rdaregistry.info/Elements/u/P60840".freeze, "http://rdaregistry.info/Elements/u/P60851".freeze, "http://rdaregistry.info/Elements/u/P60892".freeze, "http://rdaregistry.info/Elements/u/P60894".freeze, "http://rdaregistry.info/Elements/u/P60895".freeze, "http://rdaregistry.info/Elements/u/P60896".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributor.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Contributors include editors, translators, arrangers of music, performers, etc.. (Deprecated)".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60626".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor (Deprecated)".freeze, - "skos:scopeNote": "Contributors include editors, translators, arrangers of music, performers, etc.. (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60399", definition: "Relates a resource to an agent who contributes to a stage resource through the general management and supervision of a performance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/stageDirector.en".freeze, @@ -3473,7 +3468,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has stage director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60400", definition: "Relates a resource to an agent currently having legal possession of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60068".freeze, @@ -3483,7 +3478,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has current owner".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60404".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60401", definition: "Relates a resource to an agent formerly having legal possession of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60091".freeze, "http://rdaregistry.info/Elements/u/P60092".freeze], @@ -3493,7 +3488,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has former owner".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60404".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60402", definition: "Relates a resource to an agent having legal custody of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/custodian.en".freeze, @@ -3501,7 +3496,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60631".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has custodian".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60404", definition: "Relates a resource to an agent having legal possession of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60400".freeze, "http://rdaregistry.info/Elements/u/P60401".freeze], @@ -3510,7 +3505,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60632".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has owner".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60406", altLabel: "has honoree".freeze, definition: "Relates a resource to an agent who is honoured by a resource.".freeze, @@ -3520,7 +3515,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has honouree".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60407", definition: "Relates a resource to an agent who is responsible for broadcasting a resource to an audience via radio, television, webcast, or other transmission media.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/broadcaster.en".freeze, @@ -3529,7 +3524,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has broadcaster".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60444".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60408", definition: "Relates a resource to an agent who is responsible for distributing a moving image resource to theatres or other distribution channels.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/filmDistributor.en".freeze, @@ -3538,7 +3533,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has film distributor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60438".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60409", definition: "Relates a resource to an agent who is responsible for manufacturing a resource by being responsible for the entire graphic design of a book, including arrangement of type and illustration, choice of materials, and process used.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/bookDesigner.en".freeze, @@ -3547,7 +3542,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has book designer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60410", definition: "Relates a resource to an agent who is responsible for manufacturing a resource by cutting letters, figures, or other marks on a surface such as a wooden or metal plate used for printing.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/engraver.en".freeze, @@ -3556,7 +3551,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has engraver".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60411", definition: "Relates a resource to an agent who is responsible for manufacturing a resource by embossing braille cells using a stylus, special embossing printer, or other device.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/brailleEmbosser.en".freeze, @@ -3565,7 +3560,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has braille embosser".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60412", definition: "Relates a resource to an agent who is responsible for manufacturing a resource by making a relief, intaglio, or planographic printing surface.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/printmaker.en".freeze, @@ -3574,7 +3569,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has printmaker".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60413", definition: "Relates a resource to an agent who is responsible for manufacturing a resource by pouring a liquid or molten substance into a mold and leaving it to solidify to take the shape of the mold.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/caster.en".freeze, @@ -3583,17 +3578,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has caster".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60414", definition: "Relates a resource to an agent who is responsible for manufacturing a resource by preparing a stone or plate for lithographic printing.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lithographer.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A lithographer includes a graphic artist creating a design directly on the surface from which printing will be done.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60642".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has lithographer".freeze, - "skos:scopeNote": "A lithographer includes a graphic artist creating a design directly on the surface from which printing will be done.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60415", definition: "Relates a resource to an agent who is responsible for manufacturing a resource by preparing plates used in the production of printed images or text.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/platemaker.en".freeze, @@ -3602,7 +3597,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has platemaker".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60416", definition: "Relates a resource to an agent who is responsible for manufacturing a resource by subjecting metal, glass, or some other surface used for printing, to acid or another corrosive substance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/etcher.en".freeze, @@ -3611,7 +3606,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has etcher".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60417", definition: "Relates a resource to an agent who is responsible for manufacturing a resource by using a photomechanical process for making prints directly from a hardened film of gelatin or other colloid that has ink-receptive and ink-repellent surfaces.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/collotyper.en".freeze, @@ -3620,7 +3615,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has collotyper".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60418", definition: "Relates a resource to an agent who is responsible for manufacturing a resource of printed text, notated music, or other content from type or plates.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/printer.en".freeze, @@ -3629,7 +3624,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has printer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60419", definition: "Relates a resource to an agent mentioned in an \"X presents\" credit for moving image materials and who is probably associated with production, finance, or distribution in some way.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/presenter.en".freeze, @@ -3638,7 +3633,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has presenter".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60420", definition: "Relates a resource to an academic supervisor who is responsible for advising or overseeing thesis or dissertation research for an academic degree that results in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/degreeSupervisor.en".freeze, @@ -3647,7 +3642,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has degree supervisor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60421", definition: "Relates a resource to an agent who decorates a specific resource using precious metals or colour, often with elaborate designs and motifs.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/illuminator.en".freeze, @@ -3656,7 +3651,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has illuminator".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60422", definition: "Relates a resource to an agent who is responsible for assembling, arranging, and trimming film, video, or other moving image formats, including both visual and audio aspects.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60663".freeze, @@ -3666,7 +3661,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has editor of moving image resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60423", definition: "Relates a resource to an agent who is responsible for creating a computer program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/programmer.en".freeze, @@ -3675,7 +3670,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has programmer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60424", definition: "Relates a resource to an agent who is responsible for creating a design for an object.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/designer.en".freeze, @@ -3684,7 +3679,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has designer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60425", definition: "Relates a resource to an agent who is responsible for a cartographic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/cartographer.en".freeze, @@ -3693,17 +3688,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has cartographer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60426", definition: "Relates a resource to an agent who is responsible for creating a musical resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/composer.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Adaptation of another musical resource to form a distinct alteration, paraphrasing a resource or creating a resource in the general style of another composer, or creating a resource that is based on the music of another composer, is included.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60655".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has composer".freeze, - "skos:scopeNote": "Adaptation of another musical resource to form a distinct alteration, paraphrasing a resource or creating a resource in the general style of another composer, or creating a resource that is based on the music of another composer, is included.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60427", definition: "Relates a resource to an agent who is responsible for creating a new device or process.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/inventor.en".freeze, @@ -3712,18 +3707,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has inventor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60428", definition: "Relates a resource to an agent who is responsible for creating a new resource such as a bibliography or a directory by selecting, arranging, aggregating, and editing data, information, etc.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60393".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/compiler.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Revising or clarifying the content, or selecting and putting together resources or parts of resources, by one or more creators is excluded".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60657".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has compiler".freeze, - "skos:scopeNote": "Revising or clarifying the content, or selecting and putting together resources or parts of resources, by one or more creators is excluded".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60429", definition: "Relates a resource to an agent who is responsible for creating a photographic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/photographer.en".freeze, @@ -3732,7 +3727,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has photographer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60430", definition: "Relates a resource to an agent who is responsible for creating a resource by acting as an interviewer, reporter, pollster, or some other kind of agent who gathers information.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/interviewer.en".freeze, @@ -3741,7 +3736,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has interviewer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60431", definition: "Relates a resource to an agent who is responsible for creating an original graphic design, drawing, painting, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60475".freeze, "http://rdaregistry.info/Elements/u/P60752".freeze, "http://rdaregistry.info/Elements/u/P60753".freeze], @@ -3751,7 +3746,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has artist".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60432", definition: "Relates a resource to an agent who is responsible for creating a resource by responding to an interviewer, usually a reporter, pollster, or some other kind of agent who gathers information.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/interviewee.en".freeze, @@ -3760,7 +3755,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has interviewee".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60433", definition: "Relates a resource to an agent who is responsible for a choreographic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/choreographer.en".freeze, @@ -3769,7 +3764,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has choreographer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60434", definition: "Relates a resource to an agent who is responsible for a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60476".freeze, "http://rdaregistry.info/Elements/u/P60477".freeze, "http://rdaregistry.info/Elements/u/P60478".freeze, "http://rdaregistry.info/Elements/u/P60751".freeze], @@ -3779,7 +3774,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has author".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60435", definition: "Relates a resource to an agent who is responsible for an architectural design, including a pictorial representation intended to show how a building or other structure will look when completed.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60473".freeze, @@ -3789,7 +3784,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has architect".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60436", definition: "Relates a resource to an agent who is responsible for creating an independent or personal film.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/filmmaker.en".freeze, @@ -3798,7 +3793,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has filmmaker".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60437", definition: "Relates a resource to an agent who is responsible for designing the overall visual appearance of a moving image production.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/productionDesigner.en".freeze, @@ -3807,7 +3802,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has production designer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60438", definition: "Relates a resource to an agent who is responsible for distributing a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60408".freeze, @@ -3816,7 +3811,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60667".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has distributor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60440", definition: "Relates a resource to an agent who is responsible for inscribing, fabricating, constructing, etc., an unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/producerOfUnpublishedResource.en".freeze, @@ -3824,7 +3819,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60817".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has producer of unpublished resource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60441", definition: "Relates a resource to an agent who is responsible for inscribing, fabricating, constructing, or other method of producing, an unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60169".freeze, "http://rdaregistry.info/Elements/u/P60170".freeze, "http://rdaregistry.info/Elements/u/P60171".freeze, "http://rdaregistry.info/Elements/u/P60889".freeze], @@ -3834,14 +3829,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has producer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60442", definition: "Relates a resource to an agent responsible for performing, narrating, and/or presenting a resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/performerNarratorAndOrPresenter.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has performer, narrator, and/or presenter (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60443", definition: "Relates a resource to an agent who is responsible for printing, duplicating, casting, or other method of manufacturing a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60409".freeze, "http://rdaregistry.info/Elements/u/P60410".freeze, "http://rdaregistry.info/Elements/u/P60411".freeze, "http://rdaregistry.info/Elements/u/P60412".freeze, "http://rdaregistry.info/Elements/u/P60413".freeze, "http://rdaregistry.info/Elements/u/P60414".freeze, "http://rdaregistry.info/Elements/u/P60415".freeze, "http://rdaregistry.info/Elements/u/P60416".freeze, "http://rdaregistry.info/Elements/u/P60417".freeze, "http://rdaregistry.info/Elements/u/P60418".freeze, "http://rdaregistry.info/Elements/u/P60746".freeze], @@ -3851,7 +3846,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has manufacturer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60444", definition: "Relates a resource to an agent who is responsible for publishing, releasing, or issuing a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60407".freeze, @@ -3860,7 +3855,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60670".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has publisher".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60446", definition: "Relates a resource to an agent who is responsible for recording the minutes of a meeting.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/minuteTaker.en".freeze, @@ -3869,17 +3864,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has minute taker".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60447", definition: "Relates a resource to an agent who is responsible for a resource".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60045".freeze, "http://rdaregistry.info/Elements/u/P60096".freeze, "http://rdaregistry.info/Elements/u/P60420".freeze, "http://rdaregistry.info/Elements/u/P60423".freeze, "http://rdaregistry.info/Elements/u/P60424".freeze, "http://rdaregistry.info/Elements/u/P60425".freeze, "http://rdaregistry.info/Elements/u/P60426".freeze, "http://rdaregistry.info/Elements/u/P60427".freeze, "http://rdaregistry.info/Elements/u/P60428".freeze, "http://rdaregistry.info/Elements/u/P60429".freeze, "http://rdaregistry.info/Elements/u/P60430".freeze, "http://rdaregistry.info/Elements/u/P60431".freeze, "http://rdaregistry.info/Elements/u/P60432".freeze, "http://rdaregistry.info/Elements/u/P60433".freeze, "http://rdaregistry.info/Elements/u/P60434".freeze, "http://rdaregistry.info/Elements/u/P60435".freeze, "http://rdaregistry.info/Elements/u/P60436".freeze, "http://rdaregistry.info/Elements/u/P60463".freeze, "http://rdaregistry.info/Elements/u/P60465".freeze, "http://rdaregistry.info/Elements/u/P60826".freeze, "http://rdaregistry.info/Elements/u/P60891".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/creator.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Creators include agents who are jointly responsible for the creation of a resource either performing the same role, such as in a collaboration between two writers, or performing different roles, such as in a collaboration between a composer and a lyricist.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60672".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has creator".freeze, - "skos:scopeNote": "Creators include agents who are jointly responsible for the creation of a resource either performing the same role, such as in a collaboration between two writers, or performing different roles, such as in a collaboration between a composer and a lyricist.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60449", definition: "Relates a resource to an agent who is responsible for the general management and supervision of a filmed performance, a radio or television program, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60084".freeze, "http://rdaregistry.info/Elements/u/P60085".freeze, "http://rdaregistry.info/Elements/u/P60086".freeze], @@ -3889,7 +3884,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60450", definition: "Relates a resource to an agent who is responsible for the set of technical, editorial, and intellectual procedures aimed at compensating for the degradation of a resource by bringing it back to a state as close as possible to its original condition.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/restorationist.en".freeze, @@ -3898,17 +3893,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has restorationist".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60451", definition: "Relates a resource to an agent who sponsors some aspect of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sponsoringAgentOfResource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes funding research and sponsoring an event that is the basis of a resource.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60675".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sponsoring agent of resource".freeze, - "skos:scopeNote": "Includes funding research and sponsoring an event that is the basis of a resource.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60452", definition: "Relates a resource to an agent who captures images, either electronically or on film or video stock, and often selects and arranges lighting.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/directorOfPhotography.en".freeze, @@ -3917,7 +3912,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has director of photography".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60454", altLabel: "related agent".freeze, definition: "Relates an agent to an agent who is associated with an agent.".freeze, @@ -3928,7 +3923,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related agent of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61033".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60455", definition: "Relates a resource to an agent to whom a resource is dedicated.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dedicatee.en".freeze, @@ -3937,7 +3932,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has dedicatee".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60456", definition: "Relates a resource to an agent to whom a resource or part of a resource is addressed.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/addressee.en".freeze, @@ -3946,7 +3941,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has addressee".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60457", definition: "Relates a resource to an agent who appeals a decision of a lower court recorded in a legal resource of a higher court.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/appellant.en".freeze, @@ -3955,7 +3950,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has appellant".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60458", definition: "Relates a resource to an agent who binds a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/binder.en".freeze, @@ -3964,7 +3959,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has binder".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60459", definition: "Relates a resource to an agent who brings a suit in a civil proceeding.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/plaintiff.en".freeze, @@ -3973,7 +3968,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has plaintiff".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60460", definition: "Relates a resource to an agent who has written a statement of dedication or gift on a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/inscriber.en".freeze, @@ -3982,7 +3977,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has inscriber".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60461", definition: "Relates a resource to an agent who hears and decides on legal matters in court.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/judge.en".freeze, @@ -3991,7 +3986,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has judge".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60462", definition: "Relates a resource to an agent who is accused in a criminal proceeding or sued in a civil proceeding.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61092".freeze, "http://rdaregistry.info/Elements/u/P61094".freeze], @@ -4001,7 +3996,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has defendant".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60463", definition: "Relates a resource to an agent who is a faculty moderator of an academic disputation, normally proposing a thesis and participating in the ensuing disputation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/praeses.en".freeze, @@ -4010,7 +4005,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has praeses".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60464", definition: "Relates a resource to an agent who adds notes and other information to a resource by hand.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/annotator.en".freeze, @@ -4019,7 +4014,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has annotator".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60465", definition: "Relates a resource to an agent who provides consultation services, and often makes recommendations, for a related agent who is represented as a creator of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/consultant.en".freeze, @@ -4028,7 +4023,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has consultant".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60466", definition: "Relates a resource to an agent whose manuscript signature appears on a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/autographer.en".freeze, @@ -4037,7 +4032,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has autographer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60467", definition: "Relates a resource to an agent who issues a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/issuingAgent.en".freeze, @@ -4046,14 +4041,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has issuing agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60468", definition: "Relates an agent to an agent's vocation or avocation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/professionOrOccupation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has profession or occupation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60469", definition: "Relates a resource to a resource in an analog format that is transferred to a digital format.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/electronicReproductionOf.en".freeze, @@ -4062,7 +4057,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is electronic reproduction of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60297".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60470", definition: "Relates a resource to a broad unstructured description of one or more attributes of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60122".freeze, "http://rdaregistry.info/Elements/u/P60123".freeze, "http://rdaregistry.info/Elements/u/P60124".freeze, "http://rdaregistry.info/Elements/u/P60125".freeze, "http://rdaregistry.info/Elements/u/P60126".freeze, "http://rdaregistry.info/Elements/u/P60127".freeze, "http://rdaregistry.info/Elements/u/P60128".freeze, "http://rdaregistry.info/Elements/u/P60129".freeze, "http://rdaregistry.info/Elements/u/P60130".freeze, "http://rdaregistry.info/Elements/u/P60131".freeze, "http://rdaregistry.info/Elements/u/P60132".freeze, "http://rdaregistry.info/Elements/u/P60133".freeze, "http://rdaregistry.info/Elements/u/P60134".freeze, "http://rdaregistry.info/Elements/u/P60135".freeze, "http://rdaregistry.info/Elements/u/P60136".freeze, "http://rdaregistry.info/Elements/u/P60137".freeze, "http://rdaregistry.info/Elements/u/P60868".freeze, "http://rdaregistry.info/Elements/u/P60905".freeze], @@ -4071,14 +4066,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60936".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60471", definition: "Relates a resource to an annotation providing additional information about resource or resource attributes. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnManifestationOrItem.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on manifestation or item (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60472", definition: "Relates a resource to a timespan to which measurements of position for a body or orientation for an orbit are referred.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/epoch.en".freeze, @@ -4086,7 +4081,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60991".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has epoch".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60473", definition: "Relates a resource to an agent who is an architect who is responsible for creating landscape resources.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/landscapeArchitect.en".freeze, @@ -4095,7 +4090,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has landscape architect".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60435".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60474", definition: "Relates a resource to a resource that is an archival collection described by a guide to the organization, arrangement, and contents of the collection.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/findingAidFor.en".freeze, @@ -4104,7 +4099,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is finding aid for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60307".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60475", definition: "Relates a resource to an agent who is an artist who is responsible for creating a three-dimensional resource by modeling, carving, or similar technique.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sculptor.en".freeze, @@ -4113,7 +4108,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sculptor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60431".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60476", definition: "Relates a resource to an agent who is an author of a screenplay, script, or scene.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/screenwriter.en".freeze, @@ -4122,49 +4117,49 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has screenwriter".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60434".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60477", definition: "Relates a resource to an agent who is an author of the words of a popular song, including a song from a musical.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60478".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lyricist.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Authoring of just dialogue from a musical is excluded".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60707".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has lyricist".freeze, - "skos:scopeNote": "Authoring of just dialogue from a musical is excluded".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60434".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60478", definition: "Relates a resource to an agent who is an author of the words of a musical or choreographic resource such as an opera, a ballet, or other resource for the musical stage, or an oratorio.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60477".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/librettist.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Authoring of the words of just the songs from a musical is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60708".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has librettist".freeze, - "skos:scopeNote": "Authoring of the words of just the songs from a musical is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60434".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60479", definition: "Relates a resource to a resource whose content is partially superseded and rendered obsolete by the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/replacementInPartOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This element applies in general to a static resource or an integrating resource.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60103".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is replacement in part of".freeze, - "skos:scopeNote": "This element applies in general to a static resource or an integrating resource.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60480", definition: "Relates a resource to a resource whose content is superseded and rendered obsolete by the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/replacementOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This element applies in general to a static resource or an integrating resource.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60104".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is replacement of".freeze, - "skos:scopeNote": "This element applies in general to a static resource or an integrating resource.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60481", definition: "Relates a resource to an equalization system, noise-reduction system, or other processing that is used in making an audio recording.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/specialPlaybackCharacteristic.en".freeze, @@ -4172,14 +4167,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has special playback characteristic".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60351".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60482", definition: "Relates an agent to an institution commonly associated with an agent. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/associatedInstitution.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has associated institution (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60483", definition: "Relates a resource to an institution or faculty conferring an academic degree on a candidate. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/grantingInstitutionOrFaculty.en".freeze, @@ -4187,72 +4182,72 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has granting institution or faculty (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60484", definition: "Relates an agent to biographical or historical information about an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/agentHistory.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has agent history".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60485", definition: "Relates a resource to an indication of the kinds of resource that supplement the main resources that are embodied by an augmentation aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/supplementaryContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has supplementary content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60486", definition: "Relates a resource to an indication of the kinds of image content that supplement the main resources that are embodied by an augmentation aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/illustrativeContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has illustrative content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60487", definition: "Relates a resource to an indication of the kinds of resource that provide alternative sensory modes to perceive the main resources that are embodied by an augmentation aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/accessibilityContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Accessibility content includes accessible labels, audio description, captioning, image description, sign language, and subtitles. Accessibility content does not include subtitles in a language different from the spoken content.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has accessibility content".freeze, - "skos:scopeNote": "Accessibility content includes accessible labels, audio description, captioning, image description, sign language, and subtitles. Accessibility content does not include subtitles in a language different from the spoken content.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60488", definition: "Relates a resource to a musical or physical layout of the content of a resource that is presented in the form of musical notation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/formatOfNotatedMusic.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has format of notated music".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60489", definition: "Relates a resource to a statement that identifies an academic institution, degree, and year for which a resource was presented.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dissertationOrThesisInformation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has dissertation or thesis information".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60490", definition: "Relates a resource to a name, address, or other means of communicating with an agent from which a resource may be obtained.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contactInformation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Contact information includes the name, address, etc. of the publisher, distributor, etc. of a published resource, or of the archival repository that holds the resource.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contact information".freeze, - "skos:scopeNote": "Contact information includes the name, address, etc. of the publisher, distributor, etc. of a published resource, or of the archival repository that holds the resource.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60491", definition: "Relates a resource to a summary of information about the history of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/historyOfResource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has history of resource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60492", definition: "Relates an agent to a summary of information about the life or history of an agent. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/biographicalInformation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has biographical information (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60493", definition: "Relates a resource to a word, character, or group of words or characters that appears in conjunction with, and is subordinate to, a title proper of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/otherTitleInformation.en".freeze, @@ -4260,42 +4255,42 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has other title information".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60369".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60494", definition: "Relates a resource to a word, character, or group of words or characters that appears in conjunction with, and is subordinate to, a title proper of a series.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/otherTitleInformationOfSeries.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has other title information of series".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60495", definition: "Relates a resource to a word, character, or group of words or characters that appears in conjunction with, and is subordinate to, a title proper of a subseries. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/otherTitleInformationOfSubseries.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has other title information of subseries (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60496", definition: "Relates a resource to limitations placed on access to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/restrictionsOnAccess.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has restrictions on access".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60497", definition: "Relates a resource to a limitation placed on reproduction, publication, exhibition, etc., of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/restrictionsOnUse.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has restrictions on use".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60498", definition: "Relates a resource to an indication of mathematical data and other features of the cartographic content of a resource not recorded in statements of scale, projection, and coordinates.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfCartographicContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of cartographic content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60499", definition: "Relates a resource to a designation in numeric or alphabetic form presented on the first issue or part of a serial issued in a sequence of numbering.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/firstAlphanumericDesignationOfSequence.en".freeze, @@ -4304,7 +4299,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has first alphanumeric designation of sequence".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60533".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60500", definition: "Relates a resource to a designation in numeric or alphabetic form presented on the last issue or part of a serial issued in a sequence of numbering.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lastAlphanumericDesignationOfSequence.en".freeze, @@ -4313,27 +4308,27 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has last alphanumeric designation of sequence".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60533".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60501", definition: "Relates a resource to a designation in date form presented on the first issue or part of a serial issued in a sequence of numbering.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/firstChronologicalDesignationOfSequence.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Designation includes a year; year and month; month, day, and year.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61213".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has first chronological designation of sequence".freeze, - "skos:scopeNote": "Designation includes a year; year and month; month, day, and year.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60533".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60502", definition: "Relates a resource to a designation in date form presented on the last issue or part of a serial issued in a sequence of numbering.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lastChronologicalDesignationOfSequence.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Designation includes a year; year and month; month, day, and year.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61217".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has last chronological designation of sequence".freeze, - "skos:scopeNote": "Designation includes a year; year and month; month, day, and year.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60533".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60503", definition: "Relates a resource to a resource that is a diachronic resource that continues the partial content of another diachronic resource that is completed.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/splitInto.en".freeze, @@ -4342,7 +4337,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is split into".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60504", definition: "Relates a resource to a resource that is formed from a coming together of two or more resources.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mergedToForm.en".freeze, @@ -4351,7 +4346,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is merged to form".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60278".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60505", definition: "Relates a resource to a resource that came together with one or more other resources to form a new resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mergerOf.en".freeze, @@ -4360,7 +4355,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is merger of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60506", definition: "Relates a resource to a timespan that is a point of intersection of the ecliptic and the celestial equator, occupied by the sun when its declination is 0°.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/equinox.en".freeze, @@ -4368,7 +4363,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60992".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has equinox".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60507", definition: "Relates a resource to an other title information in a language or script that differs from that recorded in an other title information element.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60508".freeze, @@ -4377,7 +4372,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel other title information".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60369".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60508", definition: "Relates a resource to an other title information of a series in a language or script that differs from that recorded in an other title information of series element.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60509".freeze, @@ -4386,7 +4381,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel other title information of series".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60507".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60509", definition: "Relates a resource to an other title information of a subseries in a language or script that differs from that recorded in an other title information of subseries element. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelOtherTitleInformationOfSubseries.en".freeze, @@ -4394,25 +4389,25 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel other title information of subseries (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60508".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60510", definition: "Relates a resource to an indication of supplemental information about scale.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/additionalScaleInformation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Statement of comparative measurements or limitation of the scale to particular parts of the content of a resource are included.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has additional scale information".freeze, - "skos:scopeNote": "Statement of comparative measurements or limitation of the scale to particular parts of the content of a resource are included.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60565".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60511", altLabel: "URL".freeze, definition: "Relates a resource to an address of an online resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/uniformResourceLocator.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A Uniform Resource Locators includes all resource identifiers intended to provide online access to a resource using a standard Internet browser.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has uniform resource locator".freeze, - "skos:scopeNote": "A Uniform Resource Locators includes all resource identifiers intended to provide online access to a resource using a standard Internet browser.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60512", definition: "Relates an agent to an address of an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/addressOfAgent.en".freeze, @@ -4420,14 +4415,14 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60964".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has address of agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60513", definition: "Relates a resource to an arrangement of text, images, tactile notation, or other content in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/layout.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has layout".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60514", definition: "Relates a resource to a timespan during which an academic degree is conferred by a granting institution or faculty.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/yearDegreeGranted.en".freeze, @@ -4436,17 +4431,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has year degree granted".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60527".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60515", definition: "Relates a resource to a chief name of a resource, that is, a title normally used when naming a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/titleProper.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "An alternative title is treated as part of the title proper.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60957".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has title proper".freeze, - "skos:scopeNote": "An alternative title is treated as part of the title proper.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60369".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60516", definition: "Relates a resource to a name of a series appearing on a resource of a part of a series.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60517".freeze, @@ -4456,7 +4451,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has title of series".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60367".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60517", definition: "Relates a resource to a name of a series appearing on a resource of a part of a subseries. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/titleProperOfSubseries.en".freeze, @@ -4465,14 +4460,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has title proper of subseries (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60516".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60518", definition: "Relates a resource to a chronological or geographic coverage of the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/coverageOfContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has coverage of content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60519", definition: "Relates a resource to a clarity or fineness of detail in a digital image, expressed by a measurement of the image in pixels, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resolution.en".freeze, @@ -4480,21 +4475,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resolution".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60350".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60520", definition: "Relates a resource to a category of user for whom the content of a resource is intended, or for whom the content is considered suitable.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/intendedAudience.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has intended audience".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60521", definition: "Relates a resource to a condition under which a publisher, distributor, etc., will normally supply a resource or the price of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/termsOfAvailability.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has terms of availability".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60522", definition: "Relates a resource to a configuration of an audio track on a sound-track film.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/trackConfiguration.en".freeze, @@ -4502,7 +4497,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has track configuration".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60351".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60523", definition: "Relates a resource to a place from which a resource originated.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfOriginOfResource.en".freeze, @@ -4511,7 +4506,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of origin of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61014".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60524", definition: "Relates a resource to a date on which an agent was established or founded.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfEstablishment.en".freeze, @@ -4520,7 +4515,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of establishment".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60324".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60525", definition: "Relates a resource to a date on which an agent was terminated or dissolved.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfTermination.en".freeze, @@ -4529,7 +4524,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of termination".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60324".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60526", definition: "Relates a resource to a date or range of dates on which a conference, congress, meeting, exhibition, fair, festival, etc., was held.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfConference.en".freeze, @@ -4538,7 +4533,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of conference".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60324".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60527", definition: "Relates a resource to a timespan that is the earliest associated with a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60514".freeze, @@ -4548,14 +4543,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61020".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60528", definition: "Relates a resource to a system or equipment required for access to the content of an electronic analog or digital resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/equipmentOrSystemRequirement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has equipment or system requirement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60529", definition: "Relates a resource to a format that is used in the production of a projected image.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/presentationFormat.en".freeze, @@ -4563,7 +4558,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has presentation format".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60353".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60530", definition: "Relates a resource to a full form of a part of a name represented only by an initial or abbreviation in a form chosen as a preferred name, or a part of a name not included in a form chosen as a preferred name.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fullerFormOfName.en".freeze, @@ -4571,14 +4566,14 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61192".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has fuller form of name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60531", definition: "Relates an agent to a gender with which an agent identifies.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/gender.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has gender".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60532", definition: "Relates a resource to a groove width of an analog disc or a groove pitch of an analog cylinder.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61105".freeze, "http://rdaregistry.info/Elements/u/P61106".freeze], @@ -4587,7 +4582,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has groove characteristic".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60351".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60533", definition: "Relates a resource to the first and last designations of a sequence of the individual parts or iterations of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60499".freeze, "http://rdaregistry.info/Elements/u/P60500".freeze, "http://rdaregistry.info/Elements/u/P60501".freeze, "http://rdaregistry.info/Elements/u/P60502".freeze, "http://rdaregistry.info/Elements/u/P60818".freeze, "http://rdaregistry.info/Elements/u/P60819".freeze, "http://rdaregistry.info/Elements/u/P60820".freeze, "http://rdaregistry.info/Elements/u/P60821".freeze], @@ -4595,7 +4590,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has numbering of sequence".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60534", definition: "Relates a resource to an identifier that is assigned to a series by an ISSN registration agency.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/issn.en".freeze, @@ -4603,35 +4598,35 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61117".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has ISSN".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60535", definition: "Relates a resource to an identifier assigned to a subseries by an ISSN registration agency. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/issnOfSubseries.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has ISSN of subseries (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60536", definition: "Relates a resource to an instrument, voice, or ensemble for which a musical resource was originally conceived. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mediumOfPerformance.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has medium of performance (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60537", definition: "Relates a resource to an instrument, voice, or ensemble and the number of parts, performers and hands used, or intended to be used, to perform the musical content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mediumOfPerformanceOfMusicalContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has medium of performance of musical content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60538", definition: "Relates a resource to an interval at which an issue or part of a diachronic resource is issued.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/frequency.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has frequency".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60539", definition: "Relates a resource to a measurement of a carrier or a container of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60540".freeze, "http://rdaregistry.info/Elements/u/P60541".freeze], @@ -4639,7 +4634,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has dimensions".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60540", definition: "Relates a resource to a measurement of a face of a map, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dimensionsOfCartographicImage.en".freeze, @@ -4647,7 +4642,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has dimensions of cartographic image".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60539".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60541", definition: "Relates a resource to a measurement of the pictorial area of a still image.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dimensionsOfStillImage.en".freeze, @@ -4655,14 +4650,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has dimensions of still image".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60539".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60542", definition: "Relates a resource to a method or system used to represent the surface of the earth or of a celestial sphere on a plane.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/projectionOfCartographicContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has projection of cartographic content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60543", definition: "Relates a resource to a method used to encode audio content for playback.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/typeOfRecording.en".freeze, @@ -4670,7 +4665,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has type of recording".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60351".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60544", definition: "Relates a resource to a name of an agent who is responsible for distributing a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfDistributor.en".freeze, @@ -4679,7 +4674,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has name of distributor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60545", definition: "Relates a resource to a nomen that is a name of an agent who is responsible for inscribing, fabricating, constructing, or other method of producing an unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfProducer.en".freeze, @@ -4688,7 +4683,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has name of producer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60546", definition: "Relates a resource to a nomen that is a name of an agent who is responsible for printing, duplicating, casting, or other method of manufacturing a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfManufacturer.en".freeze, @@ -4697,7 +4692,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has name of manufacturer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60547", definition: "Relates a resource to a name of an agent who is responsible for publishing, releasing, or issuing a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfPublisher.en".freeze, @@ -4706,7 +4701,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has name of publisher".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60548", definition: "Relates a place to a name of place that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredNameOfPlace.en".freeze, @@ -4715,7 +4710,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has preferred name of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60366".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60549", definition: "Relates an agent to a name of agent that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredNameOfAgent.en".freeze, @@ -4724,14 +4719,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has preferred name of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60368".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60550", definition: "Relates a resource to a type, number, and measurement unit that quantify an aspect of the extent of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/extent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has extent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60551", definition: "Relates a resource to a number of bytes in a digital file.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fileSize.en".freeze, @@ -4739,7 +4734,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has file size".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60350".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60552", definition: "Relates a resource to a number of sound channels used to make a recording.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/configurationOfPlaybackChannels.en".freeze, @@ -4747,7 +4742,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has configuration of playback channels".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60351".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60553", definition: "Relates a resource to a number of tracks on an audiotape.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/tapeConfiguration.en".freeze, @@ -4755,21 +4750,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has tape configuration".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60351".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60554", definition: "Relates a resource to a physical material used for the support or backing to which the base material of a resource is attached.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mount.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has mount".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60555", definition: "Relates a resource to a place, date, or other information associated with the recording, filming, etc., of the content of a resource. ".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/captureInformation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has capture information".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60556", definition: "Relates a resource to a place associated with recording, filming, etc., the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfCapture.en".freeze, @@ -4778,7 +4773,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of capture".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61014".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60557", definition: "Relates a resource to an extent of resource that is a playing time, performance time, running time, or other length of time.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/duration.en".freeze, @@ -4786,23 +4781,23 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61109".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has duration".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60558", definition: "Relates a resource to an indication of the presence of colour or tone in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/colourContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Black, white, single colour shades of black, single colour tints of white, and single colour tones of gray are considered to be single colours. Colour content applies to a resource with a content type of \"cartographic image\", \"cartographic moving image\", \"cartographic three-dimensional form\", \"notated movement\", \"notated music\", \"performed movement\", \"still image\", \"text\", \"three-dimensional moving image\", \"three-dimensional form\", or \"two-dimensional moving image\".".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has colour content".freeze, - "skos:scopeNote": "Black, white, single colour shades of black, single colour tints of white, and single colour tones of gray are considered to be single colours. Colour content applies to a resource with a content type of \"cartographic image\", \"cartographic moving image\", \"cartographic three-dimensional form\", \"notated movement\", \"notated music\", \"performed movement\", \"still image\", \"text\", \"three-dimensional moving image\", \"three-dimensional form\", or \"two-dimensional moving image\".".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60559", definition: "Relates a resource to an indication of the presence or absence of sound embodied by a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/soundContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Sound content is present in an resource with a content type of \"recorded music\", \"sounds\", or \"spoken word.\"".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sound content".freeze, - "skos:scopeNote": "Sound content is present in an resource with a content type of \"recorded music\", \"sounds\", or \"spoken word.\"".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60560", definition: "Relates a resource to a process that is used to produce a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60561".freeze, "http://rdaregistry.info/Elements/u/P60562".freeze], @@ -4810,7 +4805,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has production method".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60561", definition: "Relates a resource to the process used to produce a tactile resource (e.g., embossing, thermoform).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/productionMethodForTactileResource.en".freeze, @@ -4818,7 +4813,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has production method for tactile resource (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60560".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60562", definition: "Relates a resource to the process used to produce an original manuscript or a copy.. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/productionMethodForManuscript.en".freeze, @@ -4826,7 +4821,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has production method for manuscript (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60560".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60563", definition: "Relates a resource to a ratio of horizontal distances in the cartographic content of a resource to the actual distances they represent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/horizontalScaleOfCartographicContent.en".freeze, @@ -4834,7 +4829,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has horizontal scale of cartographic content".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60565".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60564", definition: "Relates a resource to a ratio of the dimensions of a still image or three-dimensional form embodied by a resource to the dimensions of the thing it represents.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/scaleOfStillImageOrThreeDimensionalForm.en".freeze, @@ -4842,23 +4837,23 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has scale of still image or three-dimensional form".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60565".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60565", definition: "Relates a resource to a ratio of the dimensions of an image or three-dimensional form to the dimensions of the thing that is represented.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60510".freeze, "http://rdaregistry.info/Elements/u/P60563".freeze, "http://rdaregistry.info/Elements/u/P60564".freeze, "http://rdaregistry.info/Elements/u/P60579".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/scale.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Scale can apply to horizontal, vertical, angular, and/or other measurements represented in the resource.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has scale".freeze, - "skos:scopeNote": "Scale can apply to horizontal, vertical, angular, and/or other measurements represented in the resource.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60566", definition: "Relates a resource to a numerical ratio of the width to the height of a moving image.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/aspectRatio.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has aspect ratio".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60567", definition: "Relates a resource to the relationship between an original audio carrier and the carrier of a reproduction made from the original (e.g., a tape duplication master, a test pressing).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/generationOfAudioRecording.en".freeze, @@ -4866,7 +4861,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has generation of audio recording (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60568".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60568", definition: "Relates a resource to a relationship between an original carrier and a carrier of a reproduction that is made from the original.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60567".freeze, "http://rdaregistry.info/Elements/u/P60569".freeze, "http://rdaregistry.info/Elements/u/P60570".freeze, "http://rdaregistry.info/Elements/u/P60571".freeze, "http://rdaregistry.info/Elements/u/P60572".freeze], @@ -4874,7 +4869,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has generation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60569", definition: "Relates a resource to the relationship between an original carrier of a digital resource and the carrier of a reproduction made from the original (e.g., a derivative master).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/generationOfDigitalResource.en".freeze, @@ -4882,7 +4877,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has generation of digital resource (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60568".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60570", definition: "Relates a resource to the relationship between an original carrier of a motion picture film resource and the carrier of a reproduction made from the original (e.g., a reference print).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/generationOfMotionPictureFilm.en".freeze, @@ -4890,7 +4885,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has generation of motion picture film (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60568".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60571", definition: "Relates a resource to the relationship between an original carrier of a videotape resource and the carrier of a reproduction made from the original (e.g., a show copy).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/generationOfVideotape.en".freeze, @@ -4898,7 +4893,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has generation of videotape (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60568".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60572", definition: "Relates a resource to the relationship between an original microform carrier and the carrier of a reproduction made from the original (e.g., a printing master).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/generationOfMicroform.en".freeze, @@ -4906,14 +4901,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has generation of microform (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60568".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60573", definition: "Relates a resource to a relationship of the colours and tones in an image to the colours and tones of the object reproduced.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/polarity.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has polarity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60574", definition: "Relates a resource to a resource whose content is incorporated in the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/absorptionOf.en".freeze, @@ -4922,7 +4917,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is absorption of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60575", definition: "Relates a resource to a resource whose partial content is incorporated in the content of another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/absorptionInPartOf.en".freeze, @@ -4931,17 +4926,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is absorption in part of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60576", definition: "Relates a resource to a resource that is a diachronic resource that is completed whose content is continued by another diachronic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/continuationOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This element applies in general to a successive resource.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60306".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is continuation of".freeze, - "skos:scopeNote": "This element applies in general to a successive resource.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60577", definition: "Relates a resource to a resource whose narrative is continued by a later resource.. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sequelTo.en".freeze, @@ -4950,14 +4945,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is sequel to (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60261".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60578", definition: "Relates a resource to a proportional relationship between a whole sheet in a printed or manuscript resource, and the individual leaves that result if that sheet is left full, cut, or folded.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/bibliographicFormat.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has bibliographic format".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60579", definition: "Relates a resource to a scale of elevation or vertical dimension of the cartographic content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/verticalScaleOfCartographicContent.en".freeze, @@ -4965,42 +4960,42 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has vertical scale of cartographic content".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60565".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60580", definition: "Relates a resource to a set of pitch relationships that establishes the tonal centre, or principal tonal centre, used, or intended to be used, for performance of musical content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/key.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has key".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60581", definition: "Relates a resource to a numerical ratio of the size of a micro-image in relation to an original from which it was produced.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/reductionRatio.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has reduction ratio".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60582", definition: "Relates a resource to a size of the type that is used to represent the characters and symbols in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fontSize.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has font size".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60583", definition: "Relates a resource to the circumstances under which a resource is directly acquired, including a method, source, and date of acquisition.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/immediateSourceOfAcquisitionOfResource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has immediate source of acquisition of resource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60584", definition: "Relates a resource to a specific character of the primary content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/natureOfContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has nature of content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60585", definition: "Relates a resource to a speed at which a projected carrier must be operated to produce the moving image intended.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/projectionSpeed.en".freeze, @@ -5008,7 +5003,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has projection speed".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60353".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60586", definition: "Relates a resource to a speed at which an audio carrier must be operated to produce the sound intended.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/playingSpeed.en".freeze, @@ -5016,7 +5011,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has playing speed".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60351".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60587", definition: "Relates a resource to a speed at which streaming audio, video, or other content is designed to play..".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/encodedBitrate.en".freeze, @@ -5025,7 +5020,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has encoded bitrate".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60350".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60588", definition: "Relates a resource to a title of resource that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredTitleOfResource.en".freeze, @@ -5034,18 +5029,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has preferred title of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60367".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60589", definition: "Relates a resource to a title proper in another language or script.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60590".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelTitleProper.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "An alternative title in another language and/or script is treated as part of the parallel title proper.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61116".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel title proper".freeze, - "skos:scopeNote": "An alternative title in another language and/or script is treated as part of the parallel title proper.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60369".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60590", definition: "Relates a resource to a title of a series in another language or script.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60591".freeze, @@ -5055,7 +5050,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel title of series".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60589".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60591", definition: "Relates a resource to a title proper of a subseries in another language or script. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelTitleProperOfSubseries.en".freeze, @@ -5063,7 +5058,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has parallel title proper of subseries (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60590".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60592", definition: "Relates an agent to a place where an agent dies.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfDeath.en".freeze, @@ -5072,7 +5067,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of death".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61018".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60593", definition: "Relates an agent to a place where an agent is born..".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfBirth.en".freeze, @@ -5081,7 +5076,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of birth".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61018".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60594", definition: "Relates a resource to a type of medium used to record sound on an audio carrier.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/recordingMedium.en".freeze, @@ -5089,14 +5084,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has recording medium".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60351".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60595", definition: "Relates a resource to the underlying physical material of a microfilm, microfiche, photographic film, or motion picture film resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/baseMaterialForMicrofilmMicrofichePhotographicFilmAndMotionPictureFilm.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has base material for microfilm, microfiche, photographic film, and motion picture film (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60596", definition: "Relates a resource to an underlying physical material of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/baseMaterial.en".freeze, @@ -5104,7 +5099,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has base material".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60995".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60597", definition: "Relates a resource to a title of resource that is assigned by an ISSN registration agency.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/keyTitle.en".freeze, @@ -5113,7 +5108,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has key title".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61023".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60598", definition: "Relates an agent to a year an agent died.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfDeath.en".freeze, @@ -5122,7 +5117,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of death".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60324".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60599", definition: "Relates an agent to a year an agent was born.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfBirth.en".freeze, @@ -5131,18 +5126,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of birth".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60324".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60600", definition: "Relates an agent to a resource that includes a contribution of adding written words to music. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60707".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfAddedLyricsOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Writing of lyrics in collaboration with a composer to form an original resource is excluded.. (Deprecated)".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60371".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is writer of added lyrics of (Deprecated)".freeze, - "skos:scopeNote": "Writing of lyrics in collaboration with a composer to form an original resource is excluded.. (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60608".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60601", definition: "Relates an agent to a legal resource of a higher court that records a decision of a lower court that appeals against an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/appelleeOf.en".freeze, @@ -5151,7 +5146,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is appellee of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60602", definition: "Relates an agent to a resource that involves a responsibility other than creating, having custody, owning, producing, publishing, distributing, or manufacturing. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60002".freeze, "http://rdaregistry.info/Elements/u/P60003".freeze, "http://rdaregistry.info/Elements/u/P60004".freeze, "http://rdaregistry.info/Elements/u/P60005".freeze, "http://rdaregistry.info/Elements/u/P60032".freeze, "http://rdaregistry.info/Elements/u/P60601".freeze, "http://rdaregistry.info/Elements/u/P60603".freeze, "http://rdaregistry.info/Elements/u/P60604".freeze, "http://rdaregistry.info/Elements/u/P60634".freeze, "http://rdaregistry.info/Elements/u/P60650".freeze, "http://rdaregistry.info/Elements/u/P60668".freeze, "http://rdaregistry.info/Elements/u/P60673".freeze, "http://rdaregistry.info/Elements/u/P60674".freeze, "http://rdaregistry.info/Elements/u/P60675".freeze, "http://rdaregistry.info/Elements/u/P60678".freeze, "http://rdaregistry.info/Elements/u/P60689".freeze, "http://rdaregistry.info/Elements/u/P60690".freeze, "http://rdaregistry.info/Elements/u/P60691".freeze, "http://rdaregistry.info/Elements/u/P60692".freeze, "http://rdaregistry.info/Elements/u/P60693".freeze, "http://rdaregistry.info/Elements/u/P60695".freeze, "http://rdaregistry.info/Elements/u/P60696".freeze, "http://rdaregistry.info/Elements/u/P60698".freeze, "http://rdaregistry.info/Elements/u/P60700".freeze, "http://rdaregistry.info/Elements/u/P60702".freeze, "http://rdaregistry.info/Elements/u/P60703".freeze, "http://rdaregistry.info/Elements/u/P60816".freeze, "http://rdaregistry.info/Elements/u/P60835".freeze, "http://rdaregistry.info/Elements/u/P60837".freeze, "http://rdaregistry.info/Elements/u/P60850".freeze, "http://rdaregistry.info/Elements/u/P60870".freeze, "http://rdaregistry.info/Elements/u/P60872".freeze], @@ -5160,7 +5155,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60374".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is other agent associated with resource of (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60603", definition: "Relates an agent to a resource that is assigned as an acknowledgement of the inspiration or support of a related agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dedicatorOf.en".freeze, @@ -5169,7 +5164,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is dedicator of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60604", definition: "Relates an agent to a resource that is aggregated or organized in an exhibition or collection.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60006".freeze, "http://rdaregistry.info/Elements/u/P60007".freeze], @@ -5179,7 +5174,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is curator of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60605", definition: "Relates an agent to a cartographic resource that incorporates a contribution by an agent of providing measurements or dimensional relationships for a geographic area that is represented.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/surveyorOf.en".freeze, @@ -5188,18 +5183,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is surveyor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60606", definition: "Relates an agent to a resource that includes a contribution by an agent of giving apparent movement to inanimate objects or drawings.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60660".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/animatorOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Creation of the drawings that are animated is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60378".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is animator of".freeze, - "skos:scopeNote": "Creation of the drawings that are animated is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60607", definition: "Relates an agent to a resource that includes a contribution by an agent of rewriting a musical composition for a medium of performance different from that for which the resource was originally intended.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60655".freeze, @@ -5209,7 +5204,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is arranger of music of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60608", definition: "Relates an agent to a resource that includes a contribution of adding text, such as captions for photographs or descriptions of maps. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60600".freeze, @@ -5219,7 +5214,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is writer of added text of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60620".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60609", definition: "Relates an agent to a resource that includes a contribution by an agent of making detailed plans or drawings for buildings, ships, aircraft, machines, objects, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/draftsmanOf.en".freeze, @@ -5228,18 +5223,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is draftsman of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60610", definition: "Relates an agent to a resource that includes a contribution by an agent of writing down or notating previously unwritten or unnotated content, or by changing it from one system of notation to another.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60607".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/transcriberOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Transcription of a musical resource for a different instrument or performing group is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60382".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is transcriber of".freeze, - "skos:scopeNote": "Transcription of a musical resource for a different instrument or performing group is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60611", definition: "Relates an agent to a resource that includes a contribution by an agent of coordinating the activities of composers, sound editors, and sound mixers for a moving image production or for a musical or dramatic presentation or entertainment.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/musicalDirectorOf.en".freeze, @@ -5248,7 +5243,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is musical director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60612", definition: "Relates an agent to a resource that includes a contribution by an agent of designing costumes for a moving image production or for a musical or dramatic presentation or entertainment.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/costumeDesignerOf.en".freeze, @@ -5257,17 +5252,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is costume designer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60613", definition: "Relates an agent to a resource that includes a contribution by an agent of expressing the linguistic content of the resourc in a different language.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/translatorOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Translation of linguistic content between forms of the same language from different time periods is included.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60385".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is translator of".freeze, - "skos:scopeNote": "Translation of linguistic content between forms of the same language from different time periods is included.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60614", definition: "Relates an agent to a resource that includes a contribution by an agent of overseeing artists and craftspeople who build sets for moving image productions.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/artDirectorOf.en".freeze, @@ -5276,7 +5271,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is art director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60615", definition: "Relates an agent to a resource that includes a contribution by an agent of performing music, acting, dancing, speaking, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60016".freeze, "http://rdaregistry.info/Elements/u/P60017".freeze, "http://rdaregistry.info/Elements/u/P60018".freeze, "http://rdaregistry.info/Elements/u/P60019".freeze, "http://rdaregistry.info/Elements/u/P60020".freeze, "http://rdaregistry.info/Elements/u/P60021".freeze, "http://rdaregistry.info/Elements/u/P60022".freeze, "http://rdaregistry.info/Elements/u/P60023".freeze, "http://rdaregistry.info/Elements/u/P60024".freeze, "http://rdaregistry.info/Elements/u/P60025".freeze, "http://rdaregistry.info/Elements/u/P60026".freeze, "http://rdaregistry.info/Elements/u/P60028".freeze, "http://rdaregistry.info/Elements/u/P60029".freeze, "http://rdaregistry.info/Elements/u/P60030".freeze, "http://rdaregistry.info/Elements/u/P60031".freeze], @@ -5286,7 +5281,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is performer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60616", definition: "Relates an agent who contributes to a resource by preparing a court's opinions for publication to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/courtReporterOf.en".freeze, @@ -5295,7 +5290,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is court reporter of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60617", definition: "Relates an agent who contributes to a resource by providing an introduction to an original resource to a resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfPrefaceOf.en".freeze, @@ -5304,7 +5299,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is writer of introduction of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60620".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60618", definition: "Relates an agent to a resource that includes a contribution of providing an interpretation or critical explanation. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfAddedCommentaryOf.en".freeze, @@ -5313,7 +5308,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is writer of added commentary of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60620".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60619", definition: "Relates an agent to a resource that includes a contribution of providing an introduction. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfIntroductionOf.en".freeze, @@ -5322,7 +5317,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is writer of afterword of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60620".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60620", definition: "Relates an agent to a resource that includes a contribution of providing supplementary textual content such as an introduction or a preface. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60608".freeze, "http://rdaregistry.info/Elements/u/P60617".freeze, "http://rdaregistry.info/Elements/u/P60618".freeze, "http://rdaregistry.info/Elements/u/P60619".freeze, "http://rdaregistry.info/Elements/u/P60717".freeze, "http://rdaregistry.info/Elements/u/P60718".freeze], @@ -5332,7 +5327,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is writer of supplementary content of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60621", definition: "Relates an agent to a resource that includes a contribution by an agent of revision or clarification of the content, or selection and aggregation of resources, or parts of resources, by one or more creators.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/editorOf.en".freeze, @@ -5341,7 +5336,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is editor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60622", definition: "Relates an agent to a resource that includes a contribution by an agent of shortening another resource without changing the general meaning or manner of presentation.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60663".freeze, @@ -5351,7 +5346,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is abridger of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60623", definition: "Relates an agent to a resource that includes a contribution by an agent of supervising the technical aspects of the audio content of a recording session.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/recordingEngineerOf.en".freeze, @@ -5360,7 +5355,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is recording engineer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60624", definition: "Relates an agent to a resource that is an aggregate that embodies a still image resource created by an agent.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60660".freeze, @@ -5371,7 +5366,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent of still image of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60625", definition: "Relates an agent to a resource that includes a contribution by an agent of using a recording device to capture sound or video during a recording session, including field recordings of natural sounds, folkloric events, music, or other performances.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/recordistOf.en".freeze, @@ -5380,7 +5375,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is recordist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60626", definition: "Relates an agent to a resource that includes a contribution. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60605".freeze, "http://rdaregistry.info/Elements/u/P60606".freeze, "http://rdaregistry.info/Elements/u/P60607".freeze, "http://rdaregistry.info/Elements/u/P60609".freeze, "http://rdaregistry.info/Elements/u/P60610".freeze, "http://rdaregistry.info/Elements/u/P60611".freeze, "http://rdaregistry.info/Elements/u/P60612".freeze, "http://rdaregistry.info/Elements/u/P60613".freeze, "http://rdaregistry.info/Elements/u/P60614".freeze, "http://rdaregistry.info/Elements/u/P60615".freeze, "http://rdaregistry.info/Elements/u/P60616".freeze, "http://rdaregistry.info/Elements/u/P60620".freeze, "http://rdaregistry.info/Elements/u/P60621".freeze, "http://rdaregistry.info/Elements/u/P60622".freeze, "http://rdaregistry.info/Elements/u/P60623".freeze, "http://rdaregistry.info/Elements/u/P60624".freeze, "http://rdaregistry.info/Elements/u/P60625".freeze, "http://rdaregistry.info/Elements/u/P60627".freeze, "http://rdaregistry.info/Elements/u/P60647".freeze, "http://rdaregistry.info/Elements/u/P60651".freeze, "http://rdaregistry.info/Elements/u/P60666".freeze, "http://rdaregistry.info/Elements/u/P60671".freeze, "http://rdaregistry.info/Elements/u/P60754".freeze, "http://rdaregistry.info/Elements/u/P60755".freeze, "http://rdaregistry.info/Elements/u/P60810".freeze, "http://rdaregistry.info/Elements/u/P60812".freeze, "http://rdaregistry.info/Elements/u/P60814".freeze, "http://rdaregistry.info/Elements/u/P60825".freeze, "http://rdaregistry.info/Elements/u/P60829".freeze, "http://rdaregistry.info/Elements/u/P60839".freeze, "http://rdaregistry.info/Elements/u/P60841".freeze, "http://rdaregistry.info/Elements/u/P60852".freeze], @@ -5389,7 +5384,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60398".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor of (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60627", definition: "Relates an agent to a resource that includes a contribution by an agent of general management and supervision of a stage performance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/stageDirectorOf.en".freeze, @@ -5398,7 +5393,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is stage director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60628", definition: "Relates an agent to a resource that involves a responsibility of an agent for current legal possession.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60008".freeze, @@ -5408,7 +5403,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is current owner of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60632".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60629", definition: "Relates an agent employed by an agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/employee.en".freeze, @@ -5416,7 +5411,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60679".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has employee".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60630", definition: "Relates an agent to a resource that involves a responsibility of an agent for former legal possession.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60012".freeze, "http://rdaregistry.info/Elements/u/P60013".freeze], @@ -5426,7 +5421,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is former owner of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60632".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60631", definition: "Relates an agent to a resource that involves a responsibility of an agent for legal custody.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/custodianOf.en".freeze, @@ -5434,7 +5429,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60402".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is custodian of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60632", definition: "Relates an agent to a resource that involves a responsibility of an agent for legal possession.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60628".freeze, "http://rdaregistry.info/Elements/u/P60630".freeze], @@ -5443,7 +5438,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60404".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is owner of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60633", definition: "Relates an agent holding an office in or commanding an agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60864".freeze, "http://rdaregistry.info/Elements/u/P60866".freeze], @@ -5453,7 +5448,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has officer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60634", altLabel: "honoree of".freeze, definition: "Relates an agent to a resource that marks the esteem of and respect for an agent.".freeze, @@ -5463,7 +5458,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is honouree of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60635", definition: "Relates an agent to a resource that involves a responsibility of an agent for broadcasting to an audience via radio, television, webcast, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/broadcasterOf.en".freeze, @@ -5472,7 +5467,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is broadcaster of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60670".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60636", definition: "Relates an agent to a resource that involves a responsibility of an agent for distribution of a moving image to theatres or other channels.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/filmDistributorOf.en".freeze, @@ -5481,7 +5476,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is film distributor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60667".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60637", definition: "Relates an agent to a resource that involves a responsibility of an agent for the entire graphic design of a book, including arrangement of type and illustration, choice of materials, and process used.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/bookDesignerOf.en".freeze, @@ -5490,7 +5485,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is book designer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60638", definition: "Relates an agent to a resource that involves a responsibility of an agent for cutting letters, figures, etc., on a surface such as a wooden or metal plate used for printing.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/engraverOf.en".freeze, @@ -5499,7 +5494,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is engraver of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60639", definition: "Relates an agent to a resource that involves a responsibility of an agent for embossing braille cells using a stylus, special embossing printer, or other device.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/brailleEmbosserOf.en".freeze, @@ -5508,7 +5503,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is braille embosser of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60640", definition: "Relates an agent to a resource that involves a responsibility of an agent for making a relief, intaglio, or planographic printing surface.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/printmakerOf.en".freeze, @@ -5517,7 +5512,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is printmaker of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60641", definition: "Relates an agent to a resource that involves a responsibility of an agent for pouring a liquid or molten substance into a mold and leaving it to solidify to take the shape of the mold.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/casterOf.en".freeze, @@ -5526,17 +5521,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is caster of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60642", definition: "Relates an agent to a resource that involves a responsibility of an agent for preparing a stone or plate for lithographic printing.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lithographerOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A lithographer includes a graphic artist creating a design directly on the surface from which printing will be done.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60414".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is lithographer of".freeze, - "skos:scopeNote": "A lithographer includes a graphic artist creating a design directly on the surface from which printing will be done.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60643", definition: "Relates an agent to a resource that involves a responsibility of an agent for preparing plates used in the production of printed images or text.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/platemakerOf.en".freeze, @@ -5545,7 +5540,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is platemaker of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60644", definition: "Relates an agent to a resource that involves a responsibility of an agent for subjecting metal, glass, or some other surface used for printing, to acid or another corrosive substance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/etcherOf.en".freeze, @@ -5554,7 +5549,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is etcher of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60645", definition: "Relates an agent to a resource that involves a responsibility of an agent for using a photomechanical process for making prints directly from a hardened film of gelatin or other colloid that has ink-receptive and ink-repellent surfaces.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/collotyperOf.en".freeze, @@ -5563,7 +5558,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is collotyper of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60646", definition: "Relates an agent to a resource that involves a responsibility of an agent for manufacturing printed text, notated music, etc., from type or plates, such as a book, newspaper, magazine, broadside, score, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/printerOf.en".freeze, @@ -5572,7 +5567,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is printer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60647", definition: "Relates an agent to a resource with an \"X presents:\" credit in a resource of a moving image for an agent who is probably associated with production, finance, or distribution in some way.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/presenterOf.en".freeze, @@ -5581,7 +5576,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is presenter of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60648", definition: "Relates an agent of which an agent is a member to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/memberOf.en".freeze, @@ -5589,7 +5584,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60697".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is member of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60649", definition: "Relates an agent to a resource that involves a responsibility as an advisor or supervisor of thesis or dissertation research, overseeing either an academic degree or thesis.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/degreeSupervisorOf.en".freeze, @@ -5598,7 +5593,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is degree supervisor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60650", definition: "Relates an agent to a resource that is decorated using precious metals or colour, often with elaborate designs and motifs.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/illuminatorOf.en".freeze, @@ -5607,7 +5602,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is illuminator of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60651", definition: "Relates an agent to a resource that includes a contribution tof assembling, arranging, and trimming film, video, or other moving image formats, including both visual and audio aspects.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/editorOfMovingImageResourceOf.en".freeze, @@ -5616,7 +5611,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is editor of moving image resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60652", definition: "Relates an agent to a resource that involves a responsibility of an agent for computer programming.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/programmerOf.en".freeze, @@ -5625,7 +5620,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is programmer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60653", definition: "Relates an agent to a resource that involves a responsibility of an agent for design of an object.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/designerOf.en".freeze, @@ -5634,7 +5629,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is designer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60654", definition: "Relates an agent to a resource that involves a responsibility of an agent for a cartographic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/cartographerOf.en".freeze, @@ -5643,7 +5638,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is cartographer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60655", definition: "Relates an agent to a musical resource that involves a responsibility of an agent for music.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/composerOf.en".freeze, @@ -5652,7 +5647,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is composer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60656", definition: "Relates an agent who is responsible for creating a new device or process to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/inventorOf.en".freeze, @@ -5661,7 +5656,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is inventor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60657", definition: "Relates an agent to a resource that involves a responsibility of an agent for selecting, arranging, aggregating, and editing data and information for a resource such as a bibliography or a directory.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60621".freeze, @@ -5671,7 +5666,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is compiler of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60658", definition: "Relates an agent to a resource that is a photographic resource that involves a responsibility of an agent for photography.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/photographerOf.en".freeze, @@ -5680,7 +5675,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is photographer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60659", definition: "Relates an agent to a resource that includes a contribution by an agent of interviewing, reporting, or some other information gathering agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/interviewerOf.en".freeze, @@ -5689,7 +5684,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is interviewer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60660", definition: "Relates an agent to a resource that involves a responsibility of an agent for conceiving, and often implementing, an original graphic design, drawing, painting, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60705".freeze, "http://rdaregistry.info/Elements/u/P60758".freeze, "http://rdaregistry.info/Elements/u/P60759".freeze], @@ -5699,7 +5694,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is artist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60661", definition: "Relates an agent to a resource that includes a contribution by an agent of being interviewed, usually by a reporter or some other information gathering agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/intervieweeOf.en".freeze, @@ -5708,7 +5703,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is interviewee of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60662", definition: "Relates an agent to a choreographic resource that involves a responsibility of an agent for choreography.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/choreographerOf.en".freeze, @@ -5717,7 +5712,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is choreographer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60663", definition: "Relates an agent to a resource that involves a responsibility of an agent for creating a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60706".freeze, "http://rdaregistry.info/Elements/u/P60707".freeze, "http://rdaregistry.info/Elements/u/P60708".freeze, "http://rdaregistry.info/Elements/u/P60757".freeze], @@ -5727,7 +5722,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is author of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60664", definition: "Relates an agent to a resource that involves a responsibility of an agent for creating an architectural design, including a pictorial representation intended to show how a building or other structure will look when completed.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60704".freeze, @@ -5737,7 +5732,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is architect of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60665", definition: "Relates an agent to a resource that involves a responsibility of an agent for an independent or personal film.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/filmmakerOf.en".freeze, @@ -5746,7 +5741,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is filmmaker of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60666", definition: "Relates an agent to a resource that includes a contribution by an agent of designing the overall visual appearance of a moving image production.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/productionDesignerOf.en".freeze, @@ -5755,7 +5750,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is production designer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60667", definition: "Relates an agent to a resource that involves a responsibility of an agent for distribution.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60636".freeze, @@ -5764,7 +5759,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60438".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is distributor of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60668", definition: "Relates an agent to a resource that involves a responsibility of an agent for most of the business aspects of a production for screen, sound recording, television, webcast, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60033".freeze, "http://rdaregistry.info/Elements/u/P60034".freeze, "http://rdaregistry.info/Elements/u/P60035".freeze, "http://rdaregistry.info/Elements/u/P60883".freeze], @@ -5774,7 +5769,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is producer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60669", definition: "Relates an agent to a resource that involves a responsibility of an agent for printing, duplicating, casting, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60637".freeze, "http://rdaregistry.info/Elements/u/P60638".freeze, "http://rdaregistry.info/Elements/u/P60639".freeze, "http://rdaregistry.info/Elements/u/P60640".freeze, "http://rdaregistry.info/Elements/u/P60641".freeze, "http://rdaregistry.info/Elements/u/P60642".freeze, "http://rdaregistry.info/Elements/u/P60643".freeze, "http://rdaregistry.info/Elements/u/P60644".freeze, "http://rdaregistry.info/Elements/u/P60645".freeze, "http://rdaregistry.info/Elements/u/P60646".freeze, "http://rdaregistry.info/Elements/u/P60747".freeze], @@ -5784,7 +5779,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is manufacturer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60670", definition: "Relates an agent to a resource that involves a responsibility of an agent for publishing, releasing, or issuing.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60635".freeze, @@ -5793,7 +5788,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60444".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is publisher of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60671", definition: "Relates an agent to a resource that includes a contribution by an agent of recording the minutes of a meeting.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/minuteTakerOf.en".freeze, @@ -5802,7 +5797,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is minute taker of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60672", definition: "Relates an agent to a resource that involves a creation responsibility.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60001".freeze, "http://rdaregistry.info/Elements/u/P60014".freeze, "http://rdaregistry.info/Elements/u/P60649".freeze, "http://rdaregistry.info/Elements/u/P60652".freeze, "http://rdaregistry.info/Elements/u/P60653".freeze, "http://rdaregistry.info/Elements/u/P60654".freeze, "http://rdaregistry.info/Elements/u/P60655".freeze, "http://rdaregistry.info/Elements/u/P60656".freeze, "http://rdaregistry.info/Elements/u/P60657".freeze, "http://rdaregistry.info/Elements/u/P60658".freeze, "http://rdaregistry.info/Elements/u/P60659".freeze, "http://rdaregistry.info/Elements/u/P60660".freeze, "http://rdaregistry.info/Elements/u/P60661".freeze, "http://rdaregistry.info/Elements/u/P60662".freeze, "http://rdaregistry.info/Elements/u/P60663".freeze, "http://rdaregistry.info/Elements/u/P60664".freeze, "http://rdaregistry.info/Elements/u/P60665".freeze, "http://rdaregistry.info/Elements/u/P60699".freeze, "http://rdaregistry.info/Elements/u/P60701".freeze, "http://rdaregistry.info/Elements/u/P60827".freeze, "http://rdaregistry.info/Elements/u/P60881".freeze, "http://rdaregistry.info/Elements/u/P60882".freeze], @@ -5811,7 +5806,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60447".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is creator of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60673", definition: "Relates an agent to a resource that involves a responsibility of an agent for the general management and supervision of a filmed performance, a radio or television program, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60009".freeze, "http://rdaregistry.info/Elements/u/P60010".freeze, "http://rdaregistry.info/Elements/u/P60011".freeze], @@ -5821,7 +5816,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60674", definition: "Relates an agent to a resource that involves a responsibility of an agent for compensation of degradation by bringing it back to a state as close as possible to its original condition using a set of technical, editorial, and intellectual procedures.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/restorationistOf.en".freeze, @@ -5830,17 +5825,17 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is restorationist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60675", definition: "Relates an agent to a resource that involves a responsibility of an agent for sponsoring some aspect of a resource,".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sponsoriedResourceOfAgent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes funding research and sponsoring an event that is the basis of a resource.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60451".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sponsored resource of agent".freeze, - "skos:scopeNote": "Includes funding research and sponsoring an event that is the basis of a resource.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60676", definition: "Relates an agent sponsoring an agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sponsoringAgentOfAgent.en".freeze, @@ -5848,7 +5843,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60688".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sponsoring agent of agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60678", definition: "Relates an agent to a resoure that involves a responsibility of an agent for capturing images, either electronically or on film or video stock, and often selecting and arranging the lighting.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/directorOfPhotographyOf.en".freeze, @@ -5857,7 +5852,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is director of photography of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60679", definition: "Relates an agent who employs an agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/employer.en".freeze, @@ -5865,7 +5860,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60629".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has employer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60680", definition: "Relates an agent who is hierarchically superior to a related agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/hierarchicalSuperior.en".freeze, @@ -5873,7 +5868,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60681".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has hierarchical superior".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60681", definition: "Relates an agent who is subordinate to a related agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/hierarchicalSubordinate.en".freeze, @@ -5881,7 +5876,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60680".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has hierarchical subordinate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60682", definition: "Relates an agent who merged with a related agent to form a third to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mergee.en".freeze, @@ -5889,7 +5884,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60682".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has mergee".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60683", definition: "Relates an agent who precedes a related agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/predecessor.en".freeze, @@ -5897,7 +5892,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60686".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has predecessor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60684", definition: "Relates an agent who resulted from a merger of two or more other agents to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/productOfMerger.en".freeze, @@ -5905,7 +5900,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60736".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has product of merger".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60685", definition: "Relates an agent who resulted from a split or division of a related agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/productOfSplit.en".freeze, @@ -5913,7 +5908,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60733".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has product of split".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60686", definition: "Relates an agent who succeeds or follows a related agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/successor.en".freeze, @@ -5921,7 +5916,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60683".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has successor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60687", definition: "Relates an agent who an agent founded to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/foundedAgentOfAgent.en".freeze, @@ -5929,7 +5924,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60694".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has founded agent of agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60688", definition: "Relates an agent who an agent sponsors to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sponsoringAgentOfAgent.en".freeze, @@ -5937,7 +5932,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60676".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sponsored agent of agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60689", definition: "Relates an agent to a resource that involves a responsibility of an agent for being commemorated.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dedicateeOf.en".freeze, @@ -5946,7 +5941,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is dedicatee of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60690", definition: "Relates an agent to a resource or a portion of a resource that is addressed to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/addresseeOf.en".freeze, @@ -5955,7 +5950,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is addressee of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60691", definition: "Relates an agent to a resource of a higher court recording a decision of a lower court that is appealed by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/appellantOf.en".freeze, @@ -5964,7 +5959,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is appellant of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60692", definition: "Relates an agent to a resource that involves a responsibility of an agent for binding.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/binderOf.en".freeze, @@ -5973,7 +5968,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is binder of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60693", definition: "Relates an agent to a resource that involves a responsibility of an agent for bringing a suit in a civil proceeding.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/plaintiffOf.en".freeze, @@ -5982,7 +5977,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is plaintiff of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60694", definition: "Relates an agent who founded an agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/founderAgentOfAgent.en".freeze, @@ -5990,7 +5985,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60687".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has founder agent of agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60695", definition: "Relates an agent to a resource that involves a responsibility of an agent for inscribing a text, such as a statement of dedication or gift.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/inscriberOf.en".freeze, @@ -5999,7 +5994,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is inscriber of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60696", definition: "Relates an agent to a resource that involves a responsibility of an agent for hearing and decision on legal matters in court.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/judgeOf.en".freeze, @@ -6008,7 +6003,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is judge of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60697", definition: "Relates an agent who is a member of an agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/member.en".freeze, @@ -6016,7 +6011,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60648".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has member".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60698", definition: "Relates an agent to a resource that involves a responsibility of an agent for being accused in a criminal proceeding or sued in a civil proceeding.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61093".freeze, "http://rdaregistry.info/Elements/u/P61095".freeze], @@ -6026,7 +6021,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is defendant of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60699", definition: "Relates an agent to a resource that involves a responsibility as a faculty moderator of an academic disputation, normally proposing a thesis and participating in the ensuing disputation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/praesesOf.en".freeze, @@ -6035,7 +6030,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is praeses of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60700", definition: "Relates an agent to a resource that carries notes and other information added by hand.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/annotatorOf.en".freeze, @@ -6044,7 +6039,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is annotator of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60701", definition: "Relates an agent to a resource that involves a responsibility of an agent for providing consultation services, and often making recommendations, to a creator of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/consultantOf.en".freeze, @@ -6053,7 +6048,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is consultant of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60702", definition: "Relates an agent to a resource that involves a responsibility of an agent for a manuscript signature appearing on it.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/autographerOf.en".freeze, @@ -6062,7 +6057,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is autographer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60703", definition: "Relates an agent to a resource that involves a responsibility of an agent for issuing a resource, such as an official organ of the body.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/issuingAgentOf.en".freeze, @@ -6071,7 +6066,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is issuing agent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60704", definition: "Relates an agent to a resource that involves a responsibility of an agent for architectural aspects of landscaping.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/landscapeArchitectOf.en".freeze, @@ -6080,7 +6075,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is landscape architect of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60664".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60705", definition: "Relates an agent to a resource that involves a responsibility of an agent for three-dimensional modeling, carving, or similar technique.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sculptorOf.en".freeze, @@ -6089,7 +6084,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is sculptor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60660".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60706", definition: "Relates an agent to a resource that involves a responsibility of an agent for authoring a screenplay, script, or scene.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/screenwriterOf.en".freeze, @@ -6098,7 +6093,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is screenwriter of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60663".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60707", definition: "Relates an agent to a resource that involves a responsibility of an agent for authoring the words of a popular song, including a song from a musical.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60708".freeze, @@ -6108,7 +6103,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is lyricist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60663".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60708", definition: "Relates an agent to a resource that involves a responsibility of an agent for authoring the words of an opera or other musical stage resource, or an oratorio.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60707".freeze, @@ -6118,7 +6113,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is librettist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60663".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60709", definition: "Relates a resource to a resource that is an augmentation of, or is augmented by, or is complemented by, or accompanies, or is accompanied by a resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60196".freeze, "http://rdaregistry.info/Elements/u/P60198".freeze, "http://rdaregistry.info/Elements/u/P60204".freeze, "http://rdaregistry.info/Elements/u/P60307".freeze], @@ -6127,7 +6122,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60709".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has accompanying resource relationship with (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60710", definition: "Relates a resource to a resource that is based on or is a derivative of a related resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60250".freeze, "http://rdaregistry.info/Elements/u/P60305".freeze], @@ -6136,14 +6131,14 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60710".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has derivative resource relationship with (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60711", definition: "Relates a resource to a resource that is described in or is a description of the resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/descriptiveResourceRelationshipWith.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has descriptive resource relationship with (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60712", definition: "Relates a resource to a resource that is equivalent to a related resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60191".freeze, @@ -6152,7 +6147,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60712".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has equivalent resource relationship with (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60713", definition: "Relates a resource to a resource that is preceded by or succeeded by a related resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60261".freeze, "http://rdaregistry.info/Elements/u/P60278".freeze], @@ -6161,7 +6156,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60713".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sequential resource relationship with (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60714", definition: "Relates a resource to a resource that is contained in or contains a related resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60101".freeze, "http://rdaregistry.info/Elements/u/P60249".freeze], @@ -6170,7 +6165,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60714".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has whole-part resource relationship with (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60715", definition: "Relates a resource to an agent who contributes to a resource by providing an afterword to an original resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfAfterword.en".freeze, @@ -6179,7 +6174,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has writer of afterword (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60392".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60716", definition: "Relates a resource to an agent who contributes to a resource by providing a postface to an original resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfPostface.en".freeze, @@ -6188,7 +6183,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has writer of postface (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60392".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60717", definition: "Relates an agent to a resource that includes a contribution of providing an afterword. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfAfterwordOf.en".freeze, @@ -6197,7 +6192,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is writer of preface of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60620".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60718", definition: "Relates an agent to a resource that includes a contribution of providing a postface. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfPostfaceOf.en".freeze, @@ -6206,7 +6201,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is writer of postface of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60620".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60719", definition: "Relates a resource to a resource that is adapted as a musical theatre resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/musicalTheatreAdaptationOf.en".freeze, @@ -6215,7 +6210,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is musical theatre adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60720", definition: "Relates a resource to a resource that is adapted as an opera.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/operaAdaptationOf.en".freeze, @@ -6224,7 +6219,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is opera adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60721", definition: "Relates a resource to a musical theatre resource based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsMusicalTheatre.en".freeze, @@ -6233,7 +6228,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as musical theatre".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60722", definition: "Relates a resource to an opera based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsOpera.en".freeze, @@ -6242,7 +6237,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as opera".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60723", definition: "Relates a resource to a musical resource that complements a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60118".freeze, "http://rdaregistry.info/Elements/u/P60725".freeze, "http://rdaregistry.info/Elements/u/P60727".freeze, "http://rdaregistry.info/Elements/u/P60729".freeze, "http://rdaregistry.info/Elements/u/P60731".freeze, "http://rdaregistry.info/Elements/u/P60732".freeze], @@ -6252,7 +6247,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has music".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60724", definition: "Relates a resource to resource that is complemented by a musical resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60202".freeze, "http://rdaregistry.info/Elements/u/P60726".freeze, "http://rdaregistry.info/Elements/u/P60728".freeze, "http://rdaregistry.info/Elements/u/P60730".freeze], @@ -6262,7 +6257,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is music for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60725", definition: "Relates a resource to a musical resource that complements a resource that is a video.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/videoMusic.en".freeze, @@ -6271,7 +6266,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has video music".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60723".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60726", definition: "Relates a resource to a resource that is a video that is complemented by a musical resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/musicForVideo.en".freeze, @@ -6280,7 +6275,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is music for video".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60724".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60727", definition: "Relates a resource to a musical resource that complements a resource that is a television program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/televisionProgramMusic.en".freeze, @@ -6289,7 +6284,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has television program music".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60723".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60728", definition: "Relates a resource to a resource that is a television program that is complemented by a musical resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/musicForTelevisionProgram.en".freeze, @@ -6298,7 +6293,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is music for television program".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60724".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60729", definition: "Relates a resource to a musical resource that complements a resource that is a radio program.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/radioProgramMusic.en".freeze, @@ -6307,7 +6302,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has radio program music".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60723".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60730", definition: "Relates a resource to a resource that is a radio program that is complemented by a musical resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/musicForRadioProgram.en".freeze, @@ -6316,7 +6311,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is music for radio program".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60724".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60731", definition: "Relates a resource to a resource that is a motion picture that is complemented by a musical resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/musicForMotionPicture.en".freeze, @@ -6325,7 +6320,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is music for motion picture".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60723".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60732", definition: "Relates a resource to a musical resource that complements a resource that is a motion picture.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/motionPictureMusic.en".freeze, @@ -6334,7 +6329,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has motion picture music".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60723".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60733", definition: "Relates an agent who split or divided into a related agent to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/predecessorOfSplit.en".freeze, @@ -6342,7 +6337,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60685".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has predecessor of split".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60736", definition: "Relates an agent who formed a related agent by merging with one or more other agents to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/componentOfMerger.en".freeze, @@ -6350,7 +6345,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60684".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has component of merger".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60737", definition: "Relates an agent to an agent holding an office in or commanding an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60865".freeze, "http://rdaregistry.info/Elements/u/P60867".freeze], @@ -6360,21 +6355,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has officer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60738", definition: "Relates an agent to an agent who acts for a local affiliated body and others at a broader organizational level.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/broaderAffiliatedAgent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has broader affiliated agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60739", definition: "Relates a local agent affiliated with a broader agent which acts for it and others at a broader organizational level to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/localAffiliate.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has local affiliate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60740", definition: "Relates a resource to a resource that is a choreographic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/choreography.en".freeze, @@ -6383,7 +6378,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has choreography".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60741", definition: "Relates a resource to a resource that is complemented by a choreographic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/choreographyFor.en".freeze, @@ -6392,7 +6387,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is choreography for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60742", definition: "Relates a resource to a graphic novel based on another resource".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsGraphicNovel.en".freeze, @@ -6401,7 +6396,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as graphic novel".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60743", definition: "Relates a resource to a resource that is adapted as a graphic novel.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/graphicNovelizationOf.en".freeze, @@ -6410,7 +6405,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is graphic novelization of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60744", definition: "Relates a resource to relates a resource to a video game based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsVideoGame.en".freeze, @@ -6419,7 +6414,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as video game".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60260".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60745", definition: "Relates a resource to a resource that is adapted as a video game.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/videoGameAdaptationOf.en".freeze, @@ -6428,7 +6423,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is video game adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60241".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60746", definition: "Relates a resource to an agent who is responsible for the production of paper used to manufacture a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/papermaker.en".freeze, @@ -6437,7 +6432,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has papermaker".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60443".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60747", definition: "Relates an agent to a resource that involves a responsibility of an agent for producing paper.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/papermakerOf.en".freeze, @@ -6446,7 +6441,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is papermaker of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60669".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60748", definition: "Relates a resource to an agent who contributes to a moving image resource by designing and creating post-production visual effects.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/visualEffectsProvider.en".freeze, @@ -6455,7 +6450,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has visual effects provider".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60749", definition: "Relates a resource to an agent who contributes to a moving image or audio resource by designing and creating on-set special effects such as on-set mechanical effects and in-camera optical effects.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/specialEffectsProvider.en".freeze, @@ -6464,7 +6459,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has special effects provider".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60750", definition: "Relates a resource to an illustrator who contributes to a comic book, graphic novel, etc., by drawing text and graphic sound effects.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/letterer.en".freeze, @@ -6473,18 +6468,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has letterer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60396".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60751", definition: "Relates a resource to an agent who is an author who is appointed by an organization to report on the proceedings of its meetings.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60446".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/rapporteur.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Responsibility limited to taking minutes is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60757".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has rapporteur".freeze, - "skos:scopeNote": "Responsibility limited to taking minutes is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60434".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60752", definition: "Relates a resource to an agent who is an artist who is responsible for calligraphy where the focus of interest lies in the aesthetic value of the penmanship or graphic artistry, regardless of whether the same agent is also responsible for the inscribed text.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/calligrapher.en".freeze, @@ -6493,7 +6488,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has calligrapher".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60431".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60753", definition: "Relates a resource to an agent who is an artist who is responsible for exploiting the book form or altering its physical structure.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/bookArtist.en".freeze, @@ -6502,7 +6497,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has book artist".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60431".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60754", definition: "Relates an agent to a resource that includes a contribution by an agent of designing and creating post-production visual effects.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/visualEffectsProviderOf.en".freeze, @@ -6511,7 +6506,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is visual effects provider of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60755", definition: "Relates an agent to a resource that includes a contribution designing and creating on-set special effects, such as on-set mechanical effects and in-camera optical effects.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/specialEffectsProviderOf.en".freeze, @@ -6520,7 +6515,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is special effects provider of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60756", definition: "Relates an agent to a resource that includes a contribution by an agent of drawing text and graphic sound effects for a comic book, graphic novel, etc. ".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lettererOf.en".freeze, @@ -6529,7 +6524,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is letterer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60624".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60757", definition: "Relates an agent to a resource that involves a responsibility of an agent for reporting on the proceedings of meetings of an organization.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60708".freeze, @@ -6539,7 +6534,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is rapporteur of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60663".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60758", definition: "Relates an agent to a resource that involves a responsibility of an agent for calligraphy where the focus of interest lies in the aesthetic value of the penmanship or graphic artistry, regardless of whether the same agent is also responsible for the inscribed text.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/calligrapherOf.en".freeze, @@ -6548,7 +6543,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is calligrapher of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60660".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60759", definition: "Relates an agent to a resource that involves a responsibility of an agent for exploiting the book form or altering its physical structure".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/bookArtistOf.en".freeze, @@ -6557,14 +6552,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is book artist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60660".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60760", definition: "Relates a resource to details of a ratio of the width to the height of a moving image.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfAspectRatioDesignation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of aspect ratio designation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60761", altLabel: "has details of color content".freeze, definition: "Relates a resource to details of a presence of colour, tone, etc., in the content of a resource, and the specific colours, tones, etc., including black and white, present.".freeze, @@ -6572,42 +6567,42 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of colour content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60762", definition: "Relates a resource to details of a set of characters or symbols used to express musical content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfFormOfMusicalNotation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of form of musical notation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60763", definition: "Relates a resource to details of a set of characters or symbols used to express movement content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfFormOfNotatedMovement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of form of notated movement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60764", definition: "Relates a resource to details of a musical or physical layout of the content of a resource that is presented in a form of musical notation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfFormatOfNotatedMusic.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of format of notated music".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60765", definition: "Relates a resource to details of a set of characters or symbols used to express the content of a resource in a form that can be perceived through touch.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfFormOfTactileNotation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of form of tactile notation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60766", definition: "Relates a resource to details of set of characters or symbols used to express written language content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfScript.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of script".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60767", definition: "Relates a resource to details of a physical or chemical substance applied to a base material of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60774".freeze, @@ -6615,21 +6610,21 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of applied material".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60768", definition: "Relates a resource to details of an underlying physical material of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfBaseMaterial.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of base material".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60769", definition: "Relates a resource to details of the proportional relationship between a whole sheet in a printed or manuscript resource, and the individual leaves that result if that sheet is left full, cut, or folded.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfBibliographicFormat.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of bibliographic format".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60770", definition: "Relates a resource to details of a system used to format a video resource for television broadcast.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfBroadcastStandard.en".freeze, @@ -6637,7 +6632,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of broadcast standard".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60801".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60771", definition: "Relates a resource to details of a number of sound channels used to make a recording.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfConfigurationOfPlaybackChannels.en".freeze, @@ -6645,7 +6640,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of configuration of playback channels".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60796".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60772", definition: "Relates a resource to details of a technical specification relating to a digital encoding of text, image, audio, video, and other types of data in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60773".freeze, "http://rdaregistry.info/Elements/u/P60775".freeze, "http://rdaregistry.info/Elements/u/P60776".freeze, "http://rdaregistry.info/Elements/u/P60904".freeze], @@ -6653,7 +6648,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of digital file characteristic".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60773", definition: "Relates a resource to details of an encoding of geospatial information in a cartographic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfDigitalRepresentationOfCartographicContent.en".freeze, @@ -6661,7 +6656,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of digital representation of cartographic content".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60772".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60774", definition: "Relates a resource to details of a suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfEmulsionOnMicrofilmAndMicrofiche.en".freeze, @@ -6669,7 +6664,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of emulsion on microfilm and microfiche".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60767".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60775", definition: "Relates a resource to details of a schema or standard used to encode the digital content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfEncodingFormat.en".freeze, @@ -6677,7 +6672,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of encoding format".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60772".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60776", definition: "Relates a resource to details of a general type of data content encoded in a computer file.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfFileType.en".freeze, @@ -6685,14 +6680,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of file type".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60772".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60777", definition: "Relates a resource to details of a size of the type used to represent characters and symbols in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfFontSize.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of font size".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60778", definition: "Relates a resource to details of the relationship between an original audio carrier and the carrier of a reproduction made from the original (e.g., a tape duplication master, a test pressing). (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfGenerationOfAudioRecording.en".freeze, @@ -6700,7 +6695,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of generation of audio recording (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60803".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60779", definition: "Relates a resource to details of the relationship between an original carrier of a digital resource and the carrier of a reproduction made from the original (e.g., a derivative master).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfGenerationOfDigitalResource.en".freeze, @@ -6708,7 +6703,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of generation of digital resource (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60803".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60780", definition: "Relates a resource to details of the relationship between an original microform carrier and the carrier of a reproduction made from the original (e.g., a printing master).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfGenerationOfMicroform.en".freeze, @@ -6716,7 +6711,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of generation of microform (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60803".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60781", definition: "Relates a resource to details of the relationship between an original carrier of a motion picture film resource and the carrier of a reproduction made from the original (e.g., a reference print).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfGenerationOfMotionPictureFilm.en".freeze, @@ -6724,7 +6719,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of generation of motion picture film (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60803".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60782", definition: "Relates a resource to details of the relationship between an original carrier of a videotape resource and the carrier of a reproduction made from the original (e.g., a show copy).. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfGenerationOfVideotape.en".freeze, @@ -6732,7 +6727,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of generation of videotape (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60803".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60783", definition: "Relates a resource to details of a groove width of an analog disc or a groove pitch of an analog cylinder.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfGrooveCharacteristic.en".freeze, @@ -6740,42 +6735,42 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of groove characteristic".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60796".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60784", definition: "Relates a resource to details of an arrangement of text, images, tactile notation, or other content in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfLayout.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of layout".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60785", definition: "Relates a resource to details of a physical material used for the support or backing to which the base material of a resource is attached.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfMount.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of mount".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60786", definition: "Relates a resource to details of a speed at which an audio carrier must be operated to produce the sound intended.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfPlayingSpeed.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of playing speed".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60787", definition: "Relates a resource to details of a relationship of the colours and tones in an image to the colours and tones of the object reproduced.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfPolarity.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of polarity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60788", definition: "Relates a resource to details of a format used in the production of a projected image.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfPresentationFormat.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of presentation format".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60789", definition: "Relates a resource to details of a process used to produce a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60790".freeze, "http://rdaregistry.info/Elements/u/P60791".freeze], @@ -6783,7 +6778,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of production method".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60790", definition: "Relates a resource to details of a process used to produce an original manuscript or a copy. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfProductionMethodForManuscript.en".freeze, @@ -6791,7 +6786,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of production method for manuscript (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60789".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60791", definition: "Relates a resource to details of a process used to produce a tactile resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfProductionMethodForTactileResource.en".freeze, @@ -6799,7 +6794,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of production method for tactile resource (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60789".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60792", definition: "Relates a resource to details of a technical specification relating to the projection of a motion picture film.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60793".freeze, @@ -6807,7 +6802,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of projection characteristic of motion picture film".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60793", definition: "Relates a resource to details of a speed at which a projected carrier must be operated to produce the moving image intended.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfProjectionSpeed.en".freeze, @@ -6815,7 +6810,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of projection speed".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60792".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60794", definition: "Relates a resource to details of a type of medium used to record sound on an audio carrier.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfRecordingMedium.en".freeze, @@ -6823,14 +6818,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of recording medium".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60796".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60795", definition: "Relates a resource to details of a general designation of the size of a micro-image in relation to the original from which it was produced.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfReductionRatioDesignation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of reduction ratio designation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60796", definition: "Relates a resource to details of a technical specification relating to the encoding of sound in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60771".freeze, "http://rdaregistry.info/Elements/u/P60783".freeze, "http://rdaregistry.info/Elements/u/P60794".freeze, "http://rdaregistry.info/Elements/u/P60797".freeze, "http://rdaregistry.info/Elements/u/P60798".freeze, "http://rdaregistry.info/Elements/u/P60799".freeze, "http://rdaregistry.info/Elements/u/P60800".freeze], @@ -6838,7 +6833,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of sound characteristic".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60797", definition: "Relates a resource to details of an equalization system, noise-reduction system, or other processing that is used in making an audio recording.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfSpecialPlaybackCharacteristic.en".freeze, @@ -6846,7 +6841,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of special playback characteristic".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60796".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60798", definition: "Relates a resource to details of a number of tracks on an audiotape.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfTapeConfiguration.en".freeze, @@ -6854,7 +6849,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of tape configuration".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60796".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60799", definition: "Relates a resource to details of a configuration of the audio track on a sound-track film.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfTrackConfiguration.en".freeze, @@ -6862,7 +6857,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of track configuration".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60796".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60800", definition: "Relates a resource to details of a method used to encode audio content for playback.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfTypeOfRecording.en".freeze, @@ -6870,7 +6865,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of type of recording".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60796".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60801", definition: "Relates a resource to details of a technical specification relating to an encoding of video images in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60770".freeze, "http://rdaregistry.info/Elements/u/P60802".freeze], @@ -6878,7 +6873,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of video characteristic".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60802", definition: "Relates a resource to details of a schema or standard used to encode the analog video content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfVideoFormat.en".freeze, @@ -6886,7 +6881,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of video format".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60801".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60803", definition: "Relates a resource to details of a relationship between an original carrier and a carrier of a reproduction made from an original.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60778".freeze, "http://rdaregistry.info/Elements/u/P60779".freeze, "http://rdaregistry.info/Elements/u/P60780".freeze, "http://rdaregistry.info/Elements/u/P60781".freeze, "http://rdaregistry.info/Elements/u/P60782".freeze], @@ -6894,14 +6889,14 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of generation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60804", definition: "Relates a resource to details of content intended to illustrate a primary content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfIllustrativeContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of illustrative content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60805", definition: "Relates a resource to a topic that a resource is about.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60190".freeze, @@ -6910,7 +6905,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60806".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has subject".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60806", definition: "Relates a resource to a resource that is about a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60215".freeze, @@ -6919,7 +6914,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60805".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is subject of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60807", definition: "Relates an agent to an agent who receives an academic degree from a granting institution or faculty.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/graduate.en".freeze, @@ -6927,7 +6922,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60808".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has graduate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60808", definition: "Relates an agent to an institution or faculty that granted an academic degree to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/graduateOf.en".freeze, @@ -6935,7 +6930,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60807".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is graduate of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60809", definition: "Relates a resource to an agent who contributes to a resource by providing a foreword to an original resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfForeword.en".freeze, @@ -6944,7 +6939,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has writer of foreword (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60810", definition: "Relates an agent to a resource that includes a contribution of providing a foreword. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/writerOfForewordOf.en".freeze, @@ -6953,7 +6948,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is writer of foreword of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60811", definition: "Relates a resource to an agent who contributes to a resource by designing and creating audio or sound components.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/soundDesigner.en".freeze, @@ -6962,7 +6957,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sound designer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60812", definition: "Relates an agent to a resource that includes a contribution by an agent of designing and creating audio or sound components".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/soundDesignerOf.en".freeze, @@ -6971,7 +6966,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is sound designer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60813", definition: "Relates a resource to an agent who contributes to a resource by designing and creating lighting components.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lightingDesigner.en".freeze, @@ -6980,7 +6975,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has lighting designer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60814", definition: "Relates an agent to a resource that includes a contribution by an agent of designing and creating lighting components.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lightingDesignerOf.en".freeze, @@ -6989,7 +6984,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is lighting designer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60815", definition: "Relates a resource to an agent serving on a committee that supervises a thesis or dissertation of a student.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/degreeCommitteeMember.en".freeze, @@ -6998,7 +6993,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has degree committee member".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60816", definition: "Relates an agent to a resource that involves a responsibility of an agent for serving on a committee that supervises a thesis or dissertation of a student.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/degreeCommitteeMemberOf.en".freeze, @@ -7007,7 +7002,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is degree committee member of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60817", definition: "Relates an agent to a resource that involves a responsibility of an agent for inscribing, fabrication, construction, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/producerOfUnpublishedResourceOf.en".freeze, @@ -7015,27 +7010,27 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60440".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is producer of unpublished resource of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60818", definition: "Relates a resource to a second or subsequent system of numbering presented in the form of a date on the first issue or part of a sequence of numbering for a serial.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/firstChronologicalDesignationOfAlternativeSequence.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A designation includes a year; year and month; month, day, and year. A chronological designation of alternative sequence may include a date in a different calendar.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61212".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has first chronological designation of alternative sequence".freeze, - "skos:scopeNote": "A designation includes a year; year and month; month, day, and year. A chronological designation of alternative sequence may include a date in a different calendar.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60533".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60819", definition: "Relates a resource to a second or subsequent system of numbering presented in the form of a date on the last issue or part of a sequence of numbering for a serial.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lastChronologicalDesignationOfAlternativeSequence.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A designation includes a year; year and month; month, day, and year. A chronological designation of alternative sequence may include a date in a different calendar.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61216".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has last chronological designation of alternative sequence".freeze, - "skos:scopeNote": "A designation includes a year; year and month; month, day, and year. A chronological designation of alternative sequence may include a date in a different calendar.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60533".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60820", definition: "Relates a resource to a second or subsequent system of numbering presented in numeric or alphabetic form on the first issue or part of a sequence of numbering for a serial.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/firstAlphanumericDesignationOfAlternativeSequence.en".freeze, @@ -7044,7 +7039,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has first alphanumeric designation of alternative sequence".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60533".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60821", definition: "Relates a resource to a second or subsequent system of numbering presented in numeric or alphabetic form on the last issue or part of a sequence of numbering for a serial.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lastAlphanumericDesignationOfAlternativeSequence.en".freeze, @@ -7053,43 +7048,43 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has last alphanumeric designation of alternative sequence".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60533".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60822", definition: "Relates a name to a type or form of resource associated with a name chosen as a preferred name for an agent. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/scopeOfUsage.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has scope of usage (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60823", definition: "Relates a resource to aetails of an extent of resource that is a playing time, performance time, running time, or other length of time.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfDuration.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of duration".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60824", definition: "Relates a resource to an agent who contributes to a nonfiction moving image resource by taking an active role as a participant.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60143".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/onscreenParticipant.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Appearance on screen to provide contextual or background information is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60825".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has onscreen participant".freeze, - "skos:scopeNote": "Appearance on screen to provide contextual or background information is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60825", definition: "Relates an agent to a resource that includes a contribution by an agent of taking an active role as a participant.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60018".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/onscreenParticipantOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Appearance on screen to provide contextual or background information is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60824".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is onscreen participant of".freeze, - "skos:scopeNote": "Appearance on screen to provide contextual or background information is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60826", definition: "Relates a resource to an agent who is responsible for commissioning a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/commissioningAgent.en".freeze, @@ -7098,7 +7093,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has commissioning agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60827", definition: "Relates an agent to a resource that involves a responsibility of an agent for commissioning a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/commissioningAgentOf.en".freeze, @@ -7107,7 +7102,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is commissioning agent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60828", definition: "Relates a resource to an agent who contributes to a resource by researching, designing, implementing, or testing software.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/softwareDeveloper.en".freeze, @@ -7116,7 +7111,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has software developer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60829", definition: "Relates an agent to a resource that includes a contribution by an agent of researchig, designing, implementing, or testing software.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/softwareDeveloperOf.en".freeze, @@ -7125,7 +7120,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is software developer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60830", definition: "Relates a resource to a resource that is adapted as an oratorio.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/oratorioAdaptationOf.en".freeze, @@ -7134,7 +7129,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is oratorio adaptation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60831", definition: "Relates a resource to an oratorio based on another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/adaptedAsOratorio.en".freeze, @@ -7143,7 +7138,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is adapted as oratorio".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60832", definition: "Relates a resource to a resource that serves as the inspiration for a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/inspiredBy.en".freeze, @@ -7152,7 +7147,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is inspired by".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60305".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60833", definition: "Relates a resource to a resource that was inspired by a related resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/inspirationFor.en".freeze, @@ -7161,7 +7156,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is inspiration for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60250".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60834", definition: "Relates a resource to an agent who has signed, ratified, or acceded to a treaty.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/participantInTreaty.en".freeze, @@ -7170,7 +7165,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has participant in treaty".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60835", definition: "Relates a government, international intergovernmental body, or other agent who has signed, ratified, or acceded to a treaty to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/participantInTreatyOf.en".freeze, @@ -7179,7 +7174,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is participant in treaty of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60836", definition: "Relates a resource to an agent who does research in support of the creation of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/researcher.en".freeze, @@ -7188,7 +7183,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has researcher".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60837", definition: "Relates an agent to a resource that involves a responsibility of an agent for research in support of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/researchOf.en".freeze, @@ -7197,7 +7192,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is researcher of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60838", definition: "Relates a resource to an agent who contributes to a resource by applying colour to drawings, prints, photographs, maps, moving images, or other content.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/colourist.en".freeze, @@ -7206,7 +7201,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has colourist".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60839", definition: "Relates an agent to a resource that includes a contribution by an agent of applying colour to drawings, prints, photographs, maps, moving images, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/colouristOf.en".freeze, @@ -7215,7 +7210,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is colourist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60840", definition: "Relates a resource to an agent who contributes to a resource by applying makeup and prosthetics for a moving image production or for a musical or dramatic presentation or entertainment.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/makeupArtist.en".freeze, @@ -7224,7 +7219,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has makeup artist".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60841", definition: "Relates an agent to a resource that includes a contribution by an agent of researching, designing, implementing, or testing software.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/makeupArtistOf.en".freeze, @@ -7233,7 +7228,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is makeup artist of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60842", definition: "Relates a resource to a conductor who contributes to a musical resource by leading a choral performing group in a musical or dramatic presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/choralConductor.en".freeze, @@ -7242,7 +7237,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has choral conductor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60141".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60843", definition: "Relates an agent to a musical resource that includes a contribution by an agent of leading a choral performing group in a musical or dramatic presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/choralConductorOf.en".freeze, @@ -7251,7 +7246,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is choral conductor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60016".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60844", definition: "Relates a resource to a conductor who contributes to a musical resource by leading an instrumental performing group in a musical or dramatic presentation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/instrumentalConductor.en".freeze, @@ -7260,7 +7255,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has instrumental conductor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60141".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60845", definition: "Relates an agent to a resource that includes a contribution by an agent of conducting and leading an instrumental performing group in a musical or dramatic presentation".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/instrumentalConductorOf.en".freeze, @@ -7269,7 +7264,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is instrumental conductor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60016".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60846", definition: "Relates a resource to a resource created to commemorate an earlier resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/commemoration.en".freeze, @@ -7278,7 +7273,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has commemoration".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60848".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60847", definition: "Relates a resource to a resource commemorated in a later resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/commemorationOf.en".freeze, @@ -7287,7 +7282,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is commemoration of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60848".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60848", definition: "Relates a resource to a resource that references a related resource. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60846".freeze, "http://rdaregistry.info/Elements/u/P60847".freeze], @@ -7296,7 +7291,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60848".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has referential resource relationship with (Deprecate)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60849", definition: "Relates a resource to an agent who organizes a conference, exhibition, or other event that gives rise to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/organizer.en".freeze, @@ -7305,7 +7300,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has organizer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60850", definition: "Relates an agent to a resource that involves a responsibility of an agent for organizing a conference, exhibition, or other event that gives rise to a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/organizerOf.en".freeze, @@ -7314,29 +7309,29 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is organizer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60851", definition: "Relates a resource to an agent who contributes to a resource by revising the content for the purpose of suppressing parts deemed objectionable on moral, political, military, or other grounds, but leaving the nature and content substantially unchanged.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60434".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/censor.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Substantial modification that results in the creation of a new resource is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60852".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has censor".freeze, - "skos:scopeNote": "Substantial modification that results in the creation of a new resource is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60852", definition: "Relates an agent to a resource that includes a contribution for revising the content for the purpose of suppressing parts deemed objectionable on moral, political, military, or other grounds, but leaving the nature and content substantially unchanged.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60663".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/censorOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Substantial modification that results in the creation of a new resource is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60851".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is censor of".freeze, - "skos:scopeNote": "Substantial modification that results in the creation of a new resource is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60626".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60853", definition: "Relates an agent to a fellow member of a profession, staff, or academic faculty.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60857".freeze, "http://rdaregistry.info/Elements/u/P60858".freeze, "http://rdaregistry.info/Elements/u/P60859".freeze, "http://rdaregistry.info/Elements/u/P60860".freeze], @@ -7346,7 +7341,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has colleague".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60854", definition: "Relates an agent to an agent who shares a bond of mutual affection or regard with a related agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/friend.en".freeze, @@ -7355,7 +7350,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has friend".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60855", definition: "Relates an agent to an agent who receives instruction at an educational institution.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/enrolledStudent.en".freeze, @@ -7364,7 +7359,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has enrolled student".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60856", definition: "Relates an agent to an agent who is an educational institution that provides instruction to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/studentAt.en".freeze, @@ -7373,7 +7368,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is student at".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60857", definition: "Relates an agent to an agent who is a colleague who helps another agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/assistant.en".freeze, @@ -7382,7 +7377,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has assistant".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60853".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60858", definition: "Relates an agent to an agent who is a colleague who is helped by another agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/assistantTo.en".freeze, @@ -7391,7 +7386,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is assistant to".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60853".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60859", definition: "Relates an agent to an agent who is a colleague who works with or shares a task with a related agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/coworker.en".freeze, @@ -7400,7 +7395,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has co-worker".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60853".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60860", definition: "Relates an agent to an agent who is a colleague working with a related agent in an activity of common interest, most often a business partnership.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/partner.en".freeze, @@ -7409,7 +7404,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has partner".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60853".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60861", definition: "Relates an agent to an associate of another student who is also formally engaged in learning.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fellowStudent.en".freeze, @@ -7418,7 +7413,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has fellow student".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60862", definition: "Relates an agent to an agent who receives instruction from a related agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/student.en".freeze, @@ -7427,7 +7422,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has student".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60863", definition: "Relates an agent to an agent who instructs a related agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/teacher.en".freeze, @@ -7436,7 +7431,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has teacher".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60864", definition: "Relates an agent to an officer who is a top ranking official of an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/chiefExecutive.en".freeze, @@ -7445,7 +7440,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has chief executive".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60633".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60865", definition: "Relates an agent to an agent in which an officer is a top ranking official.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/chiefExecutiveOf.en".freeze, @@ -7454,7 +7449,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is chief executive of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60737".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60866", definition: "Relates an agent to an officer granted powers of administration in an agent in order to act for its benefit.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/trustee.en".freeze, @@ -7463,7 +7458,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has trustee".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60633".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60867", definition: "Relates an agent to an agent who grants powers of administration to an officer in order to act for its benefit.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/trusteeOf.en".freeze, @@ -7472,7 +7467,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is trustee of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60737".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60868", definition: "Relates a resource to a note on resource that provides information on an identifier for a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnIdentifierForResource.en".freeze, @@ -7480,7 +7475,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on identifier for resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60869", definition: "Relates a resource to an agent who has legal or intellectual responsibility, but not creative responsibility, for the editorial policy and content of a diachronic resource.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60393".freeze, @@ -7490,7 +7485,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has editorial director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60870", definition: "Relates an agent to a resource that involves a responsibility other than creating for the content of a serial, integrating resource, or multipart monographic resource.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60621".freeze, @@ -7500,7 +7495,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is editorial director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60871", definition: "Relates a resource to an agent who is responsible for initiating a diachronic resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/founderAgentOfResource.en".freeze, @@ -7509,7 +7504,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has founder agent of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60374".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60872", definition: "Relates an agent to a resource that involves a responsibility of an agent for establishing a serial, integrating resource, or multipart monograph.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/founderAgentOfResourceOf.en".freeze, @@ -7518,42 +7513,42 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is founder agent of resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60602".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60873", definition: "Relates a resource to a general designation of the ratio of the width to the height of a moving image.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/aspectRatioDesignation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has aspect ratio designation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60874", definition: "Relates a resource to a general designation of a lack of a ratio of the dimensions of the content of an image or three-dimensional form to the dimensions of the thing it represents.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/scaleDesignation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has scale designation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60875", definition: "Relates a resource to a machine-readable representation of geospatial features.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/cartographicDataType.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has cartographic data type".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60876", definition: "Relates a resource to details of a machine-readable representation of geospatial features.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfCartographicDataType.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of cartographic data type".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60877", definition: "Relates a resource to a general designation of the size of a micro-image in relation to an original from which it was produced.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/reductionRatioDesignation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has reduction ratio designation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60878", definition: "Relates an agent to a name used as a family name.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/surname.en".freeze, @@ -7561,7 +7556,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61196".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has surname".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60879", definition: "Relates an agent to a name given to an agent at birth or at some later point in addition to, or instead of, a surname.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/givenName.en".freeze, @@ -7569,7 +7564,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61193".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has given name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60880", definition: "Relates a place to a name of place that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantNameOfPlace.en".freeze, @@ -7578,18 +7573,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant name of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60366".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60881", definition: "Relates an agent to a resource that involves a responsibility of an agent for manipulating, recombining, mixing, and reproducing previously recorded sounds.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60886".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/remixArtistOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Remixing activities that do not substantially change the nature and content of the original resource, and mixing recorded tracks together to appear as one continuous track are excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60891".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is remix artist of".freeze, - "skos:scopeNote": "Remixing activities that do not substantially change the nature and content of the original resource, and mixing recorded tracks together to appear as one continuous track are excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60882", definition: "Relates an agent to a resource that involves a responsibility of an agent for most aspects of assigning parts and duties to performers.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/castingDirectorOf.en".freeze, @@ -7598,7 +7593,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is casting director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60672".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60883", definition: "Relates an agent to a resource that involves a responsibility of an agent for managing most of the business aspects of an audio recording.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/audioProducerOf.en".freeze, @@ -7607,7 +7602,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is audio producer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60668".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60884", definition: "Relates an agent to a resource that includes a contribution by an agent of managing the technical aspects of sound during the processes of recording, mixing, and reproduction.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60885".freeze, @@ -7617,29 +7612,29 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is audio engineer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60158".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60885", definition: "Relates an agent to a resource that incorporates a contribution by an agent of manipulating, mixing and assembling the multiple tracks of an audio recording.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60881".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mixingEngineerOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Remixing activities that substantially change the nature and content of the original resource, resulting in a new resource, are excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60893".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is mixing engineer of".freeze, - "skos:scopeNote": "Remixing activities that substantially change the nature and content of the original resource, resulting in a new resource, are excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60884".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60886", definition: "Relates an agent to a resource that includes a contribution by an agent of mixing recorded tracks together during a live performance or in a recording studio to appear as one continuous track.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60885".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/DJOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Remixing activities that substantially change the nature and content of the original resource, resulting in a new resource, and mixing and assembling the multiple tracks of a recording are excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60896".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is DJ of".freeze, - "skos:scopeNote": "Remixing activities that substantially change the nature and content of the original resource, resulting in a new resource, and mixing and assembling the multiple tracks of a recording are excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60158".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60887", definition: "Relates an agent to a resource that incorporates a contribution by an agent of an agent for the general management and supervision of the process of adding new dialogue or other sounds to complete a sound track.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dubbingDirectorOf.en".freeze, @@ -7648,7 +7643,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is dubbing director of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60158".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60888", definition: "Relates an agent to a musical resource that incorporates a contribution by an agent of using electronic audio devices or computer software to generate sounds.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60655".freeze, @@ -7658,7 +7653,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is music programmer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60158".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60889", definition: "Relates a resource to an agent who is a producer who is responsible for managing most of the business aspects of an audio recording. ".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/audioProducer.en".freeze, @@ -7667,7 +7662,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has audio producer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60441".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60890", definition: "Relates a resource to an agent who is responsible for most aspects of assigning parts and duties to performers.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/castingDirector.en".freeze, @@ -7676,18 +7671,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has casting director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60158".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60891", definition: "Relates a resource to an agent who is responsible for creating an audio resource by manipulating, recombining, mixing, and reproducing previously recorded sounds.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60896".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/remixArtist.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Remixing activities that do not substantially change the nature and content of the original resource, and mixing recorded tracks together to appear as one continuous track are excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60881".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has remix artist".freeze, - "skos:scopeNote": "Remixing activities that do not substantially change the nature and content of the original resource, and mixing recorded tracks together to appear as one continuous track are excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60447".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60892", definition: "Relates a resource to an agent who contributes to a resource by managing the technical aspects of sound during the processes of recording, mixing, and reproduction.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60893".freeze, @@ -7697,29 +7692,29 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has audio engineer".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60893", definition: "Relates a resource to an audio engineer who contributes to the audio content of a resource by manipulating, mixing, and assembling the multiple tracks of a recording.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60891".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mixingEngineer.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Remixing activities that substantially change the nature and content of the original resource, resulting in a new resource, are excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60885".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has mixing engineer".freeze, - "skos:scopeNote": "Remixing activities that substantially change the nature and content of the original resource, resulting in a new resource, are excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60892".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60894", definition: "Relates a resource to an agent who contributes to a resource by using electronic audio devices or computer software to generate sounds.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60426".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/musicProgrammer.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The creation of a new musical resource is excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60888".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has music programmer".freeze, - "skos:scopeNote": "The creation of a new musical resource is excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60895", definition: "Relates a resource to an agent who is responsible for the general management and supervision of the process of adding new dialogue or other sounds to complete a sound track for a resource".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dubbingDirector.en".freeze, @@ -7728,46 +7723,46 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has dubbing director".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60896", definition: "Relates a resource to an agent who mixes recorded tracks together during a live performance or in a recording studio to appear as one continuous track.".freeze, "http://metadataregistry.org/uri/profile/rdakit/seeAlso": "http://rdaregistry.info/Elements/u/P60893".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/DJ.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Remixing activities that substantially change the nature and content of the original resource, resulting in a new resource, and mixing and assembling the multiple tracks of a recording are excluded.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60886".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has DJ".freeze, - "skos:scopeNote": "Remixing activities that substantially change the nature and content of the original resource, resulting in a new resource, and mixing and assembling the multiple tracks of a recording are excluded.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60398".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60897", definition: "Relates a resource to a distance of a point on a planet or satellite measured north and south from the equator.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/latitude.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has latitude".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60898", definition: "Relates a resource to a distance of a point on a planet or satellite measured east and west from a reference meridian.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/longitude.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has longitude".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60899", definition: "Relates a resource to an angular distance measured eastward on the equator from the vernal equinox to the hour circle through a celestial body, from 0 to 24 hours.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/rightAscension.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has right ascension".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60900", definition: "Relates a resource to an angular distance to a body on the celestial sphere measured north or south through 90° from the celestial equator along the hour circle of the body.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/declination.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has declination".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60901", definition: "Relates an agent to an agent who was absorbed by another agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/absorbedAgent.en".freeze, @@ -7775,7 +7770,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60902".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has absorbed agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60902", definition: "Relates an agent to an agent who absorbed another agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/absorbingAgent.en".freeze, @@ -7783,7 +7778,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60901".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has absorbing agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60903", definition: "Relates an agent to an agent that that is a conference that is jointly held with a related conference.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/jointlyHeldConference.en".freeze, @@ -7791,7 +7786,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60903".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has jointly held conference".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60904", definition: "Relates a resource to details of a designation for one or more regions of the world for which a videodisc or video game carrier is encoded, indicating that playback is restricted to a device configured to decode it.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/detailsOfRegionalEncoding.en".freeze, @@ -7799,16 +7794,16 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has details of regional encoding".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60772".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60905", definition: "Relates a resource to a note on resource that provides information associated with the recording, filming, etc., of the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnCapture.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Note on capture includes the circumstances such as a live or studio recording, the equipment used, etc.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on capture".freeze, - "skos:scopeNote": "Note on capture includes the circumstances such as a live or studio recording, the equipment used, etc.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60470".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60906", definition: "Relates an entity to an appellation of entity in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60916".freeze, "http://rdaregistry.info/Elements/u/P60917".freeze, "http://rdaregistry.info/Elements/u/P61162".freeze, "http://rdaregistry.info/Elements/u/P61164".freeze, "http://rdaregistry.info/Elements/u/P61166".freeze, "http://rdaregistry.info/Elements/u/P61168".freeze], @@ -7818,7 +7813,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has access point for entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60909", definition: "Relates an entity to a nomen that is used within a given scheme or context to refer to an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60368".freeze, "http://rdaregistry.info/Elements/u/P60369".freeze, "http://rdaregistry.info/Elements/u/P60443".freeze, "http://rdaregistry.info/Elements/u/P60544".freeze, "http://rdaregistry.info/Elements/u/P60545".freeze, "http://rdaregistry.info/Elements/u/P60546".freeze, "http://rdaregistry.info/Elements/u/P60547".freeze, "http://rdaregistry.info/Elements/u/P60906".freeze, "http://rdaregistry.info/Elements/u/P60919".freeze, "http://rdaregistry.info/Elements/u/P60939".freeze], @@ -7827,7 +7822,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60911".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has appellation of entity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60910", definition: "Relates a nomen to an entity that has an appellation in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60918".freeze, "http://rdaregistry.info/Elements/u/P60934".freeze, "http://rdaregistry.info/Elements/u/P61163".freeze, "http://rdaregistry.info/Elements/u/P61165".freeze, "http://rdaregistry.info/Elements/u/P61167".freeze, "http://rdaregistry.info/Elements/u/P61169".freeze], @@ -7837,7 +7832,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is access point for entity of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60911", definition: "Relates a nomen to an entity that is referred to by a nomen used within a given scheme or context.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60669".freeze, "http://rdaregistry.info/Elements/u/P60910".freeze, "http://rdaregistry.info/Elements/u/P60912".freeze, "http://rdaregistry.info/Elements/u/P60920".freeze, "http://rdaregistry.info/Elements/u/P60928".freeze, "http://rdaregistry.info/Elements/u/P60946".freeze, "http://rdaregistry.info/Elements/u/P60947".freeze, "http://rdaregistry.info/Elements/u/P60948".freeze, "http://rdaregistry.info/Elements/u/P60949".freeze, "http://rdaregistry.info/Elements/u/P60950".freeze], @@ -7846,7 +7841,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60909".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is appellation of entity of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60912", definition: "Relates a nomen to a resource that has an appellation of resource in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60925".freeze, "http://rdaregistry.info/Elements/u/P60933".freeze, "http://rdaregistry.info/Elements/u/P60958".freeze], @@ -7856,28 +7851,28 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is title of resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60913", definition: "Relates a nomen to the combination of signs that forms an appellation associated with an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nomenString.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has nomen string".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60914", definition: "Relates a resource to a method of indicating the horizontal and vertical dimensions of land surface and terrain.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/reliefType.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has relief type".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60915", definition: "Relates a resource to a line of constant longitude passing through a given place on the surface of the earth and the terrestrial poles, from which longitude east and west is measured.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/primeMeridian.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has prime meridian".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60916", definition: "Relates an entity to an access point for entity that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61170".freeze, "http://rdaregistry.info/Elements/u/P61171".freeze, "http://rdaregistry.info/Elements/u/P61172".freeze, "http://rdaregistry.info/Elements/u/P61173".freeze], @@ -7887,7 +7882,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has authorized access point for entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60906".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60917", definition: "Relates an entity to an access point for entity that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61186".freeze, "http://rdaregistry.info/Elements/u/P61187".freeze, "http://rdaregistry.info/Elements/u/P61188".freeze, "http://rdaregistry.info/Elements/u/P61189".freeze], @@ -7897,7 +7892,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant access point for entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60906".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60918", definition: "Relates a nomen to an entity that has an access point for entity that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61174".freeze, "http://rdaregistry.info/Elements/u/P61175".freeze, "http://rdaregistry.info/Elements/u/P61176".freeze, "http://rdaregistry.info/Elements/u/P61177".freeze], @@ -7907,18 +7902,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is authorized access point for entity of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60910".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60919", definition: "Relates an entity to an appellation of entity that consists of a code, number, or other string, usually independent of natural language and social naming conventions, used to identify an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60052".freeze, "http://rdaregistry.info/Elements/u/P60053".freeze, "http://rdaregistry.info/Elements/u/P61178".freeze, "http://rdaregistry.info/Elements/u/P61179".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForEntity.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60928".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has identifier for entity".freeze, - "skos:scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60920", definition: "Relates an appellation of agent in natural language and phrasing used in common discourse to an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60921".freeze, "http://rdaregistry.info/Elements/u/P60927".freeze, "http://rdaregistry.info/Elements/u/P61192".freeze, "http://rdaregistry.info/Elements/u/P61193".freeze, "http://rdaregistry.info/Elements/u/P61196".freeze], @@ -7928,7 +7923,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is name of agent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60921", definition: "Relates a nomen to an agent who has a name of agent that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantNameOfAgentOf.en".freeze, @@ -7937,7 +7932,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant name of agent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60920".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60922", definition: "Relates a nomen to a place that has a name of place that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantNameOfPlaceOf.en".freeze, @@ -7946,7 +7941,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant name of place of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60929".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60923", definition: "Relates a nomen to a place that has a name of place that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredNameOfPlaceOf.en".freeze, @@ -7955,7 +7950,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is preferred name of place of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60929".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60924", definition: "Relates a nomen to a timespan that has a name of timespan that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredNameOfTimespanOf.en".freeze, @@ -7964,7 +7959,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is preferred name of timespan of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60931".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60925", definition: "Relates a nomen to a resource that has a title of resource that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantTitleOfResourceOf.en".freeze, @@ -7973,7 +7968,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant title of resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60912".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60926", definition: "Relates a timespan to a name of timespan that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantNameOfTimespan.en".freeze, @@ -7982,7 +7977,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant name of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60935".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60927", definition: "Relates a nomen to an agent who has a name of agent that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredNameOfAgentOf.en".freeze, @@ -7991,18 +7986,18 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is preferred name of agent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60920".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60928", definition: "Relates a nomen to an entity that has a reference code taken from a vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60937".freeze, "http://rdaregistry.info/Elements/u/P60938".freeze, "http://rdaregistry.info/Elements/u/P61180".freeze, "http://rdaregistry.info/Elements/u/P61181".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForEntityOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60919".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is identifier for entity of".freeze, - "skos:scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60929", definition: "Relates a nomen to a place that has a name in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60922".freeze, "http://rdaregistry.info/Elements/u/P60923".freeze], @@ -8012,7 +8007,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is name of place of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60947".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60930", definition: "Relates a timespan to a name of timespan that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredNameOfTimespan.en".freeze, @@ -8021,7 +8016,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has preferred name of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60935".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60931", definition: "Relates a nomen to a timespan that has a name in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60924".freeze, "http://rdaregistry.info/Elements/u/P60932".freeze], @@ -8031,7 +8026,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is name of timespan of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60947".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60932", definition: "Relates a nomen to a timespan that has a name of tiespan that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantNameOfTimespanOf.en".freeze, @@ -8040,7 +8035,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant name of timespan of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60931".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60933", definition: "Relates a nomen to a resource that has a title of resource that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredTitleOfResourceOf.en".freeze, @@ -8049,7 +8044,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is preferred title of resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60912".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60934", definition: "Relates a nomen to an entity that has an access point for entity that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantAccessPointForEntityOf.en".freeze, @@ -8058,7 +8053,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant access point for entity of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60910".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60935", definition: "Relates a timespan to an appellation of timespan in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60926".freeze, "http://rdaregistry.info/Elements/u/P60930".freeze], @@ -8068,7 +8063,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has name of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60939".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60936", definition: "Relates an entity to a broad unstructured description of one or more attributes of an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60470".freeze, "http://rdaregistry.info/Elements/u/P60956".freeze], @@ -8076,28 +8071,28 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on entity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60937", definition: "Relates a nomen to an agent who has an appellation of agent who is a reference code taken from a vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForAgentOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60053".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is identifier for agent of".freeze, - "skos:scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60928".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60938", definition: "Relates a nomen to a resource that has an appellation of resource that is a reference code taken from a vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60988".freeze, "http://rdaregistry.info/Elements/u/P60989".freeze], "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForResourceOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60052".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is identifier for resource of".freeze, - "skos:scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60928".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60939", definition: "Relates an entity to an appellation of entity in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60366".freeze, "http://rdaregistry.info/Elements/u/P60935".freeze, "http://rdaregistry.info/Elements/u/P60940".freeze, "http://rdaregistry.info/Elements/u/P60941".freeze], @@ -8107,7 +8102,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has name of entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60940", definition: "Relates an entity to a name of entity that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredNameOfEntity.en".freeze, @@ -8116,7 +8111,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has preferred name of entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60939".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60941", definition: "Relates an entity to a name of entity that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantNameOfEntity.en".freeze, @@ -8125,7 +8120,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant name of entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60939".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60942", definition: "Relates an agent to a nomen that is assigned to an entity by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/assignerAgentOf.en".freeze, @@ -8133,7 +8128,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60943".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is assigner agent of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60943", definition: "Relates a nomen to an agent who assigns a nomen to an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/assignedByAgent.en".freeze, @@ -8141,7 +8136,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60942".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is assigned by agent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60944", definition: "Relates an entity to a type to which an entity belongs.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60058".freeze, @@ -8149,7 +8144,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has category of entity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60945", definition: "Relates a resource to an identifier for resource that consists of a group of characters from specified locations in a resource combined with a date of publication or other element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fingerprint.en".freeze, @@ -8158,7 +8153,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has fingerprint".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60052".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60946", definition: "Relates a nomen to a resource that involves a responsibility of an agent for distributing a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfDistributorOf.en".freeze, @@ -8167,7 +8162,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is name of distributor of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60947", definition: "Relates a nomen to an entity that has an appellation of entity in natural language and phrasing used in common discourse.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60929".freeze, "http://rdaregistry.info/Elements/u/P60931".freeze, "http://rdaregistry.info/Elements/u/P60951".freeze, "http://rdaregistry.info/Elements/u/P60952".freeze], @@ -8177,7 +8172,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is name of entity of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60948", definition: "Relates a nomen to a resource that involves a responsibility of an agent for printing, duplicating, casting, etc., a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfManufacturerOf.en".freeze, @@ -8186,7 +8181,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is name of manufacturer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60949", definition: "Relates a nomen to a resource that involves a responsibility of an agent for inscribing, fabricating, constructing, etc., an unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfProducerOf.en".freeze, @@ -8195,7 +8190,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is name of producer of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60950", definition: "Relates a nomen to a resource that involves a responsibility of an agent for publishing, releasing, or issuing a published resources.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfPublisherOf.en".freeze, @@ -8204,7 +8199,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is name of publisher of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60911".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60951", definition: "Relates a nomen to an entity that has a name of entity that is selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/preferredNameOfEntityOf.en".freeze, @@ -8213,7 +8208,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is preferred name of entity of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60947".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60952", definition: "Relates a nomen to an entity that has a name of entity that is not selected for preference in a specific application or context.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61182".freeze, "http://rdaregistry.info/Elements/u/P61183".freeze, "http://rdaregistry.info/Elements/u/P61184".freeze, "http://rdaregistry.info/Elements/u/P61185".freeze], @@ -8223,7 +8218,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant name of entity of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60947".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60953", definition: "Relates a resource to a numeric designation of musical resource that is assigned from a list of resources of a composer, usually arranged in chronological order or by categories, with the theme given for each composition or for each section of large compositions.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/thematicIndexNumber.en".freeze, @@ -8232,7 +8227,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has thematic index number".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60315".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60954", definition: "Relates a resource to a numeric designation of musical resource assigned by a composer or a reference source that indicates a sequence of musical resources that share the same title or that share the same title and the same representative medium of performance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/serialNumber.en".freeze, @@ -8241,7 +8236,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has serial number".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60315".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60955", definition: "Relates a resource to a numeric designation of musical resource assigned from a list of resources of a composer indicating the chronological order of composition.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/opusNumber.en".freeze, @@ -8250,7 +8245,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has opus number".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60315".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60956", definition: "Relates an agent to a broad unstructured description of one or more attributes of an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/noteOnAgent.en".freeze, @@ -8258,16 +8253,16 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has note on agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60936".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60957", definition: "Relates a nomen to a resource that has a chief name of a resource, that is, a title normally used when naming a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/titleProperOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "An alternative title is treated as part of the title proper.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60515".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is title proper of".freeze, - "skos:scopeNote": "An alternative title is treated as part of the title proper.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60958", definition: "Relates a nomen to a resource that has a title that identifies a series to which a resource belongs.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60959".freeze, "http://rdaregistry.info/Elements/u/P61197".freeze], @@ -8277,7 +8272,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is title of series of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60912".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60959", "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/titleProperOfSubseriesOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, @@ -8285,7 +8280,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is title proper of subseries of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60958".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60960", definition: "Relates a nomen to a musical resource that has an identifier for resource that is a numeric designation assigned from a list of resources of a composer, usually arranged in chronological order or by categories, with the theme given for each composition or for each section of large compositions.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/thematicIndexNumberOf.en".freeze, @@ -8294,7 +8289,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is thematic index number of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60963".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60961", definition: "Relates a nomen to a musical resource that has a numeric designation of musical resource assigned by a composer or a reference source that indicates a sequence of musical resources that share the same title or that share the same title and the same representative medium of performance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/serialNumberOf.en".freeze, @@ -8303,7 +8298,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is serial number of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60963".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60962", definition: "Relates a nomen to a musical resource that has an identifier for resource that is a numeric designation assigned from a list of resources of a composer indicating chronological order of composition.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/opusNumberOf.en".freeze, @@ -8312,7 +8307,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is opus number of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60963".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60963", definition: "Relates a nomen to a musical resource that has an identifier for resource that is a serial number, opus number, or thematic index number assigned to a musical resource by a composer, publisher, or a musicologist.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60960".freeze, "http://rdaregistry.info/Elements/u/P60961".freeze, "http://rdaregistry.info/Elements/u/P60962".freeze], @@ -8321,14 +8316,14 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60315".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is numeric designation of musical resource of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60964", "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/addressOfAgentOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60512".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is address of agent of (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60965", definition: "Relates a place to an agent who was born in a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfBirthOf.en".freeze, @@ -8337,7 +8332,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of birth of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61011".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60966", definition: "Relates a place to a resource that has content recorded, filmed, etc. in a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfCaptureOf.en".freeze, @@ -8346,7 +8341,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of capture of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61013".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60967", definition: "Relates a place to an agent who died in a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfDeathOf.en".freeze, @@ -8355,7 +8350,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of death of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61011".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60968", definition: "Relates a place to a resource that is a published resource that is distributed from a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfDistributionOf.en".freeze, @@ -8364,7 +8359,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of distribution of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61013".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60969", definition: "Relates a place to a resource that is a published resource that is printed, duplicated, cast, etc. in a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfManufactureOf.en".freeze, @@ -8373,7 +8368,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of manufacture of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61013".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60970", definition: "Relates a place to a resource which originated from a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfOriginOfResourceOf.en".freeze, @@ -8382,7 +8377,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of origin of resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61013".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60971", definition: "Relates a place to a resource that is an unpublished resource that is inscribed, fabricated, constructed, etc. in a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfProductionOf.en".freeze, @@ -8391,7 +8386,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of production of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61013".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60972", definition: "Relates a place to a resource that is a published resource that is published, released, or issued in a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfPublicationOf.en".freeze, @@ -8400,7 +8395,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of publication of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61013".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60973", definition: "Relates a place to an agent who resides or has resided in, or is associated other than birth, death, or residence with a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfResidenceOf.en".freeze, @@ -8409,7 +8404,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of residence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61011".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60974", definition: "Relates a timespan to an agent who has a significant association with a timespan. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60975".freeze, "http://rdaregistry.info/Elements/u/P60977".freeze, "http://rdaregistry.info/Elements/u/P60978".freeze, "http://rdaregistry.info/Elements/u/P60980".freeze, "http://rdaregistry.info/Elements/u/P60985".freeze, "http://rdaregistry.info/Elements/u/P60990".freeze], @@ -8419,7 +8414,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date associated with agent of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61010".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60975", definition: "Relates a timespan to an agent who was born during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfBirthOf.en".freeze, @@ -8428,7 +8423,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of birth of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60974".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60976", definition: "Relates a timespan to a resource that is recorded, filmed, etc., during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfCaptureOf.en".freeze, @@ -8437,7 +8432,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of capture of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61012".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60977", definition: "Relates a timespan to a conference, exhibition, or other event that gives rise to a resource that is held during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfConferenceOf.en".freeze, @@ -8446,7 +8441,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of conference of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60974".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60978", definition: "Relates a timespan to an agent who died during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfDeathOf.en".freeze, @@ -8455,7 +8450,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of death of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60974".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60979", definition: "Relates a timespan to a resource that is a published resource that is distributed during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfDistributionOf.en".freeze, @@ -8464,7 +8459,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of distribution of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61012".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60980", definition: "Relates a timespan to an agent who is established or founded during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfEstablishmentOf.en".freeze, @@ -8473,7 +8468,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of establishment of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60974".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60981", definition: "Relates a timespan to a resource that is a published resource that is printed, duplicated, cast, etc., during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfManufactureOf.en".freeze, @@ -8482,7 +8477,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of manufacture of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61012".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60982", definition: "Relates a timespan to a resource that is an unpublished resource that is inscribed, fabricated, constructed, etc., during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfProductionOf.en".freeze, @@ -8491,7 +8486,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of production of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61012".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60983", definition: "Relates a timespan to a resource that is published, released, or issued in a published form during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfPublicationOf.en".freeze, @@ -8500,7 +8495,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of publication of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61012".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60984", definition: "Relates a timespan to a resource associated with an earliest timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfResourceOf.en".freeze, @@ -8509,7 +8504,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61012".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60985", definition: "Relates a timespan to an agent who is terminated or dissolved during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfTerminationOf.en".freeze, @@ -8518,7 +8513,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of termination of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60974".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60986", definition: "Relates a timespan to an appellation of an entity used during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfUsageOf.en".freeze, @@ -8526,7 +8521,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60075".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is date of usage of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60987", definition: "Relates a resource to a significant location associated with an agent, or a place where an agent resides or has resided or has some connection. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeAssociatedWithResource.en".freeze, @@ -8535,27 +8530,27 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place associated with resource (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61014".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60988", definition: "Relates a nomen to a notated music resource that has an identifier for resource other than a publisher number for notated music, assigned by a publisher to indicate the printing plate used in the printing process.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/plateNumberForNotatedMusicOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A plate number for notated music sometimes includes initials, abbreviations, or words identifying the publisher. It is sometimes followed by a number corresponding to the number of pages or plates or a number corresponding to an individual page or plate.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60140".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is plate number for notated music of".freeze, - "skos:scopeNote": "A plate number for notated music sometimes includes initials, abbreviations, or words identifying the publisher. It is sometimes followed by a number corresponding to the number of pages or plates or a number corresponding to an individual page or plate.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60938".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60989", definition: "Relates a resource to a numbering designation assigned to a notated music resource by a publisher.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/publisherNumberForNotatedMusicOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The number normally appears only on the title page, the cover, or the first page of music, and sometimes includes initials, abbreviations, or words identifying the publisher.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P60139".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is publisher number for notated music of".freeze, - "skos:scopeNote": "The number normally appears only on the title page, the cover, or the first page of music, and sometimes includes initials, abbreviations, or words identifying the publisher.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60938".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60990", definition: "Relates a timespan to an agent who is active in its primary field of endeavour during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/periodOfActivityOfAgentOf.en".freeze, @@ -8564,7 +8559,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is period of activity of agent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60974".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60991", definition: "Relates a timespan to a resource that refers to measurements of position for a body or orientation for an orbit.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/epochOf.en".freeze, @@ -8572,7 +8567,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60472".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is epoch of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60992", definition: "Relates a timespan to a resource that uses a point of intersection of the ecliptic and the celestial equator, occupied by the sun when its declination is 0°.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/equinoxOf.en".freeze, @@ -8580,7 +8575,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60506".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is equinox of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60993", definition: "Relates a place to an agent who is associated with a place. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeAssociatedWithAgentOf.en".freeze, @@ -8589,7 +8584,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place associated with agent of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61011".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60994", definition: "Relates a place to a resource that is associated with a place. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeAssociatedWithResourceOf.en".freeze, @@ -8598,7 +8593,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place associated with resource of (Deprecated)".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61013".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60995", definition: "Relates a resource to a physical or chemical substance that is used to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60159".freeze, "http://rdaregistry.info/Elements/u/P60596".freeze], @@ -8606,7 +8601,7 @@ module RDF::Vocab "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has material".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60996", definition: "Relates an agent to an agent who has a well-known individual as a member.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/prominentMemberOfFamilyOf.en".freeze, @@ -8614,7 +8609,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60362".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is prominent member of agent of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60997", definition: "Relates a place to a conference, exhibition, or other formally named and convened event that gives rise to a resource and that is held in a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfConferenceOf.en".freeze, @@ -8623,16 +8618,16 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of conference of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61011".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60998", definition: "Relates a timespan to a timespan that is the time at which a timespan starts.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/beginning.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A time may be represented at different levels of granularity by a calendrical timespan.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61207".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has beginning".freeze, - "skos:scopeNote": "A time may be represented at different levels of granularity by a calendrical timespan.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P60999", definition: "Relates a place to an agent who is identified with a country.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/countryAssociatedWithAgent.en".freeze, @@ -8640,16 +8635,16 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60063".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is country associated with agent of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61000", definition: "Relates a timespan to a timespan that is the time at which a timespan finishes.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/ending.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A time may be represented at different levels of granularity by a calendrical timespan.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61208".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has ending".freeze, - "skos:scopeNote": "A time may be represented at different levels of granularity by a calendrical timespan.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61001", definition: "Relates a place to a place that encompasses another place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/partOfPlace.en".freeze, @@ -8658,7 +8653,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is part of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61016".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61002", definition: "Relates a timespan to a timespan that has another timespan as a component.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/partOfTimespan.en".freeze, @@ -8667,7 +8662,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is part of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61017".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61003", definition: "Relates a place to a place that is located within another place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/partPlace.en".freeze, @@ -8676,7 +8671,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has part place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61016".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61004", definition: "Relates a timespan to a timespan that is a component of another timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/partTimespan.en".freeze, @@ -8685,7 +8680,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has part timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61017".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61005", definition: "Relates a resource to a resource that is a binding of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/bindingOfResource.en".freeze, @@ -8694,7 +8689,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has binding of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60313".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61006", definition: "Relates a resource to a resource that is bound.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/bindingOfResourceOf.en".freeze, @@ -8703,14 +8698,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is binding of resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60313".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61007", definition: "Relates a resource to a method used to bind a published or unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/typeOfBinding".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has type of binding".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61008", definition: "Relates a resource to an agent who is associated with a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61031".freeze, @@ -8720,7 +8715,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related agent of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61034".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61009", definition: "Relates an agent to resource that is associated with an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61032".freeze, @@ -8730,7 +8725,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related resource of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61010", definition: "Relates a timespan to an agent who is associated with a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P60974".freeze, @@ -8740,7 +8735,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related agent of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61035".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61011", definition: "Relates a place to an agent who is associated with a place.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60965".freeze, "http://rdaregistry.info/Elements/u/P60967".freeze, "http://rdaregistry.info/Elements/u/P60973".freeze, "http://rdaregistry.info/Elements/u/P60993".freeze, "http://rdaregistry.info/Elements/u/P60997".freeze], @@ -8750,7 +8745,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related agent of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61036".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61012", definition: "Relates a timespan to a resource that is associated with a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60976".freeze, "http://rdaregistry.info/Elements/u/P60979".freeze, "http://rdaregistry.info/Elements/u/P60981".freeze, "http://rdaregistry.info/Elements/u/P60982".freeze, "http://rdaregistry.info/Elements/u/P60983".freeze, "http://rdaregistry.info/Elements/u/P60984".freeze], @@ -8760,7 +8755,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related resource of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61035".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61013", definition: "Relates a place to resource that is associated with a place.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60966".freeze, "http://rdaregistry.info/Elements/u/P60968".freeze, "http://rdaregistry.info/Elements/u/P60969".freeze, "http://rdaregistry.info/Elements/u/P60970".freeze, "http://rdaregistry.info/Elements/u/P60971".freeze, "http://rdaregistry.info/Elements/u/P60972".freeze, "http://rdaregistry.info/Elements/u/P60994".freeze, "http://rdaregistry.info/Elements/u/P61191".freeze, "http://rdaregistry.info/Elements/u/P61206".freeze], @@ -8770,7 +8765,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related resource of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61036".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61014", definition: "Relates a resource to a place that is associated with a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60160".freeze, "http://rdaregistry.info/Elements/u/P60161".freeze, "http://rdaregistry.info/Elements/u/P60162".freeze, "http://rdaregistry.info/Elements/u/P60163".freeze, "http://rdaregistry.info/Elements/u/P60523".freeze, "http://rdaregistry.info/Elements/u/P60556".freeze, "http://rdaregistry.info/Elements/u/P60987".freeze, "http://rdaregistry.info/Elements/u/P61205".freeze], @@ -8780,7 +8775,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related place of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61034".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61015", definition: "Relates a timespan to a place that is associated with a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedPlaceOfTimespan.en".freeze, @@ -8789,7 +8784,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related place of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61035".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61016", definition: "Relates a place to a place that is associated with a place.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61001".freeze, "http://rdaregistry.info/Elements/u/P61003".freeze], @@ -8799,7 +8794,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related place of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61036".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61017", definition: "Relates a timespan to a timespan that is associated with a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61002".freeze, "http://rdaregistry.info/Elements/u/P61004".freeze], @@ -8809,7 +8804,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related timespan of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61035".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61018", definition: "Relates an agent to a place that is associated with an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60097".freeze, "http://rdaregistry.info/Elements/u/P60107".freeze, "http://rdaregistry.info/Elements/u/P60325".freeze, "http://rdaregistry.info/Elements/u/P60360".freeze, "http://rdaregistry.info/Elements/u/P60592".freeze, "http://rdaregistry.info/Elements/u/P60593".freeze], @@ -8819,7 +8814,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related place of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61019", definition: "Relates a place to a timespan that is associated with a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedTimespanOfPlace.en".freeze, @@ -8828,7 +8823,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related timespan of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61036".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61020", definition: "Relates a resource to a timespan that is associated with a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60070".freeze, "http://rdaregistry.info/Elements/u/P60071".freeze, "http://rdaregistry.info/Elements/u/P60072".freeze, "http://rdaregistry.info/Elements/u/P60073".freeze, "http://rdaregistry.info/Elements/u/P60324".freeze, "http://rdaregistry.info/Elements/u/P60527".freeze], @@ -8838,7 +8833,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related timespan of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61034".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61021", definition: "Relates an agent to a timespan that is associated with an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedTimespanOfAgent.en".freeze, @@ -8847,7 +8842,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related timespan of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61022", definition: "Relates an agent to an nomen that is associated with an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedNomenOfAgent.en".freeze, @@ -8856,7 +8851,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related nomen of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61033".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61023", definition: "Relates a resource to a nomen that is associated with a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60597".freeze, "http://rdaregistry.info/Elements/u/P61203".freeze], @@ -8866,7 +8861,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related nomen of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61034".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61024", definition: "Relates a timespan to a nomen that is associated with a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedNomenOfTimespan.en".freeze, @@ -8875,7 +8870,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related nomen of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61035".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61025", definition: "Relates a place to a nomen that is associated with a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedNomenOfPlace.en".freeze, @@ -8884,7 +8879,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related nomen of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61036".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61026", definition: "Relates a nomen to a nomen that is associated with a nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedNomenOfNomen.en".freeze, @@ -8893,7 +8888,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related nomen of nomen".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61037".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61027", definition: "Relates a nomen to an agent who is associated with a nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedAgentOfNomen.en".freeze, @@ -8902,7 +8897,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related agent of nomen".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61037".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61028", definition: "Relates a nomen to a place that is associated with a nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedPlaceOfNomen.en".freeze, @@ -8911,7 +8906,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related place of nomen".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61037".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61029", definition: "Relates a nomen to a timespan that is associated with a nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedTimespanOfNomen.en".freeze, @@ -8920,7 +8915,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related timespan of nomen".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61037".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61030", definition: "Relates a nomen to resource that is associated with a nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61118".freeze, "http://rdaregistry.info/Elements/u/P61204".freeze, "http://rdaregistry.info/Elements/u/P61209".freeze, "http://rdaregistry.info/Elements/u/P61211".freeze, "http://rdaregistry.info/Elements/u/P61213".freeze, "http://rdaregistry.info/Elements/u/P61215".freeze, "http://rdaregistry.info/Elements/u/P61217".freeze], @@ -8930,7 +8925,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related resource of nomen".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61037".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61031", definition: "Relates a resource to an agent who makes changes to a resource without creating a new resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/modifier.en".freeze, @@ -8939,7 +8934,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has modifier".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61008".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61032", definition: "Relates an agent to a resource that is changed by an agent without creating a new resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/modifierOf.en".freeze, @@ -8948,7 +8943,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is modifier of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61009".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61033", definition: "Relates an agent to an entity that is associated with an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60454".freeze, "http://rdaregistry.info/Elements/u/P61022".freeze], @@ -8958,7 +8953,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related entity of agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61034", definition: "Relates a resource to an entity that is associated with a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P60313".freeze, "http://rdaregistry.info/Elements/u/P61008".freeze, "http://rdaregistry.info/Elements/u/P61014".freeze, "http://rdaregistry.info/Elements/u/P61020".freeze, "http://rdaregistry.info/Elements/u/P61023".freeze], @@ -8968,7 +8963,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related entity of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61035", definition: "Relates a timespan to an entity that is associated with a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61010".freeze, "http://rdaregistry.info/Elements/u/P61012".freeze, "http://rdaregistry.info/Elements/u/P61015".freeze, "http://rdaregistry.info/Elements/u/P61017".freeze, "http://rdaregistry.info/Elements/u/P61024".freeze], @@ -8978,7 +8973,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related entity of timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61036", definition: "Relates a place to an entity that is associated with a place.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61011".freeze, "http://rdaregistry.info/Elements/u/P61013".freeze, "http://rdaregistry.info/Elements/u/P61016".freeze, "http://rdaregistry.info/Elements/u/P61019".freeze, "http://rdaregistry.info/Elements/u/P61025".freeze], @@ -8988,7 +8983,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related entity of place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61037", definition: "Relates a nomen to an entity that is associated with a nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61026".freeze, "http://rdaregistry.info/Elements/u/P61027".freeze, "http://rdaregistry.info/Elements/u/P61028".freeze, "http://rdaregistry.info/Elements/u/P61029".freeze, "http://rdaregistry.info/Elements/u/P61030".freeze], @@ -8998,7 +8993,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related entity of nomen".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61038", definition: "Relates an entity to an entity that is associated with an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61009".freeze, "http://rdaregistry.info/Elements/u/P61018".freeze, "http://rdaregistry.info/Elements/u/P61021".freeze, "http://rdaregistry.info/Elements/u/P61033".freeze, "http://rdaregistry.info/Elements/u/P61034".freeze, "http://rdaregistry.info/Elements/u/P61035".freeze, "http://rdaregistry.info/Elements/u/P61036".freeze, "http://rdaregistry.info/Elements/u/P61037".freeze, "http://rdaregistry.info/Elements/u/P61039".freeze, "http://rdaregistry.info/Elements/u/P61040".freeze, "http://rdaregistry.info/Elements/u/P61041".freeze, "http://rdaregistry.info/Elements/u/P61042".freeze, "http://rdaregistry.info/Elements/u/P61043".freeze], @@ -9007,7 +9002,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61038".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related entity of entity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61039", definition: "Relates an entity to an agent who is associated with an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedAgentOfEntity.en".freeze, @@ -9016,7 +9011,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related agent of entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61040", definition: "Relates an entity to a place that is associated with an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedPlaceOfEntity.en".freeze, @@ -9025,7 +9020,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related place of entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61041", definition: "Relates an entity to a timespan that is associated with an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedTimespanOfEntity.en".freeze, @@ -9034,7 +9029,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related timespan of entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61042", definition: "Relates an entity to a resource that is associated with an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedResourceOfEntity.en".freeze, @@ -9043,7 +9038,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related resource of entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61043", definition: "Relates an entity to a nomen that is associated with an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/relatedNomenOfEntity.en".freeze, @@ -9052,14 +9047,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has related nomen of entity".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61038".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61044", definition: "Relates a resource to a type of performer or group of performers participating, or intended to participate, in a performance of choreographic or non-musical dramatic content.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/mediumOfPerformanceOfChoreographicContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has medium of performance of choreographic content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61045", definition: "Relates a resource to a musical resource that is complemented by a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lyricsFor.en".freeze, @@ -9068,7 +9063,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is lyrics for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61048".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61046", definition: "Relates a resource to a resource that is a textual resource that complements a musical resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lyrics.en".freeze, @@ -9077,7 +9072,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has lyrics".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61047".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61047", definition: "Relates a resource to a resource that is a textual resoource that complements a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61046".freeze, @@ -9087,7 +9082,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has text resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61048", definition: "Relates a resource to a resource that is complemented by a resource that is a textual resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61045".freeze, @@ -9097,7 +9092,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is text for resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61049", definition: "Relates a resource to a resource that is a vocal resource and that complements a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/spokenWordResource.en".freeze, @@ -9106,7 +9101,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has spoken word resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61050", definition: "Relates a resource to a resource that is realized as sound and that complements a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sounds.en".freeze, @@ -9115,7 +9110,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sounds".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61051", definition: "Relates a resource to a resource that is complemented by a vocal resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/spokenWordForResource.en".freeze, @@ -9124,7 +9119,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is spoken word for resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61052", definition: "Relates a resource to a resource that is complemented by a resource that is realized as sound.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/soundsFor.en".freeze, @@ -9133,7 +9128,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is sounds for".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60198".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61053", definition: "Relates a resource to a resource that is created by changing the extension plan of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61055".freeze, "http://rdaregistry.info/Elements/u/P61057".freeze, "http://rdaregistry.info/Elements/u/P61058".freeze], @@ -9143,7 +9138,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has transformation by extension plan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61067".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61054", definition: "Relates a resource to a resource that has an extension plan that is changed to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61056".freeze, "http://rdaregistry.info/Elements/u/P61075".freeze, "http://rdaregistry.info/Elements/u/P61076".freeze], @@ -9153,7 +9148,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is transformation by extension plan of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61068".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61055", definition: "Relates a resource to a resource that is created by changing the extension plan of a resource from integrating to successive.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sequentialVersion.en".freeze, @@ -9162,7 +9157,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has sequential version".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61053".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61056", definition: "Relates a resource to a resource that has an extension plan that is changed from successive to integrating to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sequentialVersionOf.en".freeze, @@ -9171,7 +9166,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is sequential version of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61054".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61057", definition: "Relates a resource to a resource that is created by changing the extension plan of a resource from static to successive.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/serializedVersion.en".freeze, @@ -9180,7 +9175,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has serialized version".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61053".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61058", definition: "Relates a resource to a resource that is created by changing the extension plan of a resource from integrating to static.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/staticVersion.en".freeze, @@ -9189,7 +9184,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has static version".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61053".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61059", definition: "Relates a resource to a resource that is created by changing the audience of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61061".freeze, "http://rdaregistry.info/Elements/u/P61062".freeze, "http://rdaregistry.info/Elements/u/P61063".freeze], @@ -9199,7 +9194,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has transformation by audience".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61069".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61060", definition: "Relates a resource to a resource that has an audience that is changed to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61064".freeze, "http://rdaregistry.info/Elements/u/P61065".freeze, "http://rdaregistry.info/Elements/u/P61066".freeze], @@ -9209,7 +9204,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is transformation by audience of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61070".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61061", definition: "Relates a resource to a resource that is created by changing the language audience of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/languageVersion.en".freeze, @@ -9218,7 +9213,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has language version".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61059".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61062", definition: "Relates a resource to a resource that is created by changing the regional audience of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/regionalVersion.en".freeze, @@ -9227,7 +9222,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has regional version".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61059".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61063", definition: "Relates a resource to a resource that is created by changing the carrier of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/carrierVersion.en".freeze, @@ -9236,7 +9231,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has carrier version".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61059".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61064", definition: "Relates a resource to a resource that has a language audience that is changed to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/languageVersionOf.en".freeze, @@ -9245,7 +9240,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is language version of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61060".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61065", definition: "Relates a resource to a resource that has a regional audience that is changed to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/regionalVersionOf.en".freeze, @@ -9254,7 +9249,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is regional version of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61060".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61066", definition: "Relates a resource to a resource that has a carrier that is changed to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/carrierVersionOf.en".freeze, @@ -9263,7 +9258,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is carrier version of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61060".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61067", definition: "Relates a resource to a resource that is created by changing the scope or editorial policy of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61053".freeze, @@ -9273,7 +9268,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has transformation by policy".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61069".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61068", definition: "Relates a resource to a resource that has a policy that is changed to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61054".freeze, @@ -9283,7 +9278,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is transformation by policy of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61070".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61069", definition: "Relates a resource to a resource that is created by changing the scope or editorial policy, the genre or literary form, the target audience, or the style of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61059".freeze, "http://rdaregistry.info/Elements/u/P61067".freeze, "http://rdaregistry.info/Elements/u/P61071".freeze, "http://rdaregistry.info/Elements/u/P61073".freeze], @@ -9293,7 +9288,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has transformation".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60313".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61070", definition: "Relates a resource to a resource that has a scope or editorial policy, genre or literary form, target audience, or style that is changed to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61060".freeze, "http://rdaregistry.info/Elements/u/P61068".freeze, "http://rdaregistry.info/Elements/u/P61072".freeze, "http://rdaregistry.info/Elements/u/P61074".freeze], @@ -9303,7 +9298,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is transformation of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60313".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61071", definition: "Relates a resource to a resource that is created by changing the style of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/transformationByStyle.en".freeze, @@ -9312,7 +9307,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has transformation by style".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61069".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61072", definition: "Relates a resource to a resource that has a style that is changed to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/transformationByStyleOf.en".freeze, @@ -9321,7 +9316,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is transformation by style of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61070".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61073", definition: "Relates a resource to a resource that is created by changing the genre or literary form of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/transformationByGenre.en".freeze, @@ -9330,7 +9325,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has transformation by genre".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61069".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61074", definition: "Relates a resource to a resource that has a genre that is changed to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/transformationByGenreOf.en".freeze, @@ -9339,7 +9334,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is transformation by genre of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61070".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61075", definition: "Relates a resource to a resource that has an extension plan that is changed from successive to static to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/serializedVersionOf.en".freeze, @@ -9348,7 +9343,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is serialized version of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61054".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61076", definition: "Relates a resource to a resource that has an extension plan that is changed from static to integrated to create a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/staticVersionOf.en".freeze, @@ -9357,14 +9352,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is static version of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61054".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61077", definition: "Relates an agent to a resource that includes a contribution by an agent of making changes to the content.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/reviserOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is reviser of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61078", definition: "Relates an agent to a resource that includes a contribution by an agent to a seamless mix of kinds of content".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentToAmalgamationOf.en".freeze, @@ -9372,7 +9367,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61078".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent to amalgamation of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61079", definition: "Relates an agent to a resource that includes a contribution by an agent to a performance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentToPerformanceOf.en".freeze, @@ -9380,7 +9375,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61079".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent to performance of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61080", definition: "Relates an agent to a resource that includes a contribution by an agent of amending text created by other agents in order to meet publication standards such as consistency, clarity, and style. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/editorOfTextOf.en".freeze, @@ -9388,7 +9383,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61080".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is editor of text of (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61081", definition: "Relates an agent to a resource that is an aggregate that includes a contribution by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentToAggregateOf.en".freeze, @@ -9396,14 +9391,14 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61081".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent to aggregate of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61082", definition: "Relates a resource to an agent who contributes to a resource by making changes to the content.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/reviser.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has reviser".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61083", definition: "Relates a resource to an agent who contributes to a resource that is a seamless mix of kinds of content.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentToAmalgamation.en".freeze, @@ -9411,7 +9406,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61078".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent to amalgamation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61084", definition: "Relates a resource to an agent who contributes to a resource that is a performance.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentToPerformanceContent.en".freeze, @@ -9419,7 +9414,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61079".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent to performance".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61085", definition: "Relates a resource to an agent who contributes to a resource by amending text created by other agents in order to meet publication standards such as consistency, clarity, and style,".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/editor.en".freeze, @@ -9427,7 +9422,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61080".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has editor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61086", definition: "Relates a resource to an agent who is responsible for creating a resource that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentToAggregatedContent.en".freeze, @@ -9435,7 +9430,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61081".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent to aggregate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61087", definition: "Relates a resource to a resource that is chosen as part of the plan of an aggregating resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/aggregates.en".freeze, @@ -9443,7 +9438,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61087".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "aggregates".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61088", definition: "Relates a resource to a resource that aggregates a resource as part of the plan of an aggregating resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/aggregatedBy.en".freeze, @@ -9451,14 +9446,14 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61087".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is aggregated by".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61089", definition: "Relates a resource to a capacity of content to respond to actions performed by the user.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/interactivityMode.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has interactivity mode".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61090", definition: "Relates an agent to a resource that involves a responsibility of an agent for aggregation by selecting and arranging other resources.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/aggregatorOf.en".freeze, @@ -9466,7 +9461,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61090".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is aggregator of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61091", definition: "Relates a resource to an agent who is responsible for creating an aggregating resource by selecting and arranging other resources.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/aggregator.en".freeze, @@ -9474,7 +9469,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61090".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has aggregator".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61092", definition: "Relates a resource to an agent who is accused in a criminal proceeding.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/criminalDefendant.en".freeze, @@ -9483,7 +9478,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has criminal defendant".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60462".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61093", definition: "Relates an agent to a resource that involves a responsibility of an agent for being accused in a criminal proceeding.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/criminalDefendantOf.en".freeze, @@ -9492,7 +9487,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is criminal defendant of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61094", definition: "Relates a resource to an agent who is sued in a civil proceeding.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/civilDefendant.en".freeze, @@ -9501,7 +9496,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has civil defendant".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60462".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61095", definition: "Relates an agent to a resource that involves a responsibility of an agent for being sued in a civil proceeding.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/civilDefendantOf.en".freeze, @@ -9510,21 +9505,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is civil defendant of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61096", definition: "Relates a resource to an agent who is responsible for overseeing academic activity of any kind that results in a resource, including theses, research, and projects.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/academicSupervisor.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has academic supervisor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61097", definition: "Relates a resource to a categorization reflecting an intention to extend the content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/extensionPlan.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has extension plan".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61098", definition: "Relates a resource to an academic supervisor who is responsible for advising or supervising research that results in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/researchSupervisor.en".freeze, @@ -9532,21 +9527,21 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61103".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has research supervisor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61099", definition: "Relates a resource to an unstructured or structured description of a range of resources for which the value of a metadata resource is valid.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/scopeOfValidity.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has scope of validity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61100", definition: "Relates a resource to a source of information for a metadata resource that is an unstructured description transcribed from a resource being described.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/recordingSource.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has recording source".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61101", definition: "Relates a resource to a resource in which there is evidence for a metadata resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sourceConsulted.en".freeze, @@ -9554,7 +9549,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61107".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has source consulted".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61102", definition: "Relates a resource to an academic supervisor who is responsible for advising or supervising a project undertaken by a student that results in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/projectSupervisor.en".freeze, @@ -9562,7 +9557,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61104".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has project supervisor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61103", definition: "Relates an agent to a resource that involves a responsibility as an academic supervisor of research that results in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/researchSupervisorOf.en".freeze, @@ -9570,7 +9565,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61098".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is research supervisor of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61104", definition: "Relates an agent to a resource that involves a responsibility as an academic supervisor of a project undertaken by a student that results in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/projectSupervisorOf.en".freeze, @@ -9578,7 +9573,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61102".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is project supervisor of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61105", definition: "Relates a resource to a groove pitch of an analog cylinder.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/groovePitch.en".freeze, @@ -9586,7 +9581,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has groove pitch".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60532".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61106", definition: "Relates a resource to a groove width of an analog disc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/grooveWidth.en".freeze, @@ -9594,7 +9589,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has groove width".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60532".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61107", definition: "Relates a resource to a resource that is a metadata resource for which a resource provides evidence.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/sourceConsultedOf.en".freeze, @@ -9602,7 +9597,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61101".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is source consulted of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61108", definition: "Relates a timespan to a resource that is associated with a claim of protection under copyright or a similar regime during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/copyrightDateOf.en".freeze, @@ -9610,7 +9605,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60069".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is copyright date of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61109", definition: "Relates a timespan to a resource that has an extent of resource that is a playing time, performance time, running time, or other timespan. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/durationOf.en".freeze, @@ -9618,7 +9613,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60557".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is duration of (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61110", definition: "Relates a timespan to a resource that is an academic degree conferred by a granting institution or faculty during a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/yearDegreeGrantedOf.en".freeze, @@ -9626,7 +9621,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60514".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is year degree granted of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61111", definition: "Relates a nomen to a resource that has a title of resource that has been abbreviated for purposes of indexing or identification.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/abbreviatedTitleOf.en".freeze, @@ -9634,21 +9629,21 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60359".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is abbreviated title of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61112", definition: "Relates a nomen to an agent who has an appellation of agent that is a pseudonym or other assumed identity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/alternateIdentityOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is alternate identity of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61113", definition: "Relates a nomen to an agent who has an appellation of agent that is a real identity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/realIdentityOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is real identity of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61114", definition: "Relates a nomen to a nomen that is a discrete component of another nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/partNomen.en".freeze, @@ -9656,7 +9651,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61115".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has part nomen".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61115", definition: "Relates a nomen to a nomen that has another nomen as a discrete component.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/partOfNomen.en".freeze, @@ -9664,7 +9659,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61114".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is part of nomen".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61116", definition: "Relates a nomen to a resource that has a title proper in another language or script.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelTitleProperOf.en".freeze, @@ -9672,7 +9667,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60589".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is parallel title proper of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61117", definition: "Relates a nomen to a resource that has an identifier assigned by an ISSN registration agency.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/issnOf.en".freeze, @@ -9680,7 +9675,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60534".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is ISSN of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61118", definition: "Relates a nomen to a resource that has a title of resource that is assigned by an ISSN registration agency.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/keyTitleOf.en".freeze, @@ -9689,35 +9684,35 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is key title of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61030".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61119", definition: "Relates a nomen to the circumstances or situation in which an appellation of an entity is used.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contextOfUse.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has context of use".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61120", definition: "Relates a nomen to a date or range of dates that is associated with the use of an appellation of an entity. (Deprecated)".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/dateOfUsage.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1008".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has date of usage (Deprecated)".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61121", definition: "Relates a nomen to a nomen that is based on another nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/derivation.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has derivation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61122", definition: "Relates a nomen to a nomen that is used as the basis of another nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/derivationOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is derivation of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61123", definition: "Relates a nomen to a nomen that is an appellation of the same entity as another nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/equivalentTo.en".freeze, @@ -9725,249 +9720,249 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61123".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is equivalent to".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61124", definition: "Relates an agent to a resource that is an aggregate that embodies computer content created by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfComputerContentOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent of computer content of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61125", definition: "Relates an agent to a resource that is an aggregate that embodies a moving image resource created by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfMovingImageOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent of moving image of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61126", definition: "Relates an agent to a resource that is an aggregate that embodies an object resource created by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfObjectOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent of object of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61127", definition: "Relates an agent to a resource that is an aggregate that embodies a spoken word resource created by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfSpeechOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent of speech of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61128", definition: "Relates an agent to a resource that is an aggregate that embodies a musical resource created by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfMusicOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent of music of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61129", definition: "Relates an agent to a resource that is an aggregate that embodies a cartographic resource created by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfCartographyOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent of cartography of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61130", definition: "Relates an agent to a resource that is an aggregate that embodies a choreographic resource created by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfChoreographyOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent of choreography of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61131", definition: "Relates an agent to a resource that is an aggregate that embodies a textual resource created by an agent.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfTextOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is contributor agent of text of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61132", definition: "Relates a resource to an agent who is a contributor to aggregate who creates a cartographic resource that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfCartography.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent of cartography".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61133", definition: "Relates a resource to an agent who is a contributor to aggregate who creates a choreographic resource that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfChoreography.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent of choreography".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61134", definition: "Relates a resource to an agent who is a contributor to aggregate who creates computer content that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfComputerContent.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent of computer content".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61135", definition: "Relates a resource to an agent who is a contributor to aggregate who creates a moving image resource that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfMovingImage.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent of moving image".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61136", definition: "Relates a resource to an agent who is a contributor to aggregate who creates a musical resource that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfMusic.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent of music".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61137", definition: "Relates a resource to an agent who is a contributor to aggregate who creates an object resource that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfObject.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent of object".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61138", definition: "Relates a resource to an agent who is a contributor to aggregate who creates a spoken word resource that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfSpeech.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent of speech".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61139", definition: "Relates a resource to an agent who is a contributor to aggregate who creates a textual resource that is embodied by an aggregate.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/contributorAgentOfText.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has contributor agent of text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61140", definition: "Relates a resource to a resource statement about a date that is associated with a claim of protection under copyright or a similar regime.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceCopyrightStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A copyright date includes a phonogram date that is associated with a claim of protection for an audio recording.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource copyright statement".freeze, - "skos:scopeNote": "A copyright date includes a phonogram date that is associated with a claim of protection for an audio recording.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61141", definition: "Relates a resource to a resource statement about the designation of a sequence of a resource of a part, issue, or iteration of a diachronic resource. ".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceDesignationOfSequenceStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource designation of sequence statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61142", definition: "Relates a resource to a resource statement about thesis and other dissertation information.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceDissertationStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource dissertation statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61143", definition: "Relates a resource to a resource statement about data relating to the distribution of a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceDistributionStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource distribution statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61144", definition: "Relates a resource to a resource statement about an edition to which a resource belongs.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceEditionStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource edition statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61145", definition: "Relates a resource to a resource statement about an interval at which the resources of parts, issues, or iterations of a diachronic resource are issued.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceFrequencyStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource frequency statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61146", definition: "Relates a resource to a resource statement about a code, number, or other string, usually independent of natural language and social naming conventions, used to identify a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceIdentifierStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource identifier statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61147", definition: "Relates a resource to a resource statement about data relating to the printing, duplicating, casting, etc., of a published resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceManufactureStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource manufacture statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61148", definition: "Relates a resource to a resource statement about data relating to the inscription, fabrication, construction, etc., of an unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceProductionStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource production statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61149", definition: "Relates a resource to a resource statement about the publication, release, or issuing of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourcePublicationStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource publication statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61150", definition: "Relates a resource to a resource statement about a designation for one or more regions of the world for which a videodisc or video game carrier has been encoded, indicating that playback is restricted to a device configured to decode it.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceRegionalEncodingStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource regional encoding statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61151", definition: "Relates a resource to a resource statement about a series to which a resource belongs and a sequence within the series.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceSeriesStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource series statement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61152", definition: "Relates a resource to a resource statement about a series that is associated with a resource and a numbering of a resource within the series.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A resource series statement includes any or all of title of series, other title information of series, statement of responsibility relating to series, ISSN, or numbering within sequence.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource statement".freeze, - "skos:scopeNote": "A resource series statement includes any or all of title of series, other title information of series, statement of responsibility relating to series, ISSN, or numbering within sequence.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61153", definition: "Relates a resource to a resource statement about a name of a resource and the agent creating or contributing to the content of the resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/resourceTitleAndResponsibilityStatement.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A resource title and responsibility statement includes any kind of title or statement of responsibility that is associated with the content of the resource, but does not include a title or statement of responsibility that is associated with an edition, revision or series that is related to the resource.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has resource title and responsibility statement".freeze, - "skos:scopeNote": "A resource title and responsibility statement includes any kind of title or statement of responsibility that is associated with the content of the resource, but does not include a title or statement of responsibility that is associated with an edition, revision or series that is related to the resource.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61154", definition: "Relates a resource to a point size of the type used to represent the characters and symbols in a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fontPointSize.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has font point size".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61155", definition: "Relates a resource to a word or phrase that distinguishes a resource from another resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/designationOfVersion.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has designation of version".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61156", definition: "Relates a nomen to a scheme in which an appellation is established.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/schemeOfNomen.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The scheme can be a value or vocabulary encoding scheme or a syntax encoding scheme.".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has scheme of nomen".freeze, - "skos:scopeNote": "The scheme can be a value or vocabulary encoding scheme or a syntax encoding scheme.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61157", definition: "Relates a nomen to a set of characters or symbols with which an appellation is formed.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/scriptOfNomen.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has script of nomen".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61158", definition: "Relates a nomen to a resource that has an identifier for resource that consists of a group of characters from specified locations in a resource combined with a date of publication or other element.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fingerprintOf.en".freeze, @@ -9975,7 +9970,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60945".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is fingerprint of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61159", definition: "Relates a nomen to a resource which provides evidence for the use of a nomen.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/referenceSource.en".freeze, @@ -9983,21 +9978,21 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61190".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has reference source".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61160", definition: "Relates a nomen to an indication of a level of authentication of the nomen of an entity.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/statusOfIdentification.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has status of identification".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61161", definition: "Relates a resource to a categorization reflecting a hue of the visual content of a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/colour.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has colour".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61162", definition: "Relates an agent to an appellation of agent in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/accessPointForAgent.en".freeze, @@ -10006,7 +10001,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has access point for agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60906".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61163", definition: "Relates a nomen to an agent who has an appellation in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/accessPointForAgentOf.en".freeze, @@ -10015,7 +10010,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is access point for agent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60910".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61164", definition: "Relates a place to an appellation of place in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/accessPointForPlace.en".freeze, @@ -10024,7 +10019,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has access point for place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60906".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61165", definition: "Relates a nomen to a place that has an appellation in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/accessPointForPlaceOf.en".freeze, @@ -10033,7 +10028,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is access point for place of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60910".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61166", definition: "Relates a resource to an appellation of resource in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/accessPointForResource.en".freeze, @@ -10042,7 +10037,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has access point for resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60906".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61167", definition: "Relates a nomen to a resource that has an appellation in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/accessPointForResourceOf.en".freeze, @@ -10051,7 +10046,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is access point for resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60910".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61168", definition: "Relates a timespan to an appellation of timespan in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/accessPointForTimespan.en".freeze, @@ -10060,7 +10055,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has access point for timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60906".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61169", definition: "Relates a nomen to a timespan that has an appellation in natural language that is taken from a vocabulary encoding scheme or is constructed using a string encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/accessPointForTimespanOf.en".freeze, @@ -10069,7 +10064,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is access point for timespan of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60910".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61170", definition: "Relates an agent to an access point for agent that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/authorizedAccessPointForAgent.en".freeze, @@ -10078,7 +10073,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has authorized access point for agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60916".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61171", definition: "Relates a place to an access point for place that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/authorizedAccessPointForPlace.en".freeze, @@ -10087,7 +10082,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has authorized access point for place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60916".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61172", definition: "Relates a resource to an access point for resource that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/authorizedAccessPointForResource.en".freeze, @@ -10096,7 +10091,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has authorized access point for resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60916".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61173", definition: "Relates a timespan to an access point for timespan that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/authorizedAccessPointForTimespan.en".freeze, @@ -10105,7 +10100,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has authorized access point for timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60916".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61174", definition: "Relates a nomen to an agent who has an access point for agent that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/authorizedAccessPointForAgentOf.en".freeze, @@ -10114,7 +10109,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is authorized access point for agent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60918".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61175", definition: "Relates a nomen to a place that has an access point for place that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/authorizedAccessPointForPlaceOf.en".freeze, @@ -10123,7 +10118,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is authorized access point for place of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60918".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61176", definition: "Relates a nomen to a resource that has an access point for resource that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/authorizedAccessPointForResourceOf.en".freeze, @@ -10132,7 +10127,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is authorized access point for resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60918".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61177", definition: "Relates a nomen to a timespan that has an access point for timespan that is selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/authorizedAccessPointForTimespanOf.en".freeze, @@ -10141,47 +10136,47 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is authorized access point for timespan of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60918".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61178", definition: "Relates a place to an appellation of place that consists of a code, number, or other string, usually independent of natural language and social naming conventions, used to identify a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForPlace.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61180".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has identifier for place".freeze, - "skos:scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60919".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61179", definition: "Relates a timespan to an appellation of timespan that consists of a code, number, or other string, usually independent of natural language and social naming conventions, used to identify a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForTimespan.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61181".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has identifier for timespan".freeze, - "skos:scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60919".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61180", definition: "Relates a nomen to a place that has a reference code taken from a vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForPlaceOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61178".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is identifier for place of".freeze, - "skos:scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60928".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61181", definition: "Relates a nomen to a timespan that has a reference code taken from a vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/identifierForTimespanOf.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, inverseOf: "http://rdaregistry.info/Elements/u/P61179".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is identifier for timespan of".freeze, - "skos:scopeNote": "The coded string is usually independent of natural language and social naming conventions.".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60928".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61182", definition: "Relates a nomen to an agent who has an access point for agent that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantAccessPointForAgentOf.en".freeze, @@ -10190,7 +10185,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant access point for agent of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60952".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61183", definition: "Relates a nomen to a place that has an access point for entity that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantAccessPointForPlaceOf.en".freeze, @@ -10199,7 +10194,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant access point for place of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60952".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61184", definition: "Relates a nomen to a resource that has an access point for resource that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantAccessPointForResourceOf.en".freeze, @@ -10208,7 +10203,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant access point for resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60952".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61185", definition: "Relates a nomen to a timespan that has an access point for timespan that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantAccessPointForTimespanOf.en".freeze, @@ -10217,7 +10212,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is variant access point for timespan of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60952".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61186", definition: "Relates an agent to an access point for agent that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantAccessPointForAgent.en".freeze, @@ -10226,7 +10221,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant access point for agent".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60917".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61187", definition: "Relates an agent to an access point for place that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantAccessPointForPlace.en".freeze, @@ -10235,7 +10230,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant access point for place".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60917".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61188", definition: "Relates a resource to an access point for resource that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantAccessPointForResource.en".freeze, @@ -10244,7 +10239,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant access point for resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60917".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61189", definition: "Relates a timespan to an access point for timespan that is not selected for preference in a specific vocabulary encoding scheme.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/variantAccessPointForTimespan.en".freeze, @@ -10253,7 +10248,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has variant access point for timespan".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60917".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61190", definition: "Relates a resource to a nomen for which evidence of use is provided by a resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/referenceSourceOf.en".freeze, @@ -10261,7 +10256,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61159".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is reference source of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61191", definition: "Relates a place to a resource that is a cartographic resource that has an area of coverage that is described using a mathematical system to identify its boundaries or location.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": ["http://rdaregistry.info/Elements/u/P61198".freeze, "http://rdaregistry.info/Elements/u/P61200".freeze, "http://rdaregistry.info/Elements/u/P61201".freeze], @@ -10271,7 +10266,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is coordinates of cartographic content of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61013".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61192", definition: "Relates a nomen to an agent who has a fuller form of a name or part of a name represented by an initial, abbreviation, or shortened or otherwise modified form.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/fullerFormOfNameOf.en".freeze, @@ -10280,7 +10275,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is fuller form of name of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60920".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61193", definition: "Relates a nomen to an agent who uses a name given at birth or at some later point in addition to, or instead of, a surname.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/givenNameOf.en".freeze, @@ -10289,21 +10284,21 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is given name of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60920".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61194", definition: "Relates a nomen to a class of users for which a nomen is intended.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/intendedAudienceOfNomen.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has intended audience of nomen".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61195", definition: "Relates a nomen to a language of an appellation.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/languageOfNomen.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has language of nomen".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61196", definition: "Relates a nomen to an agent who uses a family name.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/surnameOf.en".freeze, @@ -10312,7 +10307,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is surname of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60920".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61197", definition: "Relates a nomen to a resource that has a title of series in another language or script.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/parallelTitleOfSeriesOf.en".freeze, @@ -10321,7 +10316,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is parallel title of series of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60958".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61198", definition: "Relates a place to a resource that is a cartographic resource that has an area of coverage that is identified using longitude of the westernmost and easternmost boundaries and latitude of the northernmost and southernmost boundaries.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/longitudeAndLatitudeOf.en".freeze, @@ -10330,14 +10325,14 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is longitude and latitude of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61191".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61199", definition: "Relates a place to a delimitation of the physical territory of the place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/location.en".freeze, "http://metadataregistry.org/uri/profile/regap/status": "http://metadataregistry.org/uri/RegStatus/1001".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has location".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61200", definition: "Relates a place to a resource that is a cartographic resource that has an area of coverage that is identifiedy by a polygon using coordinates for each vertex.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/stringsOfCoordinatePairsOf.en".freeze, @@ -10346,7 +10341,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is strings of coordinate pairs of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61191".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61201", definition: "Relates a place to a resource that is a cartographic resource that locates a celestial body that is the coverage of the resource and is identified using the angles of right ascension and declination.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/rightAscensionAndDeclinationOf.en".freeze, @@ -10355,7 +10350,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is right ascension and declination of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61191".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61202", definition: "Relates a resource to an agent who is a performer who contributes to a resource by teaching or providing a demonstration.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/instructor.en".freeze, @@ -10363,7 +10358,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has instructor".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P60387".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61203", definition: "Relates a resource to a nomen that is a name of an agent who is responsible for distributing, printing, duplicating, casting, publishing, releasing, issuing, etc., a published resource, or inscribing, fabricating, constructing, etc., an unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfAgentOfResource.en".freeze, @@ -10372,7 +10367,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has name of agent of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61023".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61204", definition: "Relates a nomen to a resource that has a name of agent who is responsible for distribution, printing, duplication, casting, publication, release, issue, etc., or inscription, fabrication, construction, etc.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/nameOfAgentOfResourceOf.en".freeze, @@ -10381,7 +10376,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is name of agent of resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61030".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61205", definition: "Relates a resource to a place that is associated with the distribution, printing, duplicating, casting, publication, release, or issuing, etc., of a published resource, or the inscription, fabrication, construction, etc., of an unpublished resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfResource.en".freeze, @@ -10390,7 +10385,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "has place of resource".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61014".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61206", definition: "Relates a place to a resource that is a published resource that is distributed, printed, duplicated, cast, published, released, or issued, etc., or an unpublished resource that is inscribed, fabricated, constructed, etc., in a place.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/placeOfResourceOf.en".freeze, @@ -10399,7 +10394,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is place of resource of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61013".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61207", definition: "Relates a timespan to a timespan that starts at the time that is a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/beginningOf.en".freeze, @@ -10407,7 +10402,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P60998".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is beginning of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61208", definition: "Relates a timespan to a timespan that finishes at the time that is a timespan.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/endingOf.en".freeze, @@ -10415,7 +10410,7 @@ module RDF::Vocab inverseOf: "http://rdaregistry.info/Elements/u/P61000".freeze, isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is ending of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61209", definition: "Relates a nomen to a resource that has a designation that identifies its position in a sequence of individual parts of a larger resource or parts or issues of a larger resource.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/numberingWithinSequenceOf.en".freeze, @@ -10424,7 +10419,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is numbering within sequence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61030".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61210", definition: "Relates a nomen to a resource that has a designation in the form of numbers or alphabetic characters that is used to indicate the first in a concurrent sequence of numbering of parts or iterations.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/firstAlphanumericDesignationOfAlternativeSequenceOf.en".freeze, @@ -10433,7 +10428,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is first alphanumeric designation of alternative sequence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61211".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61211", definition: "Relates a nomen to a resource that has a designation in the form of numbers or alphabetic characters that is used to indicate the first in a sequence of numbering of parts or iterations.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61210".freeze, @@ -10443,7 +10438,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is first alphanumeric designation of sequence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61030".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61212", definition: "Relates a nomen to a resource that has a designation in the form of a date or other timespan that is used to indicate the first in a concurrent sequence of numbering of parts or iterations.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/firstChronologicalDesignationOfAlternativeSequenceOf.en".freeze, @@ -10452,7 +10447,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is first chronological designation of alternative sequence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61213".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61213", definition: "Relates a nomen to a resource that has a designation in the form of a date or other timespan that is used to indicate the first in a sequence of numbering of parts or iterations.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61212".freeze, @@ -10462,7 +10457,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is first chronological designation of sequence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61030".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61214", definition: "Relates a nomen to a resource that has a designation in the form of numbers or alphabetic characters that is used to indicate the last in a concurrent sequence of numbering of parts or iterations.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lastAlphanumericDesignationOfAlternativeSequenceOf.en".freeze, @@ -10471,7 +10466,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is last alphanumeric designation of alternative sequence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61215".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61215", definition: "Relates a nomen to a resource that has a designation in the form of numbers or alphabetic characters that is used to indicate the last in a sequence of numbering of parts or iterations.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61214".freeze, @@ -10481,7 +10476,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is last alphanumeric designation of sequence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61030".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61216", definition: "Relates a nomen to a resource that has a designation in the form of a date or other timespan that is used to indicate the last in a concurrent sequence of numbering of parts or iterations.".freeze, "http://metadataregistry.org/uri/profile/regap/lexicalAlias": "http://rdaregistry.info/Elements/u/lastChronologicalDesignationOfAlternativeSequenceOf.en".freeze, @@ -10490,7 +10485,7 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is last chronological designation of alternative sequence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61217".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"/P61217", definition: "Relates a nomen to a resource that has a designation in the form of a date or other timespan that is used to indicate the last in a sequence of numbering of parts or iterations.".freeze, "http://metadataregistry.org/uri/profile/regap/hasSubproperty": "http://rdaregistry.info/Elements/u/P61216".freeze, @@ -10500,12 +10495,12 @@ module RDF::Vocab isDefinedBy: "http://rdaregistry.info/Elements/u/".freeze, label: "is last chronological designation of sequence of".freeze, subPropertyOf: "http://rdaregistry.info/Elements/u/P61030".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :/, - "dc11:title": "RDA Unconstrained properties".freeze, - "foaf:homepage": "http://www.rdaregistry.info/Elements/u/".freeze, + "http://purl.org/dc/elements/1.1/title": "RDA Unconstrained properties".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://www.rdaregistry.info/Elements/u/".freeze, note: "Properties derived from RDA elements without specific or implicit restrictions to RDA entities.".freeze end end diff --git a/lib/rdf/vocab/rightsstatements.rb b/lib/rdf/vocab/rightsstatements.rb index da7c8cd..8fa6402 100644 --- a/lib/rdf/vocab/rightsstatements.rb +++ b/lib/rdf/vocab/rightsstatements.rb @@ -3,154 +3,146 @@ # This file generated automatically using rdf vocabulary format from http://rightsstatements.org/vocab/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class RightsStatements < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :irswg - # - # end RightsStatements = Class.new(RDF::StrictVocabulary("http://rightsstatements.org/vocab/")) do # Extra definitions term :"1.0/", - "dc11:identifier": "rscs".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:title": "RightsStatements.org Standardized International Rights Statements".freeze, - "owl:versionInfo": "1.0".freeze, - type: "skos:ConceptScheme".freeze + "http://purl.org/dc/elements/1.1/identifier": "rscs".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/title": "RightsStatements.org Standardized International Rights Statements".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + type: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze term :"CNE/1.0/", - "dc11:identifier": "CNE".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "CNE".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://www.europeana.eu/rights/unknown/".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/unk".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "CNE".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:closeMatch": "http://www.europeana.eu/rights/unknown/".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/unk".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"InC-EDU/1.0/", - "dc11:identifier": "InC-EDU".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "InC-EDU".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "InC-EDU".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"InC-NC/1.0/", - "cc:prohibits": "cc:CommercialUse".freeze, - "dc11:identifier": "InC-NC".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://creativecommons.org/ns#prohibits": "http://creativecommons.org/ns#CommercialUse".freeze, + "http://purl.org/dc/elements/1.1/identifier": "InC-NC".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://creativecommons.org/licenses/by-nc/4.0/".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "InC-NC".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:closeMatch": "http://creativecommons.org/licenses/by-nc/4.0/".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"InC-OW-EU/1.0/", - "dc11:identifier": "InC-OW-EU".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2010-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "InC-OW-EU".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2010-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://www.europeana.eu/rights/orphan-work-eu/".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "InC-OW-EU".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:closeMatch": "http://www.europeana.eu/rights/orphan-work-eu/".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"InC-RUU/1.0/", - "dc11:identifier": "InC-RUU".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "InC-RUU".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "InC-RUU".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"InC/1.0/", - "dc11:identifier": "InC".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "InC".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://www.europeana.eu/rights/rr-f/".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "InC".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:closeMatch": "http://www.europeana.eu/rights/rr-f/".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/cpr".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"NKC/1.0/", - "dc11:identifier": "NKC".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "NKC".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/unk".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "NKC".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/unk".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"NoC-CR/1.0/", - "dc11:identifier": "NoC-CR".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "NoC-CR".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/pub".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "NoC-CR".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/pub".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"NoC-NC/1.0/", - "cc:prohibits": "cc:CommercialUse".freeze, - "dc11:identifier": "NoC-NC".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://creativecommons.org/ns#prohibits": "http://creativecommons.org/ns#CommercialUse".freeze, + "http://purl.org/dc/elements/1.1/identifier": "NoC-NC".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/pub".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "NoC-NC".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/pub".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"NoC-OKLR/1.0/", - "dc11:identifier": "NoC-OKLR".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "NoC-OKLR".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, + "http://www.w3.org/2004/02/skos/core#relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/pub".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "NoC-OKLR".freeze, - "owl:versionInfo": "1.0".freeze, - "skos:relatedMatch": "http://id.loc.gov/vocabulary/preservation/copyrightStatus/pub".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"NoC-US/1.0/", - "dc11:identifier": "NoC-US".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "NoC-US".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "NoC-US".freeze, - "owl:versionInfo": "1.0".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"UND/1.0/", - "dc11:identifier": "UND".freeze, - "dc:creator": "rightsstatements:irswg".freeze, - "dc:modified": "2019-04-18".freeze, + "http://purl.org/dc/elements/1.1/identifier": "UND".freeze, + "http://purl.org/dc/terms/creator": "http://rightsstatements.org/vocab/irswg".freeze, + "http://purl.org/dc/terms/modified": "2019-04-18".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, notation: "UND".freeze, - "owl:versionInfo": "1.0".freeze, - type: ["dc:RightsStatement".freeze, "skos:Concept".freeze] + type: ["http://purl.org/dc/terms/RightsStatement".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze] term :"collection-ic/1.0/", + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, member: ["http://rightsstatements.org/vocab/InC-EDU/1.0/".freeze, "http://rightsstatements.org/vocab/InC-NC/1.0/".freeze, "http://rightsstatements.org/vocab/InC-OW-EU/1.0/".freeze, "http://rightsstatements.org/vocab/InC-RUU/1.0/".freeze, "http://rightsstatements.org/vocab/InC/1.0/".freeze], - "owl:versionInfo": "1.0".freeze, - type: "skos:Collection".freeze + type: "http://www.w3.org/2004/02/skos/core#Collection".freeze term :"collection-nc/1.0/", + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, member: ["http://rightsstatements.org/vocab/NoC-CR/1.0/".freeze, "http://rightsstatements.org/vocab/NoC-NC/1.0/".freeze, "http://rightsstatements.org/vocab/NoC-OKLR/1.0/".freeze, "http://rightsstatements.org/vocab/NoC-US/1.0/".freeze], - "owl:versionInfo": "1.0".freeze, - type: "skos:Collection".freeze + type: "http://www.w3.org/2004/02/skos/core#Collection".freeze term :"collection-other/1.0/", + "http://www.w3.org/2002/07/owl#versionInfo": "1.0".freeze, inScheme: "http://rightsstatements.org/vocab/1.0/".freeze, member: ["http://rightsstatements.org/vocab/CNE/1.0/".freeze, "http://rightsstatements.org/vocab/NKC/1.0/".freeze, "http://rightsstatements.org/vocab/UND/1.0/".freeze], - "owl:versionInfo": "1.0".freeze, - type: "skos:Collection".freeze + type: "http://www.w3.org/2004/02/skos/core#Collection".freeze term :irswg, - "foaf:homepage": "http://rightsstatements.org/".freeze, - "foaf:name": "RightsStatements.org Consortium".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://rightsstatements.org/".freeze, + "http://xmlns.com/foaf/0.1/name": "RightsStatements.org Consortium".freeze, prefLabel: "RightsStatements.org Consortium".freeze, - type: ["edm:Agent".freeze, "foaf:Group".freeze] + type: ["http://www.europeana.eu/schemas/edm/Agent".freeze, "http://xmlns.com/foaf/0.1/Group".freeze] end end diff --git a/lib/rdf/vocab/rsa.rb b/lib/rdf/vocab/rsa.rb index f3922f6..0b2000b 100644 --- a/lib/rdf/vocab/rsa.rb +++ b/lib/rdf/vocab/rsa.rb @@ -3,96 +3,63 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/auth/rsa# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # ontology for the RSA public private keys - # # @see http://www.w3.org/ns/auth/X509Uml.svg - # # @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] - # attr_reader :RSAKey - # - # # A Private Key in the RSA framework - # # @return [RDF::Vocabulary::Term] - # attr_reader :RSAPrivateKey - # - # # The RSA public key. Padded message m are encrypted by applying the function modulus(power(m,exponent),modulus) - # # @return [RDF::Vocabulary::Term] - # attr_reader :RSAPublicKey - # - # # The modulus of an RSA public and private key. This is defined as n = p*q - # # @return [RDF::Vocabulary::Term] - # attr_reader :modulus - # - # # The exponent used to decrypt the message calculated as public_exponent*private_exponent = 1 modulo totient(p*q) The private exponent is often named 'd' - # # @return [RDF::Vocabulary::Term] - # attr_reader :private_exponent - # - # # The exponent used to encrypt the message. Number chosen between 1 and the totient(p*q). Often named 'e' . - # # @return [RDF::Vocabulary::Term] - # attr_reader :public_exponent - # - # end RSA = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/auth/rsa#")) do # Ontology definition ontology :"http://www.w3.org/ns/auth/rsa#", comment: "ontology for the RSA public private keys ".freeze, - "dc:contributor": term( - "foaf:homepage": "http://ii.uwb.edu.pl/~dtomaszuk/card".freeze + "http://purl.org/dc/terms/contributor": term( + "http://xmlns.com/foaf/0.1/homepage": "http://ii.uwb.edu.pl/~dtomaszuk/card".freeze ), - "dc:created": "2008-11-13".freeze, - "foaf:maker": "http://bblfish.net/people/henry/card#me".freeze, - "rdfs:seeAlso": ["http://en.wikipedia.org/wiki/RSA".freeze, "http://lists.foaf-project.org/mailman/listinfo/foaf-protocols".freeze, "http://www.w3.org/ns/auth/X509Uml.svg".freeze], - type: "owl:Ontology".freeze, - "vs:term_status": "unstable".freeze + "http://purl.org/dc/terms/created": "2008-11-13".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://en.wikipedia.org/wiki/RSA".freeze, "http://lists.foaf-project.org/mailman/listinfo/foaf-protocols".freeze, "http://www.w3.org/ns/auth/X509Uml.svg".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + "http://xmlns.com/foaf/0.1/maker": "http://bblfish.net/people/henry/card#me".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :RSAKey, comment: "\n The union of the public and private components of an RSAKey.\n Usually those pieces are not kept together\n ".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "RSA Key".freeze, - subClassOf: "cert:Key".freeze, - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: "http://www.w3.org/ns/auth/cert#Key".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RSAPrivateKey, comment: "\n A Private Key in the RSA framework \n ".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://en.wikipedia.org/wiki/RSA".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "RSA Private Key".freeze, - "rdfs:seeAlso": "http://en.wikipedia.org/wiki/RSA".freeze, - subClassOf: ["cert:PrivateKey".freeze, "rsa:RSAKey".freeze], - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: ["http://www.w3.org/ns/auth/cert#PrivateKey".freeze, "http://www.w3.org/ns/auth/rsa#RSAKey".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RSAPublicKey, comment: "\n The RSA public key. Padded message m are encrypted by applying the function\n modulus(power(m,exponent),modulus)\n ".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://en.wikipedia.org/wiki/RSA".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "RSA Public Key".freeze, - "rdfs:seeAlso": "http://en.wikipedia.org/wiki/RSA".freeze, - subClassOf: ["cert:PublicKey".freeze, "rsa:RSAKey".freeze], - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: ["http://www.w3.org/ns/auth/cert#PublicKey".freeze, "http://www.w3.org/ns/auth/rsa#RSAKey".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :modulus, comment: " \n The modulus of an RSA public and private key. \n This is defined as n = p*q\n ".freeze, - domain: "rsa:RSAKey".freeze, + domain: "http://www.w3.org/ns/auth/rsa#RSAKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "modulus".freeze, - range: ["xsd:base64Binary".freeze, "xsd:hexBinary".freeze], - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: ["http://www.w3.org/2001/XMLSchema#base64Binary".freeze, "http://www.w3.org/2001/XMLSchema#hexBinary".freeze], + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :private_exponent, comment: "\n The exponent used to decrypt the message\n calculated as \n public_exponent*private_exponent = 1 modulo totient(p*q)\n The private exponent is often named 'd'\n ".freeze, - domain: "rsa:RSAPrivateKey".freeze, + domain: "http://www.w3.org/ns/auth/rsa#RSAPrivateKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "private".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :public_exponent, comment: "\n The exponent used to encrypt the message. Number chosen between\n 1 and the totient(p*q). Often named 'e' .\n ".freeze, - domain: "rsa:RSAPublicKey".freeze, + domain: "http://www.w3.org/ns/auth/rsa#RSAPublicKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, label: "public_exponent".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze end end diff --git a/lib/rdf/vocab/rss.rb b/lib/rdf/vocab/rss.rb index fe09333..27a093d 100644 --- a/lib/rdf/vocab/rss.rb +++ b/lib/rdf/vocab/rss.rb @@ -3,109 +3,64 @@ # This file generated automatically using rdf vocabulary format from http://purl.org/rss/1.0/ require 'rdf' 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 # Class definitions term :channel, comment: "An RSS information channel.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "Channel".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :image, comment: "An RSS image.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "Image".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :item, comment: "An RSS item.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "Item".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :textinput, comment: "An RSS text input.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "Text Input".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :description, comment: "A short text description of the subject.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "Description".freeze, - subPropertyOf: "dc11:description".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :items, comment: "Points to a list of rss:item elements that are members of the subject channel.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "Items".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :link, comment: "The URL to which an HTML rendering of the subject will link.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "Link".freeze, - subPropertyOf: "dc11:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :name, comment: "The text input field's (variable) name.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "Name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, comment: "A descriptive title for the channel.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "Title".freeze, - subPropertyOf: "dc11:title".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/title".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :url, comment: "The URL of the image to used in the 'src' attribute of the channel's image tag when rendered as HTML.".freeze, - isDefinedBy: "rss:".freeze, + isDefinedBy: "http://purl.org/rss/1.0/".freeze, label: "URL".freeze, - subPropertyOf: "dc11:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/elements/1.1/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/schema.rb b/lib/rdf/vocab/schema.rb index 28f984e..4c4b3cc 100644 --- a/lib/rdf/vocab/schema.rb +++ b/lib/rdf/vocab/schema.rb @@ -3,26800 +3,16331 @@ # This file generated automatically using rdf vocabulary format from http://schema.org/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class SCHEMA < RDF::StrictVocabulary - # # A radio channel that uses AM. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AMRadioChannel - # - # # Reference documentation for application programming interfaces (APIs). - # # @return [RDF::Vocabulary::Term] - # attr_reader :APIReference - # - # # Web page type: About page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AboutPage - # - # # The act of committing to/adopting an object.\n\nRelated actions:\n\n* [[RejectAction]]: The antonym of AcceptAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AcceptAction - # - # # An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement. 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Accommodation - # - # # Accountancy business.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :AccountingService - # - # # The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AchieveAction - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](http://schema.org/docs/actions.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Action - # - # # A set of requirements that a must be fulfilled in order to perform an Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActionAccessSpecification - # - # # The status of an Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActionStatusType - # - # # The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActivateAction - # - # # The act of editing by adding an object to a collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AddAction - # - # # A geographical region, typically under the jurisdiction of a particular government. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdministrativeArea - # - # # An adult entertainment establishment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdultEntertainment - # - # # An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdvertiserContentArticle - # - # # When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\n\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AggregateOffer - # - # # The average rating based on multiple ratings or reviews. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AggregateRating - # - # # The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AgreeAction - # - # # An organization that provides flights for passengers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Airline - # - # # An airport. - # # @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. 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 - # - # # The act of organizing tasks/objects/events by associating resources to it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AllocateAction - # - # # A creative work with a visual storytelling format intended to be viewed online, particularly on mobile devices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmpStory - # - # # An amusement park. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmusementPark - # - # # An AnalysisNewsArticle is a [[NewsArticle]] that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnalysisNewsArticle - # - # # Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnatomicalStructure - # - # # An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnatomicalSystem - # - # # Animal shelter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnimalShelter - # - # # An answer offered to a question; perhaps correct, perhaps opinionated or wrong. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Answer - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Apartment - # - # # Residence type: Apartment complex. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ApartmentComplex - # - # # The act of inserting at the end if an ordered collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AppendAction - # - # # The act of registering to an organization/service without the guarantee to receive it.\n\nRelated actions:\n\n* [[RegisterAction]]: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ApplyAction - # - # # An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ApprovedIndication - # - # # Aquarium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Aquarium - # - # # An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArchiveComponent - # - # # An organization with archival holdings. An organization which keeps and preserves archival material and typically makes it accessible to the public. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArchiveOrganization - # - # # The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArriveAction - # - # # An art gallery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArtGallery - # - # # A type of blood vessel that specifically carries blood away from the heart. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Artery - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Article - # - # # The act of posing a question / favor to someone.\n\nRelated actions:\n\n* [[ReplyAction]]: Appears generally as a response to AskAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AskAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AskPublicNewsArticle - # - # # The act of forming one's opinion, reaction or sentiment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AssessAction - # - # # The act of allocating an action/event/task to some destination (someone or something). - # # @return [RDF::Vocabulary::Term] - # attr_reader :AssignAction - # - # # A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Atlas - # - # # Professional service: Attorney. \n\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Attorney - # - # # Intended audience for an item, i.e. the group for whom the item was created. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Audience - # - # # An audio file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioObject - # - # # An audiobook. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Audiobook - # - # # The act of granting permission to an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AuthorizeAction - # - # # Auto body shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoBodyShop - # - # # An car dealership. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoDealer - # - # # An auto parts store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoPartsStore - # - # # A car rental business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoRental - # - # # Car repair business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoRepair - # - # # A car wash business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoWash - # - # # ATM/cash machine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutomatedTeller - # - # # Car repair, sales, or parts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutomotiveBusiness - # - # # 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](https://en.wikipedia.org/wiki/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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BackgroundNewsArticle - # - # # Pathogenic bacteria that cause bacterial infection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bacteria - # - # # A bakery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bakery - # - # # A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BankAccount - # - # # Bank or credit union. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BankOrCreditUnion - # - # # A bar or pub. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BarOrPub - # - # # An image of a visual machine-readable code such as a barcode or QR code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Barcode - # - # # Beach. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Beach - # - # # Beauty salon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BeautySalon - # - # # Bed and breakfast.

See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BedAndBreakfast - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :BedDetails - # - # # A type of bed. This is used for indicating the bed or beds available in an accommodation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BedType - # - # # The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.\n\nRelated actions:\n\n* [[FollowAction]]: Unlike FollowAction, BefriendAction implies that the connection is reciprocal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BefriendAction - # - # # A bike store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BikeStore - # - # # A blog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Blog - # - # # A blog post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BlogPosting - # - # # A medical test performed on a sample of a patient's blood. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BloodTest - # - # # A type of boarding policy used by an airline. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoardingPolicyType - # - # # A reservation for boat travel. Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoatReservation - # - # # A terminal for boats, ships, and other water vessels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoatTerminal - # - # # A trip on a commercial ferry line. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoatTrip - # - # # A body of water, such as a sea, ocean, or lake. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BodyOfWater - # - # # Rigid connective tissue that comprises up the skeletal structure of the human body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bone - # - # # A book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Book - # - # # The publication format of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookFormatType - # - # # A series of books. Included books can be indicated with the hasPart property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookSeries - # - # # A bookstore. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookStore - # - # # An agent bookmarks/flags/labels/tags/marks an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookmarkAction - # - # # Boolean: True or False. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Boolean - # - # # The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\n\nRelated actions:\n\n* [[LendAction]]: Reciprocal of BorrowAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BorrowAction - # - # # A bowling alley. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BowlingAlley - # - # # Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BrainStructure - # - # # A brand is a name used by an organization or business person for labeling a product, product group, or similar. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brand - # - # # A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\n\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the "top" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BreadcrumbList - # - # # Brewery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brewery - # - # # A bridge. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bridge - # - # # A unique instance of a BroadcastService on a CableOrSatelliteService lineup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastChannel - # - # # An over the air or online broadcast event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastEvent - # - # # The frequency in MHz and the modulation used for a particular BroadcastService. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastFrequencySpecification - # - # # A delivery service through which content is provided via broadcast over the air or online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastService - # - # # An account that allows an investor to deposit funds and place investment orders with a licensed broker or brokerage firm. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BrokerageAccount - # - # # A Buddhist temple. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BuddhistTemple - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusOrCoach - # - # # A reservation for bus travel. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusReservation - # - # # A bus station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusStation - # - # # A bus stop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusStop - # - # # A trip on a commercial bus line. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusTrip - # - # # A set of characteristics belonging to businesses, e.g. who compose an item's target audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessAudience - # - # # A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#Business\n* http://purl.org/goodrelations/v1#Enduser\n* http://purl.org/goodrelations/v1#PublicInstitution\n* http://purl.org/goodrelations/v1#Reseller - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessEntityType - # - # # Event type: Business event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessEvent - # - # # The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#ConstructionInstallation\n* http://purl.org/goodrelations/v1#Dispose\n* http://purl.org/goodrelations/v1#LeaseOut\n* http://purl.org/goodrelations/v1#Maintain\n* http://purl.org/goodrelations/v1#ProvideService\n* http://purl.org/goodrelations/v1#Repair\n* http://purl.org/goodrelations/v1#Sell\n* http://purl.org/goodrelations/v1#Buy - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessFunction - # - # # The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BuyAction - # - # # A CDCPMDRecord is a data structure representing a record in a CDC tabular data format used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative definitions used as the source here. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CDCPMDRecord - # - # # A service which provides access to media programming like TV or radio. Access may be via cable or satellite. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CableOrSatelliteService - # - # # A cafe or coffee shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CafeOrCoffeeShop - # - # # A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \n\n 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](https://en.wikipedia.org/wiki/Campsite)).\n\n See also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Campground - # - # # A [[CampingPitch]] is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or [[Campground]].\n\n In British English a campsite, or campground, 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](https://en.wikipedia.org/wiki/Campsite)).\n\n See also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :CampingPitch - # - # # A canal, like the Panama Canal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Canal - # - # # The act of asserting that a future event/action is no longer going to happen.\n\nRelated actions:\n\n* [[ConfirmAction]]: The antonym of CancelAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CancelAction - # - # # A car is a wheeled, self-powered motor vehicle used for transportation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Car - # - # # A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CarUsageType - # - # # A casino. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Casino - # - # # A Category Code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CategoryCode - # - # # A set of Category Code values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CategoryCodeSet - # - # # A Catholic church. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CatholicChurch - # - # # A graveyard. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cemetery - # - # # One of the sections into which a book is divided. A chapter usually has a section number or a name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Chapter - # - # # An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheckAction - # - # # The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\n\nRelated actions:\n\n* [[CheckOutAction]]: The antonym of CheckInAction.\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheckInAction - # - # # The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check in) or place (e.g. hotel).\n\nRelated actions:\n\n* [[CheckInAction]]: The antonym of CheckOutAction.\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheckOutAction - # - # # Web page type: Checkout page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheckoutPage - # - # # A Childcare center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChildCare - # - # # Event type: Children's event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChildrensEvent - # - # # The act of expressing a preference from a set of options or a large or unbounded set of choices/options. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChooseAction - # - # # A church. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Church - # - # # A city or town. - # # @return [RDF::Vocabulary::Term] - # attr_reader :City - # - # # A city hall. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CityHall - # - # # A public structure, such as a town hall or concert hall. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CivicStructure - # - # # A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews. 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Claim - # - # # A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClaimReview - # - # # A class, also often called a 'Type'; equivalent to rdfs:Class. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Class - # - # # A short TV or radio program or a segment/part of a program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Clip - # - # # A clothing store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClothingStore - # - # # Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Code - # - # # A collection of items e.g. creative works or products. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # Web page type: Collection page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollectionPage - # - # # A college, university, or other third-level educational institution. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollegeOrUniversity - # - # # A comedy club. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComedyClub - # - # # Event type: Comedy event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComedyEvent - # - # # The artwork on the cover of a comic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicCoverArt - # - # # Individual comic issues are serially published as part of a larger series. For the sake of consistency, even one-shot issues belong to a series comprised of a single issue. All comic issues can be uniquely identified by: the combination of the name and volume number of the series to which the issue belongs; the issue number; and the variant description of the issue (if any). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicIssue - # - # # A sequential publication of comic stories under a unifying title, for example "The Amazing Spider-Man" or "Groo the Wanderer". - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicSeries - # - # # The term "story" is any indivisible, re-printable unit of a comic, including the interior stories, covers, and backmatter. Most comics have at least two stories: a cover (ComicCoverArt) and an interior story. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicStory - # - # # A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Comment - # - # # The act of generating a comment about a subject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommentAction - # - # # The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommunicateAction - # - # # 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](https://tools.ietf.org/html/rfc5005), 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CompleteDataFeed - # - # # 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"). - # # @return [RDF::Vocabulary::Term] - # attr_reader :CompoundPriceSpecification - # - # # This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [[Language]] type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComputerLanguage - # - # # A computer store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComputerStore - # - # # The act of notifying someone that a future event/action is going to happen as expected.\n\nRelated actions:\n\n* [[CancelAction]]: The antonym of ConfirmAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConfirmAction - # - # # A Consortium is a membership [[Organization]] whose members are typically Organizations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Consortium - # - # # The act of ingesting information/resources/food. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConsumeAction - # - # # Web page type: Contact page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContactPage - # - # # A contact point—for example, a Customer Complaints department. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContactPoint - # - # # Enumerated options related to a ContactPoint. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContactPointOption - # - # # One of the continents (for example, Europe or Africa). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Continent - # - # # An agent controls a device or application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ControlAction - # - # # A convenience store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConvenienceStore - # - # # One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Conversation - # - # # The act of producing/preparing food. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CookAction - # - # # Organization: A business corporation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Corporation - # - # # A [[comment]] that corrects [[CreativeWork]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CorrectionComment - # - # # A country. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Country - # - # # A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Course - # - # # An instance of a [[Course]] which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CourseInstance - # - # # A courthouse. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Courthouse - # - # # The artwork on the outer surface of a CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CoverArt - # - # # A CovidTestingFacility is a [[MedicalClinic]] where testing for the COVID-19 Coronavirus 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CovidTestingFacility - # - # # The act of deliberately creating/producing/generating/building a result out of the agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreateAction - # - # # The most generic kind of creative work, including books, movies, photographs, software programs, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreativeWork - # - # # A media season e.g. tv, radio, video game etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreativeWorkSeason - # - # # A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreativeWorkSeries - # - # # A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#AmericanExpress\n* http://purl.org/goodrelations/v1#DinersClub\n* http://purl.org/goodrelations/v1#Discover\n* http://purl.org/goodrelations/v1#JCB\n* http://purl.org/goodrelations/v1#MasterCard\n* http://purl.org/goodrelations/v1#VISA - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreditCard - # - # # A crematorium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Crematorium - # - # # 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. [[CriticReview]]s 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CriticReview - # - # # Text representing a CSS selector. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CssSelectorType - # - # # A service to convert funds from one currency to another currency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CurrencyConversionService - # - # # An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DDxElement - # - # # Event type: A social dance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DanceEvent - # - # # A dance group—for example, the Alvin Ailey Dance Theater or Riverdance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DanceGroup - # - # # A collection of datasets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataCatalog - # - # # A dataset in downloadable form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataDownload - # - # # A single feed providing structured information about one or more entities or topics. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataFeed - # - # # A single item within a larger data feed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataFeedItem - # - # # The basic data types such as Integers, Strings, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataType - # - # # A body of structured information describing some topic(s) of interest. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dataset - # - # # A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Date - # - # # A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :DateTime - # - # # A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time. __Note:__ This type has been superseded by [[MonetaryAmount]] use of that type is recommended - # # @return [RDF::Vocabulary::Term] - # attr_reader :DatedMoneySpecification - # - # # The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer. Originally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DayOfWeek - # - # # A day spa. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DaySpa - # - # # The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight). - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeactivateAction - # - # # A defence establishment, such as an army or navy base. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DefenceEstablishment - # - # # 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 - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DefinedTerm - # - # # A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DefinedTermSet - # - # # The act of editing a recipient by removing one of its objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeleteAction - # - # # The price for the delivery of an offer using a particular delivery method. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryChargeSpecification - # - # # An event involving the delivery of an item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryEvent - # - # # A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\n* http://purl.org/goodrelations/v1#DeliveryModeMail\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\n* http://purl.org/goodrelations/v1#DHL\n* http://purl.org/goodrelations/v1#FederalExpress\n* http://purl.org/goodrelations/v1#UPS - # # @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 [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]]. - # # @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 - # - # # A dentist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dentist - # - # # The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DepartAction - # - # # A department store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DepartmentStore - # - # # A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DepositAccount - # - # # A medical laboratory that offers on-site or off-site diagnostic services. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiagnosticLab - # - # # A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiagnosticProcedure - # - # # A strategy of regulating the intake of food to achieve or maintain a specific health-related goal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Diet - # - # # A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DietarySupplement - # - # # An electronic file or document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalDocument - # - # # A permission for a particular person or group to access a particular file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalDocumentPermission - # - # # A type of permission which can be granted for accessing a digital document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalDocumentPermissionType - # - # # The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DisagreeAction - # - # # The act of discovering/finding an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiscoverAction - # - # # A posting to a discussion forum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiscussionForumPosting - # - # # The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DislikeAction - # - # # Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Distance - # - # # A distillery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Distillery - # - # # The act of providing goods, services, or money without compensation, often for philanthropic reasons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DonateAction - # - # # A specific dosing schedule for a drug or supplement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DoseSchedule - # - # # The act of downloading an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DownloadAction - # - # # The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrawAction - # - # # A picture or diagram made with a pencil, pen, or crayon rather than paint. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Drawing - # - # # The act of swallowing liquids. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrinkAction - # - # # A value indicating which roadwheels will receive torque. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DriveWheelConfigurationValue - # - # # A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge make a clear difference between them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Drug - # - # # A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugClass - # - # # The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugCost - # - # # Enumerated categories of medical drug costs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugCostCategory - # - # # The legal availability status of a medical drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugLegalStatus - # - # # Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugPregnancyCategory - # - # # Indicates whether this drug is available by prescription or over-the-counter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugPrescriptionStatus - # - # # A specific strength in which a medical drug is available in a specific country. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugStrength - # - # # A dry-cleaning business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DryCleaningOrLaundry - # - # # Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Duration - # - # # Enumerates the EU energy efficiency classes A-G as well as A+, A++, and A+++ as defined in EU directive 2017/1369 - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyEnumeration - # - # # The act of swallowing solid objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EatAction - # - # # Event type: Education event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationEvent - # - # # An EducationalAudience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationalAudience - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationalOccupationalCredential - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationalOccupationalProgram - # - # # An educational organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationalOrganization - # - # # An electrician. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Electrician - # - # # An electronics store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ElectronicsStore - # - # # An elementary school. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ElementarySchool - # - # # An email message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmailMessage - # - # # An embassy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Embassy - # - # # An emergency service, such as a fire station or ER. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmergencyService - # - # # A subclass of OrganizationRole used to describe employee relationships. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmployeeRole - # - # # An aggregate rating of an Organization related to its role as an employer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmployerAggregateRating - # - # # An [[EmployerReview]] is a review of an [[Organization]] regarding its role as an employer, written by a current or former employee of that organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmployerReview - # - # # An employment agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmploymentAgency - # - # # An agent approves/certifies/likes/supports/sanction an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EndorseAction - # - # # An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a "critic's pick" blog, a "Like" or "+1" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by some [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]]. 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EndorsementRating - # - # # Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Energy - # - # # EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnergyConsumptionDetails - # - # # Enumerates energy efficiency levels (also known as "classes" or "ratings") and certifications that are part of several international energy efficiency standards. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnergyEfficiencyEnumeration - # - # # Used to indicate whether a product is EnergyStar certified - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnergyStarEnergyEfficiencyEnumeration - # - # # Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EngineSpecification - # - # # A business providing entertainment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EntertainmentBusiness - # - # # An entry point, within some Web-based protocol. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EntryPoint - # - # # Lists or enumerations—for example, a list of cuisines or music genres, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Enumeration - # - # # A media episode (e.g. TV, radio, video game) which can be part of a series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Episode - # - # # An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # An EventAttendanceModeEnumeration value is one of potentially several modes of organising an event, relating to whether it is online or offline. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventAttendanceModeEnumeration - # - # # A reservation for an event like a concert, sporting event, or lecture.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventReservation - # - # # A series of [[Event]]s. Included events can relate with the series using the [[superEvent]] property. An EventSeries is a collection of events that share some unifying characteristic. For example, "The Olympic Games" is a series, which is repeated regularly. The "2012 London Olympics" can be presented both as an [[Event]] in the series "Olympic Games", and as an [[EventSeries]] that included a number of sporting competitions as Events. The nature of the association between the events in an [[EventSeries]] can vary, but typical examples could include a thematic event series (e.g. topical meetups or classes), or a series of regular events that share a location, attendee group and/or organizers. EventSeries has been defined as a kind of Event to make it easy for publishers to use it in an Event context without 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventSeries - # - # # EventStatusType is an enumeration type whose instances represent several states that an Event may be in. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventStatusType - # - # # An event venue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventVenue - # - # # A structured value representing exchange rate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExchangeRateSpecification - # - # # The act of participating in exertive activity for the purposes of improving health and fitness. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExerciseAction - # - # # A gym. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExerciseGym - # - # # Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExercisePlan - # - # # Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExhibitionEvent - # - # # A [[FAQPage]] is a [[WebPage]] presenting one or more "[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)" (see also [[QAPage]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :FAQPage - # - # # A radio channel that uses FM. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FMRadioChannel - # - # # A fast-food restaurant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FastFoodRestaurant - # - # # Event type: Festival. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Festival - # - # # The act of capturing sound and moving images on film, video, or digitally. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FilmAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FinancialProduct - # - # # Financial services business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FinancialService - # - # # The act of finding an object.\n\nRelated actions:\n\n* [[SearchAction]]: FindAction is generally lead by a SearchAction, but not necessarily. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FindAction - # - # # A fire station. With firemen. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FireStation - # - # # An airline flight. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Flight - # - # # A reservation for air travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FlightReservation - # - # # Data type: Floating number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Float - # - # # 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](https://en.wikipedia.org/wiki/Floor_plan)) can be indicated using [[image]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FloorPlan - # - # # A florist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Florist - # - # # The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\n\nRelated actions:\n\n* [[BefriendAction]]: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.\n* [[SubscribeAction]]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\n* [[RegisterAction]]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\n* [[JoinAction]]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\n* [[TrackAction]]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it). - # # @return [RDF::Vocabulary::Term] - # attr_reader :FollowAction - # - # # A food-related business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodEstablishment - # - # # A reservation to dine at a food-related business.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodEstablishmentReservation - # - # # Event type: Food event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodEvent - # - # # A food service, like breakfast, lunch, or dinner. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodService - # - # # A FundingAgency is an organization that implements one or more [[FundingScheme]]s and manages the granting process (via [[Grant]]s, typically [[MonetaryGrant]]s). A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc. Examples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation... - # # @return [RDF::Vocabulary::Term] - # attr_reader :FundingAgency - # - # # 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 - [[FundingAgency]]s such as ERC, REA, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :FundingScheme - # - # # Pathogenic fungus. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fungus - # - # # A furniture store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FurnitureStore - # - # # The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Game - # - # # Indicates whether this game is multi-player, co-op or single-player. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GamePlayMode - # - # # Server that provides game interaction in a multiplayer game. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GameServer - # - # # Status of a game server. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GameServerStatus - # - # # A garden store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GardenStore - # - # # A gas station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GasStation - # - # # Residence type: Gated community. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GatedResidenceCommunity - # - # # An enumeration of genders. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GenderType - # - # # A general contractor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeneralContractor - # - # # A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius. The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeoCircle - # - # # The geographic coordinates of a place or event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeoCoordinates - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeoShape - # - # # (Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeospatialGeometry - # - # # The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\n\nRelated actions:\n\n* [[TakeAction]]: Reciprocal of GiveAction.\n* [[SendAction]]: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you). - # # @return [RDF::Vocabulary::Term] - # attr_reader :GiveAction - # - # # A golf course. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GolfCourse - # - # # GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentBenefitsType - # - # # A government building. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentBuilding - # - # # A government office—for example, an IRS or DMV office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentOffice - # - # # A governmental organization or agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentOrganization - # - # # A permit issued by a government agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentPermit - # - # # A service provided by a government organization, e.g. food stamps, veterans benefits, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentService - # - # # A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]], sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space). Grants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Grant - # - # # A grocery store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GroceryStore - # - # # [[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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Guide - # - # # A business that provide Heating, Ventilation and Air Conditioning services. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HVACBusiness - # - # # A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hackathon - # - # # A hair salon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HairSalon - # - # # A hardware store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HardwareStore - # - # # Health and beauty. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthAndBeautyBusiness - # - # # HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using [[hasHealthAspect]] and [[HealthTopicContent]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthAspectEnumeration - # - # # A health club. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthClub - # - # # A US-style health insurance plan, including PPOs, EPOs, and HMOs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthInsurancePlan - # - # # A description of costs to the patient under a given network or formulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthPlanCostSharingSpecification - # - # # For a given health insurance plan, the specification for costs and coverage of prescription drugs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthPlanFormulary - # - # # A US-style health insurance plan network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthPlanNetwork - # - # # [[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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthTopicContent - # - # # A high school. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HighSchool - # - # # A Hindu temple. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HinduTemple - # - # # A store that sells materials useful or necessary for various hobbies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HobbyShop - # - # # A construction business.\n\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :HomeAndConstructionBusiness - # - # # A home goods store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HomeGoodsStore - # - # # A hospital. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hospital - # - # # A hostel - cheap accommodation, often in shared dormitories.

See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hostel - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hotel - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HotelRoom - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :House - # - # # A house painting service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HousePainter - # - # # Instructions that explain how to achieve a result by performing a sequence of steps. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowTo - # - # # A direction indicating a single action to do in the instructions for how to achieve a result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToDirection - # - # # An item used as either a tool or supply when performing the instructions for how to to achieve a result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToItem - # - # # A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe). - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToSection - # - # # A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToStep - # - # # A supply consumed when performing the instructions for how to achieve a result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToSupply - # - # # An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection). - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToTip - # - # # A tool used (but not consumed) when performing instructions for how to achieve a result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToTool - # - # # A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HyperToc - # - # # A HyperToEntry is an item within a [[HyperToc]], which represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. The media object itself is indicated using [[associatedMedia]]. Each section of interest within that content can be described with a [[HyperTocEntry]], with associated [[startOffset]] and [[endOffset]]. When several entries are all from the same file, [[associatedMedia]] is used on the overarching [[HyperTocEntry]]; if the content has been split into multiple files, they can be referenced using [[associatedMedia]] on each [[HyperTocEntry]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HyperTocEntry - # - # # An ice cream shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IceCreamShop - # - # # The act of intentionally disregarding the object. An agent ignores an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IgnoreAction - # - # # Web page type: Image gallery page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImageGallery - # - # # An image file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImageObject - # - # # Any medical imaging modality typically used for diagnostic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImagingTest - # - # # A single, identifiable product instance (e.g. a laptop with a particular serial number). - # # @return [RDF::Vocabulary::Term] - # attr_reader :IndividualProduct - # - # # Classes of agents or pathogens that transmit infectious diseases. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InfectiousAgentClass - # - # # An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InfectiousDisease - # - # # The act of notifying someone of information pertinent to them, with no expectation of a response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InformAction - # - # # The act of adding at a specific location in an ordered collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InsertAction - # - # # The act of installing an application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InstallAction - # - # # An Insurance agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InsuranceAgency - # - # # A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Intangible - # - # # Data type: Integer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Integer - # - # # The act of interacting with another person or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InteractAction - # - # # A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InteractionCounter - # - # # An internet cafe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InternetCafe - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InvestmentFund - # - # # A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InvestmentOrDeposit - # - # # The act of asking someone to attend an event. Reciprocal of RsvpAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InviteAction - # - # # A statement of the money due for goods or services; a bill. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Invoice - # - # # A list of possible product availability options. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemAvailability - # - # # A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemList - # - # # Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemListOrderType - # - # # A page devoted to a single item, such as a particular product or hotel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemPage - # - # # A jewelry store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JewelryStore - # - # # A listing that describes a job opening in a certain organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JobPosting - # - # # An agent joins an event/group with participants/friends at a location.\n\nRelated actions:\n\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JoinAction - # - # # The anatomical location at which two or more bones make contact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Joint - # - # # A lake (for example, Lake Pontrachain). - # # @return [RDF::Vocabulary::Term] - # attr_reader :LakeBodyOfWater - # - # # A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Landform - # - # # An historical landmark or building. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LandmarksOrHistoricalBuildings - # - # # Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in [BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Language - # - # # The LearningResource type can be used to indicate [[CreativeWork]]s (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes. [[LearningResource]] is expected to be used as an addition to a primary type such as [[Book]], [[Video]], [[Product]] etc. [[EducationEvent]] serves a similar purpose for event-like things (e.g. a [[Trip]]). A [[LearningResource]] may be created as a result of an [[EducationEvent]], for example by recording one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LearningResource - # - # # An agent leaves an event / group with participants/friends at a location.\n\nRelated actions:\n\n* [[JoinAction]]: The antonym of LeaveAction.\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LeaveAction - # - # # A list of possible statuses for the legal force of a legislation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalForceStatus - # - # # A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalService - # - # # A list of possible levels for the legal validity of a legislation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalValueLevel - # - # # A legal document such as an act, decree, bill, etc. (enforceable or not) or a component of a legal act (like an article). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Legislation - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegislationObject - # - # # A legislative building—for example, the state capitol. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegislativeBuilding - # - # # The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\n\nRelated actions:\n\n* [[BorrowAction]]: Reciprocal of LendAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LendAction - # - # # A library. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Library - # - # # A [[LibrarySystem]] is a collaborative system amongst several libraries. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LibrarySystem - # - # # A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LifestyleModification - # - # # A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ligament - # - # # The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LikeAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LinkRole - # - # # A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LiquorStore - # - # # An list item, e.g. a step in a checklist or how-to description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ListItem - # - # # The act of consuming audio content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ListenAction - # - # # Event type: Literary event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LiteraryEvent - # - # # A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LiveBlogPosting - # - # # A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LoanOrCredit - # - # # A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LocalBusiness - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LocationFeatureSpecification - # - # # A locksmith. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Locksmith - # - # # A lodging business, such as a motel, hotel, or inn. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LodgingBusiness - # - # # A reservation for lodging at a hotel, motel, inn, etc.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LodgingReservation - # - # # The act of being defeated in a competitive activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LoseAction - # - # # A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LymphaticVessel - # - # # A book, document, or piece of music written by hand rather than typed or printed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manuscript - # - # # A map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Map - # - # # An enumeration of several kinds of Map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MapCategoryType - # - # # The act of marrying a person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MarryAction - # - # # Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mass - # - # # A math solver which is capable of solving a subset of mathematical problems. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MathSolver - # - # # The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MaximumDoseSchedule - # - # # Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaGallery - # - # # (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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaManipulationRatingEnumeration - # - # # A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaObject - # - # # (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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaReview - # - # # A subscription which allows a user to access media including audio, video, books, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaSubscription - # - # # Target audiences for medical web pages. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalAudience - # - # # Target audiences types for medical web pages. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalAudienceType - # - # # A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include differents business run by health professionals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalBusiness - # - # # The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalCause - # - # # A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalClinic - # - # # A code for a medical entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalCode - # - # # Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalCondition - # - # # A stage of a medical condition, such as 'Stage IIIa'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalConditionStage - # - # # A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalContraindication - # - # # Any object used in a medical capacity, such as to diagnose or treat a patient. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalDevice - # - # # Categories of medical devices, organized by the purpose or intended use of the device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalDevicePurpose - # - # # The most generic type of entity related to health and the practice of medicine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalEntity - # - # # Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalEnumeration - # - # # Level of evidence for a medical guideline. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalEvidenceLevel - # - # # Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalGuideline - # - # # A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalGuidelineContraindication - # - # # A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalGuidelineRecommendation - # - # # Any medical imaging modality typically used for diagnostic purposes. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalImagingTechnique - # - # # A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalIndication - # - # # A utility class that serves as the umbrella for a number of 'intangible' things in the medical space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalIntangible - # - # # An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalObservationalStudy - # - # # Design models for observational medical studies. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalObservationalStudyDesign - # - # # A medical organization (physical or not), such as hospital, institution or clinic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalOrganization - # - # # A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalProcedure - # - # # An enumeration that describes different types of medical procedures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalProcedureType - # - # # A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalRiskCalculator - # - # # Any rule set or interactive tool for estimating the risk of developing a complication or condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalRiskEstimator - # - # # A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalRiskFactor - # - # # A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalRiskScore - # - # # A scholarly article in the medical domain. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalScholarlyArticle - # - # # Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalSign - # - # # Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalSignOrSymptom - # - # # Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalSpecialty - # - # # A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalStudy - # - # # The status of a medical study. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalStudyStatus - # - # # Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalSymptom - # - # # Any medical test, typically performed for diagnostic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTest - # - # # Any collection of tests commonly ordered together. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTestPanel - # - # # Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTherapy - # - # # A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTrial - # - # # Design models for medical trials. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTrialDesign - # - # # A web page that provides medical information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalWebPage - # - # # Systems of medical practice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicineSystem - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MeetingRoom - # - # # A men's clothing store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MensClothingStore - # - # # A structured representation of food or drink items available from a FoodEstablishment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Menu - # - # # A food or drink item listed in a menu or menu section. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MenuItem - # - # # A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MenuSection - # - # # MerchantReturnEnumeration enumerates several kinds of product return policy. Note that this structure may not capture all aspects of the policy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnEnumeration - # - # # A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]] or [[Product]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnPolicy - # - # # A single message from a sender to one or more organizations or people. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Message - # - # # A middle school (typically for children aged around 11-14, although this varies somewhat). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MiddleSchool - # - # # A software application designed specifically to work well on a mobile device such as a telephone. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MobileApplication - # - # # A store that sells mobile phones and related accessories. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MobilePhoneStore - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MonetaryAmount - # - # # A statistical distribution of monetary amounts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MonetaryAmountDistribution - # - # # A monetary grant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MonetaryGrant - # - # # The act of transferring money from one place to another place. This may occur electronically or physically. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MoneyTransfer - # - # # A loan in which property or real estate is used as collateral. (A loan securitized against some real estate.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :MortgageLoan - # - # # A mosque. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mosque - # - # # A motel.

See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Motel - # - # # A motorcycle or motorbike is a single-track, two-wheeled motor vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Motorcycle - # - # # A motorcycle dealer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorcycleDealer - # - # # A motorcycle repair shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorcycleRepair - # - # # A motorized bicycle is a bicycle with an attached motor used to power the vehicle, or to assist with pedaling. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorizedBicycle - # - # # A mountain, like Mount Whitney or Mount Everest. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mountain - # - # # The act of an agent relocating to a place.\n\nRelated actions:\n\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MoveAction - # - # # A movie. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Movie - # - # # A short segment/part of a movie. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieClip - # - # # A movie rental store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieRentalStore - # - # # A series of movies. Included movies can be indicated with the hasPart property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieSeries - # - # # A movie theater. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieTheater - # - # # A moving company. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovingCompany - # - # # Multicellular parasite that causes an infection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MulticellularParasite - # - # # A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Muscle - # - # # A museum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Museum - # - # # A collection of music tracks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicAlbum - # - # # Classification of the album by it's type of content: soundtrack, live album, studio album, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicAlbumProductionType - # - # # The kind of release which this album is: single, EP or album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicAlbumReleaseType - # - # # A musical composition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicComposition - # - # # Event type: Music event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicEvent - # - # # A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicGroup - # - # # A collection of music tracks in playlist form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicPlaylist - # - # # A music recording (track), usually a single song. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicRecording - # - # # A MusicRelease is a specific release of a music album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicRelease - # - # # Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicReleaseFormatType - # - # # A music store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicStore - # - # # A music venue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicVenue - # - # # A music video file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicVideoObject - # - # # Organization: Non-governmental Organization. - # # @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 - # - # # A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Nerve - # - # # 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](/docs/news.html) is also available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NewsArticle - # - # # A News/Media organization such as a newspaper or TV station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NewsMediaOrganization - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Newspaper - # - # # A nightclub or discotheque. - # # @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 - # - # # A file containing a note, primarily for the author. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NoteDigitalDocument - # - # # Data type: Number.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Number - # - # # Nutritional information about the recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NutritionInformation - # - # # 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](https://www.w3.org/TR/vocab-data-cube/#dsd-example)). See also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Observation - # - # # A profession, may involve prolonged training and/or a formal qualification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Occupation - # - # # A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OccupationalTherapy - # - # # An ocean (for example, the Pacific). - # # @return [RDF::Vocabulary::Term] - # attr_reader :OceanBodyOfWater - # - # # An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\n\nNote: 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.\n\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Offer - # - # # An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferCatalog - # - # # An [[OfferForLease]] in Schema.org represents an [[Offer]] to lease out something, i.e. an [[Offer]] whose [[businessFunction]] is [lease out](http://purl.org/goodrelations/v1#LeaseOut.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for background on the underlying concepts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferForLease - # - # # An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for background on the underlying concepts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferForPurchase - # - # # A list of possible conditions for the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferItemCondition - # - # # OfferShippingDetails represents information about shipping destinations. Multiple of these entities can be used to represent different shipping rates for different destinations: One entity for Alaska/Hawaii. A different one for continental US.A different one for all France. Multiple of these entities can be used to represent different shipping costs and delivery times. Two entities that are identical but differ in rate and time: e.g. Cheaper and slower: $5 in 5-7days or Fast and expensive: $15 in 1-2 days - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferShippingDetails - # - # # An office equipment store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfficeEquipmentStore - # - # # A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnDemandEvent - # - # # A structured value providing information about the opening hours of a place or a certain service inside a place.\n\n The place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\n\nIf 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OpeningHoursSpecification - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OpinionNewsArticle - # - # # A store that sells reading glasses and similar devices for improving vision. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Optician - # - # # An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Order - # - # # An agent orders an object/product/service to be delivered/sent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderAction - # - # # An order item is a line of an order. It includes the quantity and shipping details of a bought offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderItem - # - # # Enumerated status values for Order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderStatus - # - # # An organization such as a school, NGO, corporation, club, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # A subclass of Role used to describe roles within organizations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganizationRole - # - # # The act of manipulating/administering/supervising/controlling one or more objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganizeAction - # - # # An outlet store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OutletStore - # - # # A structured value providing information about when a certain organization or person owned a certain product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OwnershipInfo - # - # # The act of producing a painting, typically with paint and canvas as instruments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaintAction - # - # # A painting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Painting - # - # # A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PalliativeProcedure - # - # # The delivery of a parcel either via the postal service or a commercial service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParcelDelivery - # - # # A set of characteristics describing parents, who can be interested in viewing some content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParentAudience - # - # # A park. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Park - # - # # A parking lot or other parking facility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParkingFacility - # - # # A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PathologyTest - # - # # A patient is any person recipient of health care services. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Patient - # - # # A shop that will buy, or lend money against the security of, personal possessions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PawnShop - # - # # An agent pays a price to a participant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PayAction - # - # # A payment method using a credit, debit, store or other card to associate the payment with an account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentCard - # - # # The costs of settling the payment using a particular payment method. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentChargeSpecification - # - # # A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\n* http://purl.org/goodrelations/v1#ByInvoice\n* http://purl.org/goodrelations/v1#Cash\n* http://purl.org/goodrelations/v1#CheckInAdvance\n* http://purl.org/goodrelations/v1#COD\n* http://purl.org/goodrelations/v1#DirectDebit\n* http://purl.org/goodrelations/v1#GoogleCheckout\n* http://purl.org/goodrelations/v1#PayPal\n* http://purl.org/goodrelations/v1#PaySwarm - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentMethod - # - # # A Service to transfer funds from a person or organization to a beneficiary person or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentService - # - # # A specific payment status. For example, PaymentDue, PaymentComplete, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentStatusType - # - # # A set of characteristics belonging to people, e.g. who compose an item's target audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PeopleAudience - # - # # The act of participating in performance arts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PerformAction - # - # # A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PerformanceRole - # - # # A theater or other performing art center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PerformingArtsTheater - # - # # A performance group, such as a band, an orchestra, or a circus. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PerformingGroup - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Periodical - # - # # A permit issued by an organization, e.g. a parking pass. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Permit - # - # # A person (alive, dead, undead, or fictional). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # A pet store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PetStore - # - # # A pharmacy or drugstore. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pharmacy - # - # # A photograph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Photograph - # - # # The act of capturing still images of objects using a camera. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhotographAction - # - # # Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalActivity - # - # # Categories of physical activity, organized by physiologic classification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalActivityCategory - # - # # A type of physical examination of a patient performed by a physician. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalExam - # - # # A process of progressive physical care and rehabilitation aimed at improving a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalTherapy - # - # # A doctor's office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Physician - # - # # Entities that have a somewhat fixed, physical extension. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Place - # - # # Place of worship, such as a church, synagogue, or mosque. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlaceOfWorship - # - # # The act of planning the execution of an event/task/action/reservation/plan to a future date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlanAction - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Play - # - # # The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\n\nRelated actions:\n\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlayAction - # - # # A playground. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Playground - # - # # A plumbing service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Plumber - # - # # A single episode of a podcast series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PodcastEpisode - # - # # A single season of a podcast. Many podcasts do not break down into separate seasons. In that case, PodcastSeries should be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PodcastSeason - # - # # A podcast is an episodic series of digital audio or video files which a user can download and listen to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PodcastSeries - # - # # A police station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PoliceStation - # - # # A pond. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pond - # - # # A post office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PostOffice - # - # # The mailing address. - # # @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 - # - # # An agent orders a (not yet released) object/product/service to be delivered/sent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreOrderAction - # - # # The act of inserting at the beginning if an ordered collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrependAction - # - # # A preschool. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Preschool - # - # # A file containing slides or used for a presentation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PresentationDigitalDocument - # - # # An indication for preventing an underlying condition, symptom, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreventionIndication - # - # # Enumerates different price components that together make up the total price for an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PriceComponentTypeEnumeration - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PriceSpecification - # - # # Enumerates different price types, for example list price, invoice price, and sale price. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PriceTypeEnumeration - # - # # A prion is an infectious agent composed of protein in a misfolded form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Prion - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Product - # - # # A set of products (either [[ProductGroup]]s or specific variants) that are listed together e.g. in an [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductCollection - # - # # A ProductGroup represents a group of [[Product]]s that vary only in certain well-described ways, such as by [[size]], [[color]], [[material]] etc. While a ProductGroup itself is not directly offered for sale, the various varying products that it represents can be. The ProductGroup serves as a prototype or template, standing in for all of the products who have an [[isVariantOf]] relationship to it. As such, properties (including additional types) can be applied to the ProductGroup to represent characteristics shared by each of the (possibly very many) variants. Properties that reference a ProductGroup are not included in this mechanism; neither are the following specific properties [[variesBy]], [[hasVariant]], [[url]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductGroup - # - # # A datasheet or vendor specification of a product (in the sense of a prototypical description). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductModel - # - # # ProductReturnEnumeration enumerates several kinds of product return policy. Note that this structure may not capture all aspects of the policy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnEnumeration - # - # # A ProductReturnPolicy provides information about product return policies associated with an [[Organization]] or [[Product]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnPolicy - # - # # Original definition: "provider of professional services."\n\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]], [[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]], [[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProfessionalService - # - # # Web page type: Profile page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProfilePage - # - # # Used to describe membership in a loyalty programs (e.g. "StarAliance"), traveler clubs (e.g. "AAA"), purchase clubs ("Safeway Club"), etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProgramMembership - # - # # An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim. Use properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Project - # - # # Data type: PronounceableText. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PronounceableText - # - # # A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Property - # - # # 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.\n\n 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PropertyValue - # - # # A Property value specification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PropertyValueSpecification - # - # # Single-celled organism that causes an infection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Protozoa - # - # # A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PsychologicalTreatment - # - # # A public swimming pool. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicSwimmingPool - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicToilet - # - # # A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationEvent - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationIssue - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationVolume - # - # # A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs). - # # @return [RDF::Vocabulary::Term] - # attr_reader :QAPage - # - # # A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QualitativeValue - # - # # A point value or interval for product characteristics and other purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuantitativeValue - # - # # A statistical distribution of values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuantitativeValueDistribution - # - # # Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Quantity - # - # # A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Question - # - # # Quiz: A test of knowledge, skills and abilities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Quiz - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Quotation - # - # # An agent quotes/estimates/appraises an object/product/service with a price at a location/store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuoteAction - # - # # A place offering space for "Recreational Vehicles", Caravans, mobile homes and the like. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RVPark - # - # # A process of care using radiation aimed at improving a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadiationTherapy - # - # # A delivery service through which radio content is provided via broadcast over the air or online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioBroadcastService - # - # # A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioChannel - # - # # A short radio program or a segment/part of a radio program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioClip - # - # # A radio episode which can be part of a series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioEpisode - # - # # Season dedicated to radio broadcast and associated online delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioSeason - # - # # CreativeWorkSeries dedicated to radio broadcast and associated online delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioSeries - # - # # A radio station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioStation - # - # # A rating is an evaluation on a numeric scale, such as 1 to 5 stars. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rating - # - # # The act of responding instinctively and emotionally to an object, expressing a sentiment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReactAction - # - # # The act of consuming written content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReadAction - # - # # A real-estate agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RealEstateAgent - # - # # A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out, or to sell). The [[RealEstateListing]] type itself represents the overall listing, as manifested in some [[WebPage]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RealEstateListing - # - # # The act of physically/electronically taking delivery of an object that has been transferred from an origin to a destination. Reciprocal of SendAction.\n\nRelated actions:\n\n* [[SendAction]]: The reciprocal of ReceiveAction.\n* [[TakeAction]]: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered (e.g. I can receive a package, but it does not mean the package is now mine). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReceiveAction - # - # # A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via [[suitableForDiet]]. The [[keywords]] property can also be used to add more detail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Recipe - # - # # [[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 [[Recommendation]]s. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Recommendation - # - # # A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecommendedDoseSchedule - # - # # A recycling center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecyclingCenter - # - # # RefundTypeEnumeration enumerates several kinds of product return refund types. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RefundTypeEnumeration - # - # # The act of registering to be a user of a service, product or web page.\n\nRelated actions:\n\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\n* [FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RegisterAction - # - # # The act of rejecting to/adopting an object.\n\nRelated actions:\n\n* [[AcceptAction]]: The antonym of RejectAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RejectAction - # - # # The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RentAction - # - # # A reservation for a rental car.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RentalCarReservation - # - # # A structured value representing repayment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RepaymentSpecification - # - # # The act of editing a recipient by replacing an old object with a new object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReplaceAction - # - # # The act of responding to a question/message asked/sent by the object. Related to [[AskAction]]\n\nRelated actions:\n\n* [[AskAction]]: Appears generally as an origin of a ReplyAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReplyAction - # - # # A Report generated by governmental or non-governmental organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Report - # - # # The [[ReportageNewsArticle]] type is a subtype of [[NewsArticle]] representing news articles which are the result of journalistic news reporting conventions. In practice many news publishers produce a wide variety of article types, many of which might be considered a [[NewsArticle]] but not a [[ReportageNewsArticle]]. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements. 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReportageNewsArticle - # - # # A patient-reported or observed dosing schedule for a drug or supplement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReportedDoseSchedule - # - # # A Research project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResearchProject - # - # # Researchers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Researcher - # - # # Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Reservation - # - # # A group of multiple reservations with common values for all sub-reservations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationPackage - # - # # Enumerated status values for Reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationStatusType - # - # # Reserving a concrete object.\n\nRelated actions:\n\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReserveAction - # - # # A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Reservoir - # - # # The place where a person lives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Residence - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resort - # - # # A restaurant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Restaurant - # - # # A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RestrictedDiet - # - # # The act of resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResumeAction - # - # # The act of returning to the origin that which was previously received (concrete objects) or taken (ownership). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReturnAction - # - # # ReturnFeesEnumeration expresses policies for return fees. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReturnFeesEnumeration - # - # # A review of an item - for example, of a restaurant, movie, or store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Review - # - # # The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReviewAction - # - # # A [[NewsArticle]] and [[CriticReview]] providing a professional critic's assessment of a service, product, performance, or artistic or literary work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReviewNewsArticle - # - # # A river (for example, the broad majestic Shannon). - # # @return [RDF::Vocabulary::Term] - # attr_reader :RiverBodyOfWater - # - # # Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Role - # - # # A roofing contractor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RoofingContractor - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Room - # - # # The act of notifying an event organizer as to whether you expect to attend the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpAction - # - # # RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpResponseType - # - # # Event type: Sales event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SaleEvent - # - # # An [[Article]] whose content is primarily [[satirical]](https://en.wikipedia.org/wiki/Satire) in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a [[NewsArticle]]. [[ScholarlyArticle]]s are also sometimes satirized. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SatiricalArticle - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Schedule - # - # # Scheduling future actions, events, or tasks.\n\nRelated actions:\n\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScheduleAction - # - # # A scholarly article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScholarlyArticle - # - # # A school. - # # @return [RDF::Vocabulary::Term] - # attr_reader :School - # - # # A School District is an administrative area for the administration of schools. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SchoolDistrict - # - # # A screening of a movie or other video. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScreeningEvent - # - # # A piece of sculpture. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sculpture - # - # # A sea (for example, the Caspian sea). - # # @return [RDF::Vocabulary::Term] - # attr_reader :SeaBodyOfWater - # - # # The act of searching for an object.\n\nRelated actions:\n\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SearchAction - # - # # Web page type: Search results page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SearchResultsPage - # - # # A media season e.g. tv, radio, video game etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Season - # - # # Used to describe a seat, such as a reserved seat in an event reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Seat - # - # # This is the [[Action]] of navigating to a specific [[startOffset]] timestamp within a [[VideoObject]], typically represented with a URL template structure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SeekToAction - # - # # A self-storage facility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SelfStorage - # - # # The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SellAction - # - # # The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\n\n* [[ReceiveAction]]: The reciprocal of SendAction.\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you). - # # @return [RDF::Vocabulary::Term] - # attr_reader :SendAction - # - # # A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Series - # - # # A service provided by an organization, e.g. delivery service, print services, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Service - # - # # A means for accessing a service, e.g. a government office location, web site, or phone number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ServiceChannel - # - # # The act of distributing content to people for their amusement or edification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShareAction - # - # # Printed music, as opposed to performed or recorded music. - # # @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 - # - # # A shopping center or mall. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShoppingCenter - # - # # Short story or tale. A brief work of literature, usually written in narrative prose. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShortStory - # - # # Residence type: Single-family home. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SingleFamilyResidence - # - # # A navigation element of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SiteNavigationElement - # - # # A ski resort. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SkiResort - # - # # Event type: Social event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SocialEvent - # - # # A post to a social media platform, including blog posts, tweets, Facebook posts, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SocialMediaPosting - # - # # A software application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoftwareApplication - # - # # Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoftwareSourceCode - # - # # The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SolveMathAction - # - # # A placeholder for multiple similar products of the same kind. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SomeProducts - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpeakableSpecification - # - # # A SpecialAnnouncement combines a simple date-stamped textual information update with contextualized Web links and other structured data. It represents an information update made by a locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police, local government. For work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#). The motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.org expect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to our usual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#). While this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to cover the kinds of everyday practical information being posted to existing websites during an emergency situation. Several kinds of information can be provided: We encourage the provision of "name", "text", "datePosted", "expires" (if appropriate), "category" and "url" as a simple baseline. It is important to provide a value for "category" where possible, most ideally as a well known URL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be "https://en.wikipedia.org/w/index.php?title=2019-20\_coronavirus\_pandemic" or "https://www.wikidata.org/wiki/Q81068910". For many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple "[[text]]" summary of the page. It is unlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously. We expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]]. Many [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructures]]. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]]. The [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] only for representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of /about for locations too. The basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting [[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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpecialAnnouncement - # - # # Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Specialty - # - # # A sporting goods store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportingGoodsStore - # - # # A sports location, such as a playing field. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsActivityLocation - # - # # A sports club. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsClub - # - # # Event type: Sports event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsEvent - # - # # Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsOrganization - # - # # Organization: Sports team. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsTeam - # - # # A spreadsheet file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpreadsheetDigitalDocument - # - # # A stadium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StadiumOrArena - # - # # A state or province of a country. - # # @return [RDF::Vocabulary::Term] - # attr_reader :State - # - # # 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 [[Person]]s 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](/docs/data-and-datasets.html) overview for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StatisticalPopulation - # - # # Lists or enumerations dealing with status types. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StatusEnumeration - # - # # A value indicating a steering position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SteeringPositionValue - # - # # A retail good store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Store - # - # # Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StructuredValue - # - # # A StupidType for testing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StupidType - # - # # The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.\n\nRelated actions:\n\n* [[FollowAction]]: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.\n* [[RegisterAction]]: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.\n* [[JoinAction]]: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SubscribeAction - # - # # Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Substance - # - # # A subway station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SubwayStation - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Suite - # - # # Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure). - # # @return [RDF::Vocabulary::Term] - # attr_reader :SuperficialAnatomy - # - # # A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SurgicalProcedure - # - # # The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer). - # # @return [RDF::Vocabulary::Term] - # attr_reader :SuspendAction - # - # # A synagogue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Synagogue - # - # # A short TV program or a segment/part of a TV program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TVClip - # - # # A TV episode which can be part of a series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TVEpisode - # - # # Season dedicated to TV broadcast and associated online delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TVSeason - # - # # CreativeWorkSeries dedicated to TV broadcast and associated online delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TVSeries - # - # # A table on a Web page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Table - # - # # The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\n\nRelated actions:\n\n* [[GiveAction]]: The reciprocal of TakeAction.\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transfered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TakeAction - # - # # A tattoo parlor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TattooParlor - # - # # A taxi. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Taxi - # - # # A reservation for a taxi.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TaxiReservation - # - # # A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TaxiService - # - # # A taxi stand. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TaxiStand - # - # # A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TechArticle - # - # # A unique instance of a television BroadcastService on a CableOrSatelliteService lineup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionChannel - # - # # A television station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionStation - # - # # A tennis complex. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TennisComplex - # - # # Data type: Text. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Text - # - # # A file composed primarily of text. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextDigitalDocument - # - # # Event type: Theater performance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TheaterEvent - # - # # A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TheaterGroup - # - # # A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TherapeuticProcedure - # - # # A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thesis - # - # # The most generic type of item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thing - # - # # Used to describe a ticket to an event, a flight, a bus ride, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ticket - # - # # The act of reaching a draw in a competitive activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TieAction - # - # # A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Time - # - # # The act of giving money voluntarily to a beneficiary in recognition of services rendered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TipAction - # - # # A tire shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TireShop - # - # # 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) - # # @return [RDF::Vocabulary::Term] - # attr_reader :TouristAttraction - # - # # 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 [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :TouristDestination - # - # # A tourist information center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TouristInformationCenter - # - # # 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](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors. (See examples below). - # # @return [RDF::Vocabulary::Term] - # attr_reader :TouristTrip - # - # # A toy store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ToyStore - # - # # An agent tracks an object for updates.\n\nRelated actions:\n\n* [[FollowAction]]: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\n* [[SubscribeAction]]: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrackAction - # - # # The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TradeAction - # - # # A reservation for train travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrainReservation - # - # # A train station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrainStation - # - # # A trip on a commercial train line. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrainTrip - # - # # The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TransferAction - # - # # The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TravelAction - # - # # A travel agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TravelAgency - # - # # An indication for treating an underlying condition, symptom, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TreatmentIndication - # - # # A trip or journey. An itinerary of visits to one or more places. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Trip - # - # # A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer. - # # @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.\n\nRelated actions:\n\n* [[RegisterAction]]: antonym of UnRegisterAction.\n* [[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 - # - # # The price asked for a given offer by the respective organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UnitPriceSpecification - # - # # The act of managing by changing/editing the state of the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UpdateAction - # - # # The act of applying an object to its intended purpose. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UseAction - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserBlocks - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserCheckins - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserComments - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserDownloads - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserInteraction - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserLikes - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserPageVisits - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserPlays - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserPlusOnes - # - # # A review created by an end-user (e.g. consumer, purchaser, attendee etc.), in contrast with [[CriticReview]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserReview - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserTweets - # - # # A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vehicle - # - # # A type of blood vessel that specifically carries blood to the heart. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vein - # - # # A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vessel - # - # # A vet's office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VeterinaryCare - # - # # Web page type: Video gallery page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoGallery - # - # # A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoGame - # - # # A short segment/part of a video game. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoGameClip - # - # # A video game series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoGameSeries - # - # # A video file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoObject - # - # # The act of consuming static visual content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ViewAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VirtualLocation - # - # # Pathogenic virus that causes viral infection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Virus - # - # # Event type: Visual arts event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VisualArtsEvent - # - # # A work of art that is primarily visual in character. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VisualArtwork - # - # # Vital signs are measures of various physiological functions in order to assess the most basic body functions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VitalSign - # - # # A volcano, like Fuji san. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Volcano - # - # # The act of expressing a preference from a fixed/finite/structured set of choices/options. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VoteAction - # - # # An advertising section of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WPAdBlock - # - # # The footer section of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WPFooter - # - # # The header section of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WPHeader - # - # # A sidebar section of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WPSideBar - # - # # The act of expressing a desire about the object. An agent wants an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WantAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WarrantyPromise - # - # # A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#Labor-BringIn\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp - # # @return [RDF::Vocabulary::Term] - # attr_reader :WarrantyScope - # - # # The act of consuming dynamic/moving visual content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WatchAction - # - # # A waterfall, like Niagara. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Waterfall - # - # # The act of dressing oneself in clothing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WearAction - # - # # An application programming interface accessible over Web/Internet technologies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebAPI - # - # # Web applications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebApplication - # - # # 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]].) - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebContent - # - # # A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebPage - # - # # A web page element, like a table or an image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebPageElement - # - # # A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebSite - # - # # A wholesale store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WholesaleStore - # - # # The act of achieving victory in a competitive activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WinAction - # - # # A winery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Winery - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WorkBasedProgram - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WorkersUnion - # - # # The act of authoring written creative content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WriteAction - # - # # Text representing an XPath (typically but not necessarily version 1.0). - # # @return [RDF::Vocabulary::Term] - # attr_reader :XPathType - # - # # A zoo. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Zoo - # - # # The subject matter of the content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :about - # - # # Indicates whether the book is an abridged edition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :abridged - # - # # An abstract is a short description that summarizes a [[CreativeWork]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :abstract - # - # # The time needed to accelerate the vehicle from a given start velocity to a given target velocity.\n\nTypical unit code(s): SEC for seconds\n\n* 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accelerationTime - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedAnswer - # - # # The offer(s) -- e.g., product, quantity and price combinations -- included in the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedOffer - # - # # The payment method(s) accepted by seller for this offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedPaymentMethod - # - # # 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```. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptsReservations - # - # # Password, PIN, or access code needed for delivery (e.g. from a locker). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessCode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessMode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessModeSufficient - # - # # Indicates that the resource is compatible with the referenced accessibility API ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilityAPI - # - # # Identifies input methods that are sufficient to fully control the described resource ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilityControl - # - # # Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilityFeature - # - # # A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilityHazard - # - # # 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." - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilitySummary - # - # # Category of an [[Accommodation]], following real estate conventions e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accommodationCategory - # - # # A floorplan of some [[Accommodation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accommodationFloorPlan - # - # # The identifier for the account the payment will be applied to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountId - # - # # A minimum amount that has to be paid in every month. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountMinimumInflow - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountOverdraftLimit - # - # # Specifies the Person that is legally accountable for the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountablePerson - # - # # Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquireLicensePage - # - # # The organization or person from which the product was acquired. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquiredFrom - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acrissCode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionAccessibilityRequirement - # - # # An application that can complete the request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionApplication - # - # # A sub property of object. The options subject to this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionOption - # - # # The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionPlatform - # - # # Indicates the current disposition of the Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionStatus - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionableFeedbackPolicy - # - # # An active ingredient, typically chemical compounds and/or biologic substances. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeIngredient - # - # # Length of time to engage in the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activityDuration - # - # # How often one should engage in the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activityFrequency - # - # # An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actor - # - # # An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actors - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :addOn - # - # # An additional name for a Person, can be used for a middle name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalName - # - # # If responding yes, the number of guests who will attend in addition to the invitee. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalNumberOfGuests - # - # # A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalProperty - # - # # An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalType - # - # # Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalVariable - # - # # Physical address of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :address - # - # # The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressCountry - # - # # The locality in which the street address is, and which is in the region. For example, Mountain View. - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressLocality - # - # # The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country) - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressRegion - # - # # A route by which this drug may be administered, e.g. 'oral'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :administrationRoute - # - # # The amount of time that is required between accepting the offer and the actual usage of the resource or service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :advanceBookingRequirement - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :adverseOutcome - # - # # Drugs that affect the test's results. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affectedBy - # - # # An organization that this person is affiliated with. For example, a school/university, a club, or a team. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliation - # - # # A media object representing the circumstances after performing this direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :afterMedia - # - # # The direct performer or driver of the action (animate or inanimate). e.g. *John* wrote a book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agent - # - # # The overall rating, based on a collection of reviews or ratings, of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :aggregateRating - # - # # The kind of aircraft (e.g., "Boeing 747"). - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraft - # - # # A music album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :album - # - # # Classification of the album by it's type of content: soundtrack, live album, studio album, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :albumProductionType - # - # # A release of this album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :albumRelease - # - # # The kind of release which this album is: single, EP or album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :albumReleaseType - # - # # A collection of music albums. - # # @return [RDF::Vocabulary::Term] - # attr_reader :albums - # - # # Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alcoholWarning - # - # # The algorithm or rules to follow to compute the score. - # # @return [RDF::Vocabulary::Term] - # attr_reader :algorithm - # - # # 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 - # - # # An alias for the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternateName - # - # # A secondary title of the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternativeHeadline - # - # # Alumni of an organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alumni - # - # # An organization that the person is an alumni of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alumniOf - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :amenityFeature - # - # # The amount of money. - # # @return [RDF::Vocabulary::Term] - # attr_reader :amount - # - # # The quantity of the goods included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :amountOfThisGood - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :announcementLocation - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annualPercentageRate - # - # # The number of answers this question has received. - # # @return [RDF::Vocabulary::Term] - # attr_reader :answerCount - # - # # A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :answerExplanation - # - # # The muscle whose action counteracts the specified muscle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :antagonist - # - # # Indicates an occurence of a [[Claim]] in some [[CreativeWork]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appearance - # - # # The location in which the status applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicableLocation - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicantLocationRequirements - # - # # An application that can complete the request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :application - # - # # Type of software application, e.g. 'Game, Multimedia'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationCategory - # - # # Contact details for further information relevant to this job posting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationContact - # - # # The date at which the program stops collecting applications for the next enrollment cycle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationDeadline - # - # # The date at which the program begins collecting applications for the next enrollment cycle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationStartDate - # - # # Subcategory of the application, e.g. 'Arcade Game'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationSubCategory - # - # # The name of the application suite to which the application belongs (e.g. Excel belongs to Office). - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationSuite - # - # # The delivery method(s) to which the delivery charge or payment charge specification applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appliesToDeliveryMethod - # - # # The payment method(s) to which the payment charge specification applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appliesToPaymentMethod - # - # # Collection, [fonds](https://en.wikipedia.org/wiki/Fonds), or item held, kept or maintained by an [[ArchiveOrganization]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :archiveHeld - # - # # The area within which users can expect to reach the broadcast service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :area - # - # # The geographic area where a service or offered item is provided. - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaServed - # - # # The airport where the flight terminates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalAirport - # - # # The terminal or port from which the boat arrives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalBoatTerminal - # - # # The stop or station from which the bus arrives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalBusStop - # - # # Identifier of the flight's arrival gate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalGate - # - # # The platform where the train arrives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalPlatform - # - # # The station where the train trip ends. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalStation - # - # # Identifier of the flight's arrival terminal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalTerminal - # - # # The expected arrival time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalTime - # - # # The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example "20"). - # # @return [RDF::Vocabulary::Term] - # attr_reader :artEdition - # - # # The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :artMedium - # - # # The branches that comprise the arterial structure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arterialBranch - # - # # e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artform - # - # # The actual body of the article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :articleBody - # - # # Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :articleSection - # - # # The primary artist for a work in a medium other than pencils or digital line art--for example, if the primary artwork is done in watercolors or digital paints. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artist - # - # # The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artworkSurface - # - # # An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :aspect - # - # # Library file name e.g., mscorlib.dll, system.web.dll. - # # @return [RDF::Vocabulary::Term] - # attr_reader :assembly - # - # # Associated product/technology version. e.g., .NET Framework 4.5. - # # @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 - # - # # A NewsArticle associated with the Media Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedArticle - # - # # A media object that encodes this CreativeWork. This property is a synonym for encoding. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedMedia - # - # # If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedPathophysiology - # - # # A person that acts as performing member of a sports team; a player as opposed to a coach. - # # @return [RDF::Vocabulary::Term] - # attr_reader :athlete - # - # # A person or organization attending the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :attendee - # - # # A person attending the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :attendees - # - # # An intended audience, i.e. a group for whom something was created. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audience - # - # # The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :audienceType - # - # # An embedded audio object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audio - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :authenticator - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :author - # - # # The availability of this item—for example In stock, Out of stock, Pre-order, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availability - # - # # The end of the availability of the product or service included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availabilityEnds - # - # # The beginning of the availability of the product or service included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availabilityStarts - # - # # The place(s) from which the offer can be obtained (e.g. store locations). - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableAtOrFrom - # - # # A means of accessing the service (e.g. a phone bank, a web site, a location, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableChannel - # - # # The delivery method(s) available for this offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableDeliveryMethod - # - # # When the item is available for pickup from the store, locker, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableFrom - # - # # The location in which the strength is available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableIn - # - # # A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]] - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableLanguage - # - # # Device required to run the application. Used in cases where a specific make/model is required to run the application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableOnDevice - # - # # A medical service available from this provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableService - # - # # An available dosage strength for the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableStrength - # - # # A diagnostic test or procedure offered by this lab. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableTest - # - # # After this date, the item will no longer be available for pickup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableThrough - # - # # An award won by or for this item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :award - # - # # Awards won by or for this item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awards - # - # # The away team in a sports event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awayTeam - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :backstory - # - # # The type of a bank account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bankAccountType - # - # # The base salary of the job or of an employee in an EmployeeRole. - # # @return [RDF::Vocabulary::Term] - # attr_reader :baseSalary - # - # # A sub property of recipient. The recipient blind copied on a message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bccRecipient - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bed - # - # # A media object representing the circumstances before performing this direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :beforeMedia - # - # # A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary - # # @return [RDF::Vocabulary::Term] - # attr_reader :beneficiaryBank - # - # # Description of benefits associated with the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :benefits - # - # # The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :benefitsSummaryUrl - # - # # The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bestRating - # - # # The billing address for the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingAddress - # - # # Specifies for how long this price (or price component) will be billed. Can be used, for example, to model the contractual duration of a subscription or payment plan. Type can be either a Duration or a Number (in which case the unit of measurement, for example month, is specified by the unitCode property) - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingDuration - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingIncrement - # - # # The time interval used to compute the invoice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingPeriod - # - # # Specifies after how much time this price (or price component) becomes valid and billing starts. Can be used, for example, to model a price increase after the first year of a subscription. The unit of measurement is specified by the unitCode property - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingStart - # - # # The biomechanical properties of the bone. - # # @return [RDF::Vocabulary::Term] - # attr_reader :biomechnicalClass - # - # # Date of birth. - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthDate - # - # # The place where the person was born. - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthPlace - # - # # The bitrate of the media object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bitrate - # - # # A posting that is part of this blog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :blogPost - # - # # The postings that are part of this blog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :blogPosts - # - # # The blood vessel that carries blood from the heart to the muscle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bloodSupply - # - # # The airline-specific indicator of boarding order / preference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :boardingGroup - # - # # The type of boarding policy used by the airline (e.g. zone-based or group-based). - # # @return [RDF::Vocabulary::Term] - # attr_reader :boardingPolicy - # - # # Location in the body of the anatomical structure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bodyLocation - # - # # Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :bodyType - # - # # The edition of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookEdition - # - # # The format of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookFormat - # - # # 'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookingAgent - # - # # The date and time the reservation was booked. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookingTime - # - # # A sub property of participant. The person that borrows the object being lent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :borrower - # - # # A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character. - # # @return [RDF::Vocabulary::Term] - # attr_reader :box - # - # # The branches that delineate from the nerve bundle. Not to be confused with [[branchOf]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :branch - # - # # A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\n\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047" is a branchCode for a particular branch. - # # @return [RDF::Vocabulary::Term] - # attr_reader :branchCode - # - # # The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)[[branch]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :branchOf - # - # # The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :brand - # - # # A set of links that can help a user understand and navigate a website hierarchy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :breadcrumb - # - # # Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :breastfeedingWarning - # - # # The media network(s) whose content is broadcast on this station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastAffiliateOf - # - # # The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastChannelId - # - # # The name displayed in the channel guide. For many US affiliates, it is the network name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastDisplayName - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastFrequency - # - # # The frequency in MHz for a particular broadcast. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastFrequencyValue - # - # # The event being broadcast such as a sporting event or awards ceremony. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastOfEvent - # - # # The type of service required to have access to the channel (e.g. Standard or Premium). - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastServiceTier - # - # # The modulation (e.g. FM, AM, etc) used by a particular broadcast service - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastSignalModulation - # - # # The subchannel used for the broadcast. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastSubChannel - # - # # The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastTimezone - # - # # The organization owning or operating the broadcast service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcaster - # - # # An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broker - # - # # Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :browserRequirements - # - # # The name of the bus (e.g. Bolt Express). - # # @return [RDF::Vocabulary::Term] - # attr_reader :busName - # - # # The unique identifier for the bus. - # # @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 - # - # # A sub property of participant. The participant/person/organization that bought the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :buyer - # - # # The artist that performed this album or recording. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byArtist - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :byDay - # - # # Defines the month(s) of the year on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-12. January is 1. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byMonth - # - # # Defines the day(s) of the month on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-31. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byMonthDay - # - # # Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byMonthWeek - # - # # A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :callSign - # - # # The number of calories. - # # @return [RDF::Vocabulary::Term] - # attr_reader :calories - # - # # A sub property of object. The candidate subject of this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :candidate - # - # # The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :caption - # - # # The number of grams of carbohydrates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :carbohydrateContent - # - # # The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\n\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\n\nNote: You can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cargoVolume - # - # # 'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights. - # # @return [RDF::Vocabulary::Term] - # attr_reader :carrier - # - # # Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network). - # # @return [RDF::Vocabulary::Term] - # attr_reader :carrierRequirements - # - # # A cardholder benefit that pays the cardholder a small percentage of their net expenditures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cashBack - # - # # A data catalog which contains this dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :catalog - # - # # The catalog number for the release. - # # @return [RDF::Vocabulary::Term] - # attr_reader :catalogNumber - # - # # A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :category - # - # # The condition, complication, symptom, sign, etc. caused. - # # @return [RDF::Vocabulary::Term] - # attr_reader :causeOf - # - # # A sub property of recipient. The recipient copied on a message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ccRecipient - # - # # Fictional person connected with a creative work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :character - # - # # A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage). - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterAttribute - # - # # The name of a character played in some acting or performing role, i.e. in a PerformanceRole. - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterName - # - # # Cheat codes to the game. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cheatCode - # - # # The earliest someone may check into a lodging establishment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :checkinTime - # - # # The latest someone may check out of a lodging establishment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :checkoutTime - # - # # Maximal age of the child. - # # @return [RDF::Vocabulary::Term] - # attr_reader :childMaxAge - # - # # Minimal age of the child. - # # @return [RDF::Vocabulary::Term] - # attr_reader :childMinAge - # - # # A child of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :children - # - # # The number of milligrams of cholesterol. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cholesterolContent - # - # # A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :circle - # - # # A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :citation - # - # # A short summary of the specific claims reviewed in a ClaimReview. - # # @return [RDF::Vocabulary::Term] - # attr_reader :claimReviewed - # - # # Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD). - # # @return [RDF::Vocabulary::Term] - # attr_reader :clincalPharmacology - # - # # Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD). - # # @return [RDF::Vocabulary::Term] - # attr_reader :clinicalPharmacology - # - # # Position of the clip within an ordered group of clips. - # # @return [RDF::Vocabulary::Term] - # attr_reader :clipNumber - # - # # The closing hour of the place or service on the given day(s) of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :closes - # - # # A person that acts in a coaching role for a sports team. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coach - # - # # A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :code - # - # # Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex). - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeRepository - # - # # What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeSampleType - # - # # A short textual code that uniquely identifies the value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeValue - # - # # The coding system, e.g. 'ICD-10'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codingSystem - # - # # A colleague of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colleague - # - # # A colleague of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colleagues - # - # # A sub property of object. The collection target of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collection - # - # # The number of items in the [[Collection]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collectionSize - # - # # The color of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :color - # - # # The individual who adds color to inked drawings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colorist - # - # # Comments, typically from users. - # # @return [RDF::Vocabulary::Term] - # attr_reader :comment - # - # # The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere. - # # @return [RDF::Vocabulary::Term] - # attr_reader :commentCount - # - # # The text of the UserComment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :commentText - # - # # The time at which the UserComment was made. - # # @return [RDF::Vocabulary::Term] - # attr_reader :commentTime - # - # # Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :competencyRequired - # - # # A competitor in a sports event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :competitor - # - # # The person or organization who wrote a composition, or who is the composer of a work performed at some event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :composer - # - # # Specifying something physically contained by something else. Typically used here for the underlying anatomical structures, such as organs, that comprise the anatomical system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :comprisedOf - # - # # 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.\n\nFor example "Available by appointment from the Reading Room" or "Accessible only from logged-in accounts ". - # # @return [RDF::Vocabulary::Term] - # attr_reader :conditionsOfAccess - # - # # A number that confirms the given order or payment has been received. - # # @return [RDF::Vocabulary::Term] - # attr_reader :confirmationNumber - # - # # Other anatomical structures to which this structure is connected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :connectedTo - # - # # 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]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :constrainingProperty - # - # # An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers). - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactOption - # - # # A contact point for a person or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactPoint - # - # # A contact point for a person or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactPoints - # - # # A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactType - # - # # A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactlessPayment - # - # # The basic containment relation between a place and one that contains it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :containedIn - # - # # The basic containment relation between a place and one that contains it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :containedInPlace - # - # # The basic containment relation between a place and another that it contains. - # # @return [RDF::Vocabulary::Term] - # attr_reader :containsPlace - # - # # A season that is part of the media series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :containsSeason - # - # # The location depicted or described in the content. For example, the location in a photograph or painting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentLocation - # - # # Official rating of a piece of content—for example,'MPAA PG-13'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentRating - # - # # The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentReferenceTime - # - # # File size in (mega/kilo) bytes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentSize - # - # # The supported content type(s) for an EntryPoint response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentType - # - # # Actual bytes of the media object, for example the image file or video file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentUrl - # - # # A contraindication for this therapy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contraindication - # - # # A secondary contributor to the CreativeWork or Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contributor - # - # # The time it takes to actually cook the dish, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :cookTime - # - # # The method of cooking, such as Frying, Steaming, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :cookingMethod - # - # # The party holding the legal copyright to the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightHolder - # - # # Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightNotice - # - # # The year during which the claimed copyright for the CreativeWork was first asserted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightYear - # - # # Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :correction - # - # # For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. - # # @return [RDF::Vocabulary::Term] - # attr_reader :correctionsPolicy - # - # # The category of cost, such as wholesale, retail, reimbursement cap, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :costCategory - # - # # The currency (in 3-letter of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217 - # # @return [RDF::Vocabulary::Term] - # attr_reader :costCurrency - # - # # Additional details to capture the origin of the cost data. For example, 'Medicare Part B'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :costOrigin - # - # # The cost per unit of the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :costPerUnit - # - # # Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countriesNotSupported - # - # # Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countriesSupported - # - # # The country of the principal offices of the production company or individual responsible for the movie or program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryOfOrigin - # - # # A sub property of location. The course where this action was taken. - # # @return [RDF::Vocabulary::Term] - # attr_reader :course - # - # # The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001). - # # @return [RDF::Vocabulary::Term] - # attr_reader :courseCode - # - # # The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. "online", "onsite" or "blended"; "synchronous" or "asynchronous"; "full-time" or "part-time") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ). - # # @return [RDF::Vocabulary::Term] - # attr_reader :courseMode - # - # # Requirements for taking the Course. May be completion of another [[Course]] or a textual description like "permission of instructor". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coursePrerequisites - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :courseWorkload - # - # # The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coverageEndTime - # - # # The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coverageStartTime - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creativeWorkStatus - # - # # The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creator - # - # # The category or type of credential being described, for example "degree”, “certificate”, “badge”, or more specific term. - # # @return [RDF::Vocabulary::Term] - # attr_reader :credentialCategory - # - # # Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creditText - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creditedTo - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :cssSelector - # - # # The currency accepted.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR". - # # @return [RDF::Vocabulary::Term] - # attr_reader :currenciesAccepted - # - # # The currency in which the monetary amount is expressed.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR". - # # @return [RDF::Vocabulary::Term] - # attr_reader :currency - # - # # The current price of a currency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentExchangeRate - # - # # Party placing the order or paying the invoice. - # # @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 ISO-8601 Time format, e.g. "23:30:00-05:00" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC). - # # @return [RDF::Vocabulary::Term] - # attr_reader :cutoffTime - # - # # collectiondate - Date for which patient counts are reported. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdCollectionDate - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdFacilityCounty - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdFacilityId - # - # # numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumBeds - # - # # numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumBedsOcc - # - # # numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19Died - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19HOPats - # - # # numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19HospPats - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19MechVentPats - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19OFMechVentPats - # - # # numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19OverflowPats - # - # # numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumICUBeds - # - # # numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumICUBedsOcc - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumTotBeds - # - # # numvent - MECHANICAL VENTILATORS: Total number of ventilators available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumVent - # - # # numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumVentUse - # - # # An item within in a data feed. Data feeds may have many elements. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataFeedElement - # - # # A dataset contained in this catalog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataset - # - # # The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format). - # # @return [RDF::Vocabulary::Term] - # attr_reader :datasetTimeInterval - # - # # The date on which the CreativeWork was created or the item was added to a DataFeed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCreated - # - # # The datetime the item was removed from the DataFeed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateDeleted - # - # # The date the ticket was issued. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateIssued - # - # # The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateModified - # - # # Publication date of an online listing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datePosted - # - # # Date of first broadcast/publication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datePublished - # - # # The date/time at which the message has been read by the recipient if a single recipient exists. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateRead - # - # # The date/time the message was received if a single recipient exists. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateReceived - # - # # The date/time at which the message was sent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateSent - # - # # The date of the first registration of the vehicle with the respective public authorities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateVehicleFirstRegistered - # - # # A [dateline](https://en.wikipedia.org/wiki/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. Structured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]]. Dateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: "BEIRUT, Lebanon, June 2.", "Paris, France", "December 19, 2017 11:43AM Reporting from Washington", "Beijing/Moscow", "QUEZON CITY, Philippines". - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateline - # - # # The day of the week for which these opening hours are valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dayOfWeek - # - # # Date of death. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathDate - # - # # The place where the person died. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathPlace - # - # # The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :defaultValue - # - # # Destination address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deliveryAddress - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deliveryLeadTime - # - # # A sub property of instrument. The method of delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deliveryMethod - # - # # New entry added as the package passes through each leg of its journey (from shipment to final delivery). - # # @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 - # - # # The airport where the flight originates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureAirport - # - # # The terminal or port from which the boat departs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureBoatTerminal - # - # # The stop or station from which the bus departs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureBusStop - # - # # Identifier of the flight's departure gate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureGate - # - # # The platform from which the train departs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departurePlatform - # - # # The station from which the train departs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureStation - # - # # Identifier of the flight's departure terminal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureTerminal - # - # # The expected departure time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureTime - # - # # Prerequisites needed to fulfill steps in article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dependencies - # - # # The depth of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :depth - # - # # A description of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # Device required to run the application. Used in cases where a specific make/model is required to run the application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :device - # - # # One or more alternative conditions considered in the differential diagnosis process as output of a diagnosis process. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diagnosis - # - # # An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diagram - # - # # A sub property of instrument. The diet used in this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diet - # - # # Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dietFeatures - # - # # One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient. - # # @return [RDF::Vocabulary::Term] - # attr_reader :differentialDiagnosis - # - # # A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :director - # - # # A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :directors - # - # # A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :disambiguatingDescription - # - # # Any discount applied (to an Order). - # # @return [RDF::Vocabulary::Term] - # attr_reader :discount - # - # # Code used to redeem a discount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :discountCode - # - # # The currency of the discount.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR". - # # @return [RDF::Vocabulary::Term] - # attr_reader :discountCurrency - # - # # Specifies the CreativeWork associated with the UserComment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :discusses - # - # # A link to the page containing the comments of the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :discussionUrl - # - # # Information about disease prevention. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diseasePreventionInfo - # - # # Statistical information about the spread of a disease, either as [[WebContent]], or described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is provided, the page indicated might also contain more such markup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diseaseSpreadStatistics - # - # # The date that this organization was dissolved. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dissolutionDate - # - # # The distance travelled, e.g. exercising or travelling. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distance - # - # # One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distinguishingSign - # - # # A downloadable form of this dataset, at a specific location, in a specific format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distribution - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diversityPolicy - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diversityStaffingReport - # - # # Further documentation describing the Web API in more detail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :documentation - # - # # Indicates 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 - # - # # Whether borrower is a resident of the jurisdiction where the property is located. - # # @return [RDF::Vocabulary::Term] - # attr_reader :domiciledMortgage - # - # # The time admission will commence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :doorTime - # - # # A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dosageForm - # - # # A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :doseSchedule - # - # # The unit of the dose, e.g. 'mg'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :doseUnit - # - # # The value of the dose, e.g. 500. - # # @return [RDF::Vocabulary::Term] - # attr_reader :doseValue - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :downPayment - # - # # If the file can be downloaded, URL to download the binary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :downloadUrl - # - # # The number of downvotes this question, answer or comment has received from the community. - # # @return [RDF::Vocabulary::Term] - # attr_reader :downvoteCount - # - # # The vasculature that the vein drains into. - # # @return [RDF::Vocabulary::Term] - # attr_reader :drainsTo - # - # # The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain. - # # @return [RDF::Vocabulary::Term] - # attr_reader :driveWheelConfiguration - # - # # Where a rental car can be dropped off. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dropoffLocation - # - # # When a rental car can be dropped off. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dropoffTime - # - # # Specifying a drug or medicine used in a medication procedure - # # @return [RDF::Vocabulary::Term] - # attr_reader :drug - # - # # The class of drug this belongs to (e.g., statins). - # # @return [RDF::Vocabulary::Term] - # attr_reader :drugClass - # - # # The unit in which the drug is measured, e.g. '5 mg tablet'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :drugUnit - # - # # The Dun & Bradstreet DUNS number for identifying an organization or business person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duns - # - # # A therapy that duplicates or overlaps this one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duplicateTherapy - # - # # The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationOfWarranty - # - # # A media object representing the circumstances while performing this direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duringMedia - # - # # The amount to be paid as a penalty in the event of early payment of the loan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :earlyPrepaymentPenalty - # - # # An [EIDR](https://eidr.org/) (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 - # - # # For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: "Multiple choice", "Open ended", "Flashcard". - # # @return [RDF::Vocabulary::Term] - # attr_reader :eduQuestionType - # - # # Educational background needed for the position or Occupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationRequirements - # - # # 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 - # - # # A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalCredentialAwarded - # - # # The framework to which the resource being described is aligned. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalFramework - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalLevel - # - # # 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 ). - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalProgramMode - # - # # An educationalRole of an EducationalAudience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalRole - # - # # The purpose of a work in the context of education; for example, 'assignment', 'group work'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalUse - # - # # The elevation of a location ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). Values may be of the form 'NUMBER UNIT_OF_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters. - # # @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 - # - # # The duration for which the given offer is valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleDuration - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleQuantity - # - # # 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.\n\nSee also [[ineligibleRegion]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleRegion - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleTransactionVolume - # - # # Email address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :email - # - # # A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :embedUrl - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :emissionsCO2 - # - # # Someone working for this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :employee - # - # # People working for this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :employees - # - # # A description of the employer, career opportunities and work environment for this position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :employerOverview - # - # # Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship). - # # @return [RDF::Vocabulary::Term] - # attr_reader :employmentType - # - # # Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :employmentUnit - # - # # The CreativeWork encoded by this media object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodesCreativeWork - # - # # A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encoding - # - # # Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.). In cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information. Unregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodingFormat - # - # # The supported encoding type(s) for an EntryPoint request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodingType - # - # # A media object that encodes this CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodings - # - # # The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :endDate - # - # # The end time of the clip expressed as the number of seconds from the beginning of the work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endOffset - # - # # 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.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endTime - # - # # A sub property of participant. The person/organization being supported. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endorsee - # - # # People or organizations that endorse the plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endorsers - # - # # Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++. - # # @return [RDF::Vocabulary::Term] - # attr_reader :energyEfficiencyScaleMax - # - # # Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++. - # # @return [RDF::Vocabulary::Term] - # attr_reader :energyEfficiencyScaleMin - # - # # The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement. \n\nTypical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches\n* Note 1: You can link to information about how the given value has been determined using the [[valueReference]] property.\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :engineDisplacement - # - # # The power of the vehicle's engine. Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)\n\n* Note 1: There are many different ways of measuring an engine's power. For an overview, see [http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes](http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes).\n* Note 2: You can link to information about how the given value has been determined using the [[valueReference]] property.\n* Note 3: You can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :enginePower - # - # # The type of engine or engines powering the vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :engineType - # - # # A sub property of location. The entertainment business where the action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :entertainmentBusiness - # - # # The characteristics of associated patients, such as age, gender, race etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :epidemiology - # - # # An episode of a tv, radio or game media within a series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :episode - # - # # Position of the episode within an ordered group of episodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :episodeNumber - # - # # An episode of a TV/radio series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :episodes - # - # # This ordering relation for qualitative values indicates that the subject is equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :equal - # - # # For failed actions, more information on the cause of the failure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :error - # - # # The estimated cost of the supply or supplies consumed when performing instructions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :estimatedCost - # - # # The estimated time the flight will take. - # # @return [RDF::Vocabulary::Term] - # attr_reader :estimatedFlightDuration - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :estimatedSalary - # - # # The condition, complication, or symptom whose risk is being estimated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :estimatesRiskOf - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ethicsPolicy - # - # # Upcoming or past event associated with this place, organization, or action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :event - # - # # The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventAttendanceMode - # - # # Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventSchedule - # - # # An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventStatus - # - # # Upcoming or past events associated with this place or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :events - # - # # Strength of evidence of the data used to formulate the guideline (enumerated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :evidenceLevel - # - # # Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :evidenceOrigin - # - # # A creative work that this work is an example/instance/realization/derivation of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exampleOfWork - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exceptDate - # - # # The difference between the price at which a broker or other intermediary buys and sells foreign currency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exchangeRateSpread - # - # # Library file name e.g., mscorlib.dll, system.web.dll. - # # @return [RDF::Vocabulary::Term] - # attr_reader :executableLibraryName - # - # # A sub property of location. The course where this action was taken. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exerciseCourse - # - # # A sub property of instrument. The exercise plan used on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exercisePlan - # - # # A sub property of instrument. The diet used in this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exerciseRelatedDiet - # - # # Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exerciseType - # - # # exif data for this object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exifData - # - # # The earliest date the package may arrive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expectedArrivalFrom - # - # # The latest date the package may arrive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expectedArrivalUntil - # - # # The likely outcome in either the short term or long term of the medical condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expectedPrognosis - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expectsAcceptanceOf - # - # # Description of skills and experience needed for the position or Occupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :experienceRequirements - # - # # Medical expert advice related to the plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expertConsiderations - # - # # Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expires - # - # # Family name. In the U.S., the last name of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :familyName - # - # # The number of grams of fat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fatContent - # - # # The fax number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :faxNumber - # - # # Features or modules provided by this application (and possibly required by other applications). - # # @return [RDF::Vocabulary::Term] - # attr_reader :featureList - # - # # Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :feesAndCommissionsSpecification - # - # # The number of grams of fiber. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fiberContent - # - # # Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileFormat - # - # # Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileSize - # - # # A financial aid type or program which students may use to pay for tuition or fees associated with the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :financialAidEligible - # - # # Indicates the first known occurence of a [[Claim]] in some [[CreativeWork]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstAppearance - # - # # The date and place the work was first performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstPerformance - # - # # The distance of the flight. - # # @return [RDF::Vocabulary::Term] - # attr_reader :flightDistance - # - # # The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :flightNumber - # - # # The floor level for an [[Accommodation]] in a multi-storey building. Since counting systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible. - # # @return [RDF::Vocabulary::Term] - # attr_reader :floorLevel - # - # # A floor limit is the amount of money above which credit card transactions must be authorized. - # # @return [RDF::Vocabulary::Term] - # attr_reader :floorLimit - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :floorSize - # - # # A sub property of object. The person or organization being followed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :followee - # - # # The most generic uni-directional social relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :follows - # - # # Typical or recommended followup care after the procedure is performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :followup - # - # # A sub property of location. The specific food establishment where the action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodEstablishment - # - # # A sub property of location. The specific food event where the action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodEvent - # - # # Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodWarning - # - # # A person who founded this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :founder - # - # # A person who founded this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :founders - # - # # The date that this organization was founded. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foundingDate - # - # # The place where the Organization was founded. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foundingLocation - # - # # A flag to signal that the item, event, or place is accessible for free. - # # @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 [[OfferShippingDetails]] with [[shippingSettingsLink]] matching this [[ShippingRateSettings]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :freeShippingThreshold - # - # # How often the dose is taken, e.g. 'daily'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frequency - # - # # A sub property of location. The original location of the object or the agent before the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fromLocation - # - # # 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.\n\nTypical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles). - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelCapacity - # - # # The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).\n\n* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\n* 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelConsumption - # - # # The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).\n\n* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\n* 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelEfficiency - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelType - # - # # The degree of mobility the joint allows. - # # @return [RDF::Vocabulary::Term] - # attr_reader :functionalClass - # - # # Indicates an item funded or sponsored through a [[Grant]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fundedItem - # - # # A person or organization that supports (sponsors) something through some kind of financial contribution. - # # @return [RDF::Vocabulary::Term] - # attr_reader :funder - # - # # Video game which is played on this server. - # # @return [RDF::Vocabulary::Term] - # attr_reader :game - # - # # An item is an object within the game world that can be collected by a player or, occasionally, a non-player character. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameItem - # - # # Real or fictional location of the game (or part of game). - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameLocation - # - # # The electronic systems used to play video games. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gamePlatform - # - # # The server on which it is possible to play the game. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameServer - # - # # Links to tips, tactics, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameTip - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :gender - # - # # Genre of the creative work, broadcast channel or group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :genre - # - # # The geo coordinates of the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geo - # - # # Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. "a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoContains - # - # # Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoCoveredBy - # - # # Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. "Every point of b is a point of (the interior or boundary of) a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoCovers - # - # # Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: "a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoCrosses - # - # # Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: they have no point in common. They form a set of disconnected geometries." (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)) - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoDisjoint - # - # # Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship) - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoEquals - # - # # Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoIntersects - # - # # Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoMidpoint - # - # # Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoOverlaps - # - # # Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoRadius - # - # # Represents spatial relations in which two geometries (or the places they represent) touch: they have at least one boundary point in common, but no interior points." (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) ) - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoTouches - # - # # Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoWithin - # - # # The geographic area associated with the audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geographicArea - # - # # Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gettingTestedInfo - # - # # Given name. In the U.S., the first name of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :givenName - # - # # The [Global Location Number](http://www.gs1.org/gln) (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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :globalLocationNumber - # - # # governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :governmentBenefitsInfo - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gracePeriod - # - # # The person, organization, contact point, or audience that has been granted this permission. - # # @return [RDF::Vocabulary::Term] - # attr_reader :grantee - # - # # This ordering relation for qualitative values indicates that the subject is greater than the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :greater - # - # # This ordering relation for qualitative values indicates that the subject is greater than or equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :greaterOrEqual - # - # # A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/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](https://www.gs1.org/standards/Digital-Link/) 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](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin - # - # # The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin12 - # - # # 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 preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin13 - # - # # The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin14 - # - # # The [GTIN-8](http://apps.gs1.org/GDD/glossary/Pages/GTIN-8.aspx) 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](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin8 - # - # # A medical guideline related to this entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :guideline - # - # # Date on which this guideline's recommendation was made. - # # @return [RDF::Vocabulary::Term] - # attr_reader :guidelineDate - # - # # The medical conditions, treatments, etc. that are the subject of the guideline. - # # @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 - # - # # A Category code contained in this code set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCategoryCode - # - # # A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCourse - # - # # An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCourseInstance - # - # # A credential awarded to the Person or Organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCredential - # - # # A Defined Term contained in this term set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDefinedTerm - # - # # Method used for delivery or shipping. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDeliveryMethod - # - # # A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to "public". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDigitalDocumentPermission - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDriveThroughService - # - # # Defines the energy efficiency Category (also known as "class" or "rating") for a product according to an international energy efficiency standard - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEnergyConsumptionDetails - # - # # Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEnergyEfficiencyCategory - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasHealthAspect - # - # # A URL to a map of the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMap - # - # # Either the actual menu as a structured representation, as text, or a URL of the menu. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMenu - # - # # A food or drink item contained in a menu or menu section. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMenuItem - # - # # A subgrouping of the menu (by dishes, course, serving time period, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMenuSection - # - # # Indicates a MerchantReturnPolicy that may be applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMerchantReturnPolicy - # - # # The Person's occupation. For past professions, use Role for expressing dates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOccupation - # - # # Indicates an OfferCatalog listing for this Organization, Person, or Service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOfferCatalog - # - # # Points-of-Sales operated by the organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPOS - # - # # Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPart - # - # # Indicates a ProductReturnPolicy that may be applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasProductReturnPolicy - # - # # Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVariant - # - # # Headline of the article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :headline - # - # # Specifying the health condition(s) of a patient, medical study, or other target audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthCondition - # - # # Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set? - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCoinsuranceOption - # - # # Whether The rate of coinsurance expressed as a number between 0.0 and 1.0. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCoinsuranceRate - # - # # Whether The copay amount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCopay - # - # # Whether the copay is before or after deductible, etc. TODO: Is this a closed set? - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCopayOption - # - # # Whether The costs to the patient for services under this network or formulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCostSharing - # - # # TODO. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanDrugOption - # - # # The tier(s) of drugs offered by this formulary or insurance plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanDrugTier - # - # # The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanId - # - # # The URL that goes directly to the plan brochure for the specific standard plan or plan variation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanMarketingUrl - # - # # Name or unique ID of network. (Networks are often reused across different insurance plans). - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanNetworkId - # - # # The tier(s) for this network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanNetworkTier - # - # # The category or type of pharmacy associated with this cost sharing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanPharmacyCategory - # - # # Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthcareReportingData - # - # # The height of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :height - # - # # The highest price of all offers available.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :highPrice - # - # # Organization offering the job position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hiringOrganization - # - # # [[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :holdingArchive - # - # # A contact location for a person's residence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :homeLocation - # - # # The home team in a sports event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :homeTeam - # - # # An honorific prefix preceding a Person's name such as Dr/Mrs/Mr. - # # @return [RDF::Vocabulary::Term] - # attr_reader :honorificPrefix - # - # # An honorific suffix following a Person's name such as M.D. /PhD/MSCSW. - # # @return [RDF::Vocabulary::Term] - # attr_reader :honorificSuffix - # - # # A hospital with which the physician or office is affiliated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hospitalAffiliation - # - # # The organization (airline, travelers' club, etc.) the membership is made with. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hostingOrganization - # - # # The hours during which this service or contact is available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hoursAvailable - # - # # How the procedure is performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :howPerformed - # - # # An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP. - # # @return [RDF::Vocabulary::Term] - # attr_reader :httpMethod - # - # # IATA identifier for an airline or airport. - # # @return [RDF::Vocabulary::Term] - # attr_reader :iataCode - # - # # ICAO identifier for an airport. - # # @return [RDF::Vocabulary::Term] - # attr_reader :icaoCode - # - # # The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifier - # - # # A physical examination that can identify this sign. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifyingExam - # - # # A diagnostic test that can identify this sign. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifyingTest - # - # # The illustrator of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :illustrator - # - # # An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :image - # - # # Imaging technique used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :imagingTechnique - # - # # The album to which this recording belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inAlbum - # - # # The CableOrSatelliteService offering the channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inBroadcastLineup - # - # # A [[CategoryCodeSet]] that contains this category code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inCodeSet - # - # # A [[DefinedTermSet]] that contains this term. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inDefinedTermSet - # - # # 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](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inLanguage - # - # # The playlist to which this recording belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inPlaylist - # - # # Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inProductGroupWithID - # - # # Are in-store returns offered? - # # @return [RDF::Vocabulary::Term] - # attr_reader :inStoreReturnsOffered - # - # # Qualification, candidature, degree, application that Thesis supports. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inSupportOf - # - # # Description of bonus and commission compensation aspects of the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :incentiveCompensation - # - # # Description of bonus and commission compensation aspects of the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :incentives - # - # # Smaller compositions included in this work (e.g. a movement in a symphony). - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedComposition - # - # # A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedDataCatalog - # - # # A data catalog which contains this dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedInDataCatalog - # - # # The insurance plans that cover this drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedInHealthInsurancePlan - # - # # A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedRiskFactor - # - # # Attraction located at destination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includesAttraction - # - # # Formularies covered by this plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includesHealthPlanFormulary - # - # # Networks covered by this plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includesHealthPlanNetwork - # - # # This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includesObject - # - # # The condition, complication, etc. influenced by this factor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :increasesRiskOf - # - # # The industry associated with the job position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :industry - # - # # 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.\n\nSee also [[eligibleRegion]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ineligibleRegion - # - # # The actual infectious agent, such as a specific bacterium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :infectiousAgent - # - # # The class of infectious agent (bacteria, prion, etc.) that causes the disease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :infectiousAgentClass - # - # # A single ingredient used in the recipe, e.g. sugar, flour or garlic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredients - # - # # The individual who traces over the pencil drawings in ink after pencils are complete. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inker - # - # # The place of attachment of a muscle, or what the muscle moves. - # # @return [RDF::Vocabulary::Term] - # attr_reader :insertion - # - # # URL at which the app may be installed, if different from the URL of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :installUrl - # - # # A person assigned to instruct or provide instructional assistance for the [[CourseInstance]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :instructor - # - # # The object that helped the agent perform the action. e.g. John wrote a book with *a pen*. - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrument - # - # # Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :intensity - # - # # Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactingDrug - # - # # This property is deprecated, alongside the UserInteraction types on which it depended. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactionCount - # - # # The WebSite or SoftwareApplication where the interactions took place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactionService - # - # # The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactionStatistic - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactionType - # - # # The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactivityType - # - # # The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interestRate - # - # # The current approximate inventory level for the item or items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inventoryLevel - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inverseOf - # - # # Whether the provider is accepting new patients. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAcceptingNewPatients - # - # # A flag to signal that the item, event, or place is accessible for free. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAccessibleForFree - # - # # A pointer to another product (or multiple products) for which this product is an accessory or spare part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAccessoryOrSparePartFor - # - # # True if the drug is available in a generic form (regardless of name). - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAvailableGenerically - # - # # A resource from which this work is derived or from which it is a modification or adaption. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isBasedOn - # - # # A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isBasedOnUrl - # - # # A pointer to another product (or multiple products) for which this product is a consumable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isConsumableFor - # - # # Indicates whether this content is family friendly. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isFamilyFriendly - # - # # Was the offer accepted as a gift for someone other than the buyer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isGift - # - # # True is the broadcast is of a live event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isLiveBroadcast - # - # # Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPartOf - # - # # Indicates some accommodation that this floor plan describes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPlanForApartment - # - # # True if this item's name is a proprietary/brand name (vs. generic name). - # # @return [RDF::Vocabulary::Term] - # attr_reader :isProprietary - # - # # A pointer to another, somehow related product (or multiple products). - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRelatedTo - # - # # Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isResizable - # - # # A pointer to another, functionally similar product (or multiple products). - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSimilarTo - # - # # This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[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 transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isUnlabelledFallback - # - # # Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) 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. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isVariantOf - # - # # The ISBN of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isbn - # - # # The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isicV4 - # - # # The International Standard Recording Code for the recording. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isrcCode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :issn - # - # # Identifies the issue of publication; for example, "iii" or "2". - # # @return [RDF::Vocabulary::Term] - # attr_reader :issueNumber - # - # # The organization issuing the ticket or permit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuedBy - # - # # The service through with the permit was granted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuedThrough - # - # # The International Standard Musical Work Code for the composition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :iswcCode - # - # # An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')’. - # # @return [RDF::Vocabulary::Term] - # attr_reader :item - # - # # A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemCondition - # - # # For itemListElement values, you can use simple strings (e.g. "Peter", "Paul", "Mary"), existing entities, or use ListItem.\n\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\n\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemListElement - # - # # Type of ordering (e.g. Ascending, Descending, Unordered). - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemListOrder - # - # # Current location of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemLocation - # - # # An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemOffered - # - # # The item that is being reviewed/rated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemReviewed - # - # # Item(s) being shipped. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemShipped - # - # # Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples). - # # @return [RDF::Vocabulary::Term] - # attr_reader :itinerary - # - # # Description of benefits associated with the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobBenefits - # - # # An indicator as to whether a position is available for an immediate start. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobImmediateStart - # - # # A (typically single) geographic location associated with the job position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobLocation - # - # # A description of the job location (e.g TELECOMMUTE for telecommute jobs). - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobLocationType - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobStartDate - # - # # The job title of the person (for example, Financial Manager). - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobTitle - # - # # Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jurisdiction - # - # # Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas. - # # @return [RDF::Vocabulary::Term] - # attr_reader :keywords - # - # # A textual description of known damages, both repaired and unrepaired. - # # @return [RDF::Vocabulary::Term] - # attr_reader :knownVehicleDamages - # - # # The most generic bi-directional social/work relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :knows - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :knowsAbout - # - # # 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](http://tools.ietf.org/html/bcp47). - # # @return [RDF::Vocabulary::Term] - # attr_reader :knowsLanguage - # - # # Link to the drug's label details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :labelDetails - # - # # A sub property of participant. The owner of the real estate property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :landlord - # - # # A sub property of instrument. The language used on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # Date on which the content on this web page was last reviewed for accuracy and/or completeness. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastReviewed - # - # # The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :latitude - # - # # A schematic image showing the floorplan layout. - # # @return [RDF::Vocabulary::Term] - # attr_reader :layoutImage - # - # # The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :learningResourceType - # - # # Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :leaseLength - # - # # The official name of the organization, e.g. the registered company name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalName - # - # # The drug or supplement's legal status, including any controlled substance schedules that apply. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalStatus - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationApplies - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationChanges - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationConsolidates - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationDate - # - # # 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") - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationDateVersion - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationIdentifier - # - # # The jurisdiction from which the legislation originates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationJurisdiction - # - # # Whether the legislation is currently in force, not in force, or partially in force. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationLegalForce - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationLegalValue - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationPassedBy - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationResponsible - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationTransposes - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationType - # - # # An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. - # # @return [RDF::Vocabulary::Term] - # attr_reader :leiCode - # - # # A sub property of participant. The person that lends the object being borrowed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lender - # - # # This ordering relation for qualitative values indicates that the subject is lesser than the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lesser - # - # # This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lesserOrEqual - # - # # The individual who adds lettering, including speech balloons and sound effects, to artwork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :letterer - # - # # A license document that applies to this content, typically indicated by URL. - # # @return [RDF::Vocabulary::Term] - # attr_reader :license - # - # # A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :line - # - # # Indicates the relationship type of a Web link. - # # @return [RDF::Vocabulary::Term] - # attr_reader :linkRelationship - # - # # An update to the LiveBlog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :liveBlogUpdate - # - # # Amount of mortgage mandate that can be converted into a proper mortgage at a later stage. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanMortgageMandateAmount - # - # # The amount of money to pay in a single payment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanPaymentAmount - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanPaymentFrequency - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanRepaymentForm - # - # # The duration of the loan or credit agreement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanTerm - # - # # The type of a loan or credit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanType - # - # # The location of, for example, where an event is happening, where an organization is located, or where an action takes place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :location - # - # # The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCreated - # - # # A full description of the lodging unit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lodgingUnitDescription - # - # # Textual description of the unit type (including suite vs. room, size of bed, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :lodgingUnitType - # - # # An associated logo. - # # @return [RDF::Vocabulary::Term] - # attr_reader :logo - # - # # The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :longitude - # - # # A sub property of participant. The loser of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loser - # - # # The lowest price of all offers available.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowPrice - # - # # The person who wrote the words. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lyricist - # - # # The words in the song. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lyrics - # - # # Indicates if this web page element is the main subject of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainContentOfPage - # - # # Indicates the primary entity described in some page or other CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainEntity - # - # # Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainEntityOfPage - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maintainer - # - # # A pointer to products or services offered by the organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :makesOffer - # - # # The manufacturer of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :manufacturer - # - # # A URL to a map of the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :map - # - # # Indicates the kind of Map, from the MapCategoryType Enumeration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mapType - # - # # A URL to a map of the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maps - # - # # A marginOfError for an [[Observation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :marginOfError - # - # # For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management. - # # @return [RDF::Vocabulary::Term] - # attr_reader :masthead - # - # # A material that something is made from, e.g. leather, wool, cotton, paper. - # # @return [RDF::Vocabulary::Term] - # attr_reader :material - # - # # The quantity of the materials being described or an expression of the physical space they occupy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :materialExtent - # - # # A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mathExpression - # - # # The highest price if the price is a range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxPrice - # - # # The upper value of some characteristic or property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxValue - # - # # The total number of individuals that may attend an event or venue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumAttendeeCapacity - # - # # The maximum number of students who may be enrolled in the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumEnrollment - # - # # Recommended intake of this supplement for a given population as defined by a specific recommending authority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumIntake - # - # # The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumPhysicalAttendeeCapacity - # - # # The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumVirtualAttendeeCapacity - # - # # Description of the meals that will be provided or available for purchase. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mealService - # - # # 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](https://www.gs1.org/voc/?show=properties). - # # @return [RDF::Vocabulary::Term] - # attr_reader :measuredProperty - # - # # The measuredValue of an [[Observation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measuredValue - # - # # A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]), corresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery. For example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: "mass spectrometry" or "nmr spectroscopy" or "colorimetry" or "immunofluorescence". 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementTechnique - # - # # The specific biochemical interaction through which this drug or supplement produces its pharmacological effect. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mechanismOfAction - # - # # Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared). - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaAuthenticityCategory - # - # # The median value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :median - # - # # Medical audience for page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :medicalAudience - # - # # A medical specialty of the provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :medicalSpecialty - # - # # The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :medicineSystem - # - # # Indicates that the vehicle meets the respective emission standard. - # # @return [RDF::Vocabulary::Term] - # attr_reader :meetsEmissionStandard - # - # # A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # An Organization (or ProgramMembership) to which this Person or Organization belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memberOf - # - # # A member of this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :members - # - # # A unique identifier for the membership. - # # @return [RDF::Vocabulary::Term] - # attr_reader :membershipNumber - # - # # 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.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :membershipPointsEarned - # - # # Minimum memory requirements. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memoryRequirements - # - # # Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mentions - # - # # Either the actual menu as a structured representation, as text, or a URL of the menu. - # # @return [RDF::Vocabulary::Term] - # attr_reader :menu - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :menuAddOn - # - # # 'merchant' is an out-dated term for 'seller'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :merchant - # - # # The merchantReturnDays property indicates the number of days (from purchase) within which relevant merchant return policy is applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :merchantReturnDays - # - # # Indicates a Web page or service by URL, for product return. - # # @return [RDF::Vocabulary::Term] - # attr_reader :merchantReturnLink - # - # # A CreativeWork attached to the message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :messageAttachment - # - # # The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\n\nTypical unit code(s): KMT for kilometers, SMI for statute miles - # # @return [RDF::Vocabulary::Term] - # attr_reader :mileageFromOdometer - # - # # The lowest price if the price is a range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minPrice - # - # # The lower value of some characteristic or property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minValue - # - # # The minimum payment required at this time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumPaymentDue - # - # # For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues. - # # @return [RDF::Vocabulary::Term] - # attr_reader :missionCoveragePrioritiesPolicy - # - # # The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :model - # - # # The release date of a vehicle model (often used to differentiate versions of the same make and model). - # # @return [RDF::Vocabulary::Term] - # attr_reader :modelDate - # - # # The date and time the reservation was modified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :modifiedTime - # - # # The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month. - # # @return [RDF::Vocabulary::Term] - # attr_reader :monthlyMinimumRepaymentAmount - # - # # The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mpn - # - # # Whether multiple values are allowed for the property. Default is false. - # # @return [RDF::Vocabulary::Term] - # attr_reader :multipleValues - # - # # The movement the muscle generates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :muscleAction - # - # # An arrangement derived from the composition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicArrangement - # - # # The composer of the soundtrack. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicBy - # - # # The type of composition (e.g. overture, sonata, symphony, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicCompositionForm - # - # # A member of a music group—for example, John, Paul, George, or Ringo. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicGroupMember - # - # # Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicReleaseFormat - # - # # The key, mode, or scale this composition uses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicalKey - # - # # The North American Industry Classification System (NAICS) code for a particular organization or business person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :naics - # - # # The name of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namedPosition - # - # # Nationality of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationality - # - # # The expected progression of the condition if it is not treated and allowed to progress naturally. - # # @return [RDF::Vocabulary::Term] - # attr_reader :naturalProgression - # - # # The underlying innervation associated with the muscle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nerve - # - # # The neurological pathway extension that involves muscle control. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nerveMotor - # - # # The total financial value of the person as calculated by subtracting assets from liabilities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :netWorth - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :newsUpdatesAndGuidelines - # - # # A link to the ListItem that follows the current one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nextItem - # - # # For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines. - # # @return [RDF::Vocabulary::Term] - # attr_reader :noBylinesPolicy - # - # # This ordering relation for qualitative values indicates that the subject is not equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nonEqual - # - # # The generic name of this drug or supplement. - # # @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 - # - # # Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nsn - # - # # The number of adults staying in the unit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numAdults - # - # # The number of children staying in the unit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numChildren - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numConstraints - # - # # The number of tracks in this album or playlist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numTracks - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAccommodationUnits - # - # # The number or type of airbags in the vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAirbags - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAvailableAccommodationUnits - # - # # The number of axles.\n\nTypical unit code(s): C62 - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAxles - # - # # The total integer number of bathrooms in a some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): "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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfBathroomsTotal - # - # # The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfBedrooms - # - # # The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfBeds - # - # # The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCredits - # - # # The number of doors.\n\nTypical unit code(s): C62 - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfDoors - # - # # The number of employees in an organization e.g. business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfEmployees - # - # # The number of episodes in this season or series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfEpisodes - # - # # The total number of forward gears available for the transmission system of the vehicle.\n\nTypical unit code(s): C62 - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfForwardGears - # - # # Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsFull field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field). - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfFullBathrooms - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfItems - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLoanPayments - # - # # The number of pages in the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPages - # - # # Number of partial bathrooms - The total number of half and ¼ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsPartial field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPartialBathrooms - # - # # Indicate how many people can play this game (minimum, maximum, or range). - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPlayers - # - # # The number of owners of the vehicle, including the current one.\n\nTypical unit code(s): C62 - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPreviousOwners - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfRooms - # - # # The number of seasons in this series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSeasons - # - # # A number associated with a role in an organization, for example, the number on an athlete's jersey. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberedPosition - # - # # Nutrition information about the recipe or menu item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutrition - # - # # The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read *a book*. - # # @return [RDF::Vocabulary::Term] - # attr_reader :object - # - # # The observationDate of an [[Observation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :observationDate - # - # # The observedNode of an [[Observation]], often a [[StatisticalPopulation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :observedNode - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupancy - # - # # The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupationLocation - # - # # A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) 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.\n Note: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupationalCategory - # - # # A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupationalCredentialAwarded - # - # # The number of offers for the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offerCount - # - # # A pointer to the organization or person making the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offeredBy - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offers - # - # # Whether prescriptions can be delivered by mail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offersPrescriptionByMail - # - # # 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 '-'.\n\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \n* Here is an example: <time itemprop="openingHours" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>.\n* If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>. - # # @return [RDF::Vocabulary::Term] - # attr_reader :openingHours - # - # # The opening hours of a certain place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :openingHoursSpecification - # - # # The opening hour of the place or service on the given day(s) of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :opens - # - # # Operating systems supported (Windows 7, OSX 10.6, Android 1.6). - # # @return [RDF::Vocabulary::Term] - # attr_reader :operatingSystem - # - # # A sub property of participant. The opponent on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :opponent - # - # # A sub property of object. The options subject to this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :option - # - # # Date order was placed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderDate - # - # # The delivery of the parcel related to this order or order item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderDelivery - # - # # The identifier of the order item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderItemNumber - # - # # The current status of the order item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderItemStatus - # - # # The identifier of the transaction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderNumber - # - # # The number of the item ordered. If the property is not set, assume the quantity is one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderQuantity - # - # # The current status of the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderStatus - # - # # The item ordered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderedItem - # - # # An organizer of an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organizer - # - # # Shipper's address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :originAddress - # - # # The vasculature the lymphatic structure originates, or afferents, from. - # # @return [RDF::Vocabulary::Term] - # attr_reader :originatesFrom - # - # # Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :overdosage - # - # # The date and time of obtaining the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ownedFrom - # - # # The date and time of giving up ownership on the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ownedThrough - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ownershipFundingInfo - # - # # Products owned by the organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :owns - # - # # The page on which the work ends; for example "138" or "xvi". - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageEnd - # - # # The page on which the work starts; for example "135" or "xiii". - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageStart - # - # # Any description of pages that is not separated into pageStart and pageEnd; for example, "1-6, 9, 55" or "10-12, 46-49". - # # @return [RDF::Vocabulary::Term] - # attr_reader :pagination - # - # # A parent of this person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parent - # - # # The parent of a question, answer or item in general. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentItem - # - # # The larger organization that this organization is a [[subOrganization]] of, if any. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentOrganization - # - # # A broadcast service to which the broadcast service may belong to such as regional variations of a national channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentService - # - # # A parents of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parents - # - # # The episode to which this clip belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfEpisode - # - # # The order is being paid as part of the referenced Invoice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfInvoice - # - # # The overall order the items in this delivery were included in. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfOrder - # - # # The season to which this episode belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfSeason - # - # # The series to which this episode or season belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfSeries - # - # # The anatomical or organ system that this structure is part of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfSystem - # - # # The TV series to which this episode or season belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfTVSeries - # - # # Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfTrip - # - # # Other co-agents that participated in the action indirectly. e.g. John wrote a book with *Steve*. - # # @return [RDF::Vocabulary::Term] - # attr_reader :participant - # - # # Number of people the reservation should accommodate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partySize - # - # # The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority). - # # @return [RDF::Vocabulary::Term] - # attr_reader :passengerPriorityStatus - # - # # The passenger's sequence number as assigned by the airline. - # # @return [RDF::Vocabulary::Term] - # attr_reader :passengerSequenceNumber - # - # # Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pathophysiology - # - # # A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pattern - # - # # The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n\n* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]\n* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :payload - # - # # Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentAccepted - # - # # The date that payment is due. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentDue - # - # # The date that payment is due. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentDueDate - # - # # The name of the credit card or other method of payment for the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentMethod - # - # # An identifier for the method of payment used (e.g. the last 4 digits of the credit card). - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentMethodId - # - # # The status of payment; whether the invoice has been paid or not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentStatus - # - # # The URL for sending a payment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentUrl - # - # # The individual who draws the primary narrative artwork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :penciler - # - # # The 10th percentile value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentile10 - # - # # The 25th percentile value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentile25 - # - # # The 75th percentile value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentile75 - # - # # The 90th percentile value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentile90 - # - # # The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :performTime - # - # # A performer at the event—for example, a presenter, musician, musical group or actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :performer - # - # # Event that this person is a performer or participant in. - # # @return [RDF::Vocabulary::Term] - # attr_reader :performerIn - # - # # The main performer or performers of the event—for example, a presenter, musician, or actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :performers - # - # # The type of permission granted the person, organization, or audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :permissionType - # - # # Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi). - # # @return [RDF::Vocabulary::Term] - # attr_reader :permissions - # - # # The target audience for this permit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :permitAudience - # - # # Indications regarding the permitted usage of the accommodation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :permittedUsage - # - # # Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :petsAllowed - # - # # Representation of a text [[textValue]] using the specified [[speechToTextMarkup]]. For example the city name of Houston in IPA: /ˈhjuːstən/. - # # @return [RDF::Vocabulary::Term] - # attr_reader :phoneticText - # - # # A photograph of this place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :photo - # - # # Photographs of this place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :photos - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :physicalRequirement - # - # # Specific physiologic benefits associated to the plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :physiologicalBenefits - # - # # Where a taxi will pick up a passenger or a rental car can be picked up. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pickupLocation - # - # # When a taxi will pickup a passenger or a rental car can be picked up. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pickupTime - # - # # Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :playMode - # - # # Player type required—for example, Flash or Silverlight. - # # @return [RDF::Vocabulary::Term] - # attr_reader :playerType - # - # # Number of players on the server. - # # @return [RDF::Vocabulary::Term] - # attr_reader :playersOnline - # - # # A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical. - # # @return [RDF::Vocabulary::Term] - # attr_reader :polygon - # - # # Indicates the populationType common to all members of a [[StatisticalPopulation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationType - # - # # The position of an item in a series or sequence of items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :position - # - # # A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :possibleComplication - # - # # A possible treatment to address this condition, sign or symptom. - # # @return [RDF::Vocabulary::Term] - # attr_reader :possibleTreatment - # - # # The post office box number for PO box addresses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :postOfficeBoxNumber - # - # # A description of the postoperative procedures, care, and/or followups for this device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :postOp - # - # # The postal code. For example, 94043. - # # @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 - # - # # A description of the workup, testing, and other preparations required before implanting this device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preOp - # - # # A pointer from a previous, often discontinued variant of the product to its newer variant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :predecessorOf - # - # # Pregnancy category of this drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pregnancyCategory - # - # # Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pregnancyWarning - # - # # The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :prepTime - # - # # Typical preparation that a patient must undergo before having the procedure performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preparation - # - # # Link to prescribing information for the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prescribingInfo - # - # # Indicates the status of drug prescription eg. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prescriptionStatus - # - # # A link to the ListItem that preceeds the current one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousItem - # - # # Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousStartDate - # - # # The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\n\nUsage guidelines:\n\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a "content=" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols. - # # @return [RDF::Vocabulary::Term] - # attr_reader :price - # - # # This property links to all [[UnitPriceSpecification]] nodes that apply in parallel for the [[CompoundPriceSpecification]] node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceComponent - # - # # Identifies a price component (for example, a line item on an invoice), part of the total price for an offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceComponentType - # - # # The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR". - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceCurrency - # - # # The price range of the business, for example ```$$$```. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceRange - # - # # One or more detailed price specifications, indicating the unit price and delivery or payment charges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceSpecification - # - # # Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceType - # - # # The date after which the price is no longer available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceValidUntil - # - # # Indicates the main image on the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :primaryImageOfPage - # - # # A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :primaryPrevention - # - # # The number of the column in which the NewsArticle appears in the print edition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :printColumn - # - # # The edition of the print product in which the NewsArticle appears. - # # @return [RDF::Vocabulary::Term] - # attr_reader :printEdition - # - # # If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18). - # # @return [RDF::Vocabulary::Term] - # attr_reader :printPage - # - # # If this NewsArticle appears in print, this field indicates the print section in which the article appeared. - # # @return [RDF::Vocabulary::Term] - # attr_reader :printSection - # - # # A description of the procedure involved in setting up, using, and/or installing the device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :procedure - # - # # The type of procedure, for example Surgical, Noninvasive, or Percutaneous. - # # @return [RDF::Vocabulary::Term] - # attr_reader :procedureType - # - # # Estimated processing time for the service using this channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :processingTime - # - # # Processor architecture required to run the application (e.g. IA64). - # # @return [RDF::Vocabulary::Term] - # attr_reader :processorRequirements - # - # # The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :producer - # - # # The tangible thing generated by the service, e.g. a passport, permit, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :produces - # - # # Indicates a textual identifier for a ProductGroup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productGroupID - # - # # The product identifier, such as ISBN. For example: ``` meta itemprop="productID" content="isbn:123-456-789" ```. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productID - # - # # The productReturnDays property indicates the number of days (from purchase) within which relevant product return policy is applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productReturnDays - # - # # Indicates a Web page or service by URL, for product return. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productReturnLink - # - # # The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. "iPhone") or a general category of products or services (e.g. "smartphones"). - # # @return [RDF::Vocabulary::Term] - # attr_reader :productSupported - # - # # The production company or studio responsible for the item e.g. series, video game, episode etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionCompany - # - # # The date of production of the item, e.g. vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionDate - # - # # Proficiency needed for this content; expected values: 'Beginner', 'Expert'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proficiencyLevel - # - # # Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programMembershipUsed - # - # # The program providing the membership. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programName - # - # # Prerequisites for enrolling in the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programPrerequisites - # - # # The type of educational or occupational program. For example, classroom, internship, alternance, etc.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programType - # - # # The computer programming language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programmingLanguage - # - # # Indicates whether API is managed or unmanaged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programmingModel - # - # # A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be (1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3) a URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry). Standards bodies should promote a standard prefix for the identifiers of properties from their standards. - # # @return [RDF::Vocabulary::Term] - # attr_reader :propertyID - # - # # Proprietary name given to the diet plan, typically by its originator or creator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proprietaryName - # - # # The number of grams of protein. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proteinContent - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provider - # - # # Indicates the mobility of a provided service (e.g. 'static', 'dynamic'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :providerMobility - # - # # The BroadcastService offered on this channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :providesBroadcastService - # - # # The service provided by this channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :providesService - # - # # A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicAccess - # - # # Information about public transport closures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicTransportClosuresInfo - # - # # A publication event associated with the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publication - # - # # The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationType - # - # # An agent associated with the publication event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishedBy - # - # # A broadcast service associated with the publication event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishedOn - # - # # The publisher of the creative work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publisher - # - # # The publishing division which published the comic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publisherImprint - # - # # The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]]. While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishingPrinciples - # - # # The date the item e.g. vehicle was purchased by the current owner. - # # @return [RDF::Vocabulary::Term] - # attr_reader :purchaseDate - # - # # Specific qualifications required for this role or Occupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifications - # - # # Guidelines about quarantine rules, e.g. in the context of a pandemic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :quarantineGuidelines - # - # # A sub property of instrument. The query used on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :query - # - # # The task that a player-controlled character, or group of characters may complete in order to gain a reward. - # # @return [RDF::Vocabulary::Term] - # attr_reader :quest - # - # # A sub property of object. A question. - # # @return [RDF::Vocabulary::Term] - # attr_reader :question - # - # # Relates a property to a class that constitutes (one of) the expected type(s) for values of the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rangeIncludes - # - # # The count of total number of ratings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingCount - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingExplanation - # - # # The rating for the content.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingValue - # - # # A person who reads (performs) the audiobook. - # # @return [RDF::Vocabulary::Term] - # attr_reader :readBy - # - # # Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a "hidden" input in an HTML form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :readonlyValue - # - # # A sub property of participant. The real estate agent involved in the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :realEstateAgent - # - # # A sub property of instrument. The recipe/instructions used to perform the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipe - # - # # The category of the recipe—for example, appetizer, entree, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeCategory - # - # # The cuisine of the recipe (for example, French or Ethiopian). - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeCuisine - # - # # A single ingredient used in the recipe, e.g. sugar, flour or garlic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeIngredient - # - # # A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeInstructions - # - # # The quantity produced by the recipe (for example, number of people served, number of servings, etc). - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeYield - # - # # A sub property of participant. The participant who is at the receiving end of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipient - # - # # An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recognizedBy - # - # # If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recognizingAuthority - # - # # Strength of the guideline's recommendation (e.g. 'class I'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :recommendationStrength - # - # # Recommended intake of this supplement for a given population as defined by a specific recommending authority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recommendedIntake - # - # # The label that issued the release. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordLabel - # - # # An audio recording of the work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordedAs - # - # # The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordedAt - # - # # The CreativeWork that captured all or part of this Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordedIn - # - # # The composition this track is a recording of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordingOf - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recourseLoan - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referenceQuantity - # - # # The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencesOrder - # - # # A refundType, from an enumerated list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :refundType - # - # # The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ. - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionDrained - # - # # The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166). - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionsAllowed - # - # # Anatomical systems or structures that relate to the superficial anatomy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedAnatomy - # - # # A medical condition associated with this anatomy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedCondition - # - # # Any other drug related to this one, for example commonly-prescribed alternatives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedDrug - # - # # A link related to this web page, for example to other related web pages. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedLink - # - # # Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedStructure - # - # # A medical therapy related to this anatomy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedTherapy - # - # # The most generic familial relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedTo - # - # # The release date of a product or product model. This can be used to distinguish the exact variant of a product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseDate - # - # # Description of what changed in this version. - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseNotes - # - # # The album this is a release of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseOf - # - # # The place and time the release was issued, expressed as a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :releasedEvent - # - # # The Occupation for the JobPosting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relevantOccupation - # - # # If applicable, a medical specialty in which this entity is relevant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relevantSpecialty - # - # # The number of attendee places for an event that remain unallocated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :remainingAttendeeCapacity - # - # # Whether the terms for payment of interest can be renegotiated during the life of the loan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :renegotiableLoan - # - # # Defines the number of times a recurring [[Event]] will take place - # # @return [RDF::Vocabulary::Term] - # attr_reader :repeatCount - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :repeatFrequency - # - # # Number of times one should repeat the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :repetitions - # - # # A sub property of object. The object that is being replaced. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacee - # - # # A sub property of object. The object that replaces. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacer - # - # # The URL at which a reply may be posted to the specified UserComment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replyToUrl - # - # # The number or other unique designator assigned to a Report by the publishing organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reportNumber - # - # # Indicates whether this image is representative of the content of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :representativeOfPage - # - # # Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredCollateral - # - # # Audiences defined by a person's gender. - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredGender - # - # # Audiences defined by a person's maximum age. - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredMaxAge - # - # # Audiences defined by a person's minimum age. - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredMinAge - # - # # The required quantity of the item(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredQuantity - # - # # Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime). - # # @return [RDF::Vocabulary::Term] - # attr_reader :requirements - # - # # 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'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiresSubscription - # - # # The thing -- flight, event, restaurant,etc. being reserved. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reservationFor - # - # # A unique identifier for the reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reservationId - # - # # The current status of the reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reservationStatus - # - # # A ticket associated with the reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reservedTicket - # - # # Responsibilities associated with this role or Occupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :responsibilities - # - # # How often one should break from the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :restPeriods - # - # # The result produced in the action. e.g. John wrote *a book*. - # # @return [RDF::Vocabulary::Term] - # attr_reader :result - # - # # A sub property of result. The Comment created or sent as a result of this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultComment - # - # # A sub property of result. The review that resulted in the performing of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultReview - # - # # Indicates (via enumerated options) the return fees policy for a MerchantReturnPolicy - # # @return [RDF::Vocabulary::Term] - # attr_reader :returnFees - # - # # A returnPolicyCategory expresses at most one of several enumerated kinds of return. - # # @return [RDF::Vocabulary::Term] - # attr_reader :returnPolicyCategory - # - # # A review of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :review - # - # # This Review or Rating is relevant to this part or facet of the itemReviewed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewAspect - # - # # The actual body of the review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewBody - # - # # The count of total number of reviews. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewCount - # - # # The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewRating - # - # # People or organizations that have reviewed the content on this web page for accuracy and/or completeness. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewedBy - # - # # Review of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviews - # - # # A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :riskFactor - # - # # Specific physiologic risks associated to the diet plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :risks - # - # # A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :roleName - # - # # The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :roofLoad - # - # # The response (yes, no, maybe) to the RSVP. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rsvpResponse - # - # # The vasculature the lymphatic structure runs, or efferents, to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :runsTo - # - # # Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0). - # # @return [RDF::Vocabulary::Term] - # attr_reader :runtime - # - # # Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0). - # # @return [RDF::Vocabulary::Term] - # attr_reader :runtimePlatform - # - # # The RxCUI drug identifier from RXNORM. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rxcui - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :safetyConsideration - # - # # The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) ) used for the main salary information in this job posting or for this employee. - # # @return [RDF::Vocabulary::Term] - # attr_reader :salaryCurrency - # - # # The expected salary upon completing the training. - # # @return [RDF::Vocabulary::Term] - # attr_reader :salaryUponCompletion - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sameAs - # - # # What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampleType - # - # # The number of grams of saturated fat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :saturatedFatContent - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scheduleTimezone - # - # # The date the invoice is scheduled to be paid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scheduledPaymentDate - # - # # The time the object is scheduled to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scheduledTime - # - # # Indicates (by URL or string) a particular version of a schema used in some CreativeWork. For example, a document could declare a schemaVersion using an URL such as http://schema.org/version/2.0/ if precise indication of schema version was required by some application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :schemaVersion - # - # # Information about school closures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :schoolClosuresInfo - # - # # The number of screens in the movie theater. - # # @return [RDF::Vocabulary::Term] - # attr_reader :screenCount - # - # # A link to a screenshot image of the app. - # # @return [RDF::Vocabulary::Term] - # attr_reader :screenshot - # - # # Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] - # # @return [RDF::Vocabulary::Term] - # attr_reader :sdDatePublished - # - # # A license document that applies to this structured data, typically indicated by URL. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sdLicense - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sdPublisher - # - # # A season in a media series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :season - # - # # Position of the season within an ordered group of seasons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasonNumber - # - # # A season in a media series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasons - # - # # The location of the reserved seat (e.g., 27). - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatNumber - # - # # The row location of the reserved seat (e.g., B). - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatRow - # - # # The section location of the reserved seat (e.g. Orchestra). - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatSection - # - # # 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.\n\nTypical unit code(s): C62 for persons - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatingCapacity - # - # # The type/class of the seat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatingType - # - # # A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :secondaryPrevention - # - # # A description of any security clearance requirements of the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :securityClearanceRequirement - # - # # The type of security screening the passenger is subject to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :securityScreening - # - # # A pointer to products or services sought by the organization or person (demand). - # # @return [RDF::Vocabulary::Term] - # attr_reader :seeks - # - # # An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seller - # - # # A sub property of participant. The participant who is at the sending end of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sender - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sensoryRequirement - # - # # The neurological pathway extension that inputs and sends information to the brain or spinal cord. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sensoryUnit - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serialNumber - # - # # A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seriousAdverseOutcome - # - # # Status of a game server. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serverStatus - # - # # The cuisine of the restaurant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servesCuisine - # - # # The geographic area where the service is provided. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceArea - # - # # The audience eligible for this service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceAudience - # - # # The location (e.g. civic structure, local business, etc.) where a person can go to access the service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceLocation - # - # # The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceOperator - # - # # The tangible thing generated by the service, e.g. a passport, permit, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceOutput - # - # # The phone number to use to access the service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servicePhone - # - # # The address for accessing the service by mail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servicePostalAddress - # - # # The number to access the service by text message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceSmsNumber - # - # # The type of service being offered, e.g. veterans' benefits, emergency relief, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceType - # - # # The website to access the service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceUrl - # - # # The serving size, in terms of the number of volume or mass. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingSize - # - # # A CreativeWork such as an image, video, or audio clip shared as part of this posting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sharedContent - # - # # 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 - # - # # A sibling of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :siblings - # - # # A sign detected by the test. - # # @return [RDF::Vocabulary::Term] - # attr_reader :signDetected - # - # # A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :signOrSymptom - # - # # The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :significance - # - # # One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. - # # @return [RDF::Vocabulary::Term] - # attr_reader :significantLink - # - # # The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. - # # @return [RDF::Vocabulary::Term] - # attr_reader :significantLinks - # - # # A standardized size of a product or creative work, often simplifying richer information into a simple textual string, either through referring to named sizes or (in the case of product markup), by adopting conventional simplifications. Use of QuantitativeValue with a unitCode or unitText can add more structure; in other cases, the /width, /height, /depth and /weight properties may be more applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :size - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :skills - # - # # The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sku - # - # # A slogan or motto associated with the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :slogan - # - # # Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. - # # @return [RDF::Vocabulary::Term] - # attr_reader :smokingAllowed - # - # # The number of milligrams of sodium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sodiumContent - # - # # Additional content for a software application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :softwareAddOn - # - # # Software application help. - # # @return [RDF::Vocabulary::Term] - # attr_reader :softwareHelp - # - # # Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime). - # # @return [RDF::Vocabulary::Term] - # attr_reader :softwareRequirements - # - # # Version of the software instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :softwareVersion - # - # # The Organization on whose behalf the creator was working. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceOrganization - # - # # The neurological pathway that originates the neurons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourcedFrom - # - # # The "spatial" property can be used in cases when more specific properties (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spatial - # - # # The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spatialCoverage - # - # # Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech. The *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values: 1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned. 2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the [[cssSelector]] property. 3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property. 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :speakable - # - # # Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :specialCommitments - # - # # The special opening hours of a certain place.\n\nUse this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :specialOpeningHoursSpecification - # - # # One of the domain specialities to which this web page's content applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :specialty - # - # # Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898). - # # @return [RDF::Vocabulary::Term] - # attr_reader :speechToTextMarkup - # - # # 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.\n\nTypical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot\n\n*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.\n* 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :speed - # - # # The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spokenByCharacter - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sponsor - # - # # A type of sport (e.g. Baseball). - # # @return [RDF::Vocabulary::Term] - # attr_reader :sport - # - # # A sub property of location. The sports activity location where this action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportsActivityLocation - # - # # A sub property of location. The sports event where this action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportsEvent - # - # # A sub property of participant. The sports team that participated on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportsTeam - # - # # The person's spouse. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spouse - # - # # The stage of the condition, if applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stage - # - # # The stage represented as a number, e.g. 3. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stageAsNumber - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :starRating - # - # # The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :startDate - # - # # The start time of the clip expressed as the number of seconds from the beginning of the work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startOffset - # - # # 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.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startTime - # - # # The status of the study (enumerated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :status - # - # # The position of the steering wheel or similar device (mostly for cars). - # # @return [RDF::Vocabulary::Term] - # attr_reader :steeringPosition - # - # # A single step item (as HowToStep, text, document, video, etc.) or a HowToSection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :step - # - # # The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stepValue - # - # # A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred). - # # @return [RDF::Vocabulary::Term] - # attr_reader :steps - # - # # Storage requirements (free space required). - # # @return [RDF::Vocabulary::Term] - # attr_reader :storageRequirements - # - # # The street address. For example, 1600 Amphitheatre Pkwy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :streetAddress - # - # # The units of an active ingredient's strength, e.g. mg. - # # @return [RDF::Vocabulary::Term] - # attr_reader :strengthUnit - # - # # The value of an active ingredient's strength, e.g. 325. - # # @return [RDF::Vocabulary::Term] - # attr_reader :strengthValue - # - # # The name given to how bone physically connects to each other. - # # @return [RDF::Vocabulary::Term] - # attr_reader :structuralClass - # - # # A medical study or trial related to this entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :study - # - # # Specifics about the observational study design (enumerated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :studyDesign - # - # # The location in which the study is taking/took place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :studyLocation - # - # # A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study. - # # @return [RDF::Vocabulary::Term] - # attr_reader :studySubject - # - # # This is a StupidProperty! - for testing only - # # @return [RDF::Vocabulary::Term] - # attr_reader :stupidProperty - # - # # An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subEvent - # - # # Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subEvents - # - # # A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subOrganization - # - # # The individual reservations included in the package. Typically a repeated property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subReservation - # - # # The substage, e.g. 'a' for Stage IIIa. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subStageSuffix - # - # # Component (sub-)structure(s) that comprise this anatomical structure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subStructure - # - # # A component test of the panel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subTest - # - # # Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subTrip - # - # # A CreativeWork or Event about this Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectOf - # - # # Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47). - # # @return [RDF::Vocabulary::Term] - # attr_reader :subtitleLanguage - # - # # A pointer from a newer variant of a product to its previous, often discontinued predecessor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :successorOf - # - # # The number of grams of sugar. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sugarContent - # - # # An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suggestedAnswer - # - # # The gender of the person or audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suggestedGender - # - # # Maximal age recommended for viewing content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suggestedMaxAge - # - # # Minimal age recommended for viewing content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suggestedMinAge - # - # # Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suitableForDiet - # - # # An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :superEvent - # - # # Relates a term (i.e. a property, class or enumeration) to one that supersedes it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supersededBy - # - # # A sub-property of instrument. A supply consumed when performing instructions or a direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supply - # - # # The area to which the artery supplies blood. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplyTo - # - # # Supporting data for a SoftwareApplication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supportingData - # - # # A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :surface - # - # # Indicates a target EntryPoint for an Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :target - # - # # A sub property of object. The collection target of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetCollection - # - # # 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 - # - # # Type of app development: phone, Metro style, desktop, XBox, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetPlatform - # - # # Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetPopulation - # - # # Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetProduct - # - # # The URL of a node in an established educational framework. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetUrl - # - # # The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. - # # @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 - # - # # The "temporal" property can be used in cases where more specific properties (e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :temporal - # - # # The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written "2011/2012"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL. Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via "1939/1945". Open-ended date ranges can be written with ".." in place of the end date. For example, "2015-11/.." indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :temporalCoverage - # - # # A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]] - # # @return [RDF::Vocabulary::Term] - # attr_reader :termCode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :termDuration - # - # # Human-readable terms of service documentation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :termsOfService - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :termsPerYear - # - # # The textual content of this CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :text - # - # # Text value being annotated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textValue - # - # # Thumbnail image for an image or video. - # # @return [RDF::Vocabulary::Term] - # attr_reader :thumbnail - # - # # A thumbnail image relevant to the Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :thumbnailUrl - # - # # The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tickerSymbol - # - # # The unique identifier for the ticket. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ticketNumber - # - # # Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ticketToken - # - # # The seat associated with the ticket. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ticketedSeat - # - # # The time of day the program normally runs. For example, "evenings". - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeOfDay - # - # # Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeRequired - # - # # The expected length of time to complete the program if attending full-time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeToComplete - # - # # The type of tissue sample required for the test. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tissueSample - # - # # The title of the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # An [EIDR](https://eidr.org/) (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 - # - # # A sub property of recipient. The recipient who was directly sent the message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :toRecipient - # - # # A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tocContinuation - # - # # Indicates a [[HyperTocEntry]] in a [[HyperToc]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tocEntry - # - # # The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR)\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tongueWeight - # - # # A sub property of instrument. An object used (but not consumed) when performing instructions or a direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tool - # - # # The torque (turning force) of the vehicle's engine.\n\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\n\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :torque - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalJobOpenings - # - # # The total amount due. - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalPaymentDue - # - # # The total price for the reservation or ticket, including applicable taxes, shipping, etc.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalPrice - # - # # The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalTime - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tourBookingPage - # - # # Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :touristType - # - # # A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording. - # # @return [RDF::Vocabulary::Term] - # attr_reader :track - # - # # Shipper tracking number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackingNumber - # - # # Tracking url for the parcel delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackingUrl - # - # # A music recording (track)—usually a single song. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tracks - # - # # The trailer of a movie or tv/radio series, season, episode, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trailer - # - # # The permitted weight of a trailer attached to the vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trailerWeight - # - # # The name of the train (e.g. The Orient Express). - # # @return [RDF::Vocabulary::Term] - # attr_reader :trainName - # - # # The unique identifier for the train. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trainNumber - # - # # The estimated salary earned while in the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trainingSalary - # - # # The number of grams of trans fat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :transFatContent - # - # # If this MediaObject is an AudioObject or VideoObject, the transcript of that object. - # # @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 - # - # # Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :translator - # - # # How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :transmissionMethod - # - # # Information about travel bans, e.g. in the context of a pandemic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :travelBans - # - # # Specifics about the trial design (enumerated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :trialDesign - # - # # The anatomical or organ system that the vein flows into; a larger structure that the vein connects to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tributary - # - # # The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeOfBed - # - # # The product that this structured value is referring to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeOfGood - # - # # The typical expected age range, e.g. '7-9', '11-'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typicalAgeRange - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typicalCreditsPerTerm - # - # # A medical test typically performed given this condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typicalTest - # - # # The person or organization the reservation or ticket is for. - # # @return [RDF::Vocabulary::Term] - # attr_reader :underName - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unitCode - # - # # A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for unitCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unitText - # - # # For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unnamedSourcesPolicy - # - # # The number of grams of unsaturated fat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unsaturatedFatContent - # - # # Date when this media object was uploaded to this site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :uploadDate - # - # # The number of upvotes this question, answer or comment has received from the community. - # # @return [RDF::Vocabulary::Term] - # attr_reader :upvoteCount - # - # # URL of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :url - # - # # An url template (RFC6570) that will be used to construct the target of the execution of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :urlTemplate - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :usageInfo - # - # # A condition the test is used to diagnose. - # # @return [RDF::Vocabulary::Term] - # attr_reader :usedToDiagnose - # - # # The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :userInteractionCount - # - # # Device used to perform the test. - # # @return [RDF::Vocabulary::Term] - # attr_reader :usesDevice - # - # # The standard for interpreting thePlan ID. The preferred is "HIOS". See the Centers for Medicare & Medicaid Services for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :usesHealthPlanIdStandard - # - # # Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :utterances - # - # # The duration of validity of a permit or similar thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validFor - # - # # The date when the item becomes valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validFrom - # - # # The geographic area where a permit or similar thing is valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validIn - # - # # The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validThrough - # - # # The date when the item is no longer valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validUntil - # - # # The value of the quantitative value or property value node.\n\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\n* For [[PropertyValue]], it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :value - # - # # Specifies whether the applicable value-added tax (VAT) is included in the price specification or not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueAddedTaxIncluded - # - # # Specifies the allowed range for number of characters in a literal value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueMaxLength - # - # # Specifies the minimum allowed range for number of characters in a literal value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueMinLength - # - # # Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueName - # - # # Specifies a regular expression for testing literal values according to the HTML spec. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valuePattern - # - # # A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueReference - # - # # Whether the property must be filled in to complete the action. Default is false. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueRequired - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variableMeasured - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variablesMeasured - # - # # A description of the variant cover for the issue, if the issue is a variant printing. For example, "Bryan Hitch Variant Cover" or "2nd Printing Variant". - # # @return [RDF::Vocabulary::Term] - # attr_reader :variantCover - # - # # Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. "color"; terms defined elsewhere can be referenced with their URIs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variesBy - # - # # The Value-added Tax ID of the organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vatID - # - # # A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleConfiguration - # - # # Information about the engine or engines of the vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleEngine - # - # # The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleIdentificationNumber - # - # # The color or color combination of the interior of the vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleInteriorColor - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleInteriorType - # - # # The release date of a vehicle model (often used to differentiate versions of the same make and model). - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleModelDate - # - # # 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.\n\nTypical unit code(s): C62 for persons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleSeatingCapacity - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleSpecialUsage - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleTransmission - # - # # 'vendor' is an earlier term for 'seller'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vendor - # - # # Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verificationFactCheckingPolicy - # - # # The version of the CreativeWork embodied by a specified resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # # An embedded video object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :video - # - # # The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoFormat - # - # # The frame size of the video. - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoFrameSize - # - # # The quality of the video. - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoQuality - # - # # Identifies the volume of publication or multi-part work; for example, "iii" or "2". - # # @return [RDF::Vocabulary::Term] - # attr_reader :volumeNumber - # - # # Any FDA or other warnings about the drug (text or URL). - # # @return [RDF::Vocabulary::Term] - # attr_reader :warning - # - # # The warranty promise(s) included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :warranty - # - # # The warranty promise(s) included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :warrantyPromise - # - # # The scope of the warranty promise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :warrantyScope - # - # # The time when a passenger can check into the flight online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :webCheckinTime - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :webFeed - # - # # The weight of the product or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :weight - # - # # The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :weightTotal - # - # # The distance between the centers of the front and rear wheels.\n\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet - # # @return [RDF::Vocabulary::Term] - # attr_reader :wheelbase - # - # # The width of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :width - # - # # A sub property of participant. The winner of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :winner - # - # # The number of words in the text of the Article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wordCount - # - # # Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workExample - # - # # A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent). - # # @return [RDF::Vocabulary::Term] - # attr_reader :workFeatured - # - # # The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm). - # # @return [RDF::Vocabulary::Term] - # attr_reader :workHours - # - # # A contact location for a person's place of work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workLocation - # - # # A work performed in some event, for example a play performed in a TheaterEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workPerformed - # - # # The movie presented during this event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workPresented - # - # # A work that is a translation of the content of this work. e.g. 西遊記 has an English workTranslation “Journey to the West”,a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workTranslation - # - # # Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workload - # - # # Organizations that the person works for. - # # @return [RDF::Vocabulary::Term] - # attr_reader :worksFor - # - # # The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :worstRating - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :xpath - # - # # The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). - # # @return [RDF::Vocabulary::Term] - # attr_reader :yearBuilt - # - # # The size of the business in annual revenue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yearlyRevenue - # - # # The age of the business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yearsInOperation - # - # # The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yield - # - # # Abdomen clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Abdomen - # - # # Represents the activation fee part of the total price for an offered product, for example a cellphone contract - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActivationFee - # - # # An in-progress action (e.g, while watching the movie, or driving to a location). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActiveActionStatus - # - # # Active, but not recruiting new participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActiveNotRecruiting - # - # # Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AerobicActivity - # - # # AlbumRelease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AlbumRelease - # - # # All-wheel Drive is a transmission layout where the engine drives all four wheels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AllWheelDriveConfiguration - # - # # Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnaerobicActivity - # - # # A specific branch of medical science that pertains to study of anesthetics and their application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Anesthesia - # - # # Appearance assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Appearance - # - # # Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudiobookFormat - # - # # AuthenticMediaObject: An unaltered image that is presented in an accurate way. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AuthenticContent - # - # # 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]]". - # # @return [RDF::Vocabulary::Term] - # attr_reader :AuthoritativeLegalValue - # - # # A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ayurvedic - # - # # Physical activity that is engaged to help maintain posture and balance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Balance - # - # # BasicIncome: this is a benefit for basic income. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BasicIncome - # - # # Content about the benefits and advantages of usage or utilization of topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BenefitsHealthAspect - # - # # BroadcastRelease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastRelease - # - # # BusinessSupport: this is a benefit for supporting businesses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessSupport - # - # # CDFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CDFormat - # - # # X-ray computed tomography imaging. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CT - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cardiovascular - # - # # Cardiovascular system assessment withclinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CardiovascularExam - # - # # A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CaseSeries - # - # # CassetteFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CassetteFormat - # - # # Information about the causes and main actions that gave rise to the topic. - # # @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 - # - # # Represents the cleaning fee part of the total price for an offered product, for example a vacation rental - # # @return [RDF::Vocabulary::Term] - # attr_reader :CleaningFee - # - # # Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Clinician - # - # # Play mode: CoOp. Co-operative games, where you play on the same team with friends. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CoOp - # - # # Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CohortStudy - # - # # Permission to add comments to the document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommentPermission - # - # # A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommunityHealth - # - # # CompilationAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CompilationAlbum - # - # # Completed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Completed - # - # # An action that has already taken place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CompletedActionStatus - # - # # Content about contagion mechanisms and contagiousness information over the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContagiousnessHealthAspect - # - # # Studies carried out on pre-existing data (usually from 'snapshot' surveys), such as that collected by the Census Bureau. Sometimes called Prevalence Studies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CrossSectional - # - # # DJMixAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DJMixAlbum - # - # # DVDFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DVDFormat - # - # # Indicates that the item is damaged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DamagedCondition - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DefinitiveLegalValue - # - # # DemoAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DemoAlbum - # - # # A branch of medicine that is involved in the dental care. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dentistry - # - # # Something relating to or practicing dermatology - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dermatologic - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dermatology - # - # # A diet appropriate for people with diabetes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiabeticDiet - # - # # A medical device used for diagnostic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Diagnostic - # - # # Dietetic and nutrition as a medical speciality. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DietNutrition - # - # # DigitalAudioTapeFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalAudioTapeFormat - # - # # DigitalFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalFormat - # - # # DisabilitySupport: this is a benefit for disability support. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DisabilitySupport - # - # # Indicates that the item has been discontinued. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Discontinued - # - # # Represents the distance fee (e.g., price per km or mile) part of the total price for an offered product, for example a car rental - # # @return [RDF::Vocabulary::Term] - # attr_reader :DistanceFee - # - # # A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DoubleBlindedTrial - # - # # Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments - # # @return [RDF::Vocabulary::Term] - # attr_reader :Downpayment - # - # # Indicates the usage of the vehicle for driving school. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrivingSchoolVehicleUsage - # - # # Book format: Ebook. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EBook - # - # # EPRelease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EPRelease - # - # # Represents EU Energy Efficiency Class A as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryA - # - # # Represents EU Energy Efficiency Class A+ as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryA1Plus - # - # # Represents EU Energy Efficiency Class A++ as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryA2Plus - # - # # Represents EU Energy Efficiency Class A+++ as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryA3Plus - # - # # Represents EU Energy Efficiency Class B as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryB - # - # # Represents EU Energy Efficiency Class C as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryC - # - # # Represents EU Energy Efficiency Class D as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryD - # - # # Represents EU Energy Efficiency Class E as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryE - # - # # Represents EU Energy Efficiency Class F as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryF - # - # # Represents EU Energy Efficiency Class G as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryG - # - # # Ear function assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ear - # - # # A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Emergency - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Endocrine - # - # # Represents EnergyStar certification - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnergyStarCertified - # - # # Enrolling participants by invitation only. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnrollingByInvitation - # - # # The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventCancelled - # - # # Indicates that the event was changed to allow online participation. See [[eventAttendanceMode]] for specifics of whether it is now fully or partially online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventMovedOnline - # - # # The event has been postponed and no new date has been set. The event's previousStartDate should be set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventPostponed - # - # # The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventRescheduled - # - # # The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventScheduled - # - # # Data derived from multiple randomized clinical trials or meta-analyses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EvidenceLevelA - # - # # Data derived from a single randomized trial, or nonrandomized studies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EvidenceLevelB - # - # # Only consensus opinion of experts, case studies, or standard-of-care. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EvidenceLevelC - # - # # A ExchangeRefund ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExchangeRefund - # - # # Eye or ophtalmological function assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Eye - # - # # A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters). - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryA - # - # # A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryB - # - # # A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryC - # - # # A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryD - # - # # A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryX - # - # # A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAnotEvaluated - # - # # An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FailedActionStatus - # - # # The boolean value false. - # # @return [RDF::Vocabulary::Term] - # attr_reader :False - # - # # The female gender. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Female - # - # # Physical activity that is engaged in to improve joint and muscle flexibility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Flexibility - # - # # Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FourWheelDriveConfiguration - # - # # The day of the week between Thursday and Saturday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Friday - # - # # Front-wheel drive is a transmission layout where the engine drives the front wheels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FrontWheelDriveConfiguration - # - # # A FullRefund ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :FullRefund - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gastroenterologic - # - # # A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Genetic - # - # # Genitourinary system function assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Genitourinary - # - # # A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Geriatric - # - # # A diet exclusive of gluten. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GlutenFreeDiet - # - # # Book format: GraphicNovel. May represent a bound collection of ComicIssue instances. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GraphicNovel - # - # # The airline boards by groups based on check-in time, priority, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GroupBoardingPolicy - # - # # A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gynecologic - # - # # A diet conforming to Islamic dietary practices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HalalDiet - # - # # Book format: Hardcover. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hardcover - # - # # Head assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Head - # - # # HealthCare: this is a benefit for health care. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthCare - # - # # Uses devices to support users with hearing impairments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HearingImpairedSupported - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hematologic - # - # # A diet conforming to Hindu dietary practices, in particular, beef-free. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HinduDiet - # - # # A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Homeopathic - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowOrWhereHealthAspect - # - # # Indicates that a legislation is in force. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InForce - # - # # Indicates that the item is in stock. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InStock - # - # # Indicates that the item is available only at physical locations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InStoreOnly - # - # # Something in medical science that pertains to infectious diseases i.e caused by bacterial, viral, fungal or parasitic infections. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Infectious - # - # # Represents the installment pricing component of the total price for an offered product - # # @return [RDF::Vocabulary::Term] - # attr_reader :Installment - # - # # An international trial. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InternationalTrial - # - # # Represents the invoice price of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InvoicePrice - # - # # An ItemList ordered with lower values listed first. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemListOrderAscending - # - # # An ItemList ordered with higher values listed first. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemListOrderDescending - # - # # An ItemList ordered with no explicit order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemListUnordered - # - # # A diet conforming to Jewish dietary practices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :KosherDiet - # - # # A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research - # # @return [RDF::Vocabulary::Term] - # attr_reader :LaboratoryScience - # - # # LaserDiscFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LaserDiscFormat - # - # # The steering position is on the left side of the vehicle (viewed from the main direction of driving). - # # @return [RDF::Vocabulary::Term] - # attr_reader :LeftHandDriving - # - # # Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LeisureTimeActivity - # - # # Indicates that the item has limited availability. - # # @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 - # - # # Represents the list price (the price a product is actually advertised for) of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ListPrice - # - # # LiveAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LiveAlbum - # - # # Information about coping or life related to the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LivingWithHealthAspect - # - # # A DeliveryMethod in which an item is made available via locker. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LockerDelivery - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Longitudinal - # - # # A diet focused on reduced calorie intake. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LowCalorieDiet - # - # # A diet focused on reduced fat and cholesterol intake. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LowFatDiet - # - # # A diet appropriate for people with lactose intolerance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LowLactoseDiet - # - # # A diet focused on reduced sodium intake. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LowSaltDiet - # - # # Lung and respiratory system clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lung - # - # # Magnetic resonance imaging. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MRI - # - # # Represents the manufacturer suggested retail price ("MSRP") of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MSRP - # - # # The male gender. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Male - # - # # Related topics may be treated by a Topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MayTreatHealthAspect - # - # # Medical researchers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalResearcher - # - # # MerchantReturnFiniteReturnWindow: there is a finite window for product returns. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnFiniteReturnWindow - # - # # MerchantReturnNotPermitted: product returns are not permitted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnNotPermitted - # - # # MerchantReturnUnlimitedWindow: there is an unlimited window for product returns. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnUnlimitedWindow - # - # # MerchantReturnUnspecified: a product return policy is not specified here. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnUnspecified - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Midwifery - # - # # Represents the minimum advertised price ("MAP") (as dictated by the manufacturer) of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MinimumAdvertisedPrice - # - # # Content about common misconceptions and myths that are related to a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MisconceptionsHealthAspect - # - # # MissingContext: ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :MissingContext - # - # # MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MixedEventAttendanceMode - # - # # MixtapeAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MixtapeAlbum - # - # # The day of the week between Sunday and Tuesday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Monday - # - # # A trial that takes place at multiple centers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MultiCenterTrial - # - # # Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MultiPlayer - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Musculoskeletal - # - # # Musculoskeletal system clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusculoskeletalExam - # - # # Neck assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Neck - # - # # Neurological system clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Neuro - # - # # A specific branch of medical science that studies the nerves and nervous system and its respective disease states. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Neurologic - # - # # Indicates that the item is new. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NewCondition - # - # # A type of medical procedure that involves noninvasive techniques. - # # @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 - # - # # Indicates that a legislation is currently not in force. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotInForce - # - # # Not yet recruiting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotYetRecruiting - # - # # A health profession of a person formally educated and trained in the care of the sick or infirm person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Nursing - # - # # The character of a medical substance, typically a medicine, of being available over the counter or not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OTC - # - # # An observational study design. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Observational - # - # # A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Obstetric - # - # # Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OccupationalActivity - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfficialLegalValue - # - # # OfflineEventAttendanceMode - an event that is primarily conducted offline. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfflineEventAttendanceMode - # - # # Game server status: OfflinePermanently. Server is offline and not available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfflinePermanently - # - # # Game server status: OfflineTemporarily. Server is offline now but it can be online soon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfflineTemporarily - # - # # A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnSitePickup - # - # # A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Oncologic - # - # # OneTimePayments: this is a benefit for one-time payments for individuals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OneTimePayments - # - # # Game server status: Online. Server is available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Online - # - # # OnlineEventAttendanceMode - an event that is primarily conducted online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineEventAttendanceMode - # - # # Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineFull - # - # # Indicates that the item is available only online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineOnly - # - # # A trial design in which the researcher knows the full details of the treatment, and so does the patient. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OpenTrial - # - # # The science or practice of testing visual acuity and prescribing corrective lenses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Optometric - # - # # OrderStatus representing cancellation of an order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderCancelled - # - # # OrderStatus representing successful delivery of an order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderDelivered - # - # # OrderStatus representing that an order is in transit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderInTransit - # - # # OrderStatus representing that payment is due on an order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderPaymentDue - # - # # OrderStatus representing availability of an order for pickup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderPickupAvailable - # - # # OrderStatus representing that there is a problem with the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderProblem - # - # # OrderStatus representing that an order is being processed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderProcessing - # - # # OrderStatus representing that an order has been returned. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderReturned - # - # # OriginalShippingFees ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :OriginalShippingFees - # - # # A system of medicine focused on promoting the body's innate ability to heal itself. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Osteopathic - # - # # A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Otolaryngologic - # - # # Indicates that the item is out of stock. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OutOfStock - # - # # Overview of the content. Contains a summarized view of the topic with the most relevant information for an introduction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OverviewHealthAspect - # - # # Positron emission tomography imaging. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PET - # - # # PaidLeave: this is a benefit for paid leave. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaidLeave - # - # # Book format: Paperback. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Paperback - # - # # A private parcel service as the delivery mode available for a certain offer.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#DHL\n* http://purl.org/goodrelations/v1#FederalExpress\n* http://purl.org/goodrelations/v1#UPS - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParcelService - # - # # ParentalSupport: this is a benefit for parental support. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParentalSupport - # - # # A parking map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParkingMap - # - # # Indicates that parts of the legislation are in force, and parts are not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PartiallyInForce - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pathology - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PatientExperienceHealthAspect - # - # # An automatic payment system is in place and will be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentAutomaticallyApplied - # - # # The payment has been received and processed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentComplete - # - # # The payee received the payment, but it was declined for some reason. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentDeclined - # - # # The payment is due, but still within an acceptable time to be received. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentDue - # - # # The payment is due and considered late. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentPastDue - # - # # A specific branch of medical science that specializes in the care of infants, children and adolescents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pediatric - # - # # A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PercutaneousProcedure - # - # # The practice or art and science of preparing and dispensing drugs and medicines. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PharmacySpecialty - # - # # The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Physiotherapy - # - # # A placebo-controlled trial design. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlaceboControlledTrial - # - # # A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlasticSurgery - # - # # Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Podiatric - # - # # A description of an action that is supported. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PotentialActionStatus - # - # # Indicates that the item is available for pre-order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreOrder - # - # # Indicates that the item is available for ordering and delivery before general availability. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreSale - # - # # Available by prescription only. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrescriptionOnly - # - # # Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreventionHealthAspect - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrimaryCare - # - # # ProductReturnFiniteReturnWindow: there is a finite window for product returns. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnFiniteReturnWindow - # - # # ProductReturnNotPermitted: product returns are not permitted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnNotPermitted - # - # # ProductReturnUnlimitedWindow: there is an unlimited window for product returns. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnUnlimitedWindow - # - # # ProductReturnUnspecified: a product return policy is not specified here. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnUnspecified - # - # # Typical progression and happenings of life course of the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrognosisHealthAspect - # - # # A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Psychiatric - # - # # Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicHealth - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicHolidays - # - # # A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pulmonary - # - # # Radiography is an imaging technique that uses electromagnetic radiation other than visible light, especially X-rays, to view the internal structure of a non-uniformly composed and opaque object such as the human body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Radiography - # - # # A randomized trial design. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RandomizedTrial - # - # # Permission to read or view the document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReadPermission - # - # # Real-wheel drive is a transmission layout where the engine drives the rear wheels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RearWheelDriveConfiguration - # - # # Recruiting participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Recruiting - # - # # Indicates that the item is refurbished. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RefurbishedCondition - # - # # A registry-based study design. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Registry - # - # # The drug's cost represents the maximum reimbursement paid by an insurer for the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReimbursementCap - # - # # Other prominent or relevant topics tied to the main topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RelatedTopicsHealthAspect - # - # # RemixAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RemixAlbum - # - # # A specific branch of medical science that pertains to the study of the kidneys and its respective disease states. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Renal - # - # # Indicates the usage of the vehicle as a rental car. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RentalVehicleUsage - # - # # The status for a previously confirmed reservation that is now cancelled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationCancelled - # - # # The status of a confirmed reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationConfirmed - # - # # The status of a reservation on hold pending an update like credit card number or flight changes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationHold - # - # # The status of a reservation when a request has been sent, but not confirmed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationPending - # - # # The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease). - # # @return [RDF::Vocabulary::Term] - # attr_reader :RespiratoryTherapy - # - # # RestockingFees ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :RestockingFees - # - # # Results are available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResultsAvailable - # - # # Results are not available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResultsNotAvailable - # - # # The drug's cost represents the retail cost of the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Retail - # - # # ReturnShippingFees ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReturnShippingFees - # - # # A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rheumatologic - # - # # The steering position is on the right side of the vehicle (viewed from the main direction of driving). - # # @return [RDF::Vocabulary::Term] - # attr_reader :RightHandDriving - # - # # Information about the risk factors and possible complications that may follow a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RisksOrComplicationsHealthAspect - # - # # The invitee may or may not attend. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpResponseMaybe - # - # # The invitee will not attend. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpResponseNo - # - # # The invitee will attend. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpResponseYes - # - # # Represents the suggested retail price ("SRP") of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SRP - # - # # Represents a sale price (usually active for a limited period) of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SalePrice - # - # # The day of the week between Friday and Sunday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Saturday - # - # # Content about how to screen or further filter a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScreeningHealthAspect - # - # # A seating map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SeatingMap - # - # # Information about questions that may be asked, when to see a professional, measures before seeing a doctor or content about the first consultation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SeeDoctorHealthAspect - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SelfCareHealthAspect - # - # # Side effects that can be observed from the usage of the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SideEffectsHealthAspect - # - # # A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SingleBlindedTrial - # - # # A trial that takes place at a single center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SingleCenterTrial - # - # # Play mode: SinglePlayer. Which is played by a lone player. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SinglePlayer - # - # # SingleRelease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SingleRelease - # - # # Skin assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Skin - # - # # Indicates that the item has sold out. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoldOut - # - # # SoundtrackAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoundtrackAlbum - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpeechPathology - # - # # SpokenWordAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpokenWordAlbum - # - # # Stages that can be observed from a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StagesHealthAspect - # - # # A StoreCreditRefund ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :StoreCreditRefund - # - # # Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StrengthTraining - # - # # StudioAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StudioAlbum - # - # # Represents the subscription pricing component of the total price for an offered product - # # @return [RDF::Vocabulary::Term] - # attr_reader :Subscription - # - # # The day of the week between Saturday and Monday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sunday - # - # # A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Surgical - # - # # Suspended. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Suspended - # - # # Symptoms or related symptoms of a Topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SymptomsHealthAspect - # - # # Indicates the usage of the car as a taxi. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TaxiVehicleUsage - # - # # Terminated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Terminated - # - # # A medical device used for therapeutic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Therapeutic - # - # # Throat assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Throat - # - # # The day of the week between Wednesday and Friday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thursday - # - # # The associated telephone number is toll free. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TollFree - # - # # A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Toxicologic - # - # # A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TraditionalChinese - # - # # A transit map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TransitMap - # - # # Treatments or related therapies for a Topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TreatmentsHealthAspect - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TripleBlindedTrial - # - # # The boolean value true. - # # @return [RDF::Vocabulary::Term] - # attr_reader :True - # - # # The day of the week between Monday and Wednesday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tuesday - # - # # Categorization and other types related to a topic. - # # @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 - # - # # UnemploymentSupport: this is a benefit for unemployment support. - # # @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 - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Urologic - # - # # Content about how, when, frequency and dosage of a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsageOrScheduleHealthAspect - # - # # Indicates that the item is used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsedCondition - # - # # A diet exclusive of all animal products. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VeganDiet - # - # # A diet exclusive of animal meat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VegetarianDiet - # - # # A venue map (e.g. for malls, auditoriums, museums, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :VenueMap - # - # # VinylFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VinylFormat - # - # # The day of the week between Tuesday and Thursday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Wednesday - # - # # The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WesternConventional - # - # # The drug's cost represents the wholesale acquisition cost of the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Wholesale - # - # # Withdrawn. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Withdrawn - # - # # Permission to write or edit the document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WritePermission - # - # # X-ray imaging. - # # @return [RDF::Vocabulary::Term] - # attr_reader :XRay - # - # # The airline boards by zones of the plane. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ZoneBoardingPolicy - # - # end SCHEMA = Class.new(RDF::StrictVocabulary("http://schema.org/")) do # Class definitions term :"3DModel", comment: "A 3D model represents some kind of 3D content, which may have [[encoding]]s in one or more [[MediaObject]]s. Many 3D formats are available (e.g. see [Wikipedia](https://en.wikipedia.org/wiki/Category:3D_graphics_file_formats)); specific encoding formats can be represented using the [[encodingFormat]] property applied to the relevant [[MediaObject]]. For the\ncase 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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2140".freeze, label: "3DModel".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 + subClassOf: "http://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AMRadioChannel, comment: "A radio channel that uses AM.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "AMRadioChannel".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - subClassOf: "schema:RadioChannel".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/RadioChannel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :APIReference, comment: "Reference documentation for application programming interfaces (APIs).".freeze, label: "APIReference".freeze, - subClassOf: "schema:TechArticle".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TechArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AboutPage, comment: "Web page type: About page.".freeze, label: "AboutPage".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AcceptAction, comment: "The act of committing to/adopting an object.\\n\\nRelated actions:\\n\\n* [[RejectAction]]: The antonym of AcceptAction.".freeze, label: "AcceptAction".freeze, - subClassOf: "schema:AllocateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AllocateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Accommodation, comment: "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AccountingService, comment: "Accountancy business.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).\n ".freeze, label: "AccountingService".freeze, - subClassOf: "schema:FinancialService".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FinancialService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AchieveAction, comment: "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.".freeze, label: "AchieveAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Action, 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.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](http://schema.org/docs/actions.html).".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ActionAccessSpecification, comment: "A set of requirements that a must be fulfilled in order to perform an Action.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "ActionAccessSpecification".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ActionStatusType, comment: "The status of an Action.".freeze, label: "ActionStatusType".freeze, - subClassOf: "schema:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ActivateAction, comment: "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).".freeze, label: "ActivateAction".freeze, - subClassOf: "schema:ControlAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ControlAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AddAction, comment: "The act of editing by adding an object to a collection.".freeze, label: "AddAction".freeze, - subClassOf: "schema:UpdateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UpdateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AdministrativeArea, comment: "A geographical region, typically under the jurisdiction of a particular government.".freeze, label: "AdministrativeArea".freeze, - subClassOf: "schema:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AdultEntertainment, comment: "An adult entertainment establishment.".freeze, label: "AdultEntertainment".freeze, - subClassOf: "schema:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AdvertiserContentArticle, comment: "An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "AdvertiserContentArticle".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 + subClassOf: "http://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AggregateOffer, comment: "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\\n\\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined.".freeze, label: "AggregateOffer".freeze, - subClassOf: "schema:Offer".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Offer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AggregateRating, comment: "The average rating based on multiple ratings or reviews.".freeze, label: "AggregateRating".freeze, - subClassOf: "schema:Rating".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Rating".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AgreeAction, comment: "The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants.".freeze, label: "AgreeAction".freeze, - subClassOf: "schema:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Airline, comment: "An organization that provides flights for passengers.".freeze, label: "Airline".freeze, - subClassOf: "schema:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Airport, comment: "An airport.".freeze, label: "Airport".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AlignmentObject, comment: "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould 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, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, label: "AlignmentObject".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AllocateAction, comment: "The act of organizing tasks/objects/events by associating resources to it.".freeze, label: "AllocateAction".freeze, - subClassOf: "schema:OrganizeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/OrganizeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AmpStory, comment: "A creative work with a visual storytelling format intended to be viewed online, particularly on mobile devices.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2646".freeze, label: "AmpStory".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2646".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AmusementPark, comment: "An amusement park.".freeze, label: "AmusementPark".freeze, - subClassOf: "schema:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "AnalysisNewsArticle".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 + subClassOf: "http://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AnatomicalStructure, comment: "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "AnatomicalStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AnatomicalSystem, comment: "An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "AnatomicalSystem".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AnimalShelter, comment: "Animal shelter.".freeze, label: "AnimalShelter".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Answer, comment: "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Comment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ApartmentComplex, comment: "Residence type: Apartment complex.".freeze, label: "ApartmentComplex".freeze, - subClassOf: "schema:Residence".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Residence".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AppendAction, comment: "The act of inserting at the end if an ordered collection.".freeze, label: "AppendAction".freeze, - subClassOf: "schema:InsertAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InsertAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ApplyAction, comment: "The act of registering to an organization/service without the guarantee to receive it.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.".freeze, label: "ApplyAction".freeze, - subClassOf: "schema:OrganizeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/OrganizeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ApprovedIndication, comment: "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "ApprovedIndication".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalIndication".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalIndication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Aquarium, comment: "Aquarium.".freeze, label: "Aquarium".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "ArchiveComponent".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "ArchiveOrganization".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 + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ArriveAction, comment: "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.".freeze, label: "ArriveAction".freeze, - subClassOf: "schema:MoveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MoveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ArtGallery, comment: "An art gallery.".freeze, label: "ArtGallery".freeze, - subClassOf: "schema:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Artery, comment: "A type of blood vessel that specifically carries blood away from the heart.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/51114001".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Artery".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:Vessel".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Vessel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Article, 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.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AskAction, comment: "The act of posing a question / favor to someone.\\n\\nRelated actions:\\n\\n* [[ReplyAction]]: Appears generally as a response to AskAction.".freeze, label: "AskAction".freeze, - subClassOf: "schema:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "AskPublicNewsArticle".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 + subClassOf: "http://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AssessAction, comment: "The act of forming one's opinion, reaction or sentiment.".freeze, label: "AssessAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AssignAction, comment: "The act of allocating an action/event/task to some destination (someone or something).".freeze, label: "AssignAction".freeze, - subClassOf: "schema:AllocateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AllocateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Attorney, comment: "Professional service: Attorney. \\n\\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous.".freeze, label: "Attorney".freeze, - subClassOf: "schema:LegalService".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LegalService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Audience, comment: "Intended audience for an item, i.e. the group for whom the item was created.".freeze, label: "Audience".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioObject, comment: "An audio file.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Audiobook, comment: "An audiobook.".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "Audiobook".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - subClassOf: ["schema:AudioObject".freeze, "schema:Book".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/AudioObject".freeze, "http://schema.org/Book".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AuthorizeAction, comment: "The act of granting permission to an object.".freeze, label: "AuthorizeAction".freeze, - subClassOf: "schema:AllocateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AllocateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoBodyShop, comment: "Auto body shop.".freeze, label: "AutoBodyShop".freeze, - subClassOf: "schema:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoDealer, comment: "An car dealership.".freeze, label: "AutoDealer".freeze, - subClassOf: "schema:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoPartsStore, comment: "An auto parts store.".freeze, label: "AutoPartsStore".freeze, - subClassOf: ["schema:AutomotiveBusiness".freeze, "schema:Store".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/AutomotiveBusiness".freeze, "http://schema.org/Store".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoRental, comment: "A car rental business.".freeze, label: "AutoRental".freeze, - subClassOf: "schema:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoRepair, comment: "Car repair business.".freeze, label: "AutoRepair".freeze, - subClassOf: "schema:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoWash, comment: "A car wash business.".freeze, label: "AutoWash".freeze, - subClassOf: "schema:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutomatedTeller, comment: "ATM/cash machine.".freeze, label: "AutomatedTeller".freeze, - subClassOf: "schema:FinancialService".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FinancialService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutomotiveBusiness, comment: "Car repair, sales, or parts.".freeze, label: "AutomotiveBusiness".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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](https://en.wikipedia.org/wiki/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "BackgroundNewsArticle".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 + subClassOf: "http://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Bacteria, comment: "Pathogenic bacteria that cause bacterial infection.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Bacteria".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:InfectiousAgentClass".freeze + type: "http://schema.org/InfectiousAgentClass".freeze term :Bakery, comment: "A bakery.".freeze, label: "Bakery".freeze, - subClassOf: "schema:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BankOrCreditUnion, comment: "Bank or credit union.".freeze, label: "BankOrCreditUnion".freeze, - subClassOf: "schema:FinancialService".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FinancialService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BarOrPub, comment: "A bar or pub.".freeze, label: "BarOrPub".freeze, - subClassOf: "schema:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Barcode, comment: "An image of a visual machine-readable code such as a barcode or QR code.".freeze, label: "Barcode".freeze, - subClassOf: "schema:ImageObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ImageObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Beach, comment: "Beach.".freeze, label: "Beach".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BeautySalon, comment: "Beauty salon.".freeze, label: "BeautySalon".freeze, - subClassOf: "schema:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BedAndBreakfast, comment: "Bed and breakfast.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, label: "BedAndBreakfast".freeze, - subClassOf: "schema:LodgingBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BedType, comment: "A type of bed. This is used for indicating the bed or beds available in an accommodation.".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1262".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze], label: "BedType".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 + subClassOf: "http://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BefriendAction, comment: "The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, BefriendAction implies that the connection is reciprocal.".freeze, label: "BefriendAction".freeze, - subClassOf: "schema:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BikeStore, comment: "A bike store.".freeze, label: "BikeStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Blog, comment: "A blog.".freeze, label: "Blog".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BlogPosting, comment: "A blog post.".freeze, label: "BlogPosting".freeze, - subClassOf: "schema:SocialMediaPosting".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SocialMediaPosting".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BloodTest, comment: "A medical test performed on a sample of a patient's blood.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "BloodTest".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalTest".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BoardingPolicyType, comment: "A type of boarding policy used by an airline.".freeze, label: "BoardingPolicyType".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BoatReservation, comment: "A reservation for boat travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "BoatReservation".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BoatTerminal, comment: "A terminal for boats, ships, and other water vessels.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "BoatTerminal".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BoatTrip, comment: "A trip on a commercial ferry line.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "BoatTrip".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - subClassOf: "schema:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BodyOfWater, comment: "A body of water, such as a sea, ocean, or lake.".freeze, label: "BodyOfWater".freeze, - subClassOf: "schema:Landform".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Landform".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Bone, comment: "Rigid connective tissue that comprises up the skeletal structure of the human body.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Bone".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Book, comment: "A book.".freeze, label: "Book".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BookFormatType, comment: "The publication format of the book.".freeze, label: "BookFormatType".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BookSeries, comment: "A series of books. Included books can be indicated with the hasPart property.".freeze, label: "BookSeries".freeze, - subClassOf: "schema:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BookStore, comment: "A bookstore.".freeze, label: "BookStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BookmarkAction, comment: "An agent bookmarks/flags/labels/tags/marks an object.".freeze, label: "BookmarkAction".freeze, - subClassOf: "schema:OrganizeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/OrganizeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Boolean, comment: "Boolean: True or False.".freeze, label: "Boolean".freeze, - type: ["rdfs:Class".freeze, "schema:DataType".freeze] + type: ["http://schema.org/DataType".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :BorrowAction, comment: "The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\\n\\nRelated actions:\\n\\n* [[LendAction]]: Reciprocal of BorrowAction.".freeze, label: "BorrowAction".freeze, - subClassOf: "schema:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BowlingAlley, comment: "A bowling alley.".freeze, label: "BowlingAlley".freeze, - subClassOf: "schema:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BrainStructure, comment: "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "BrainStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BreadcrumbList, comment: "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\\n\\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.\n ".freeze, label: "BreadcrumbList".freeze, - subClassOf: "schema:ItemList".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ItemList".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Brewery, comment: "Brewery.".freeze, label: "Brewery".freeze, - subClassOf: "schema:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Bridge, comment: "A bridge.".freeze, label: "Bridge".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BroadcastChannel, comment: "A unique instance of a BroadcastService on a CableOrSatelliteService lineup.".freeze, label: "BroadcastChannel".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BroadcastEvent, comment: "An over the air or online broadcast event.".freeze, label: "BroadcastEvent".freeze, - subClassOf: "schema:PublicationEvent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PublicationEvent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BroadcastFrequencySpecification, comment: "The frequency in MHz and the modulation used for a particular BroadcastService.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "BroadcastFrequencySpecification".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BroadcastService, comment: "A delivery service through which content is provided via broadcast over the air or online.".freeze, label: "BroadcastService".freeze, - subClassOf: "schema:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "BrokerageAccount".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 + subClassOf: "http://schema.org/InvestmentOrDeposit".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BuddhistTemple, comment: "A Buddhist temple.".freeze, label: "BuddhistTemple".freeze, - subClassOf: "schema:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Vehicle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusReservation, comment: "A reservation for bus travel. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "BusReservation".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusStation, comment: "A bus station.".freeze, label: "BusStation".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusStop, comment: "A bus stop.".freeze, label: "BusStop".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusTrip, comment: "A trip on a commercial bus line.".freeze, label: "BusTrip".freeze, - subClassOf: "schema:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessAudience, comment: "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.".freeze, label: "BusinessAudience".freeze, - subClassOf: "schema:Audience".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Audience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessEntityType, comment: "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Business\\n* http://purl.org/goodrelations/v1#Enduser\\n* http://purl.org/goodrelations/v1#PublicInstitution\\n* http://purl.org/goodrelations/v1#Reseller\n\t ".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessEvent, comment: "Event type: Business event.".freeze, label: "BusinessEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessFunction, comment: "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ConstructionInstallation\\n* http://purl.org/goodrelations/v1#Dispose\\n* http://purl.org/goodrelations/v1#LeaseOut\\n* http://purl.org/goodrelations/v1#Maintain\\n* http://purl.org/goodrelations/v1#ProvideService\\n* http://purl.org/goodrelations/v1#Repair\\n* http://purl.org/goodrelations/v1#Sell\\n* http://purl.org/goodrelations/v1#Buy\n ".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BuyAction, comment: "The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.".freeze, label: "BuyAction".freeze, - subClassOf: "schema:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CDCPMDRecord, comment: "A CDCPMDRecord is a data structure representing a record in a CDC tabular data format\n used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative\n definitions used as the source here.\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "CDCPMDRecord".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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CableOrSatelliteService, comment: "A service which provides access to media programming like TV or radio. Access may be via cable or satellite.".freeze, label: "CableOrSatelliteService".freeze, - subClassOf: "schema:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CafeOrCoffeeShop, comment: "A cafe or coffee shop.".freeze, label: "CafeOrCoffeeShop".freeze, - subClassOf: "schema:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Campground, comment: "A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \\n\\n\nIn 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](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n".freeze, + "http://schema.org/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 + subClassOf: ["http://schema.org/CivicStructure".freeze, "http://schema.org/LodgingBusiness".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CampingPitch, comment: "A [[CampingPitch]] is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or [[Campground]].\\n\\n\nIn British English a campsite, or campground, 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.\n(Source: Wikipedia see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Canal, comment: "A canal, like the Panama Canal.".freeze, label: "Canal".freeze, - subClassOf: "schema:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CancelAction, comment: "The act of asserting that a future event/action is no longer going to happen.\\n\\nRelated actions:\\n\\n* [[ConfirmAction]]: The antonym of CancelAction.".freeze, label: "CancelAction".freeze, - subClassOf: "schema:PlanAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlanAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Car, comment: "A car is a wheeled, self-powered motor vehicle used for transportation.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Vehicle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/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:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Casino, comment: "A casino.".freeze, label: "Casino".freeze, - subClassOf: "schema:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CategoryCode, comment: "A Category Code.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "CategoryCode".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 + subClassOf: "http://schema.org/DefinedTerm".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CategoryCodeSet, comment: "A set of Category Code values.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "CategoryCodeSet".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 + subClassOf: "http://schema.org/DefinedTermSet".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CatholicChurch, comment: "A Catholic church.".freeze, label: "CatholicChurch".freeze, - subClassOf: "schema:Church".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Church".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Cemetery, comment: "A graveyard.".freeze, label: "Cemetery".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Chapter, comment: "One of the sections into which a book is divided. A chapter usually has a section number or a name.".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "Chapter".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CheckAction, comment: "An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state.".freeze, label: "CheckAction".freeze, - subClassOf: "schema:FindAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FindAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CheckInAction, comment: "The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\\n\\nRelated actions:\\n\\n* [[CheckOutAction]]: The antonym of CheckInAction.\\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence.".freeze, label: "CheckInAction".freeze, - subClassOf: "schema:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CheckOutAction, comment: "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check in) or place (e.g. hotel).\\n\\nRelated actions:\\n\\n* [[CheckInAction]]: The antonym of CheckOutAction.\\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.".freeze, label: "CheckOutAction".freeze, - subClassOf: "schema:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CheckoutPage, comment: "Web page type: Checkout page.".freeze, label: "CheckoutPage".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ChildCare, comment: "A Childcare center.".freeze, label: "ChildCare".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ChildrensEvent, comment: "Event type: Children's event.".freeze, label: "ChildrensEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ChooseAction, comment: "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.".freeze, label: "ChooseAction".freeze, - subClassOf: "schema:AssessAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AssessAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Church, comment: "A church.".freeze, label: "Church".freeze, - subClassOf: "schema:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :City, comment: "A city or town.".freeze, label: "City".freeze, - subClassOf: "schema:AdministrativeArea".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CityHall, comment: "A city hall.".freeze, label: "CityHall".freeze, - subClassOf: "schema:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CivicStructure, comment: "A public structure, such as a town hall or concert hall.".freeze, label: "CivicStructure".freeze, - subClassOf: "schema:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Claim, comment: "A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.\n\n Beyond [[ClaimReview]], the Claim type can be associated with related creative works - for example a [[ScholaryArticle]] or [[Question]] might be [[about]] some [[Claim]].\n\n At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration.\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, label: "Claim".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ClaimReview, comment: "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, label: "ClaimReview".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, - subClassOf: "schema:Review".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Class, comment: "A class, also often called a 'Type'; equivalent to rdfs:Class.".freeze, - equivalentClass: "rdfs:Class".freeze, + equivalentClass: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + "http://schema.org/isPartOf": "http://meta.schema.org".freeze, label: "Class".freeze, - "schema:isPartOf": "http://meta.schema.org".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Clip, comment: "A short TV or radio program or a segment/part of a program.".freeze, label: "Clip".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ClothingStore, comment: "A clothing store.".freeze, label: "ClothingStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Code, comment: "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.".freeze, + "http://schema.org/supersededBy": "http://schema.org/SoftwareSourceCode".freeze, label: "Code".freeze, - "schema:supersededBy": "schema:SoftwareSourceCode".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Collection, comment: "A collection of items e.g. creative works or products.".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "Collection".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CollectionPage, comment: "Web page type: Collection page.".freeze, label: "CollectionPage".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CollegeOrUniversity, comment: "A college, university, or other third-level educational institution.".freeze, label: "CollegeOrUniversity".freeze, - subClassOf: "schema:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComedyClub, comment: "A comedy club.".freeze, label: "ComedyClub".freeze, - subClassOf: "schema:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComedyEvent, comment: "Event type: Comedy event.".freeze, label: "ComedyEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComicCoverArt, comment: "The artwork on the cover of a comic.".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "ComicCoverArt".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - subClassOf: ["schema:ComicStory".freeze, "schema:CoverArt".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/ComicStory".freeze, "http://schema.org/CoverArt".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComicIssue, comment: "Individual comic issues are serially published as\n \tpart of a larger series. For the sake of consistency, even one-shot issues\n \tbelong to a series comprised of a single issue. All comic issues can be\n \tuniquely identified by: the combination of the name and volume number of the\n \tseries to which the issue belongs; the issue number; and the variant\n \tdescription of the issue (if any).".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "ComicIssue".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - subClassOf: "schema:PublicationIssue".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PublicationIssue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComicSeries, comment: "A sequential publication of comic stories under a\n \tunifying title, for example \"The Amazing Spider-Man\" or \"Groo the\n \tWanderer\".".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "ComicSeries".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - subClassOf: "schema:Periodical".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Periodical".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComicStory, comment: "The term \"story\" is any indivisible, re-printable\n \tunit of a comic, including the interior stories, covers, and backmatter. Most\n \tcomics have at least two stories: a cover (ComicCoverArt) and an interior story.".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "ComicStory".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Comment, comment: "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks.".freeze, label: "Comment".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CommentAction, comment: "The act of generating a comment about a subject.".freeze, label: "CommentAction".freeze, - subClassOf: "schema:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CommunicateAction, comment: "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.".freeze, label: "CommunicateAction".freeze, - subClassOf: "schema:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CompleteDataFeed, comment: "A [[CompleteDataFeed]] is a [[DataFeed]] whose standard representation includes content for every item currently in the feed.\n\nThis is the equivalent of Atom's element as defined in Feed Paging and Archiving [RFC 5005](https://tools.ietf.org/html/rfc5005), 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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1397".freeze, label: "CompleteDataFeed".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 + subClassOf: "http://schema.org/DataFeed".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComputerLanguage, comment: "This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [[Language]] type.".freeze, label: "ComputerLanguage".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComputerStore, comment: "A computer store.".freeze, label: "ComputerStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ConfirmAction, comment: "The act of notifying someone that a future event/action is going to happen as expected.\\n\\nRelated actions:\\n\\n* [[CancelAction]]: The antonym of ConfirmAction.".freeze, label: "ConfirmAction".freeze, - subClassOf: "schema:InformAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InformAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Consortium, comment: "A Consortium is a membership [[Organization]] whose members are typically Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1559".freeze, label: "Consortium".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 + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ConsumeAction, comment: "The act of ingesting information/resources/food.".freeze, label: "ConsumeAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContactPage, comment: "Web page type: Contact page.".freeze, label: "ContactPage".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContactPoint, comment: "A contact point—for example, a Customer Complaints department.".freeze, label: "ContactPoint".freeze, - subClassOf: "schema:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContactPointOption, comment: "Enumerated options related to a ContactPoint.".freeze, label: "ContactPointOption".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Continent, comment: "One of the continents (for example, Europe or Africa).".freeze, label: "Continent".freeze, - subClassOf: "schema:Landform".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Landform".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ControlAction, comment: "An agent controls a device or application.".freeze, label: "ControlAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ConvenienceStore, comment: "A convenience store.".freeze, label: "ConvenienceStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Conversation, comment: "One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties.".freeze, label: "Conversation".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CookAction, comment: "The act of producing/preparing food.".freeze, label: "CookAction".freeze, - subClassOf: "schema:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Corporation, comment: "Organization: A business corporation.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CorrectionComment, comment: "A [[comment]] that corrects [[CreativeWork]].".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1950".freeze, label: "CorrectionComment".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 + subClassOf: "http://schema.org/Comment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Country, comment: "A country.".freeze, label: "Country".freeze, - subClassOf: "schema:AdministrativeArea".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Course, comment: "A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.".freeze, label: "Course".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:LearningResource".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CourseInstance, comment: "An instance of a [[Course]] which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.".freeze, label: "CourseInstance".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Courthouse, comment: "A courthouse.".freeze, label: "Courthouse".freeze, - subClassOf: "schema:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CoverArt, comment: "The artwork on the outer surface of a CreativeWork.".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "CoverArt".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - subClassOf: "schema:VisualArtwork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/VisualArtwork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CovidTestingFacility, comment: "A CovidTestingFacility is a [[MedicalClinic]] where testing for the COVID-19 Coronavirus\n disease is available. If the facility is being made available from an established [[Pharmacy]], [[Hotel]], or other\n non-medical organization, multiple types can be listed. This makes it easier to re-use existing schema.org information\n about that place e.g. contact info, address, opening hours. Note that in an emergency, such information may not always be reliable.\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "CovidTestingFacility".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 + subClassOf: "http://schema.org/MedicalClinic".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreateAction, comment: "The act of deliberately creating/producing/generating/building a result out of the agent.".freeze, label: "CreateAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreativeWork, comment: "The most generic kind of creative work, including books, movies, photographs, software programs, etc.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreativeWorkSeason, comment: "A media season e.g. tv, radio, video game etc.".freeze, label: "CreativeWorkSeason".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreativeWorkSeries, comment: "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\\n\\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\\n\\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate.\n\t ".freeze, label: "CreativeWorkSeries".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:Series".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Series".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreditCard, comment: "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#AmericanExpress\\n* http://purl.org/goodrelations/v1#DinersClub\\n* http://purl.org/goodrelations/v1#Discover\\n* http://purl.org/goodrelations/v1#JCB\\n* http://purl.org/goodrelations/v1#MasterCard\\n* http://purl.org/goodrelations/v1#VISA\n ".freeze, + "http://schema.org/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 + subClassOf: ["http://schema.org/LoanOrCredit".freeze, "http://schema.org/PaymentCard".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Crematorium, comment: "A crematorium.".freeze, label: "Crematorium".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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. [[CriticReview]]s 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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, label: "CriticReview".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 + subClassOf: "http://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CssSelectorType, comment: "Text representing a CSS selector.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, label: "CssSelectorType".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 + subClassOf: "http://schema.org/Text".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CurrencyConversionService, comment: "A service to convert funds from one currency to another currency.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DDxElement, comment: "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DDxElement".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DanceEvent, comment: "Event type: A social dance.".freeze, label: "DanceEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DanceGroup, comment: "A dance group—for example, the Alvin Ailey Dance Theater or Riverdance.".freeze, label: "DanceGroup".freeze, - subClassOf: "schema:PerformingGroup".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PerformingGroup".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataCatalog, comment: "A collection of datasets.".freeze, - equivalentClass: "dcat:Catalog".freeze, + equivalentClass: "http://www.w3.org/ns/dcat#Catalog".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, label: "DataCatalog".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataDownload, comment: "A dataset in downloadable form.".freeze, - equivalentClass: "dcat:Distribution".freeze, + equivalentClass: "http://www.w3.org/ns/dcat#Distribution".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, label: "DataDownload".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, - subClassOf: "schema:MediaObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataFeed, comment: "A single feed providing structured information about one or more entities or topics.".freeze, label: "DataFeed".freeze, - subClassOf: "schema:Dataset".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Dataset".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataFeedItem, comment: "A single item within a larger data feed.".freeze, label: "DataFeedItem".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataType, comment: "The basic data types such as Integers, Strings, etc.".freeze, label: "DataType".freeze, - subClassOf: "rdfs:Class".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Dataset, comment: "A body of structured information describing some topic(s) of interest.".freeze, - equivalentClass: ["dcat:Dataset".freeze, "dcmitype:Dataset".freeze, "void:Dataset".freeze], + equivalentClass: ["http://purl.org/dc/dcmitype/Dataset".freeze, "http://rdfs.org/ns/void#Dataset".freeze, "http://www.w3.org/ns/dcat#Dataset".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, label: "Dataset".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Date, comment: "A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).".freeze, label: "Date".freeze, - type: ["rdfs:Class".freeze, "schema:DataType".freeze] + type: ["http://schema.org/DataType".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :DateTime, comment: "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).".freeze, label: "DateTime".freeze, - type: ["rdfs:Class".freeze, "schema:DataType".freeze] + type: ["http://schema.org/DataType".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :DatedMoneySpecification, comment: "A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time. __Note:__ This type has been superseded by [[MonetaryAmount]] use of that type is recommended".freeze, + "http://schema.org/supersededBy": "http://schema.org/MonetaryAmount".freeze, label: "DatedMoneySpecification".freeze, - "schema:supersededBy": "schema:MonetaryAmount".freeze, - subClassOf: "schema:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DayOfWeek, comment: "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nOriginally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) 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.\n ".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DaySpa, comment: "A day spa.".freeze, label: "DaySpa".freeze, - subClassOf: "schema:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeactivateAction, comment: "The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight).".freeze, label: "DeactivateAction".freeze, - subClassOf: "schema:ControlAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ControlAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DefenceEstablishment, comment: "A defence establishment, such as an army or navy base.".freeze, label: "DefenceEstablishment".freeze, - subClassOf: "schema:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DefinedRegion, 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.\n\nExamples: a delivery destination when shopping. Region where regional pricing is configured.\n\nRequirement 1:\nCountry: US\nStates: \"NY\", \"CA\"\n\nRequirement 2:\nCountry: US\nPostalCode Set: { [94000-94585], [97000, 97999], [13000, 13599]}\n{ [12345, 12345], [78945, 78945], }\nRegion = state, canton, prefecture, autonomous community...\n".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "DefinedRegion".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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "DefinedTerm".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "DefinedTermSet".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeleteAction, comment: "The act of editing a recipient by removing one of its objects.".freeze, label: "DeleteAction".freeze, - subClassOf: "schema:UpdateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UpdateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeliveryChargeSpecification, comment: "The price for the delivery of an offer using a particular delivery method.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeliveryEvent, comment: "An event involving the delivery of an item.".freeze, label: "DeliveryEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeliveryMethod, comment: "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\\n* http://purl.org/goodrelations/v1#DeliveryModeMail\\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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 [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]].".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "DeliveryTimeSettings".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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Dentist, comment: "A dentist.".freeze, label: "Dentist".freeze, - subClassOf: ["schema:LocalBusiness".freeze, "schema:MedicalBusiness".freeze, "schema:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/LocalBusiness".freeze, "http://schema.org/MedicalBusiness".freeze, "http://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DepartAction, comment: "The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.".freeze, label: "DepartAction".freeze, - subClassOf: "schema:MoveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MoveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DepartmentStore, comment: "A department store.".freeze, label: "DepartmentStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DepositAccount, comment: "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.".freeze, + "http://schema.org/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 + subClassOf: ["http://schema.org/BankAccount".freeze, "http://schema.org/InvestmentOrDeposit".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DiagnosticLab, comment: "A medical laboratory that offers on-site or off-site diagnostic services.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DiagnosticLab".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DiagnosticProcedure, comment: "A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DiagnosticProcedure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Diet, comment: "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Diet".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:LifestyleModification".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/LifestyleModification".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DietarySupplement, comment: "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DietarySupplement".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:Substance".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Substance".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DigitalDocument, comment: "An electronic file or document.".freeze, label: "DigitalDocument".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DigitalDocumentPermission, comment: "A permission for a particular person or group to access a particular file.".freeze, label: "DigitalDocumentPermission".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DigitalDocumentPermissionType, comment: "A type of permission which can be granted for accessing a digital document.".freeze, label: "DigitalDocumentPermissionType".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DisagreeAction, comment: "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.".freeze, label: "DisagreeAction".freeze, - subClassOf: "schema:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DiscoverAction, comment: "The act of discovering/finding an object.".freeze, label: "DiscoverAction".freeze, - subClassOf: "schema:FindAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FindAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DiscussionForumPosting, comment: "A posting to a discussion forum.".freeze, label: "DiscussionForumPosting".freeze, - subClassOf: "schema:SocialMediaPosting".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SocialMediaPosting".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DislikeAction, comment: "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.".freeze, label: "DislikeAction".freeze, - subClassOf: "schema:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Distance, comment: "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.".freeze, label: "Distance".freeze, - subClassOf: "schema:Quantity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Quantity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Distillery, comment: "A distillery.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/743".freeze, label: "Distillery".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/743".freeze, - subClassOf: "schema:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DonateAction, comment: "The act of providing goods, services, or money without compensation, often for philanthropic reasons.".freeze, label: "DonateAction".freeze, - subClassOf: "schema:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DoseSchedule, comment: "A specific dosing schedule for a drug or supplement.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DoseSchedule".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DownloadAction, comment: "The act of downloading an object.".freeze, label: "DownloadAction".freeze, - subClassOf: "schema:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrawAction, comment: "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.".freeze, label: "DrawAction".freeze, - subClassOf: "schema:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Drawing, comment: "A picture or diagram made with a pencil, pen, or crayon rather than paint.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "Drawing".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrinkAction, comment: "The act of swallowing liquids.".freeze, label: "DrinkAction".freeze, - subClassOf: "schema:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DriveWheelConfigurationValue, comment: "A value indicating which roadwheels will receive torque.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Drug, comment: "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge make a clear difference between them.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/410942007".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Drug".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:Substance".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Substance".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugClass, comment: "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DrugClass".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugCost, comment: "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DrugCost".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugCostCategory, comment: "Enumerated categories of medical drug costs.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DrugCostCategory".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugLegalStatus, comment: "The legal availability status of a medical drug.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DrugLegalStatus".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugPregnancyCategory, comment: "Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DrugPregnancyCategory".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugPrescriptionStatus, comment: "Indicates whether this drug is available by prescription or over-the-counter.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DrugPrescriptionStatus".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugStrength, comment: "A specific strength in which a medical drug is available in a specific country.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DrugStrength".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DryCleaningOrLaundry, comment: "A dry-cleaning business.".freeze, label: "DryCleaningOrLaundry".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Duration, comment: "Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)).".freeze, label: "Duration".freeze, - subClassOf: "schema:Quantity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Quantity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EUEnergyEfficiencyEnumeration, comment: "Enumerates the EU energy efficiency classes A-G as well as A+, A++, and A+++ as defined in EU directive 2017/1369".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - subClassOf: "schema:EnergyEfficiencyEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EnergyEfficiencyEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EatAction, comment: "The act of swallowing solid objects.".freeze, label: "EatAction".freeze, - subClassOf: "schema:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EducationEvent, comment: "Event type: Education event.".freeze, label: "EducationEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EducationalAudience, comment: "An EducationalAudience.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Audience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "EducationalOccupationalCredential".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "EducationalOccupationalProgram".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EducationalOrganization, comment: "An educational organization.".freeze, label: "EducationalOrganization".freeze, - subClassOf: ["schema:CivicStructure".freeze, "schema:Organization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CivicStructure".freeze, "http://schema.org/Organization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Electrician, comment: "An electrician.".freeze, label: "Electrician".freeze, - subClassOf: "schema:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ElectronicsStore, comment: "An electronics store.".freeze, label: "ElectronicsStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ElementarySchool, comment: "An elementary school.".freeze, label: "ElementarySchool".freeze, - subClassOf: "schema:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmailMessage, comment: "An email message.".freeze, label: "EmailMessage".freeze, - subClassOf: "schema:Message".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Message".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Embassy, comment: "An embassy.".freeze, label: "Embassy".freeze, - subClassOf: "schema:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmergencyService, comment: "An emergency service, such as a fire station or ER.".freeze, label: "EmergencyService".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmployeeRole, comment: "A subclass of OrganizationRole used to describe employee relationships.".freeze, label: "EmployeeRole".freeze, - subClassOf: "schema:OrganizationRole".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/OrganizationRole".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmployerAggregateRating, comment: "An aggregate rating of an Organization related to its role as an employer.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, label: "EmployerAggregateRating".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, - subClassOf: "schema:AggregateRating".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AggregateRating".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, label: "EmployerReview".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 + subClassOf: "http://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmploymentAgency, comment: "An employment agency.".freeze, label: "EmploymentAgency".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EndorseAction, comment: "An agent approves/certifies/likes/supports/sanction an object.".freeze, label: "EndorseAction".freeze, - subClassOf: "schema:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EndorsementRating, comment: "An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a \"critic's pick\" blog, a\n\"Like\" or \"+1\" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by\nsome [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]].\n\nAn [[EndorsementRating]] may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive,\nendorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive.\n".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1293".freeze, label: "EndorsementRating".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1293".freeze, - subClassOf: "schema:Rating".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Rating".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Energy, comment: "Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.".freeze, label: "Energy".freeze, - subClassOf: "schema:Quantity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Quantity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EnergyConsumptionDetails, comment: "EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EnergyConsumptionDetails".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EnergyEfficiencyEnumeration, comment: "Enumerates energy efficiency levels (also known as \"classes\" or \"ratings\") and certifications that are part of several international energy efficiency standards.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EnergyEfficiencyEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EnergyStarEnergyEfficiencyEnumeration, comment: "Used to indicate whether a product is EnergyStar certified".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EnergyStarEnergyEfficiencyEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - subClassOf: "schema:EnergyEfficiencyEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EnergyEfficiencyEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EntertainmentBusiness, comment: "A business providing entertainment.".freeze, label: "EntertainmentBusiness".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EntryPoint, comment: "An entry point, within some Web-based protocol.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Enumeration, comment: "Lists or enumerations—for example, a list of cuisines or music genres, etc.".freeze, label: "Enumeration".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Episode, comment: "A media episode (e.g. TV, radio, video game) which can be part of a series or season.".freeze, label: "Episode".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Event, comment: "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects.".freeze, - equivalentClass: "dcmitype:Event".freeze, + equivalentClass: "http://purl.org/dc/dcmitype/Event".freeze, label: "Event".freeze, - subClassOf: "schema:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "EventAttendanceModeEnumeration".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EventReservation, comment: "A reservation for an event like a concert, sporting event, or lecture.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "EventReservation".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EventSeries, comment: "A series of [[Event]]s. Included events can relate with the series using the [[superEvent]] property.\n\nAn EventSeries is a collection of events that share some unifying characteristic. For example, \"The Olympic Games\" is a series, which\nis repeated regularly. The \"2012 London Olympics\" can be presented both as an [[Event]] in the series \"Olympic Games\", and as an\n[[EventSeries]] that included a number of sporting competitions as Events.\n\nThe nature of the association between the events in an [[EventSeries]] can vary, but typical examples could\ninclude a thematic event series (e.g. topical meetups or classes), or a series of regular events that share a location, attendee group and/or organizers.\n\nEventSeries has been defined as a kind of Event to make it easy for publishers to use it in an Event context without\nworrying about which kinds of series are really event-like enough to call an Event. In general an EventSeries\nmay seem more Event-like when the period of time is compact and when aspects such as location are fixed, but\nit may also sometimes prove useful to describe a longer-term series as an Event.\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/447".freeze, label: "EventSeries".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 + subClassOf: ["http://schema.org/Event".freeze, "http://schema.org/Series".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EventStatusType, comment: "EventStatusType is an enumeration type whose instances represent several states that an Event may be in.".freeze, label: "EventStatusType".freeze, - subClassOf: "schema:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EventVenue, comment: "An event venue.".freeze, label: "EventVenue".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExchangeRateSpecification, comment: "A structured value representing exchange rate.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "ExchangeRateSpecification".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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExerciseAction, comment: "The act of participating in exertive activity for the purposes of improving health and fitness.".freeze, label: "ExerciseAction".freeze, - subClassOf: "schema:PlayAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlayAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExerciseGym, comment: "A gym.".freeze, label: "ExerciseGym".freeze, - subClassOf: "schema:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExercisePlan, comment: "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "ExercisePlan".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:PhysicalActivity".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/PhysicalActivity".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExhibitionEvent, comment: "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...".freeze, label: "ExhibitionEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FAQPage, comment: "A [[FAQPage]] is a [[WebPage]] presenting one or more \"[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)\" (see also [[QAPage]]).".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1723".freeze, label: "FAQPage".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1723".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FMRadioChannel, comment: "A radio channel that uses FM.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "FMRadioChannel".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - subClassOf: "schema:RadioChannel".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/RadioChannel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FastFoodRestaurant, comment: "A fast-food restaurant.".freeze, label: "FastFoodRestaurant".freeze, - subClassOf: "schema:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Festival, comment: "Event type: Festival.".freeze, label: "Festival".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FilmAction, comment: "The act of capturing sound and moving images on film, video, or digitally.".freeze, label: "FilmAction".freeze, - subClassOf: "schema:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FinancialService, comment: "Financial services business.".freeze, label: "FinancialService".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FindAction, comment: "The act of finding an object.\\n\\nRelated actions:\\n\\n* [[SearchAction]]: FindAction is generally lead by a SearchAction, but not necessarily.".freeze, label: "FindAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FireStation, comment: "A fire station. With firemen.".freeze, label: "FireStation".freeze, - subClassOf: ["schema:CivicStructure".freeze, "schema:EmergencyService".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CivicStructure".freeze, "http://schema.org/EmergencyService".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Flight, comment: "An airline flight.".freeze, label: "Flight".freeze, - subClassOf: "schema:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FlightReservation, comment: "A reservation for air travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "FlightReservation".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Float, comment: "Data type: Floating number.".freeze, label: "Float".freeze, - subClassOf: "schema:Number".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Number".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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](https://en.wikipedia.org/wiki/Floor_plan)) can be indicated using [[image]]. ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "FloorPlan".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Florist, comment: "A florist.".freeze, label: "Florist".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FollowAction, comment: "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\\n\\nRelated actions:\\n\\n* [[BefriendAction]]: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.\\n* [[SubscribeAction]]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\\n* [[TrackAction]]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it).".freeze, label: "FollowAction".freeze, - subClassOf: "schema:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FoodEstablishment, comment: "A food-related business.".freeze, label: "FoodEstablishment".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FoodEstablishmentReservation, comment: "A reservation to dine at a food-related business.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.".freeze, label: "FoodEstablishmentReservation".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FoodEvent, comment: "Event type: Food event.".freeze, label: "FoodEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FoodService, comment: "A food service, like breakfast, lunch, or dinner.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FundingAgency, comment: "A FundingAgency is an organization that implements one or more [[FundingScheme]]s and manages\n the granting process (via [[Grant]]s, typically [[MonetaryGrant]]s).\n A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc.\n \nExamples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation...\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "FundingAgency".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schema:Project".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Project".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FundingScheme, comment: "A FundingScheme combines organizational, project and policy aspects of grant-based funding\n that sets guidelines, principles and mechanisms to support other kinds of projects and activities.\n 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 - [[FundingAgency]]s such as ERC, REA, ...".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "FundingScheme".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schema:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Fungus, comment: "Pathogenic fungus.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Fungus".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:InfectiousAgentClass".freeze + type: "http://schema.org/InfectiousAgentClass".freeze term :FurnitureStore, comment: "A furniture store.".freeze, label: "FurnitureStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Game, comment: "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.".freeze, label: "Game".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GamePlayMode, comment: "Indicates whether this game is multi-player, co-op or single-player.".freeze, label: "GamePlayMode".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GameServer, comment: "Server that provides game interaction in a multiplayer game.".freeze, label: "GameServer".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GameServerStatus, comment: "Status of a game server.".freeze, label: "GameServerStatus".freeze, - subClassOf: "schema:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GardenStore, comment: "A garden store.".freeze, label: "GardenStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GasStation, comment: "A gas station.".freeze, label: "GasStation".freeze, - subClassOf: "schema:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GatedResidenceCommunity, comment: "Residence type: Gated community.".freeze, label: "GatedResidenceCommunity".freeze, - subClassOf: "schema:Residence".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Residence".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GenderType, comment: "An enumeration of genders.".freeze, label: "GenderType".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeneralContractor, comment: "A general contractor.".freeze, label: "GeneralContractor".freeze, - subClassOf: "schema:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeoCircle, comment: "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.\n ".freeze, label: "GeoCircle".freeze, - subClassOf: "schema:GeoShape".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/GeoShape".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeoCoordinates, comment: "The geographic coordinates of a place or event.".freeze, label: "GeoCoordinates".freeze, - subClassOf: "schema:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeospatialGeometry, comment: "(Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1375".freeze, label: "GeospatialGeometry".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GiveAction, comment: "The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\\n\\nRelated actions:\\n\\n* [[TakeAction]]: Reciprocal of GiveAction.\\n* [[SendAction]]: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you).".freeze, label: "GiveAction".freeze, - subClassOf: "schema:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GolfCourse, comment: "A golf course.".freeze, label: "GolfCourse".freeze, - subClassOf: "schema:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "GovernmentBenefitsType".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentBuilding, comment: "A government building.".freeze, label: "GovernmentBuilding".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentOffice, comment: "A government office—for example, an IRS or DMV office.".freeze, label: "GovernmentOffice".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentOrganization, comment: "A governmental organization or agency.".freeze, label: "GovernmentOrganization".freeze, - subClassOf: "schema:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentPermit, comment: "A permit issued by a government agency.".freeze, label: "GovernmentPermit".freeze, - subClassOf: "schema:Permit".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Permit".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentService, comment: "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.".freeze, label: "GovernmentService".freeze, - subClassOf: "schema:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Grant, comment: "A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]],\n sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space).\n\nGrants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. 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.\n\nThe amount of a [[Grant]] is represented using [[amount]] as a [[MonetaryAmount]].\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "Grant".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GroceryStore, comment: "A grocery store.".freeze, label: "GroceryStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, label: "Guide".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HVACBusiness, comment: "A business that provide Heating, Ventilation and Air Conditioning services.".freeze, label: "HVACBusiness".freeze, - subClassOf: "schema:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Hackathon, comment: "A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2526".freeze, label: "Hackathon".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 + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HairSalon, comment: "A hair salon.".freeze, label: "HairSalon".freeze, - subClassOf: "schema:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HardwareStore, comment: "A hardware store.".freeze, label: "HardwareStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthAndBeautyBusiness, comment: "Health and beauty.".freeze, label: "HealthAndBeautyBusiness".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthAspectEnumeration, comment: "HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using [[hasHealthAspect]] and [[HealthTopicContent]].".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "HealthAspectEnumeration".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthClub, comment: "A health club.".freeze, label: "HealthClub".freeze, - subClassOf: ["schema:HealthAndBeautyBusiness".freeze, "schema:SportsActivityLocation".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/HealthAndBeautyBusiness".freeze, "http://schema.org/SportsActivityLocation".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthInsurancePlan, comment: "A US-style health insurance plan, including PPOs, EPOs, and HMOs. ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthInsurancePlan".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthPlanCostSharingSpecification, comment: "A description of costs to the patient under a given network or formulary.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthPlanCostSharingSpecification".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthPlanFormulary, comment: "For a given health insurance plan, the specification for costs and coverage of prescription drugs. ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthPlanFormulary".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthPlanNetwork, comment: "A US-style health insurance plan network. ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthPlanNetwork".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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.\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "HealthTopicContent".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 + subClassOf: "http://schema.org/WebContent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HighSchool, comment: "A high school.".freeze, label: "HighSchool".freeze, - subClassOf: "schema:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HinduTemple, comment: "A Hindu temple.".freeze, label: "HinduTemple".freeze, - subClassOf: "schema:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HobbyShop, comment: "A store that sells materials useful or necessary for various hobbies.".freeze, label: "HobbyShop".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HomeAndConstructionBusiness, comment: "A construction business.\\n\\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).".freeze, label: "HomeAndConstructionBusiness".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HomeGoodsStore, comment: "A home goods store.".freeze, label: "HomeGoodsStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Hospital, comment: "A hospital.".freeze, label: "Hospital".freeze, - subClassOf: ["schema:CivicStructure".freeze, "schema:EmergencyService".freeze, "schema:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CivicStructure".freeze, "http://schema.org/EmergencyService".freeze, "http://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Hostel, comment: "A hostel - cheap accommodation, often in shared dormitories.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, label: "Hostel".freeze, - subClassOf: "schema:LodgingBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Hotel, 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).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HotelRoom, comment: "A hotel room is a single room in a hotel.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Room".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HousePainter, comment: "A house painting service.".freeze, label: "HousePainter".freeze, - subClassOf: "schema:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowTo, comment: "Instructions that explain how to achieve a result by performing a sequence of steps.".freeze, label: "HowTo".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToDirection, comment: "A direction indicating a single action to do in the instructions for how to achieve a result.".freeze, label: "HowToDirection".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:ListItem".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/ListItem".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToItem, comment: "An item used as either a tool or supply when performing the instructions for how to to achieve a result.".freeze, label: "HowToItem".freeze, - subClassOf: "schema:ListItem".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ListItem".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToSection, comment: "A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).".freeze, label: "HowToSection".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:ItemList".freeze, "schema:ListItem".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/ItemList".freeze, "http://schema.org/ListItem".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToStep, comment: "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.".freeze, label: "HowToStep".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:ItemList".freeze, "schema:ListItem".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/ItemList".freeze, "http://schema.org/ListItem".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToSupply, comment: "A supply consumed when performing the instructions for how to achieve a result.".freeze, label: "HowToSupply".freeze, - subClassOf: "schema:HowToItem".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HowToItem".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToTip, comment: "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).".freeze, label: "HowToTip".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:ListItem".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/ListItem".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToTool, comment: "A tool used (but not consumed) when performing instructions for how to achieve a result.".freeze, label: "HowToTool".freeze, - subClassOf: "schema:HowToItem".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HowToItem".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HyperToc, comment: "A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "HyperToc".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HyperTocEntry, comment: "A HyperToEntry is an item within a [[HyperToc]], which represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. The media object itself is indicated using [[associatedMedia]]. Each section of interest within that content can be described with a [[HyperTocEntry]], with associated [[startOffset]] and [[endOffset]]. When several entries are all from the same file, [[associatedMedia]] is used on the overarching [[HyperTocEntry]]; if the content has been split into multiple files, they can be referenced using [[associatedMedia]] on each [[HyperTocEntry]].".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "HyperTocEntry".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IceCreamShop, comment: "An ice cream shop.".freeze, label: "IceCreamShop".freeze, - subClassOf: "schema:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IgnoreAction, comment: "The act of intentionally disregarding the object. An agent ignores an object.".freeze, label: "IgnoreAction".freeze, - subClassOf: "schema:AssessAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AssessAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ImageGallery, comment: "Web page type: Image gallery page.".freeze, label: "ImageGallery".freeze, - subClassOf: "schema:MediaGallery".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MediaGallery".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ImageObject, comment: "An image file.".freeze, - equivalentClass: "dcmitype:Image".freeze, + equivalentClass: "http://purl.org/dc/dcmitype/Image".freeze, label: "ImageObject".freeze, - subClassOf: "schema:MediaObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ImagingTest, comment: "Any medical imaging modality typically used for diagnostic purposes.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "ImagingTest".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalTest".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IndividualProduct, comment: "A single, identifiable product instance (e.g. a laptop with a particular serial number).".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InfectiousAgentClass, comment: "Classes of agents or pathogens that transmit infectious diseases. Enumerated type.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "InfectiousAgentClass".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InfectiousDisease, comment: "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "InfectiousDisease".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalCondition".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalCondition".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InformAction, comment: "The act of notifying someone of information pertinent to them, with no expectation of a response.".freeze, label: "InformAction".freeze, - subClassOf: "schema:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InsertAction, comment: "The act of adding at a specific location in an ordered collection.".freeze, label: "InsertAction".freeze, - subClassOf: "schema:AddAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AddAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InstallAction, comment: "The act of installing an application.".freeze, label: "InstallAction".freeze, - subClassOf: "schema:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InsuranceAgency, comment: "An Insurance agency.".freeze, label: "InsuranceAgency".freeze, - subClassOf: "schema:FinancialService".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FinancialService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Intangible, comment: "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.".freeze, label: "Intangible".freeze, - subClassOf: "schema:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Integer, comment: "Data type: Integer.".freeze, label: "Integer".freeze, - subClassOf: "schema:Number".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Number".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InteractAction, comment: "The act of interacting with another person or organization.".freeze, label: "InteractAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InteractionCounter, comment: "A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction.".freeze, label: "InteractionCounter".freeze, - subClassOf: "schema:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InternetCafe, comment: "An internet cafe.".freeze, label: "InternetCafe".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "InvestmentFund".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 + subClassOf: "http://schema.org/InvestmentOrDeposit".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InviteAction, comment: "The act of asking someone to attend an event. Reciprocal of RsvpAction.".freeze, label: "InviteAction".freeze, - subClassOf: "schema:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Invoice, comment: "A statement of the money due for goods or services; a bill.".freeze, label: "Invoice".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ItemAvailability, comment: "A list of possible product availability options.".freeze, label: "ItemAvailability".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ItemList, comment: "A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.".freeze, label: "ItemList".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ItemListOrderType, comment: "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.".freeze, label: "ItemListOrderType".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ItemPage, comment: "A page devoted to a single item, such as a particular product or hotel.".freeze, label: "ItemPage".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JewelryStore, comment: "A jewelry store.".freeze, label: "JewelryStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JobPosting, comment: "A listing that describes a job opening in a certain organization.".freeze, label: "JobPosting".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JoinAction, comment: "An agent joins an event/group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.".freeze, label: "JoinAction".freeze, - subClassOf: "schema:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Joint, comment: "The anatomical location at which two or more bones make contact.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Joint".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LakeBodyOfWater, comment: "A lake (for example, Lake Pontrachain).".freeze, label: "LakeBodyOfWater".freeze, - subClassOf: "schema:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Landform, comment: "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.".freeze, label: "Landform".freeze, - subClassOf: "schema:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LandmarksOrHistoricalBuildings, comment: "An historical landmark or building.".freeze, label: "LandmarksOrHistoricalBuildings".freeze, - subClassOf: "schema:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Language, comment: "Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in [BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]].".freeze, label: "Language".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LearningResource, comment: "The LearningResource type can be used to indicate [[CreativeWork]]s (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes.\n\n[[LearningResource]] is expected to be used as an addition to a primary type such as [[Book]], [[Video]], [[Product]] etc.\n\n[[EducationEvent]] serves a similar purpose for event-like things (e.g. a [[Trip]]). A [[LearningResource]] may be created as a result of an [[EducationEvent]], for example by recording one.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1401".freeze, label: "LearningResource".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1401".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LeaveAction, comment: "An agent leaves an event / group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: The antonym of LeaveAction.\\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.".freeze, label: "LeaveAction".freeze, - subClassOf: "schema:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LegalForceStatus, comment: "A list of possible statuses for the legal force of a legislation.".freeze, exactMatch: "http://data.europa.eu/eli/ontology#InForce".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "LegalForceStatus".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:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LegalService, comment: "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).".freeze, label: "LegalService".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LegalValueLevel, comment: "A list of possible levels for the legal validity of a legislation.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://data.europa.eu/eli/ontology#LegalValue".freeze, label: "LegalValueLevel".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], + "http://www.w3.org/2004/02/skos/core#closeMatch": ["http://data.europa.eu/eli/ontology#LegalExpression".freeze, "http://data.europa.eu/eli/ontology#LegalResource".freeze], label: "Legislation".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://data.europa.eu/eli/ontology#Format".freeze, label: "LegislationObject".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 + subClassOf: ["http://schema.org/Legislation".freeze, "http://schema.org/MediaObject".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LegislativeBuilding, comment: "A legislative building—for example, the state capitol.".freeze, label: "LegislativeBuilding".freeze, - subClassOf: "schema:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LendAction, comment: "The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\\n\\nRelated actions:\\n\\n* [[BorrowAction]]: Reciprocal of LendAction.".freeze, label: "LendAction".freeze, - subClassOf: "schema:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Library, comment: "A library.".freeze, label: "Library".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LibrarySystem, comment: "A [[LibrarySystem]] is a collaborative system amongst several libraries.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1495".freeze, label: "LibrarySystem".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 + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LifestyleModification, comment: "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "LifestyleModification".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Ligament, comment: "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Ligament".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LikeAction, comment: "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.".freeze, label: "LikeAction".freeze, - subClassOf: "schema:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, label: "LinkRole".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 + subClassOf: "http://schema.org/Role".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LiquorStore, comment: "A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits.".freeze, label: "LiquorStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ListItem, comment: "An list item, e.g. a step in a checklist or how-to description.".freeze, label: "ListItem".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ListenAction, comment: "The act of consuming audio content.".freeze, label: "ListenAction".freeze, - subClassOf: "schema:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LiteraryEvent, comment: "Event type: Literary event.".freeze, label: "LiteraryEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LiveBlogPosting, comment: "A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates.".freeze, label: "LiveBlogPosting".freeze, - subClassOf: "schema:BlogPosting".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BlogPosting".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LoanOrCredit, comment: "A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LocalBusiness, comment: "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://www.w3.org/ns/regorg#RegisteredOrganization".freeze, label: "LocalBusiness".freeze, - "skos:closeMatch": "http://www.w3.org/ns/regorg#RegisteredOrganization".freeze, - subClassOf: ["schema:Organization".freeze, "schema:Place".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/Organization".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/PropertyValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Locksmith, comment: "A locksmith.".freeze, label: "Locksmith".freeze, - subClassOf: "schema:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LodgingBusiness, comment: "A lodging business, such as a motel, hotel, or inn.".freeze, label: "LodgingBusiness".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LodgingReservation, comment: "A reservation for lodging at a hotel, motel, inn, etc.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.".freeze, label: "LodgingReservation".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LoseAction, comment: "The act of being defeated in a competitive activity.".freeze, label: "LoseAction".freeze, - subClassOf: "schema:AchieveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AchieveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LymphaticVessel, comment: "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "LymphaticVessel".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:Vessel".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Vessel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Manuscript, comment: "A book, document, or piece of music written by hand rather than typed or printed.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "Manuscript".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Map, comment: "A map.".freeze, label: "Map".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MapCategoryType, comment: "An enumeration of several kinds of Map.".freeze, label: "MapCategoryType".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MarryAction, comment: "The act of marrying a person.".freeze, label: "MarryAction".freeze, - subClassOf: "schema:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Mass, comment: "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.".freeze, label: "Mass".freeze, - subClassOf: "schema:Quantity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Quantity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MathSolver, comment: "A math solver which is capable of solving a subset of mathematical problems.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, label: "MathSolver".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MaximumDoseSchedule, comment: "The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MaximumDoseSchedule".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:DoseSchedule".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/DoseSchedule".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaGallery, comment: "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia.".freeze, label: "MediaGallery".freeze, - subClassOf: "schema:CollectionPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CollectionPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "MediaManipulationRatingEnumeration".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaObject, comment: "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's).".freeze, label: "MediaObject".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaReview, comment: "(editorial work in progress, this definition is incomplete and unreviewed)\n 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.\n For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "MediaReview".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 + subClassOf: "http://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaSubscription, comment: "A subscription which allows a user to access media including audio, video, books, etc.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "MediaSubscription".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalAudience, comment: "Target audiences for medical web pages.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalAudience".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: ["schema:Audience".freeze, "schema:PeopleAudience".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/Audience".freeze, "http://schema.org/PeopleAudience".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalAudienceType, comment: "Target audiences types for medical web pages. Enumerated type.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalAudienceType".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalBusiness, comment: "A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include differents business run by health professionals.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalBusiness".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalCause, comment: "The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalCause".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalClinic, comment: "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalClinic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: ["schema:MedicalBusiness".freeze, "schema:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/MedicalBusiness".freeze, "http://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalCode, comment: "A code for a medical entity.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalCode".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: ["schema:CategoryCode".freeze, "schema:MedicalIntangible".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CategoryCode".freeze, "http://schema.org/MedicalIntangible".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalCondition, comment: "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalCondition".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalConditionStage, comment: "A stage of a medical condition, such as 'Stage IIIa'.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalConditionStage".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalContraindication, comment: "A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures).".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalContraindication".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalDevice, comment: "Any object used in a medical capacity, such as to diagnose or treat a patient.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/63653004".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalDevice".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalDevicePurpose, comment: "Categories of medical devices, organized by the purpose or intended use of the device.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalDevicePurpose".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalEntity, comment: "The most generic type of entity related to health and the practice of medicine.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalEntity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalEnumeration, comment: "Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalEnumeration".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalEvidenceLevel, comment: "Level of evidence for a medical guideline. Enumerated type.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalEvidenceLevel".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalGuideline, comment: "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalGuideline".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalGuidelineContraindication, comment: "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalGuidelineContraindication".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalGuideline".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalGuideline".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalGuidelineRecommendation, comment: "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalGuidelineRecommendation".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalGuideline".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalGuideline".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalImagingTechnique, comment: "Any medical imaging modality typically used for diagnostic purposes. Enumerated type.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalImagingTechnique".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalIndication, comment: "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalIndication".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalIntangible, comment: "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalIntangible".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalObservationalStudy, comment: "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalObservationalStudy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalStudy".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalStudy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalObservationalStudyDesign, comment: "Design models for observational medical studies. Enumerated type.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalObservationalStudyDesign".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalOrganization, comment: "A medical organization (physical or not), such as hospital, institution or clinic.".freeze, label: "MedicalOrganization".freeze, - subClassOf: "schema:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalProcedure, comment: "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/50731006".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalProcedure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalProcedureType, comment: "An enumeration that describes different types of medical procedures.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalProcedureType".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalRiskCalculator, comment: "A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalRiskCalculator".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalRiskEstimator".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalRiskEstimator".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalRiskEstimator, comment: "Any rule set or interactive tool for estimating the risk of developing a complication or condition.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalRiskEstimator".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalRiskFactor, comment: "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalRiskFactor".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalRiskScore, comment: "A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalRiskScore".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalRiskEstimator".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalRiskEstimator".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalScholarlyArticle, comment: "A scholarly article in the medical domain.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalScholarlyArticle".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:ScholarlyArticle".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ScholarlyArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalSign, comment: "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalSign".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalSignOrSymptom".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalSignOrSymptom".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalSignOrSymptom, comment: "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalSignOrSymptom".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalCondition".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalCondition".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalSpecialty, comment: "Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalSpecialty".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: ["schema:MedicalEnumeration".freeze, "schema:Specialty".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/MedicalEnumeration".freeze, "http://schema.org/Specialty".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalStudy, comment: "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalStudy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalStudyStatus, comment: "The status of a medical study. Enumerated type.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalStudyStatus".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalSymptom, comment: "Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalSymptom".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalSignOrSymptom".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalSignOrSymptom".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTest, comment: "Any medical test, typically performed for diagnostic purposes.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalTest".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTestPanel, comment: "Any collection of tests commonly ordered together.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalTestPanel".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalTest".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTherapy, comment: "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:TherapeuticProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TherapeuticProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTrial, comment: "A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalStudy".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalStudy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTrialDesign, comment: "Design models for medical trials. Enumerated type.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, + "http://schema.org/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:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalWebPage, comment: "A web page that provides medical information.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalWebPage".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicineSystem, comment: "Systems of medical practice.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicineSystem".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MeetingRoom, 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).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Room".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MensClothingStore, comment: "A men's clothing store.".freeze, label: "MensClothingStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Menu, comment: "A structured representation of food or drink items available from a FoodEstablishment.".freeze, label: "Menu".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MenuItem, comment: "A food or drink item listed in a menu or menu section.".freeze, label: "MenuItem".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MenuSection, comment: "A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider.".freeze, label: "MenuSection".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnEnumeration".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MerchantReturnPolicy, comment: "A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]] or [[Product]].".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnPolicy".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Message, comment: "A single message from a sender to one or more organizations or people.".freeze, label: "Message".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MiddleSchool, comment: "A middle school (typically for children aged around 11-14, although this varies somewhat).".freeze, label: "MiddleSchool".freeze, - subClassOf: "schema:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MobileApplication, comment: "A software application designed specifically to work well on a mobile device such as a telephone.".freeze, label: "MobileApplication".freeze, - subClassOf: "schema:SoftwareApplication".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SoftwareApplication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MobilePhoneStore, comment: "A store that sells mobile phones and related accessories.".freeze, label: "MobilePhoneStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MonetaryAmountDistribution, comment: "A statistical distribution of monetary amounts.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "MonetaryAmountDistribution".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - subClassOf: "schema:QuantitativeValueDistribution".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/QuantitativeValueDistribution".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MonetaryGrant, comment: "A monetary grant.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "MonetaryGrant".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schema:Grant".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Grant".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MoneyTransfer, comment: "The act of transferring money from one place to another place. This may occur electronically or physically.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "MoneyTransfer".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 + subClassOf: "http://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "MortgageLoan".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 + subClassOf: "http://schema.org/LoanOrCredit".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Mosque, comment: "A mosque.".freeze, label: "Mosque".freeze, - subClassOf: "schema:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Motel, comment: "A motel.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, label: "Motel".freeze, - subClassOf: "schema:LodgingBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Motorcycle, comment: "A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Vehicle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MotorcycleDealer, comment: "A motorcycle dealer.".freeze, label: "MotorcycleDealer".freeze, - subClassOf: "schema:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MotorcycleRepair, comment: "A motorcycle repair shop.".freeze, label: "MotorcycleRepair".freeze, - subClassOf: "schema:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Vehicle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Mountain, comment: "A mountain, like Mount Whitney or Mount Everest.".freeze, label: "Mountain".freeze, - subClassOf: "schema:Landform".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Landform".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MoveAction, comment: "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.".freeze, label: "MoveAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Movie, comment: "A movie.".freeze, label: "Movie".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovieClip, comment: "A short segment/part of a movie.".freeze, label: "MovieClip".freeze, - subClassOf: "schema:Clip".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Clip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovieRentalStore, comment: "A movie rental store.".freeze, label: "MovieRentalStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovieSeries, comment: "A series of movies. Included movies can be indicated with the hasPart property.".freeze, label: "MovieSeries".freeze, - subClassOf: "schema:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovieTheater, comment: "A movie theater.".freeze, label: "MovieTheater".freeze, - subClassOf: ["schema:CivicStructure".freeze, "schema:EntertainmentBusiness".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CivicStructure".freeze, "http://schema.org/EntertainmentBusiness".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovingCompany, comment: "A moving company.".freeze, label: "MovingCompany".freeze, - subClassOf: "schema:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MulticellularParasite, comment: "Multicellular parasite that causes an infection.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MulticellularParasite".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:InfectiousAgentClass".freeze + type: "http://schema.org/InfectiousAgentClass".freeze term :Muscle, comment: "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Muscle".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Museum, comment: "A museum.".freeze, label: "Museum".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicAlbum, comment: "A collection of music tracks.".freeze, label: "MusicAlbum".freeze, - subClassOf: "schema:MusicPlaylist".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MusicPlaylist".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicAlbumProductionType, comment: "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicAlbumReleaseType, comment: "The kind of release which this album is: single, EP or album.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicComposition, comment: "A musical composition.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicEvent, comment: "Event type: Music event.".freeze, label: "MusicEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicGroup, comment: "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.".freeze, label: "MusicGroup".freeze, - subClassOf: "schema:PerformingGroup".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PerformingGroup".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicPlaylist, comment: "A collection of music tracks in playlist form.".freeze, label: "MusicPlaylist".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicRecording, comment: "A music recording (track), usually a single song.".freeze, label: "MusicRecording".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicRelease, comment: "A MusicRelease is a specific release of a music album.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/MusicPlaylist".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicReleaseFormatType, comment: "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicStore, comment: "A music store.".freeze, label: "MusicStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicVenue, comment: "A music venue.".freeze, label: "MusicVenue".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicVideoObject, comment: "A music video file.".freeze, label: "MusicVideoObject".freeze, - subClassOf: "schema:MediaObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NGO, comment: "Organization: Non-governmental Organization.".freeze, label: "NGO".freeze, - subClassOf: "schema:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NLNonprofitType, comment: "NLNonprofitType: Non-profit organization type originating from the Netherlands.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "NLNonprofitType".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 + subClassOf: "http://schema.org/NonprofitType".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NailSalon, comment: "A nail salon.".freeze, label: "NailSalon".freeze, - subClassOf: "schema:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Nerve, comment: "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Nerve".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NewsArticle, comment: "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.\n\nA more detailed overview of [schema.org News markup](/docs/news.html) is also available.\n".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NewsMediaOrganization, comment: "A News/Media organization such as a newspaper or TV station.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "NewsMediaOrganization".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 + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Periodical".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NightClub, comment: "A nightclub or discotheque.".freeze, label: "NightClub".freeze, - subClassOf: "schema:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NonprofitType, comment: "NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "NonprofitType".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Notary, comment: "A notary.".freeze, label: "Notary".freeze, - subClassOf: "schema:LegalService".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LegalService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NoteDigitalDocument, comment: "A file containing a note, primarily for the author.".freeze, label: "NoteDigitalDocument".freeze, - subClassOf: "schema:DigitalDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/DigitalDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Number, comment: "Data type: Number.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, label: "Number".freeze, - type: ["rdfs:Class".freeze, "schema:DataType".freeze] + type: ["http://schema.org/DataType".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :NutritionInformation, comment: "Nutritional information about the recipe.".freeze, label: "NutritionInformation".freeze, - subClassOf: "schema:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze 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](https://www.w3.org/TR/vocab-data-cube/#dsd-example)).\nSee also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "Observation".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Occupation, comment: "A profession, may involve prolonged training and/or a formal qualification.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "Occupation".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OccupationalTherapy, comment: "A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "OccupationalTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalTherapy".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OceanBodyOfWater, comment: "An ocean (for example, the Pacific).".freeze, label: "OceanBodyOfWater".freeze, - subClassOf: "schema:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Offer, comment: "An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\\n\\nNote: 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.\\n\\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/).".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferCatalog, comment: "An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.".freeze, label: "OfferCatalog".freeze, - subClassOf: "schema:ItemList".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ItemList".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferForLease, comment: "An [[OfferForLease]] in Schema.org represents an [[Offer]] to lease out something, i.e. an [[Offer]] whose\n [[businessFunction]] is [lease out](http://purl.org/goodrelations/v1#LeaseOut.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, label: "OfferForLease".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 + subClassOf: "http://schema.org/Offer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferForPurchase, comment: "An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose\n [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, label: "OfferForPurchase".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 + subClassOf: "http://schema.org/Offer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferItemCondition, comment: "A list of possible conditions for the item.".freeze, label: "OfferItemCondition".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferShippingDetails, comment: "OfferShippingDetails represents information about shipping destinations.\n\nMultiple of these entities can be used to represent different shipping rates for different destinations:\n\nOne entity for Alaska/Hawaii. A different one for continental US.A different one for all France.\n\nMultiple of these entities can be used to represent different shipping costs and delivery times.\n\nTwo entities that are identical but differ in rate and time:\n\ne.g. Cheaper and slower: $5 in 5-7days\nor Fast and expensive: $15 in 1-2 days\n".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "OfferShippingDetails".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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfficeEquipmentStore, comment: "An office equipment store.".freeze, label: "OfficeEquipmentStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OnDemandEvent, comment: "A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand.".freeze, label: "OnDemandEvent".freeze, - subClassOf: "schema:PublicationEvent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PublicationEvent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OpeningHoursSpecification, comment: "A structured value providing information about the opening hours of a place or a certain service inside a place.\\n\\n\nThe place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\\n\\nIf 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.\n ".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "OpinionNewsArticle".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 + subClassOf: "http://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Optician, comment: "A store that sells reading glasses and similar devices for improving vision.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Optician".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Order, comment: "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.".freeze, label: "Order".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrderAction, comment: "An agent orders an object/product/service to be delivered/sent.".freeze, label: "OrderAction".freeze, - subClassOf: "schema:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrderItem, comment: "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.".freeze, label: "OrderItem".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrderStatus, comment: "Enumerated status values for Order.".freeze, label: "OrderStatus".freeze, - subClassOf: "schema:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Organization, comment: "An organization such as a school, NGO, corporation, club, etc.".freeze, label: "Organization".freeze, - subClassOf: "schema:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrganizationRole, comment: "A subclass of Role used to describe roles within organizations.".freeze, label: "OrganizationRole".freeze, - subClassOf: "schema:Role".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Role".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrganizeAction, comment: "The act of manipulating/administering/supervising/controlling one or more objects.".freeze, label: "OrganizeAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OutletStore, comment: "An outlet store.".freeze, label: "OutletStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OwnershipInfo, comment: "A structured value providing information about when a certain organization or person owned a certain product.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaintAction, comment: "The act of producing a painting, typically with paint and canvas as instruments.".freeze, label: "PaintAction".freeze, - subClassOf: "schema:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Painting, comment: "A painting.".freeze, label: "Painting".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PalliativeProcedure, comment: "A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PalliativeProcedure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: ["schema:MedicalProcedure".freeze, "schema:MedicalTherapy".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/MedicalProcedure".freeze, "http://schema.org/MedicalTherapy".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ParcelDelivery, comment: "The delivery of a parcel either via the postal service or a commercial service.".freeze, label: "ParcelDelivery".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ParentAudience, comment: "A set of characteristics describing parents, who can be interested in viewing some content.".freeze, label: "ParentAudience".freeze, - subClassOf: "schema:PeopleAudience".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PeopleAudience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Park, comment: "A park.".freeze, label: "Park".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ParkingFacility, comment: "A parking lot or other parking facility.".freeze, label: "ParkingFacility".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PathologyTest, comment: "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PathologyTest".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalTest".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Patient, comment: "A patient is any person recipient of health care services.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/116154003".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Patient".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: ["schema:MedicalAudience".freeze, "schema:Person".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/MedicalAudience".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PawnShop, comment: "A shop that will buy, or lend money against the security of, personal possessions.".freeze, label: "PawnShop".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PayAction, comment: "An agent pays a price to a participant.".freeze, label: "PayAction".freeze, - subClassOf: "schema:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentCard, comment: "A payment method using a credit, debit, store or other card to associate the payment with an account.".freeze, + "http://schema.org/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 + subClassOf: ["http://schema.org/FinancialProduct".freeze, "http://schema.org/PaymentMethod".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentChargeSpecification, comment: "The costs of settling the payment using a particular payment method.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentMethod, comment: "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n* http://purl.org/goodrelations/v1#ByInvoice\\n* http://purl.org/goodrelations/v1#Cash\\n* http://purl.org/goodrelations/v1#CheckInAdvance\\n* http://purl.org/goodrelations/v1#COD\\n* http://purl.org/goodrelations/v1#DirectDebit\\n* http://purl.org/goodrelations/v1#GoogleCheckout\\n* http://purl.org/goodrelations/v1#PayPal\\n* http://purl.org/goodrelations/v1#PaySwarm\n ".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentService, comment: "A Service to transfer funds from a person or organization to a beneficiary person or organization.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentStatusType, comment: "A specific payment status. For example, PaymentDue, PaymentComplete, etc.".freeze, label: "PaymentStatusType".freeze, - subClassOf: "schema:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PeopleAudience, comment: "A set of characteristics belonging to people, e.g. who compose an item's target audience.".freeze, label: "PeopleAudience".freeze, - subClassOf: "schema:Audience".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Audience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PerformAction, comment: "The act of participating in performance arts.".freeze, label: "PerformAction".freeze, - subClassOf: "schema:PlayAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlayAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PerformanceRole, comment: "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.".freeze, label: "PerformanceRole".freeze, - subClassOf: "schema:Role".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Role".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PerformingArtsTheater, comment: "A theater or other performing art center.".freeze, label: "PerformingArtsTheater".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PerformingGroup, comment: "A performance group, such as a band, an orchestra, or a circus.".freeze, label: "PerformingGroup".freeze, - subClassOf: "schema:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Periodical, 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.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).".freeze, - equivalentClass: "bibo:Periodical".freeze, + equivalentClass: "http://purl.org/ontology/bibo/Periodical".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "Periodical".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - subClassOf: "schema:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Permit, comment: "A permit issued by an organization, e.g. a parking pass.".freeze, label: "Permit".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Person, comment: "A person (alive, dead, undead, or fictional).".freeze, - equivalentClass: "foaf:Person".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Person".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "Person".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, - subClassOf: "schema:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PetStore, comment: "A pet store.".freeze, label: "PetStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Pharmacy, comment: "A pharmacy or drugstore.".freeze, label: "Pharmacy".freeze, - subClassOf: ["schema:MedicalBusiness".freeze, "schema:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/MedicalBusiness".freeze, "http://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Photograph, comment: "A photograph.".freeze, label: "Photograph".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhotographAction, comment: "The act of capturing still images of objects using a camera.".freeze, label: "PhotographAction".freeze, - subClassOf: "schema:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalActivity, comment: "Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PhysicalActivity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:LifestyleModification".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LifestyleModification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalActivityCategory, comment: "Categories of physical activity, organized by physiologic classification.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PhysicalActivityCategory".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalExam, comment: "A type of physical examination of a patient performed by a physician. ".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PhysicalExam".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: ["schema:MedicalEnumeration".freeze, "schema:MedicalProcedure".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/MedicalEnumeration".freeze, "http://schema.org/MedicalProcedure".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalTherapy, comment: "A process of progressive physical care and rehabilitation aimed at improving a health condition.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PhysicalTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalTherapy".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Physician, comment: "A doctor's office.".freeze, label: "Physician".freeze, - subClassOf: ["schema:MedicalBusiness".freeze, "schema:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/MedicalBusiness".freeze, "http://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Place, comment: "Entities that have a somewhat fixed, physical extension.".freeze, label: "Place".freeze, - subClassOf: "schema:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PlaceOfWorship, comment: "Place of worship, such as a church, synagogue, or mosque.".freeze, label: "PlaceOfWorship".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PlanAction, comment: "The act of planning the execution of an event/task/action/reservation/plan to a future date.".freeze, label: "PlanAction".freeze, - subClassOf: "schema:OrganizeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/OrganizeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1816".freeze, label: "Play".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PlayAction, comment: "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\\n\\nRelated actions:\\n\\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.".freeze, label: "PlayAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Playground, comment: "A playground.".freeze, label: "Playground".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Plumber, comment: "A plumbing service.".freeze, label: "Plumber".freeze, - subClassOf: "schema:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PodcastEpisode, comment: "A single episode of a podcast series.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "PodcastEpisode".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 + subClassOf: "http://schema.org/Episode".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "PodcastSeason".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 + subClassOf: "http://schema.org/CreativeWorkSeason".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "PodcastSeries".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 + subClassOf: "http://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PoliceStation, comment: "A police station.".freeze, label: "PoliceStation".freeze, - subClassOf: ["schema:CivicStructure".freeze, "schema:EmergencyService".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CivicStructure".freeze, "http://schema.org/EmergencyService".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Pond, comment: "A pond.".freeze, label: "Pond".freeze, - subClassOf: "schema:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PostOffice, comment: "A post office.".freeze, label: "PostOffice".freeze, - subClassOf: "schema:GovernmentOffice".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/GovernmentOffice".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PostalAddress, comment: "The mailing address.".freeze, label: "PostalAddress".freeze, - subClassOf: "schema:ContactPoint".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ContactPoint".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PostalCodeRangeSpecification, comment: "Indicates a range of postalcodes, usually defined as the set of valid codes between [[postalCodeBegin]] and [[postalCodeEnd]], inclusively.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "PostalCodeRangeSpecification".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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Poster, comment: "A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "Poster".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PreOrderAction, comment: "An agent orders a (not yet released) object/product/service to be delivered/sent.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1125".freeze, label: "PreOrderAction".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1125".freeze, - subClassOf: "schema:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PrependAction, comment: "The act of inserting at the beginning if an ordered collection.".freeze, label: "PrependAction".freeze, - subClassOf: "schema:InsertAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InsertAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Preschool, comment: "A preschool.".freeze, label: "Preschool".freeze, - subClassOf: "schema:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PresentationDigitalDocument, comment: "A file containing slides or used for a presentation.".freeze, label: "PresentationDigitalDocument".freeze, - subClassOf: "schema:DigitalDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/DigitalDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PreventionIndication, comment: "An indication for preventing an underlying condition, symptom, etc.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PreventionIndication".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalIndication".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalIndication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PriceComponentTypeEnumeration, comment: "Enumerates different price components that together make up the total price for an offered product.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "PriceComponentTypeEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PriceTypeEnumeration, comment: "Enumerates different price types, for example list price, invoice price, and sale price.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "PriceTypeEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Prion, comment: "A prion is an infectious agent composed of protein in a misfolded form.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Prion".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:InfectiousAgentClass".freeze + type: "http://schema.org/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, + "http://schema.org/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 + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProductCollection, comment: "A set of products (either [[ProductGroup]]s or specific variants) that are listed together e.g. in an [[Offer]].".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2597".freeze, label: "ProductCollection".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2597".freeze, - subClassOf: ["schema:Collection".freeze, "schema:Product".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/Collection".freeze, "http://schema.org/Product".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProductGroup, comment: "A ProductGroup represents a group of [[Product]]s that vary only in certain well-described ways, such as by [[size]], [[color]], [[material]] etc.\n\nWhile a ProductGroup itself is not directly offered for sale, the various varying products that it represents can be. The ProductGroup serves as a prototype or template, standing in for all of the products who have an [[isVariantOf]] relationship to it. As such, properties (including additional types) can be applied to the ProductGroup to represent characteristics shared by each of the (possibly very many) variants. Properties that reference a ProductGroup are not included in this mechanism; neither are the following specific properties [[variesBy]], [[hasVariant]], [[url]]. ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2597".freeze, label: "ProductGroup".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2597".freeze, - subClassOf: "schema:Product".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProductModel, comment: "A datasheet or vendor specification of a product (in the sense of a prototypical description).".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "http://schema.org/supersededBy": "http://schema.org/MerchantReturnEnumeration".freeze, label: "ProductReturnEnumeration".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProductReturnPolicy, comment: "A ProductReturnPolicy provides information about product return policies associated with an [[Organization]] or [[Product]].".freeze, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "http://schema.org/supersededBy": "http://schema.org/MerchantReturnPolicy".freeze, label: "ProductReturnPolicy".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProfessionalService, comment: "Original definition: \"provider of professional services.\"\\n\\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]],\n [[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]],\n [[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]].".freeze, label: "ProfessionalService".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProfilePage, comment: "Web page type: Profile page.".freeze, label: "ProfilePage".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProgramMembership, comment: "Used to describe membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.".freeze, label: "ProgramMembership".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Project, comment: "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim.\nUse properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. \n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "Project".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schema:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PronounceableText, comment: "Data type: PronounceableText.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, label: "PronounceableText".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 + subClassOf: "http://schema.org/Text".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Property, comment: "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.".freeze, - equivalentClass: "rdf:Property".freeze, + equivalentClass: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + "http://schema.org/isPartOf": "http://meta.schema.org".freeze, label: "Property".freeze, - "schema:isPartOf": "http://meta.schema.org".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PropertyValue, 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.\\n\\n 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.\n ".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PropertyValueSpecification, comment: "A Property value specification.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Protozoa, comment: "Single-celled organism that causes an infection.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Protozoa".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:InfectiousAgentClass".freeze + type: "http://schema.org/InfectiousAgentClass".freeze term :PsychologicalTreatment, comment: "A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PsychologicalTreatment".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:TherapeuticProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TherapeuticProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicSwimmingPool, comment: "A public swimming pool.".freeze, label: "PublicSwimmingPool".freeze, - subClassOf: "schema:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1624".freeze, label: "PublicToilet".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 + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationEvent, comment: "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.".freeze, label: "PublicationEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationIssue, 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.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).".freeze, - equivalentClass: "bibo:Issue".freeze, + equivalentClass: "http://purl.org/ontology/bibo/Issue".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "PublicationIssue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :QAPage, comment: "A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).".freeze, label: "QAPage".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :QuantitativeValue, comment: " A point value or interval for product characteristics and other purposes.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :QuantitativeValueDistribution, comment: "A statistical distribution of values.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "QuantitativeValueDistribution".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - subClassOf: "schema:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Quantity, comment: "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.".freeze, label: "Quantity".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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:Comment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Comment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Quiz, comment: "Quiz: A test of knowledge, skills and abilities.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2611".freeze, label: "Quiz".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2611".freeze, - subClassOf: "schema:LearningResource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LearningResource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, label: "Quotation".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :QuoteAction, comment: "An agent quotes/estimates/appraises an object/product/service with a price at a location/store.".freeze, label: "QuoteAction".freeze, - subClassOf: "schema:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RVPark, comment: "A place offering space for \"Recreational Vehicles\", Caravans, mobile homes and the like.".freeze, label: "RVPark".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadiationTherapy, comment: "A process of care using radiation aimed at improving a health condition.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "RadiationTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalTherapy".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioBroadcastService, comment: "A delivery service through which radio content is provided via broadcast over the air or online.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, label: "RadioBroadcastService".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 + subClassOf: "http://schema.org/BroadcastService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioChannel, comment: "A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup.".freeze, label: "RadioChannel".freeze, - subClassOf: "schema:BroadcastChannel".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BroadcastChannel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioClip, comment: "A short radio program or a segment/part of a radio program.".freeze, label: "RadioClip".freeze, - subClassOf: "schema:Clip".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Clip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioEpisode, comment: "A radio episode which can be part of a series or season.".freeze, label: "RadioEpisode".freeze, - subClassOf: "schema:Episode".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Episode".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioSeason, comment: "Season dedicated to radio broadcast and associated online delivery.".freeze, label: "RadioSeason".freeze, - subClassOf: "schema:CreativeWorkSeason".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWorkSeason".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioSeries, comment: "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.".freeze, label: "RadioSeries".freeze, - subClassOf: "schema:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioStation, comment: "A radio station.".freeze, label: "RadioStation".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Rating, comment: "A rating is an evaluation on a numeric scale, such as 1 to 5 stars.".freeze, label: "Rating".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReactAction, comment: "The act of responding instinctively and emotionally to an object, expressing a sentiment.".freeze, label: "ReactAction".freeze, - subClassOf: "schema:AssessAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AssessAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReadAction, comment: "The act of consuming written content.".freeze, label: "ReadAction".freeze, - subClassOf: "schema:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RealEstateAgent, comment: "A real-estate agent.".freeze, label: "RealEstateAgent".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RealEstateListing, comment: "A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out, or to sell).\n The [[RealEstateListing]] type itself represents the overall listing, as manifested in some [[WebPage]].\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, label: "RealEstateListing".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 + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReceiveAction, comment: "The act of physically/electronically taking delivery of an object that has been transferred from an origin to a destination. Reciprocal of SendAction.\\n\\nRelated actions:\\n\\n* [[SendAction]]: The reciprocal of ReceiveAction.\\n* [[TakeAction]]: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered (e.g. I can receive a package, but it does not mean the package is now mine).".freeze, label: "ReceiveAction".freeze, - subClassOf: "schema:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Recipe, comment: "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via [[suitableForDiet]]. The [[keywords]] property can also be used to add more detail.".freeze, label: "Recipe".freeze, - subClassOf: "schema:HowTo".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HowTo".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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 [[Recommendation]]s.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, label: "Recommendation".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 + subClassOf: "http://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RecommendedDoseSchedule, comment: "A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "RecommendedDoseSchedule".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:DoseSchedule".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/DoseSchedule".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RecyclingCenter, comment: "A recycling center.".freeze, label: "RecyclingCenter".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RefundTypeEnumeration, comment: "RefundTypeEnumeration enumerates several kinds of product return refund types.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "RefundTypeEnumeration".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RegisterAction, comment: "The act of registering to be a user of a service, product or web page.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\\n* [FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object.".freeze, label: "RegisterAction".freeze, - subClassOf: "schema:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RejectAction, comment: "The act of rejecting to/adopting an object.\\n\\nRelated actions:\\n\\n* [[AcceptAction]]: The antonym of RejectAction.".freeze, label: "RejectAction".freeze, - subClassOf: "schema:AllocateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AllocateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RentAction, comment: "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.".freeze, label: "RentAction".freeze, - subClassOf: "schema:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RentalCarReservation, comment: "A reservation for a rental car.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.".freeze, label: "RentalCarReservation".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RepaymentSpecification, comment: "A structured value representing repayment.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "RepaymentSpecification".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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReplaceAction, comment: "The act of editing a recipient by replacing an old object with a new object.".freeze, label: "ReplaceAction".freeze, - subClassOf: "schema:UpdateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UpdateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReplyAction, comment: "The act of responding to a question/message asked/sent by the object. Related to [[AskAction]]\\n\\nRelated actions:\\n\\n* [[AskAction]]: Appears generally as an origin of a ReplyAction.".freeze, label: "ReplyAction".freeze, - subClassOf: "schema:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Report, comment: "A Report generated by governmental or non-governmental organization.".freeze, label: "Report".freeze, - subClassOf: "schema:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReportageNewsArticle, comment: "The [[ReportageNewsArticle]] type is a subtype of [[NewsArticle]] representing\n news articles which are the result of journalistic news reporting conventions.\n\nIn practice many news publishers produce a wide variety of article types, many of which might be considered a [[NewsArticle]] but not a [[ReportageNewsArticle]]. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements.\n\nThe [[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.\n\nA [[ReportageNewsArticle]] which goes deeper into analysis can also be marked with an additional type of [[AnalysisNewsArticle]].\n".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "ReportageNewsArticle".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 + subClassOf: "http://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReportedDoseSchedule, comment: "A patient-reported or observed dosing schedule for a drug or supplement.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "ReportedDoseSchedule".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:DoseSchedule".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/DoseSchedule".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ResearchProject, comment: "A Research project.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "ResearchProject".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schema:Project".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Project".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Researcher, comment: "Researchers.".freeze, label: "Researcher".freeze, - subClassOf: "schema:Audience".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Audience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Reservation, comment: "Describes a reservation for travel, dining or an event. Some reservations require tickets. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]].".freeze, label: "Reservation".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReservationPackage, comment: "A group of multiple reservations with common values for all sub-reservations.".freeze, label: "ReservationPackage".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReservationStatusType, comment: "Enumerated status values for Reservation.".freeze, label: "ReservationStatusType".freeze, - subClassOf: "schema:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReserveAction, - comment: "Reserving a concrete object.\\n\\nRelated actions:\\n\\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.".freeze, + comment: "Reserving a concrete object.\\n\\nRelated actions:\\n\\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.".freeze, label: "ReserveAction".freeze, - subClassOf: "schema:PlanAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlanAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Reservoir, comment: "A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir.".freeze, label: "Reservoir".freeze, - subClassOf: "schema:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Residence, comment: "The place where a person lives.".freeze, label: "Residence".freeze, - subClassOf: "schema:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Resort, 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).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n ".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Restaurant, comment: "A restaurant.".freeze, label: "Restaurant".freeze, - subClassOf: "schema:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RestrictedDiet, comment: "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. ".freeze, label: "RestrictedDiet".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ResumeAction, comment: "The act of resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer).".freeze, label: "ResumeAction".freeze, - subClassOf: "schema:ControlAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ControlAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReturnAction, comment: "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).".freeze, label: "ReturnAction".freeze, - subClassOf: "schema:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReturnFeesEnumeration, comment: "ReturnFeesEnumeration expresses policies for return fees.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ReturnFeesEnumeration".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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Review, comment: "A review of an item - for example, of a restaurant, movie, or store.".freeze, label: "Review".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReviewAction, comment: "The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.".freeze, label: "ReviewAction".freeze, - subClassOf: "schema:AssessAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AssessAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "ReviewNewsArticle".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 + subClassOf: ["http://schema.org/CriticReview".freeze, "http://schema.org/NewsArticle".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RiverBodyOfWater, comment: "A river (for example, the broad majestic Shannon).".freeze, label: "RiverBodyOfWater".freeze, - subClassOf: "schema:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Role, comment: "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\\n\\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html).".freeze, label: "Role".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RoofingContractor, comment: "A roofing contractor.".freeze, label: "RoofingContractor".freeze, - subClassOf: "schema:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Room, 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).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RsvpAction, comment: "The act of notifying an event organizer as to whether you expect to attend the event.".freeze, label: "RsvpAction".freeze, - subClassOf: "schema:InformAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InformAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RsvpResponseType, comment: "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.".freeze, label: "RsvpResponseType".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SaleEvent, comment: "Event type: Sales event.".freeze, label: "SaleEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SatiricalArticle, comment: "An [[Article]] whose content is primarily [[satirical]](https://en.wikipedia.org/wiki/Satire) in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a [[NewsArticle]]. [[ScholarlyArticle]]s are also sometimes satirized.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "SatiricalArticle".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 + subClassOf: "http://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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.\n 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\n have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "Schedule".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ScheduleAction, comment: "Scheduling future actions, events, or tasks.\\n\\nRelated actions:\\n\\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.".freeze, label: "ScheduleAction".freeze, - subClassOf: "schema:PlanAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlanAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ScholarlyArticle, comment: "A scholarly article.".freeze, label: "ScholarlyArticle".freeze, - subClassOf: "schema:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :School, comment: "A school.".freeze, label: "School".freeze, - subClassOf: "schema:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SchoolDistrict, comment: "A School District is an administrative area for the administration of schools.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2500".freeze, label: "SchoolDistrict".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 + subClassOf: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ScreeningEvent, comment: "A screening of a movie or other video.".freeze, label: "ScreeningEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Sculpture, comment: "A piece of sculpture.".freeze, label: "Sculpture".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SeaBodyOfWater, comment: "A sea (for example, the Caspian sea).".freeze, label: "SeaBodyOfWater".freeze, - subClassOf: "schema:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SearchAction, comment: "The act of searching for an object.\\n\\nRelated actions:\\n\\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily.".freeze, label: "SearchAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SearchResultsPage, comment: "Web page type: Search results page.".freeze, label: "SearchResultsPage".freeze, - subClassOf: "schema:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Season, comment: "A media season e.g. tv, radio, video game etc.".freeze, + "http://schema.org/supersededBy": "http://schema.org/CreativeWorkSeason".freeze, label: "Season".freeze, - "schema:supersededBy": "schema:CreativeWorkSeason".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Seat, comment: "Used to describe a seat, such as a reserved seat in an event reservation.".freeze, label: "Seat".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SeekToAction, comment: "This is the [[Action]] of navigating to a specific [[startOffset]] timestamp within a [[VideoObject]], typically represented with a URL template structure.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2722".freeze, label: "SeekToAction".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2722".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SelfStorage, comment: "A self-storage facility.".freeze, label: "SelfStorage".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SellAction, comment: "The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction.".freeze, label: "SellAction".freeze, - subClassOf: "schema:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SendAction, comment: "The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\\n\\n* [[ReceiveAction]]: The reciprocal of SendAction.\\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).".freeze, label: "SendAction".freeze, - subClassOf: "schema:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Series, - comment: "\n A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]].".freeze, + comment: "A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]].".freeze, label: "Series".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Service, comment: "A service provided by an organization, e.g. delivery service, print services, etc.".freeze, label: "Service".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ServiceChannel, comment: "A means for accessing a service, e.g. a government office location, web site, or phone number.".freeze, label: "ServiceChannel".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShareAction, comment: "The act of distributing content to people for their amusement or edification.".freeze, label: "ShareAction".freeze, - subClassOf: "schema:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SheetMusic, comment: "Printed music, as opposed to performed or recorded music.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "SheetMusic".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShippingDeliveryTime, comment: "ShippingDeliveryTime provides various pieces of information about delivery times for shipping.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "ShippingDeliveryTime".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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "ShippingRateSettings".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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShoeStore, comment: "A shoe store.".freeze, label: "ShoeStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShoppingCenter, comment: "A shopping center or mall.".freeze, label: "ShoppingCenter".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShortStory, comment: "Short story or tale. A brief work of literature, usually written in narrative prose.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1976".freeze, label: "ShortStory".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SingleFamilyResidence, comment: "Residence type: Single-family home.".freeze, label: "SingleFamilyResidence".freeze, - subClassOf: "schema:House".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/House".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SiteNavigationElement, comment: "A navigation element of the page.".freeze, label: "SiteNavigationElement".freeze, - subClassOf: "schema:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SkiResort, comment: "A ski resort.".freeze, label: "SkiResort".freeze, - subClassOf: ["schema:Resort".freeze, "schema:SportsActivityLocation".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/Resort".freeze, "http://schema.org/SportsActivityLocation".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SocialEvent, comment: "Event type: Social event.".freeze, label: "SocialEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SocialMediaPosting, comment: "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.".freeze, label: "SocialMediaPosting".freeze, - subClassOf: "schema:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SoftwareApplication, comment: "A software application.".freeze, label: "SoftwareApplication".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SoftwareSourceCode, comment: "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.".freeze, label: "SoftwareSourceCode".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SolveMathAction, comment: "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, label: "SolveMathAction".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SomeProducts, comment: "A placeholder for multiple similar products of the same kind.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, label: "SpeakableSpecification".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SpecialAnnouncement, comment: "A SpecialAnnouncement combines a simple date-stamped textual information update\n with contextualized Web links and other structured data. It represents an information update made by a\n locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police,\n local government.\n\nFor work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#).\n\nThe motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.org\nexpect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to our\nusual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#).\n\n\nWhile this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to cover\nthe kinds of everyday practical information being posted to existing websites during an emergency situation.\n\nSeveral kinds of information can be provided:\n\nWe encourage the provision of \"name\", \"text\", \"datePosted\", \"expires\" (if appropriate), \"category\" and\n\"url\" as a simple baseline. It is important to provide a value for \"category\" where possible, most ideally as a well known\nURL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be \"https://en.wikipedia.org/w/index.php?title=2019-20\\_coronavirus\\_pandemic\" or \"https://www.wikidata.org/wiki/Q81068910\".\n\nFor many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple \"[[text]]\" summary of the page. It is\nunlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously.\n\nWe expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]].\n\nMany [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructures]]. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]].\n\nThe [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] only\nfor representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of /about for locations too.\n\nThe basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting\n[[SpecialAnnouncement]] updates in a page, e.g. using JSON-LD. For sites with Atom/RSS functionality, you can point to a feed\nwith the [[webFeed]] property. This can be a simple URL, or an inline [[DataFeed]] object, with [[encodingFormat]] providing\nmedia type information e.g. \"application/rss+xml\" or \"application/atom+xml\".\n".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "SpecialAnnouncement".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Specialty, comment: "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.".freeze, label: "Specialty".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportingGoodsStore, comment: "A sporting goods store.".freeze, label: "SportingGoodsStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsActivityLocation, comment: "A sports location, such as a playing field.".freeze, label: "SportsActivityLocation".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsClub, comment: "A sports club.".freeze, label: "SportsClub".freeze, - subClassOf: "schema:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsEvent, comment: "Event type: Sports event.".freeze, label: "SportsEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsOrganization, comment: "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.".freeze, label: "SportsOrganization".freeze, - subClassOf: "schema:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsTeam, comment: "Organization: Sports team.".freeze, label: "SportsTeam".freeze, - subClassOf: "schema:SportsOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SportsOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SpreadsheetDigitalDocument, comment: "A spreadsheet file.".freeze, label: "SpreadsheetDigitalDocument".freeze, - subClassOf: "schema:DigitalDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/DigitalDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StadiumOrArena, comment: "A stadium.".freeze, label: "StadiumOrArena".freeze, - subClassOf: ["schema:CivicStructure".freeze, "schema:SportsActivityLocation".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CivicStructure".freeze, "http://schema.org/SportsActivityLocation".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :State, comment: "A state or province of a country.".freeze, label: "State".freeze, - subClassOf: "schema:AdministrativeArea".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StatisticalPopulation, 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 [[Person]]s 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.\nThe 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\npopulation, 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](/docs/data-and-datasets.html) overview for more details.\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "StatisticalPopulation".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StatusEnumeration, comment: "Lists or enumerations dealing with status types.".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2604".freeze, label: "StatusEnumeration".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2604".freeze, - subClassOf: "schema:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SteeringPositionValue, comment: "A value indicating a steering position.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Store, comment: "A retail good store.".freeze, label: "Store".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StructuredValue, comment: "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.".freeze, label: "StructuredValue".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StupidType, comment: "A StupidType for testing.".freeze, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, label: "StupidType".freeze, - "schema:isPartOf": "http://attic.schema.org".freeze, - subClassOf: "schema:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SubscribeAction, comment: "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.".freeze, label: "SubscribeAction".freeze, - subClassOf: "schema:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Substance, comment: "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/105590001".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Substance".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SubwayStation, comment: "A subway station.".freeze, label: "SubwayStation".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Suite, 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)).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SuperficialAnatomy, comment: "Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "SuperficialAnatomy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SurgicalProcedure, comment: "A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/387713003".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "SurgicalProcedure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SuspendAction, comment: "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).".freeze, label: "SuspendAction".freeze, - subClassOf: "schema:ControlAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ControlAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Synagogue, comment: "A synagogue.".freeze, label: "Synagogue".freeze, - subClassOf: "schema:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TVClip, comment: "A short TV program or a segment/part of a TV program.".freeze, label: "TVClip".freeze, - subClassOf: "schema:Clip".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Clip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TVEpisode, comment: "A TV episode which can be part of a series or season.".freeze, label: "TVEpisode".freeze, - subClassOf: "schema:Episode".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Episode".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TVSeason, comment: "Season dedicated to TV broadcast and associated online delivery.".freeze, label: "TVSeason".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:CreativeWorkSeason".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/CreativeWorkSeason".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TVSeries, comment: "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.".freeze, label: "TVSeries".freeze, - subClassOf: ["schema:CreativeWork".freeze, "schema:CreativeWorkSeries".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/CreativeWork".freeze, "http://schema.org/CreativeWorkSeries".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Table, comment: "A table on a Web page.".freeze, label: "Table".freeze, - subClassOf: "schema:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TakeAction, comment: "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\\n\\nRelated actions:\\n\\n* [[GiveAction]]: The reciprocal of TakeAction.\\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transfered.".freeze, label: "TakeAction".freeze, - subClassOf: "schema:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TattooParlor, comment: "A tattoo parlor.".freeze, label: "TattooParlor".freeze, - subClassOf: "schema:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Taxi, comment: "A taxi.".freeze, + "http://schema.org/supersededBy": "http://schema.org/TaxiService".freeze, label: "Taxi".freeze, - "schema:supersededBy": "schema:TaxiService".freeze, - subClassOf: "schema:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TaxiReservation, comment: "A reservation for a taxi.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "TaxiReservation".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TaxiService, comment: "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.".freeze, label: "TaxiService".freeze, - subClassOf: "schema:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TaxiStand, comment: "A taxi stand.".freeze, label: "TaxiStand".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TechArticle, comment: "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.".freeze, label: "TechArticle".freeze, - subClassOf: "schema:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TelevisionChannel, comment: "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.".freeze, label: "TelevisionChannel".freeze, - subClassOf: "schema:BroadcastChannel".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BroadcastChannel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TelevisionStation, comment: "A television station.".freeze, label: "TelevisionStation".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TennisComplex, comment: "A tennis complex.".freeze, label: "TennisComplex".freeze, - subClassOf: "schema:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Text, comment: "Data type: Text.".freeze, label: "Text".freeze, - type: ["rdfs:Class".freeze, "schema:DataType".freeze] + type: ["http://schema.org/DataType".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :TextDigitalDocument, comment: "A file composed primarily of text.".freeze, label: "TextDigitalDocument".freeze, - subClassOf: "schema:DigitalDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/DigitalDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TheaterEvent, comment: "Event type: Theater performance.".freeze, label: "TheaterEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TheaterGroup, comment: "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.".freeze, label: "TheaterGroup".freeze, - subClassOf: "schema:PerformingGroup".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/PerformingGroup".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TherapeuticProcedure, comment: "A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/277132007".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "TherapeuticProcedure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Thesis, comment: "A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Thing, comment: "The most generic type of item.".freeze, label: "Thing".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Ticket, comment: "Used to describe a ticket to an event, a flight, a bus ride, etc.".freeze, label: "Ticket".freeze, - subClassOf: "schema:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TieAction, comment: "The act of reaching a draw in a competitive activity.".freeze, label: "TieAction".freeze, - subClassOf: "schema:AchieveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AchieveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Time, comment: "A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)).".freeze, label: "Time".freeze, - type: ["rdfs:Class".freeze, "schema:DataType".freeze] + type: ["http://schema.org/DataType".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :TipAction, comment: "The act of giving money voluntarily to a beneficiary in recognition of services rendered.".freeze, label: "TipAction".freeze, - subClassOf: "schema:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TireShop, comment: "A tire shop.".freeze, label: "TireShop".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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 [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines Destination (main destination of a tourism trip) as the place visited that is central to the decision to take the trip.\n (See examples below).".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "TouristDestination".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, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - subClassOf: "schema:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TouristInformationCenter, comment: "A tourist information center.".freeze, label: "TouristInformationCenter".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze 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](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors.\n (See examples below).".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "TouristTrip".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, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - subClassOf: "schema:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ToyStore, comment: "A toy store.".freeze, label: "ToyStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TrackAction, comment: "An agent tracks an object for updates.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\\n* [[SubscribeAction]]: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects.".freeze, label: "TrackAction".freeze, - subClassOf: "schema:FindAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FindAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TradeAction, comment: "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment.".freeze, label: "TradeAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TrainReservation, comment: "A reservation for train travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "TrainReservation".freeze, - subClassOf: "schema:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TrainStation, comment: "A train station.".freeze, label: "TrainStation".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TrainTrip, comment: "A trip on a commercial train line.".freeze, label: "TrainTrip".freeze, - subClassOf: "schema:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TransferAction, comment: "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.".freeze, label: "TransferAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TravelAction, comment: "The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.".freeze, label: "TravelAction".freeze, - subClassOf: "schema:MoveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MoveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TravelAgency, comment: "A travel agency.".freeze, label: "TravelAgency".freeze, - subClassOf: "schema:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TreatmentIndication, comment: "An indication for treating an underlying condition, symptom, etc.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "TreatmentIndication".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalIndication".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalIndication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Trip, comment: "A trip or journey. An itinerary of visits to one or more places.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UKNonprofitType, comment: "UKNonprofitType: Non-profit organization type originating from the United Kingdom.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "UKNonprofitType".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 + subClassOf: "http://schema.org/NonprofitType".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :URL, comment: "Data type: URL.".freeze, label: "URL".freeze, - subClassOf: "schema:Text".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Text".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :USNonprofitType, comment: "USNonprofitType: Non-profit organization type originating from the United States.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "USNonprofitType".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 + subClassOf: "http://schema.org/NonprofitType".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UnRegisterAction, comment: "The act of un-registering from a service.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: antonym of UnRegisterAction.\\n* [[LeaveAction]]: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people.".freeze, label: "UnRegisterAction".freeze, - subClassOf: "schema:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UnitPriceSpecification, comment: "The price asked for a given offer by the respective organization or person.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UpdateAction, comment: "The act of managing by changing/editing the state of the object.".freeze, label: "UpdateAction".freeze, - subClassOf: "schema:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UseAction, comment: "The act of applying an object to its intended purpose.".freeze, label: "UseAction".freeze, - subClassOf: "schema:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserBlocks, 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, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".freeze, label: "UserBlocks".freeze, - "schema:supersededBy": "schema:InteractionCounter".freeze, - subClassOf: "schema:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserCheckins, 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, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".freeze, label: "UserCheckins".freeze, - "schema:supersededBy": "schema:InteractionCounter".freeze, - subClassOf: "schema:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".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 + subClassOf: "http://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserDownloads, 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, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".freeze, label: "UserDownloads".freeze, - "schema:supersededBy": "schema:InteractionCounter".freeze, - subClassOf: "schema:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserInteraction, 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, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".freeze, label: "UserInteraction".freeze, - "schema:supersededBy": "schema:InteractionCounter".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserLikes, 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, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".freeze, label: "UserLikes".freeze, - "schema:supersededBy": "schema:InteractionCounter".freeze, - subClassOf: "schema:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserPageVisits, 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, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".freeze, label: "UserPageVisits".freeze, - "schema:supersededBy": "schema:InteractionCounter".freeze, - subClassOf: "schema:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserPlays, 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, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".freeze, label: "UserPlays".freeze, - "schema:supersededBy": "schema:InteractionCounter".freeze, - subClassOf: "schema:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserPlusOnes, 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, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".freeze, label: "UserPlusOnes".freeze, - "schema:supersededBy": "schema:InteractionCounter".freeze, - subClassOf: "schema:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserReview, comment: "A review created by an end-user (e.g. consumer, purchaser, attendee etc.), in contrast with [[CriticReview]].".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, label: "UserReview".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 + subClassOf: "http://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserTweets, 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, + "http://schema.org/supersededBy": "http://schema.org/InteractionCounter".freeze, label: "UserTweets".freeze, - "schema:supersededBy": "schema:InteractionCounter".freeze, - subClassOf: "schema:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Vehicle, comment: "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.".freeze, label: "Vehicle".freeze, - subClassOf: "schema:Product".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Vein, comment: "A type of blood vessel that specifically carries blood to the heart.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Vein".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:Vessel".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Vessel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Vessel, comment: "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Vessel".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VeterinaryCare, comment: "A vet's office.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "VeterinaryCare".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoGallery, comment: "Web page type: Video gallery page.".freeze, label: "VideoGallery".freeze, - subClassOf: "schema:MediaGallery".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MediaGallery".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoGame, comment: "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.".freeze, label: "VideoGame".freeze, - subClassOf: ["schema:Game".freeze, "schema:SoftwareApplication".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://schema.org/Game".freeze, "http://schema.org/SoftwareApplication".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoGameClip, comment: "A short segment/part of a video game.".freeze, label: "VideoGameClip".freeze, - subClassOf: "schema:Clip".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Clip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoGameSeries, comment: "A video game series.".freeze, label: "VideoGameSeries".freeze, - subClassOf: "schema:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoObject, comment: "A video file.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ViewAction, comment: "The act of consuming static visual content.".freeze, label: "ViewAction".freeze, - subClassOf: "schema:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "VirtualLocation".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 + subClassOf: "http://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Virus, comment: "Pathogenic virus that causes viral infection.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Virus".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:InfectiousAgentClass".freeze + type: "http://schema.org/InfectiousAgentClass".freeze term :VisualArtsEvent, comment: "Event type: Visual arts event.".freeze, label: "VisualArtsEvent".freeze, - subClassOf: "schema:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VisualArtwork, comment: "A work of art that is primarily visual in character.".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VitalSign, comment: "Vital signs are measures of various physiological functions in order to assess the most basic body functions.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "VitalSign".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalSign".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/MedicalSign".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Volcano, comment: "A volcano, like Fuji san.".freeze, label: "Volcano".freeze, - subClassOf: "schema:Landform".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Landform".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VoteAction, comment: "The act of expressing a preference from a fixed/finite/structured set of choices/options.".freeze, label: "VoteAction".freeze, - subClassOf: "schema:ChooseAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ChooseAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WPAdBlock, comment: "An advertising section of the page.".freeze, label: "WPAdBlock".freeze, - subClassOf: "schema:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WPFooter, comment: "The footer section of the page.".freeze, label: "WPFooter".freeze, - subClassOf: "schema:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WPHeader, comment: "The header section of the page.".freeze, label: "WPHeader".freeze, - subClassOf: "schema:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WPSideBar, comment: "A sidebar section of the page.".freeze, label: "WPSideBar".freeze, - subClassOf: "schema:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WantAction, comment: "The act of expressing a desire about the object. An agent wants an object.".freeze, label: "WantAction".freeze, - subClassOf: "schema:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/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 + subClassOf: "http://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WarrantyScope, comment: "A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Labor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n ".freeze, + "http://schema.org/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 + subClassOf: "http://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WatchAction, comment: "The act of consuming dynamic/moving visual content.".freeze, label: "WatchAction".freeze, - subClassOf: "schema:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Waterfall, comment: "A waterfall, like Niagara.".freeze, label: "Waterfall".freeze, - subClassOf: "schema:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WearAction, comment: "The act of dressing oneself in clothing.".freeze, label: "WearAction".freeze, - subClassOf: "schema:UseAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/UseAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebAPI, comment: "An application programming interface accessible over Web/Internet technologies.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, label: "WebAPI".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 + subClassOf: "http://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebApplication, comment: "Web applications.".freeze, label: "WebApplication".freeze, - subClassOf: "schema:SoftwareApplication".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/SoftwareApplication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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]].)\n ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2358".freeze, label: "WebContent".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 + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebPage, comment: "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.".freeze, label: "WebPage".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebPageElement, comment: "A web page element, like a table or an image.".freeze, label: "WebPageElement".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebSite, comment: "A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.".freeze, label: "WebSite".freeze, - subClassOf: "schema:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WholesaleStore, comment: "A wholesale store.".freeze, label: "WholesaleStore".freeze, - subClassOf: "schema:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WinAction, comment: "The act of achieving victory in a competitive activity.".freeze, label: "WinAction".freeze, - subClassOf: "schema:AchieveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/AchieveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Winery, comment: "A winery.".freeze, label: "Winery".freeze, - subClassOf: "schema:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "WorkBasedProgram".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 + subClassOf: "http://schema.org/EducationalOccupationalProgram".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/243".freeze, label: "WorkersUnion".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/243".freeze, - subClassOf: "schema:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WriteAction, comment: "The act of authoring written creative content.".freeze, label: "WriteAction".freeze, - subClassOf: "schema:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :XPathType, comment: "Text representing an XPath (typically but not necessarily version 1.0).".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, label: "XPathType".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 + subClassOf: "http://schema.org/Text".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Zoo, comment: "A zoo.".freeze, label: "Zoo".freeze, - subClassOf: "schema:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :about, comment: "The subject matter of the content.".freeze, - domainIncludes: ["schema:CommunicateAction".freeze, "schema:CreativeWork".freeze, "schema:Event".freeze], + domainIncludes: ["http://schema.org/CommunicateAction".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze], + "http://schema.org/inverseOf": "http://schema.org/subjectOf".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, label: "about".freeze, - rangeIncludes: "schema:Thing".freeze, - "schema:inverseOf": "schema:subjectOf".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :abridged, comment: "Indicates whether the book is an abridged edition.".freeze, - domainIncludes: "schema:Book".freeze, + domainIncludes: "http://schema.org/Book".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "abridged".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :abstract, comment: "An abstract is a short description that summarizes a [[CreativeWork]].".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/276".freeze, label: "abstract".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/276".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accelerationTime, comment: "The time needed to accelerate the vehicle from a given start velocity to a given target velocity.\\n\\nTypical unit code(s): SEC for seconds\\n\\n* 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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Question".freeze, + domainIncludes: "http://schema.org/Question".freeze, label: "acceptedAnswer".freeze, - rangeIncludes: ["schema:Answer".freeze, "schema:ItemList".freeze], - subPropertyOf: "schema:suggestedAnswer".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Answer".freeze, "http://schema.org/ItemList".freeze], + subPropertyOf: "http://schema.org/suggestedAnswer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :acceptedOffer, comment: "The offer(s) -- e.g., product, quantity and price combinations -- included in the order.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "acceptedOffer".freeze, - rangeIncludes: "schema:Offer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :acceptedPaymentMethod, comment: "The payment method(s) accepted by seller for this offer.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/LoanOrCredit".freeze, "http://schema.org/PaymentMethod".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:FoodEstablishment".freeze, + domainIncludes: "http://schema.org/FoodEstablishment".freeze, label: "acceptsReservations".freeze, - rangeIncludes: ["schema:Boolean".freeze, "schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Boolean".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessCode, comment: "Password, PIN, or access code needed for delivery (e.g. from a locker).".freeze, - domainIncludes: "schema:DeliveryEvent".freeze, + domainIncludes: "http://schema.org/DeliveryEvent".freeze, label: "accessCode".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\n ".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, label: "accessMode".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\n ".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, label: "accessModeSufficient".freeze, - rangeIncludes: "schema:ItemList".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ItemList".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessibilityAPI, comment: "Indicates that the resource is compatible with the referenced accessibility API ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "accessibilityAPI".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessibilityControl, comment: "Identifies input methods that are sufficient to fully control the described resource ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "accessibilityControl".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessibilityFeature, comment: "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "accessibilityFeature".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessibilityHazard, comment: "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "accessibilityHazard".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, label: "accessibilitySummary".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accommodationCategory, comment: "Category of an [[Accommodation]], following real estate conventions e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values).".freeze, - domainIncludes: "schema:Accommodation".freeze, + domainIncludes: "http://schema.org/Accommodation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "accommodationCategory".freeze, - rangeIncludes: "schema:Text".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/category".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accommodationFloorPlan, comment: "A floorplan of some [[Accommodation]].".freeze, - domainIncludes: ["schema:Accommodation".freeze, "schema:Residence".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/Residence".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "accommodationFloorPlan".freeze, - rangeIncludes: "schema:FloorPlan".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/FloorPlan".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accountId, comment: "The identifier for the account the payment will be applied to.".freeze, - domainIncludes: "schema:Invoice".freeze, + domainIncludes: "http://schema.org/Invoice".freeze, label: "accountId".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "schema:identifier".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accountMinimumInflow, comment: "A minimum amount that has to be paid in every month.".freeze, - domainIncludes: "schema:BankAccount".freeze, + domainIncludes: "http://schema.org/BankAccount".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "accountMinimumInflow".freeze, - rangeIncludes: "schema:MonetaryAmount".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 + rangeIncludes: "http://schema.org/MonetaryAmount".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:BankAccount".freeze, + domainIncludes: "http://schema.org/BankAccount".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "accountOverdraftLimit".freeze, - rangeIncludes: "schema:MonetaryAmount".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 + rangeIncludes: "http://schema.org/MonetaryAmount".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accountablePerson, comment: "Specifies the Person that is legally accountable for the CreativeWork.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "accountablePerson".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :acquireLicensePage, comment: "Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, label: "acquireLicensePage".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/usageInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :acquiredFrom, comment: "The organization or person from which the product was acquired.".freeze, - domainIncludes: "schema:OwnershipInfo".freeze, + domainIncludes: "http://schema.org/OwnershipInfo".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:BusOrCoach".freeze, "schema:Car".freeze], + domainIncludes: ["http://schema.org/BusOrCoach".freeze, "http://schema.org/Car".freeze], + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:ConsumeAction".freeze, + domainIncludes: "http://schema.org/ConsumeAction".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "actionAccessibilityRequirement".freeze, - rangeIncludes: "schema:ActionAccessSpecification".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ActionAccessSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionApplication, comment: "An application that can complete the request.".freeze, - domainIncludes: "schema:EntryPoint".freeze, + domainIncludes: "http://schema.org/EntryPoint".freeze, label: "actionApplication".freeze, - rangeIncludes: "schema:SoftwareApplication".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/SoftwareApplication".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionOption, comment: "A sub property of object. The options subject to this action.".freeze, - domainIncludes: "schema:ChooseAction".freeze, + domainIncludes: "http://schema.org/ChooseAction".freeze, label: "actionOption".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:Thing".freeze], - subPropertyOf: "schema:object".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/Thing".freeze], + subPropertyOf: "http://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionPlatform, comment: "The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.".freeze, - domainIncludes: "schema:EntryPoint".freeze, + domainIncludes: "http://schema.org/EntryPoint".freeze, label: "actionPlatform".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionStatus, comment: "Indicates the current disposition of the Action.".freeze, - domainIncludes: "schema:Action".freeze, + domainIncludes: "http://schema.org/Action".freeze, label: "actionStatus".freeze, - rangeIncludes: "schema:ActionStatusType".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ActionStatusType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/NewsMediaOrganization".freeze, "http://schema.org/Organization".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "actionableFeedbackPolicy".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :activeIngredient, comment: "An active ingredient, typically chemical compounds and/or biologic substances.".freeze, - domainIncludes: ["schema:DietarySupplement".freeze, "schema:Drug".freeze, "schema:DrugStrength".freeze, "schema:Substance".freeze], + domainIncludes: ["http://schema.org/DietarySupplement".freeze, "http://schema.org/Drug".freeze, "http://schema.org/DrugStrength".freeze, "http://schema.org/Substance".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "activeIngredient".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :activityDuration, comment: "Length of time to engage in the activity.".freeze, - domainIncludes: "schema:ExercisePlan".freeze, + domainIncludes: "http://schema.org/ExercisePlan".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "activityDuration".freeze, - rangeIncludes: ["schema:Duration".freeze, "schema:QuantitativeValue".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Duration".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :activityFrequency, comment: "How often one should engage in the activity.".freeze, - domainIncludes: "schema:ExercisePlan".freeze, + domainIncludes: "http://schema.org/ExercisePlan".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "activityFrequency".freeze, - rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QuantitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actor, comment: "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.".freeze, - domainIncludes: ["schema:Clip".freeze, "schema:CreativeWorkSeason".freeze, "schema:Episode".freeze, "schema:Event".freeze, "schema:Movie".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:VideoObject".freeze], + domainIncludes: ["http://schema.org/Clip".freeze, "http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/Episode".freeze, "http://schema.org/Event".freeze, "http://schema.org/Movie".freeze, "http://schema.org/MovieSeries".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGame".freeze, "http://schema.org/VideoGameSeries".freeze, "http://schema.org/VideoObject".freeze], label: "actor".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actors, comment: "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.".freeze, - domainIncludes: ["schema:Clip".freeze, "schema:Episode".freeze, "schema:Movie".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:VideoObject".freeze], + domainIncludes: ["http://schema.org/Clip".freeze, "http://schema.org/Episode".freeze, "http://schema.org/Movie".freeze, "http://schema.org/MovieSeries".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGame".freeze, "http://schema.org/VideoGameSeries".freeze, "http://schema.org/VideoObject".freeze], + "http://schema.org/supersededBy": "http://schema.org/actor".freeze, label: "actors".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:supersededBy": "schema:actor".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Offer".freeze, + domainIncludes: "http://schema.org/Offer".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "addOn".freeze, - rangeIncludes: "schema:Offer".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalName, comment: "An additional name for a Person, can be used for a middle name.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "additionalName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalNumberOfGuests, comment: "If responding yes, the number of guests who will attend in addition to the invitee.".freeze, - domainIncludes: "schema:RsvpAction".freeze, + domainIncludes: "http://schema.org/RsvpAction".freeze, label: "additionalNumberOfGuests".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalProperty, comment: "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\\n\\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.\n".freeze, - domainIncludes: ["schema:Place".freeze, "schema:Product".freeze, "schema:QualitativeValue".freeze, "schema:QuantitativeValue".freeze], + domainIncludes: ["http://schema.org/Place".freeze, "http://schema.org/Product".freeze, "http://schema.org/QualitativeValue".freeze, "http://schema.org/QuantitativeValue".freeze], label: "additionalProperty".freeze, - rangeIncludes: "schema:PropertyValue".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PropertyValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalType, comment: "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.".freeze, - domainIncludes: "schema:Thing".freeze, + domainIncludes: "http://schema.org/Thing".freeze, label: "additionalType".freeze, - rangeIncludes: "schema:URL".freeze, - subPropertyOf: "rdf:type".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + subPropertyOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalVariable, comment: "Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.".freeze, - domainIncludes: "schema:ExercisePlan".freeze, + domainIncludes: "http://schema.org/ExercisePlan".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "additionalVariable".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :address, comment: "Physical address of the item.".freeze, - domainIncludes: ["schema:GeoCoordinates".freeze, "schema:GeoShape".freeze, "schema:Organization".freeze, "schema:Person".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeoCoordinates".freeze, "http://schema.org/GeoShape".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze, "http://schema.org/Place".freeze], label: "address".freeze, - rangeIncludes: ["schema:PostalAddress".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/PostalAddress".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :addressCountry, comment: "The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1).".freeze, - domainIncludes: ["schema:DefinedRegion".freeze, "schema:GeoCoordinates".freeze, "schema:GeoShape".freeze, "schema:PostalAddress".freeze], + domainIncludes: ["http://schema.org/DefinedRegion".freeze, "http://schema.org/GeoCoordinates".freeze, "http://schema.org/GeoShape".freeze, "http://schema.org/PostalAddress".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "addressCountry".freeze, - rangeIncludes: ["schema:Country".freeze, "schema:Text".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Country".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :addressLocality, comment: "The locality in which the street address is, and which is in the region. For example, Mountain View.".freeze, - domainIncludes: "schema:PostalAddress".freeze, + domainIncludes: "http://schema.org/PostalAddress".freeze, label: "addressLocality".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country) ".freeze, - domainIncludes: ["schema:DefinedRegion".freeze, "schema:PostalAddress".freeze], + domainIncludes: ["http://schema.org/DefinedRegion".freeze, "http://schema.org/PostalAddress".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "addressRegion".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :administrationRoute, comment: "A route by which this drug may be administered, e.g. 'oral'.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "administrationRoute".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "advanceBookingRequirement".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:MedicalDevice".freeze, "schema:TherapeuticProcedure".freeze], + domainIncludes: ["http://schema.org/MedicalDevice".freeze, "http://schema.org/TherapeuticProcedure".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "adverseOutcome".freeze, - rangeIncludes: "schema:MedicalEntity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :affectedBy, comment: "Drugs that affect the test's results.".freeze, - domainIncludes: "schema:MedicalTest".freeze, + domainIncludes: "http://schema.org/MedicalTest".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "affectedBy".freeze, - rangeIncludes: "schema:Drug".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Drug".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :affiliation, comment: "An organization that this person is affiliated with. For example, a school/university, a club, or a team.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "affiliation".freeze, - rangeIncludes: "schema:Organization".freeze, - subPropertyOf: "schema:memberOf".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + subPropertyOf: "http://schema.org/memberOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :afterMedia, comment: "A media object representing the circumstances after performing this direction.".freeze, - domainIncludes: "schema:HowToDirection".freeze, + domainIncludes: "http://schema.org/HowToDirection".freeze, label: "afterMedia".freeze, - rangeIncludes: ["schema:MediaObject".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MediaObject".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agent, comment: "The direct performer or driver of the action (animate or inanimate). e.g. *John* wrote a book.".freeze, - domainIncludes: "schema:Action".freeze, + domainIncludes: "http://schema.org/Action".freeze, label: "agent".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :aggregateRating, comment: "The overall rating, based on a collection of reviews or ratings, of the item.".freeze, - domainIncludes: ["schema:Brand".freeze, "schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Offer".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Product".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/Brand".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Place".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze], label: "aggregateRating".freeze, - rangeIncludes: "schema:AggregateRating".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AggregateRating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :aircraft, comment: "The kind of aircraft (e.g., \"Boeing 747\").".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "aircraft".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:Vehicle".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/Vehicle".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :album, comment: "A music album.".freeze, - domainIncludes: "schema:MusicGroup".freeze, + domainIncludes: "http://schema.org/MusicGroup".freeze, label: "album".freeze, - rangeIncludes: "schema:MusicAlbum".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicAlbum".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :albumProductionType, comment: "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.".freeze, - domainIncludes: "schema:MusicAlbum".freeze, + domainIncludes: "http://schema.org/MusicAlbum".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "albumProductionType".freeze, - rangeIncludes: "schema:MusicAlbumProductionType".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicAlbumProductionType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :albumRelease, comment: "A release of this album.".freeze, - domainIncludes: "schema:MusicAlbum".freeze, + domainIncludes: "http://schema.org/MusicAlbum".freeze, + "http://schema.org/inverseOf": "http://schema.org/releaseOf".freeze, label: "albumRelease".freeze, - rangeIncludes: "schema:MusicRelease".freeze, - "schema:inverseOf": "schema:releaseOf".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicRelease".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :albumReleaseType, comment: "The kind of release which this album is: single, EP or album.".freeze, - domainIncludes: "schema:MusicAlbum".freeze, + domainIncludes: "http://schema.org/MusicAlbum".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "albumReleaseType".freeze, - rangeIncludes: "schema:MusicAlbumReleaseType".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicAlbumReleaseType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :albums, comment: "A collection of music albums.".freeze, - domainIncludes: "schema:MusicGroup".freeze, + domainIncludes: "http://schema.org/MusicGroup".freeze, + "http://schema.org/supersededBy": "http://schema.org/album".freeze, label: "albums".freeze, - rangeIncludes: "schema:MusicAlbum".freeze, - "schema:supersededBy": "schema:album".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicAlbum".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alcoholWarning, comment: "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "alcoholWarning".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :algorithm, comment: "The algorithm or rules to follow to compute the score.".freeze, - domainIncludes: "schema:MedicalRiskScore".freeze, + domainIncludes: "http://schema.org/MedicalRiskScore".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "algorithm".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alignmentType, 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, + domainIncludes: "http://schema.org/AlignmentObject".freeze, label: "alignmentType".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alternateName, comment: "An alias for the item.".freeze, - domainIncludes: "schema:Thing".freeze, + domainIncludes: "http://schema.org/Thing".freeze, label: "alternateName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alternativeHeadline, comment: "A secondary title of the CreativeWork.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "alternativeHeadline".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alumni, comment: "Alumni of an organization.".freeze, - domainIncludes: ["schema:EducationalOrganization".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/EducationalOrganization".freeze, "http://schema.org/Organization".freeze], + "http://schema.org/inverseOf": "http://schema.org/alumniOf".freeze, label: "alumni".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:inverseOf": "schema:alumniOf".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alumniOf, comment: "An organization that the person is an alumni of.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, + "http://schema.org/inverseOf": "http://schema.org/alumni".freeze, label: "alumniOf".freeze, - rangeIncludes: ["schema:EducationalOrganization".freeze, "schema:Organization".freeze], - "schema:inverseOf": "schema:alumni".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/EducationalOrganization".freeze, "http://schema.org/Organization".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze, "schema:LodgingBusiness".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/FloorPlan".freeze, "http://schema.org/LodgingBusiness".freeze, "http://schema.org/Place".freeze], + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: "http://schema.org/LocationFeatureSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :amount, comment: "The amount of money.".freeze, - domainIncludes: ["schema:DatedMoneySpecification".freeze, "schema:InvestmentOrDeposit".freeze, "schema:LoanOrCredit".freeze, "schema:MonetaryGrant".freeze, "schema:MoneyTransfer".freeze], + domainIncludes: ["http://schema.org/DatedMoneySpecification".freeze, "http://schema.org/InvestmentOrDeposit".freeze, "http://schema.org/LoanOrCredit".freeze, "http://schema.org/MonetaryGrant".freeze, "http://schema.org/MoneyTransfer".freeze], + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1253".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], label: "amount".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".freeze], - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1253".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/Number".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :amountOfThisGood, comment: "The quantity of the goods included in the offer.".freeze, - domainIncludes: "schema:TypeAndQuantityNode".freeze, + domainIncludes: "http://schema.org/TypeAndQuantityNode".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "amountOfThisGood".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2514".freeze, label: "announcementLocation".freeze, - rangeIncludes: ["schema:CivicStructure".freeze, "schema:LocalBusiness".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 + rangeIncludes: ["http://schema.org/CivicStructure".freeze, "http://schema.org/LocalBusiness".freeze], + subPropertyOf: "http://schema.org/spatialCoverage".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:FinancialProduct".freeze, + domainIncludes: "http://schema.org/FinancialProduct".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :answerCount, comment: "The number of answers this question has received.".freeze, - domainIncludes: "schema:Question".freeze, + domainIncludes: "http://schema.org/Question".freeze, label: "answerCount".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :answerExplanation, comment: "A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. ".freeze, - domainIncludes: "schema:Answer".freeze, + domainIncludes: "http://schema.org/Answer".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2636".freeze, label: "answerExplanation".freeze, - rangeIncludes: ["schema:Comment".freeze, "schema:WebContent".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2636".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Comment".freeze, "http://schema.org/WebContent".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :antagonist, comment: "The muscle whose action counteracts the specified muscle.".freeze, - domainIncludes: "schema:Muscle".freeze, + domainIncludes: "http://schema.org/Muscle".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "antagonist".freeze, - rangeIncludes: "schema:Muscle".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Muscle".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appearance, comment: "Indicates an occurence of a [[Claim]] in some [[CreativeWork]].".freeze, - domainIncludes: "schema:Claim".freeze, + domainIncludes: "http://schema.org/Claim".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, label: "appearance".freeze, - rangeIncludes: "schema:CreativeWork".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 + rangeIncludes: "http://schema.org/CreativeWork".freeze, + subPropertyOf: "http://schema.org/workExample".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicableLocation, comment: "The location in which the status applies.".freeze, - domainIncludes: ["schema:DrugCost".freeze, "schema:DrugLegalStatus".freeze], + domainIncludes: ["http://schema.org/DrugCost".freeze, "http://schema.org/DrugLegalStatus".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "applicableLocation".freeze, - rangeIncludes: "schema:AdministrativeArea".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2083".freeze, label: "applicantLocationRequirements".freeze, - rangeIncludes: "schema:AdministrativeArea".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2083".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :application, comment: "An application that can complete the request.".freeze, - domainIncludes: "schema:EntryPoint".freeze, + domainIncludes: "http://schema.org/EntryPoint".freeze, + "http://schema.org/supersededBy": "http://schema.org/actionApplication".freeze, label: "application".freeze, - rangeIncludes: "schema:SoftwareApplication".freeze, - "schema:supersededBy": "schema:actionApplication".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/SoftwareApplication".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationCategory, comment: "Type of software application, e.g. 'Game, Multimedia'.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "applicationCategory".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationContact, comment: "Contact details for further information relevant to this job posting.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, label: "applicationContact".freeze, - rangeIncludes: "schema:ContactPoint".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ContactPoint".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationDeadline, comment: "The date at which the program stops collecting applications for the next enrollment cycle.".freeze, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "applicationDeadline".freeze, - rangeIncludes: "schema:Date".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationStartDate, comment: "The date at which the program begins collecting applications for the next enrollment cycle.".freeze, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "applicationStartDate".freeze, - rangeIncludes: "schema:Date".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationSubCategory, comment: "Subcategory of the application, e.g. 'Arcade Game'.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "applicationSubCategory".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationSuite, comment: "The name of the application suite to which the application belongs (e.g. Excel belongs to Office).".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "applicationSuite".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appliesToDeliveryMethod, comment: "The delivery method(s) to which the delivery charge or payment charge specification applies.".freeze, - domainIncludes: ["schema:DeliveryChargeSpecification".freeze, "schema:PaymentChargeSpecification".freeze], + domainIncludes: ["http://schema.org/DeliveryChargeSpecification".freeze, "http://schema.org/PaymentChargeSpecification".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "appliesToDeliveryMethod".freeze, - rangeIncludes: "schema:DeliveryMethod".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DeliveryMethod".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appliesToPaymentMethod, comment: "The payment method(s) to which the payment charge specification applies.".freeze, - domainIncludes: "schema:PaymentChargeSpecification".freeze, + domainIncludes: "http://schema.org/PaymentChargeSpecification".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "appliesToPaymentMethod".freeze, - rangeIncludes: "schema:PaymentMethod".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PaymentMethod".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :archiveHeld, comment: "Collection, [fonds](https://en.wikipedia.org/wiki/Fonds), or item held, kept or maintained by an [[ArchiveOrganization]].".freeze, - domainIncludes: "schema:ArchiveOrganization".freeze, + domainIncludes: "http://schema.org/ArchiveOrganization".freeze, + "http://schema.org/inverseOf": "http://schema.org/holdingArchive".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "archiveHeld".freeze, - rangeIncludes: "schema:ArchiveComponent".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 + rangeIncludes: "http://schema.org/ArchiveComponent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :area, comment: "The area within which users can expect to reach the broadcast service.".freeze, - domainIncludes: "schema:BroadcastService".freeze, + domainIncludes: "http://schema.org/BroadcastService".freeze, + "http://schema.org/supersededBy": "http://schema.org/serviceArea".freeze, label: "area".freeze, - rangeIncludes: "schema:Place".freeze, - "schema:supersededBy": "schema:serviceArea".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :areaServed, comment: "The geographic area where a service or offered item is provided.".freeze, - domainIncludes: ["schema:ContactPoint".freeze, "schema:DeliveryChargeSpecification".freeze, "schema:Demand".freeze, "schema:Offer".freeze, "schema:Organization".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/DeliveryChargeSpecification".freeze, "http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Service".freeze], label: "areaServed".freeze, - rangeIncludes: ["schema:AdministrativeArea".freeze, "schema:GeoShape".freeze, "schema:Place".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AdministrativeArea".freeze, "http://schema.org/GeoShape".freeze, "http://schema.org/Place".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalAirport, comment: "The airport where the flight terminates.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "arrivalAirport".freeze, - rangeIncludes: "schema:Airport".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Airport".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalBoatTerminal, comment: "The terminal or port from which the boat arrives.".freeze, - domainIncludes: "schema:BoatTrip".freeze, + domainIncludes: "http://schema.org/BoatTrip".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "arrivalBoatTerminal".freeze, - rangeIncludes: "schema:BoatTerminal".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BoatTerminal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalBusStop, comment: "The stop or station from which the bus arrives.".freeze, - domainIncludes: "schema:BusTrip".freeze, + domainIncludes: "http://schema.org/BusTrip".freeze, label: "arrivalBusStop".freeze, - rangeIncludes: ["schema:BusStation".freeze, "schema:BusStop".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/BusStation".freeze, "http://schema.org/BusStop".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalGate, comment: "Identifier of the flight's arrival gate.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "arrivalGate".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalPlatform, comment: "The platform where the train arrives.".freeze, - domainIncludes: "schema:TrainTrip".freeze, + domainIncludes: "http://schema.org/TrainTrip".freeze, label: "arrivalPlatform".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalStation, comment: "The station where the train trip ends.".freeze, - domainIncludes: "schema:TrainTrip".freeze, + domainIncludes: "http://schema.org/TrainTrip".freeze, label: "arrivalStation".freeze, - rangeIncludes: "schema:TrainStation".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/TrainStation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalTerminal, comment: "Identifier of the flight's arrival terminal.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "arrivalTerminal".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalTime, comment: "The expected arrival time.".freeze, - domainIncludes: "schema:Trip".freeze, + domainIncludes: "http://schema.org/Trip".freeze, label: "arrivalTime".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Time".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Time".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artEdition, comment: "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\").".freeze, - domainIncludes: "schema:VisualArtwork".freeze, + domainIncludes: "http://schema.org/VisualArtwork".freeze, label: "artEdition".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artMedium, comment: "The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)".freeze, - domainIncludes: "schema:VisualArtwork".freeze, + domainIncludes: "http://schema.org/VisualArtwork".freeze, label: "artMedium".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - subPropertyOf: "schema:material".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/material".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arterialBranch, comment: "The branches that comprise the arterial structure.".freeze, - domainIncludes: "schema:Artery".freeze, + domainIncludes: "http://schema.org/Artery".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "arterialBranch".freeze, - rangeIncludes: "schema:AnatomicalStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artform, comment: "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.".freeze, - domainIncludes: "schema:VisualArtwork".freeze, + domainIncludes: "http://schema.org/VisualArtwork".freeze, label: "artform".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :articleBody, comment: "The actual body of the article.".freeze, - domainIncludes: "schema:Article".freeze, + domainIncludes: "http://schema.org/Article".freeze, label: "articleBody".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :articleSection, comment: "Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.".freeze, - domainIncludes: "schema:Article".freeze, + domainIncludes: "http://schema.org/Article".freeze, label: "articleSection".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artist, comment: "The primary artist for a work\n \tin a medium other than pencils or digital line art--for example, if the\n \tprimary artwork is done in watercolors or digital paints.".freeze, - domainIncludes: ["schema:ComicIssue".freeze, "schema:ComicStory".freeze, "schema:VisualArtwork".freeze], + domainIncludes: ["http://schema.org/ComicIssue".freeze, "http://schema.org/ComicStory".freeze, "http://schema.org/VisualArtwork".freeze], + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "artist".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artworkSurface, comment: "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.".freeze, - domainIncludes: "schema:VisualArtwork".freeze, + domainIncludes: "http://schema.org/VisualArtwork".freeze, label: "artworkSurface".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :aspect, comment: "An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.".freeze, - domainIncludes: "schema:MedicalWebPage".freeze, + domainIncludes: "http://schema.org/MedicalWebPage".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, + "http://schema.org/supersededBy": "http://schema.org/mainContentOfPage".freeze, label: "aspect".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - "schema:supersededBy": "schema:mainContentOfPage".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assembly, comment: "Library file name e.g., mscorlib.dll, system.web.dll.".freeze, - domainIncludes: "schema:APIReference".freeze, + domainIncludes: "http://schema.org/APIReference".freeze, + "http://schema.org/supersededBy": "http://schema.org/executableLibraryName".freeze, label: "assembly".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:supersededBy": "schema:executableLibraryName".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assemblyVersion, comment: "Associated product/technology version. e.g., .NET Framework 4.5.".freeze, - domainIncludes: "schema:APIReference".freeze, + domainIncludes: "http://schema.org/APIReference".freeze, label: "assemblyVersion".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, "schema:LearningResource".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/EducationEvent".freeze, "http://schema.org/LearningResource".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, label: "assesses".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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], + domainIncludes: ["http://schema.org/MedicalCondition".freeze, "http://schema.org/PhysicalActivity".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "associatedAnatomy".freeze, - rangeIncludes: ["schema:AnatomicalStructure".freeze, "schema:AnatomicalSystem".freeze, "schema:SuperficialAnatomy".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AnatomicalStructure".freeze, "http://schema.org/AnatomicalSystem".freeze, "http://schema.org/SuperficialAnatomy".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedArticle, comment: "A NewsArticle associated with the Media Object.".freeze, - domainIncludes: "schema:MediaObject".freeze, + domainIncludes: "http://schema.org/MediaObject".freeze, label: "associatedArticle".freeze, - rangeIncludes: "schema:NewsArticle".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedMedia, comment: "A media object that encodes this CreativeWork. This property is a synonym for encoding.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:HyperToc".freeze, "schema:HyperTocEntry".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/HyperToc".freeze, "http://schema.org/HyperTocEntry".freeze], label: "associatedMedia".freeze, - rangeIncludes: "schema:MediaObject".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MediaObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedPathophysiology, comment: "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.".freeze, - domainIncludes: ["schema:AnatomicalStructure".freeze, "schema:AnatomicalSystem".freeze, "schema:SuperficialAnatomy".freeze], + domainIncludes: ["http://schema.org/AnatomicalStructure".freeze, "http://schema.org/AnatomicalSystem".freeze, "http://schema.org/SuperficialAnatomy".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "associatedPathophysiology".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :athlete, comment: "A person that acts as performing member of a sports team; a player as opposed to a coach.".freeze, - domainIncludes: "schema:SportsTeam".freeze, + domainIncludes: "http://schema.org/SportsTeam".freeze, label: "athlete".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :attendee, comment: "A person or organization attending the event.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, label: "attendee".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :attendees, comment: "A person attending the event.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/supersededBy": "http://schema.org/attendee".freeze, label: "attendees".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:supersededBy": "schema:attendee".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audience, comment: "An intended audience, i.e. a group for whom something was created.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:LodgingBusiness".freeze, "schema:PlayAction".freeze, "schema:Product".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze, "http://schema.org/LodgingBusiness".freeze, "http://schema.org/PlayAction".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze], label: "audience".freeze, - rangeIncludes: "schema:Audience".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Audience".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audienceType, comment: "The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).".freeze, - domainIncludes: "schema:Audience".freeze, + domainIncludes: "http://schema.org/Audience".freeze, label: "audienceType".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audio, comment: "An embedded audio object.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2420".freeze, label: "audio".freeze, - rangeIncludes: ["schema:AudioObject".freeze, "schema:Clip".freeze, "schema:MusicRecording".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2420".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AudioObject".freeze, "http://schema.org/Clip".freeze, "http://schema.org/MusicRecording".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:MediaSubscription".freeze, + domainIncludes: "http://schema.org/MediaSubscription".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "authenticator".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Rating".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Rating".freeze], label: "author".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availability, comment: "The availability of this item—for example In stock, Out of stock, Pre-order, etc.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], label: "availability".freeze, - rangeIncludes: "schema:ItemAvailability".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ItemAvailability".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availabilityEnds, comment: "The end of the availability of the product or service included in the offer.".freeze, - domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/ActionAccessSpecification".freeze, "http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], label: "availabilityEnds".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze, "schema:Time".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 + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze, "http://schema.org/Time".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availabilityStarts, comment: "The beginning of the availability of the product or service included in the offer.".freeze, - domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/ActionAccessSpecification".freeze, "http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], label: "availabilityStarts".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze, "schema:Time".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 + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze, "http://schema.org/Time".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableAtOrFrom, comment: "The place(s) from which the offer can be obtained (e.g. store locations).".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Place".freeze, + subPropertyOf: "http://schema.org/areaServed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableChannel, comment: "A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).".freeze, - domainIncludes: "schema:Service".freeze, + domainIncludes: "http://schema.org/Service".freeze, label: "availableChannel".freeze, - rangeIncludes: "schema:ServiceChannel".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ServiceChannel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableDeliveryMethod, comment: "The delivery method(s) available for this offer.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "availableDeliveryMethod".freeze, - rangeIncludes: "schema:DeliveryMethod".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DeliveryMethod".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableFrom, comment: "When the item is available for pickup from the store, locker, etc.".freeze, - domainIncludes: "schema:DeliveryEvent".freeze, + domainIncludes: "http://schema.org/DeliveryEvent".freeze, label: "availableFrom".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableIn, comment: "The location in which the strength is available.".freeze, - domainIncludes: "schema:DrugStrength".freeze, + domainIncludes: "http://schema.org/DrugStrength".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "availableIn".freeze, - rangeIncludes: "schema:AdministrativeArea".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableLanguage, comment: "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]".freeze, - domainIncludes: ["schema:ContactPoint".freeze, "schema:LodgingBusiness".freeze, "schema:ServiceChannel".freeze, "schema:TouristAttraction".freeze], + domainIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/LodgingBusiness".freeze, "http://schema.org/ServiceChannel".freeze, "http://schema.org/TouristAttraction".freeze], label: "availableLanguage".freeze, - rangeIncludes: ["schema:Language".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Language".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableOnDevice, comment: "Device required to run the application. Used in cases where a specific make/model is required to run the application.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "availableOnDevice".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableService, comment: "A medical service available from this provider.".freeze, - domainIncludes: ["schema:Hospital".freeze, "schema:MedicalClinic".freeze, "schema:Physician".freeze], + domainIncludes: ["http://schema.org/Hospital".freeze, "http://schema.org/MedicalClinic".freeze, "http://schema.org/Physician".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "availableService".freeze, - rangeIncludes: ["schema:MedicalProcedure".freeze, "schema:MedicalTest".freeze, "schema:MedicalTherapy".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MedicalProcedure".freeze, "http://schema.org/MedicalTest".freeze, "http://schema.org/MedicalTherapy".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableStrength, comment: "An available dosage strength for the drug.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "availableStrength".freeze, - rangeIncludes: "schema:DrugStrength".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DrugStrength".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableTest, comment: "A diagnostic test or procedure offered by this lab.".freeze, - domainIncludes: "schema:DiagnosticLab".freeze, + domainIncludes: "http://schema.org/DiagnosticLab".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "availableTest".freeze, - rangeIncludes: "schema:MedicalTest".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableThrough, comment: "After this date, the item will no longer be available for pickup.".freeze, - domainIncludes: "schema:DeliveryEvent".freeze, + domainIncludes: "http://schema.org/DeliveryEvent".freeze, label: "availableThrough".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :award, comment: "An award won by or for this item.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Person".freeze, "schema:Product".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze], label: "award".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awards, comment: "Awards won by or for this item.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Person".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze, "http://schema.org/Product".freeze], + "http://schema.org/supersededBy": "http://schema.org/award".freeze, label: "awards".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:supersededBy": "schema:award".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awayTeam, comment: "The away team in a sports event.".freeze, - domainIncludes: "schema:SportsEvent".freeze, + domainIncludes: "http://schema.org/SportsEvent".freeze, label: "awayTeam".freeze, - rangeIncludes: ["schema:Person".freeze, "schema:SportsTeam".freeze], - subPropertyOf: "schema:competitor".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Person".freeze, "http://schema.org/SportsTeam".freeze], + subPropertyOf: "http://schema.org/competitor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Article".freeze, + domainIncludes: "http://schema.org/Article".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "backstory".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bankAccountType, comment: "The type of a bank account.".freeze, - domainIncludes: "schema:BankAccount".freeze, + domainIncludes: "http://schema.org/BankAccount".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "bankAccountType".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :baseSalary, comment: "The base salary of the job or of an employee in an EmployeeRole.".freeze, - domainIncludes: ["schema:EmployeeRole".freeze, "schema:JobPosting".freeze], + domainIncludes: ["http://schema.org/EmployeeRole".freeze, "http://schema.org/JobPosting".freeze], label: "baseSalary".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".freeze, "schema:PriceSpecification".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/Number".freeze, "http://schema.org/PriceSpecification".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bccRecipient, comment: "A sub property of recipient. The recipient blind copied on a message.".freeze, - domainIncludes: "schema:Message".freeze, + domainIncludes: "http://schema.org/Message".freeze, label: "bccRecipient".freeze, - rangeIncludes: ["schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:recipient".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/recipient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze 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.\n 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, - domainIncludes: ["schema:HotelRoom".freeze, "schema:Suite".freeze], + domainIncludes: ["http://schema.org/HotelRoom".freeze, "http://schema.org/Suite".freeze], + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: ["http://schema.org/BedDetails".freeze, "http://schema.org/BedType".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :beforeMedia, comment: "A media object representing the circumstances before performing this direction.".freeze, - domainIncludes: "schema:HowToDirection".freeze, + domainIncludes: "http://schema.org/HowToDirection".freeze, label: "beforeMedia".freeze, - rangeIncludes: ["schema:MediaObject".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MediaObject".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:MoneyTransfer".freeze, + domainIncludes: "http://schema.org/MoneyTransfer".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "beneficiaryBank".freeze, - rangeIncludes: ["schema:BankOrCreditUnion".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/BankOrCreditUnion".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :benefits, comment: "Description of benefits associated with the job.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/supersededBy": "http://schema.org/jobBenefits".freeze, label: "benefits".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:supersededBy": "schema:jobBenefits".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:HealthInsurancePlan".freeze, + domainIncludes: "http://schema.org/HealthInsurancePlan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "benefitsSummaryUrl".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bestRating, comment: "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.".freeze, - domainIncludes: "schema:Rating".freeze, + domainIncludes: "http://schema.org/Rating".freeze, label: "bestRating".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :billingAddress, comment: "The billing address for the order.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "billingAddress".freeze, - rangeIncludes: "schema:PostalAddress".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PostalAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :billingDuration, comment: "Specifies for how long this price (or price component) will be billed. Can be used, for example, to model the contractual duration of a subscription or payment plan. Type can be either a Duration or a Number (in which case the unit of measurement, for example month, is specified by the unitCode property)".freeze, - domainIncludes: "schema:UnitPriceSpecification".freeze, + domainIncludes: "http://schema.org/UnitPriceSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "billingDuration".freeze, - rangeIncludes: ["schema:Duration".freeze, "schema:Number".freeze, "schema:QuantitativeValue".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Duration".freeze, "http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:UnitPriceSpecification".freeze, + domainIncludes: "http://schema.org/UnitPriceSpecification".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "billingIncrement".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :billingPeriod, comment: "The time interval used to compute the invoice.".freeze, - domainIncludes: "schema:Invoice".freeze, + domainIncludes: "http://schema.org/Invoice".freeze, label: "billingPeriod".freeze, - rangeIncludes: "schema:Duration".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :billingStart, comment: "Specifies after how much time this price (or price component) becomes valid and billing starts. Can be used, for example, to model a price increase after the first year of a subscription. The unit of measurement is specified by the unitCode property".freeze, - domainIncludes: "schema:UnitPriceSpecification".freeze, + domainIncludes: "http://schema.org/UnitPriceSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "billingStart".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :biomechnicalClass, comment: "The biomechanical properties of the bone.".freeze, - domainIncludes: "schema:Joint".freeze, + domainIncludes: "http://schema.org/Joint".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "biomechnicalClass".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :birthDate, comment: "Date of birth.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "birthDate".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :birthPlace, comment: "The place where the person was born.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "birthPlace".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitrate, comment: "The bitrate of the media object.".freeze, - domainIncludes: "schema:MediaObject".freeze, + domainIncludes: "http://schema.org/MediaObject".freeze, label: "bitrate".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :blogPost, comment: "A posting that is part of this blog.".freeze, - domainIncludes: "schema:Blog".freeze, + domainIncludes: "http://schema.org/Blog".freeze, label: "blogPost".freeze, - rangeIncludes: "schema:BlogPosting".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BlogPosting".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :blogPosts, comment: "The postings that are part of this blog.".freeze, - domainIncludes: "schema:Blog".freeze, + domainIncludes: "http://schema.org/Blog".freeze, + "http://schema.org/supersededBy": "http://schema.org/blogPost".freeze, label: "blogPosts".freeze, - rangeIncludes: "schema:BlogPosting".freeze, - "schema:supersededBy": "schema:blogPost".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BlogPosting".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bloodSupply, comment: "The blood vessel that carries blood from the heart to the muscle.".freeze, - domainIncludes: "schema:Muscle".freeze, + domainIncludes: "http://schema.org/Muscle".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "bloodSupply".freeze, - rangeIncludes: "schema:Vessel".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Vessel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :boardingGroup, comment: "The airline-specific indicator of boarding order / preference.".freeze, - domainIncludes: "schema:FlightReservation".freeze, + domainIncludes: "http://schema.org/FlightReservation".freeze, label: "boardingGroup".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :boardingPolicy, comment: "The type of boarding policy used by the airline (e.g. zone-based or group-based).".freeze, - domainIncludes: ["schema:Airline".freeze, "schema:Flight".freeze], + domainIncludes: ["http://schema.org/Airline".freeze, "http://schema.org/Flight".freeze], label: "boardingPolicy".freeze, - rangeIncludes: "schema:BoardingPolicyType".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BoardingPolicyType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bodyLocation, comment: "Location in the body of the anatomical structure.".freeze, - domainIncludes: ["schema:AnatomicalStructure".freeze, "schema:MedicalProcedure".freeze], + domainIncludes: ["http://schema.org/AnatomicalStructure".freeze, "http://schema.org/MedicalProcedure".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "bodyLocation".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bodyType, comment: "Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookEdition, comment: "The edition of the book.".freeze, - domainIncludes: "schema:Book".freeze, + domainIncludes: "http://schema.org/Book".freeze, label: "bookEdition".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookFormat, comment: "The format of the book.".freeze, - domainIncludes: "schema:Book".freeze, + domainIncludes: "http://schema.org/Book".freeze, label: "bookFormat".freeze, - rangeIncludes: "schema:BookFormatType".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BookFormatType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookingAgent, comment: "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.".freeze, - domainIncludes: "schema:Reservation".freeze, + domainIncludes: "http://schema.org/Reservation".freeze, + "http://schema.org/supersededBy": "http://schema.org/broker".freeze, label: "bookingAgent".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:supersededBy": "schema:broker".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookingTime, comment: "The date and time the reservation was booked.".freeze, - domainIncludes: "schema:Reservation".freeze, + domainIncludes: "http://schema.org/Reservation".freeze, label: "bookingTime".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :borrower, comment: "A sub property of participant. The person that borrows the object being lent.".freeze, - domainIncludes: "schema:LendAction".freeze, + domainIncludes: "http://schema.org/LendAction".freeze, label: "borrower".freeze, - rangeIncludes: "schema:Person".freeze, - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :box, comment: "A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.".freeze, - domainIncludes: "schema:GeoShape".freeze, + domainIncludes: "http://schema.org/GeoShape".freeze, label: "box".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :branch, comment: "The branches that delineate from the nerve bundle. Not to be confused with [[branchOf]].".freeze, - domainIncludes: "schema:Nerve".freeze, + domainIncludes: "http://schema.org/Nerve".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, + "http://schema.org/supersededBy": ["http://schema.org/arterialBranch".freeze, "http://schema.org/nerveBranch".freeze, "http://schema.org/veinBranch".freeze], label: "branch".freeze, - rangeIncludes: "schema:AnatomicalStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - "schema:supersededBy": ["schema:arterialBranch".freeze, "schema:nerveBranch".freeze, "schema:veinBranch".freeze], - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :branchCode, comment: "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\\n\\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.\n ".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, label: "branchCode".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :branchOf, comment: "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)[[branch]].".freeze, - domainIncludes: "schema:LocalBusiness".freeze, + domainIncludes: "http://schema.org/LocalBusiness".freeze, + "http://schema.org/supersededBy": "http://schema.org/parentOrganization".freeze, label: "branchOf".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:supersededBy": "schema:parentOrganization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :brand, comment: "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze, "schema:Product".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze], label: "brand".freeze, - rangeIncludes: ["schema:Brand".freeze, "schema:Organization".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Brand".freeze, "http://schema.org/Organization".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :breadcrumb, comment: "A set of links that can help a user understand and navigate a website hierarchy.".freeze, - domainIncludes: "schema:WebPage".freeze, + domainIncludes: "http://schema.org/WebPage".freeze, label: "breadcrumb".freeze, - rangeIncludes: ["schema:BreadcrumbList".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/BreadcrumbList".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :breastfeedingWarning, comment: "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "breastfeedingWarning".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastAffiliateOf, comment: "The media network(s) whose content is broadcast on this station.".freeze, - domainIncludes: "schema:BroadcastService".freeze, + domainIncludes: "http://schema.org/BroadcastService".freeze, label: "broadcastAffiliateOf".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastChannelId, comment: "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.".freeze, - domainIncludes: "schema:BroadcastChannel".freeze, + domainIncludes: "http://schema.org/BroadcastChannel".freeze, label: "broadcastChannelId".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastDisplayName, comment: "The name displayed in the channel guide. For many US affiliates, it is the network name.".freeze, - domainIncludes: "schema:BroadcastService".freeze, + domainIncludes: "http://schema.org/BroadcastService".freeze, label: "broadcastDisplayName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:BroadcastChannel".freeze, "schema:BroadcastService".freeze], + domainIncludes: ["http://schema.org/BroadcastChannel".freeze, "http://schema.org/BroadcastService".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "broadcastFrequency".freeze, - rangeIncludes: ["schema:BroadcastFrequencySpecification".freeze, "schema:Text".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/BroadcastFrequencySpecification".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastFrequencyValue, comment: "The frequency in MHz for a particular broadcast.".freeze, - domainIncludes: "schema:BroadcastFrequencySpecification".freeze, + domainIncludes: "http://schema.org/BroadcastFrequencySpecification".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "broadcastFrequencyValue".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastOfEvent, comment: "The event being broadcast such as a sporting event or awards ceremony.".freeze, - domainIncludes: "schema:BroadcastEvent".freeze, + domainIncludes: "http://schema.org/BroadcastEvent".freeze, label: "broadcastOfEvent".freeze, - rangeIncludes: "schema:Event".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastServiceTier, comment: "The type of service required to have access to the channel (e.g. Standard or Premium).".freeze, - domainIncludes: "schema:BroadcastChannel".freeze, + domainIncludes: "http://schema.org/BroadcastChannel".freeze, label: "broadcastServiceTier".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastSignalModulation, comment: "The modulation (e.g. FM, AM, etc) used by a particular broadcast service".freeze, - domainIncludes: "schema:BroadcastFrequencySpecification".freeze, + domainIncludes: "http://schema.org/BroadcastFrequencySpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, label: "broadcastSignalModulation".freeze, - rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastSubChannel, comment: "The subchannel used for the broadcast.".freeze, - domainIncludes: "schema:BroadcastFrequencySpecification".freeze, + domainIncludes: "http://schema.org/BroadcastFrequencySpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, label: "broadcastSubChannel".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastTimezone, comment: "The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts".freeze, - domainIncludes: "schema:BroadcastService".freeze, + domainIncludes: "http://schema.org/BroadcastService".freeze, label: "broadcastTimezone".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcaster, comment: "The organization owning or operating the broadcast service.".freeze, - domainIncludes: "schema:BroadcastService".freeze, + domainIncludes: "http://schema.org/BroadcastService".freeze, label: "broadcaster".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broker, comment: "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.".freeze, - domainIncludes: ["schema:Invoice".freeze, "schema:Order".freeze, "schema:Reservation".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/Invoice".freeze, "http://schema.org/Order".freeze, "http://schema.org/Reservation".freeze, "http://schema.org/Service".freeze], label: "broker".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :browserRequirements, comment: "Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.".freeze, - domainIncludes: "schema:WebApplication".freeze, + domainIncludes: "http://schema.org/WebApplication".freeze, label: "browserRequirements".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :busName, comment: "The name of the bus (e.g. Bolt Express).".freeze, - domainIncludes: "schema:BusTrip".freeze, + domainIncludes: "http://schema.org/BusTrip".freeze, label: "busName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :busNumber, comment: "The unique identifier for the bus.".freeze, - domainIncludes: "schema:BusTrip".freeze, + domainIncludes: "http://schema.org/BusTrip".freeze, label: "busNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :businessDays, comment: "Days of the week when the merchant typically operates, indicated via opening hours markup.".freeze, - domainIncludes: "schema:ShippingDeliveryTime".freeze, + domainIncludes: "http://schema.org/ShippingDeliveryTime".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "businessDays".freeze, - rangeIncludes: "schema:OpeningHoursSpecification".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/OpeningHoursSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:TypeAndQuantityNode".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/TypeAndQuantityNode".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "businessFunction".freeze, - rangeIncludes: "schema:BusinessFunction".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BusinessFunction".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :buyer, comment: "A sub property of participant. The participant/person/organization that bought the object.".freeze, - domainIncludes: "schema:SellAction".freeze, + domainIncludes: "http://schema.org/SellAction".freeze, label: "buyer".freeze, - rangeIncludes: "schema:Person".freeze, - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :byArtist, comment: "The artist that performed this album or recording.".freeze, - domainIncludes: ["schema:MusicAlbum".freeze, "schema:MusicRecording".freeze], + domainIncludes: ["http://schema.org/MusicAlbum".freeze, "http://schema.org/MusicRecording".freeze], label: "byArtist".freeze, - rangeIncludes: ["schema:MusicGroup".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MusicGroup".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Schedule".freeze, + domainIncludes: "http://schema.org/Schedule".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "byDay".freeze, - rangeIncludes: ["schema:DayOfWeek".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DayOfWeek".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Schedule".freeze, + domainIncludes: "http://schema.org/Schedule".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "byMonth".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Schedule".freeze, + domainIncludes: "http://schema.org/Schedule".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "byMonthDay".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :byMonthWeek, comment: "Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month.".freeze, - domainIncludes: "schema:Schedule".freeze, + domainIncludes: "http://schema.org/Schedule".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2599".freeze, label: "byMonthWeek".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2599".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :callSign, comment: "A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.".freeze, - domainIncludes: ["schema:BroadcastService".freeze, "schema:Person".freeze, "schema:Vehicle".freeze], + domainIncludes: ["http://schema.org/BroadcastService".freeze, "http://schema.org/Person".freeze, "http://schema.org/Vehicle".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, label: "callSign".freeze, - rangeIncludes: "schema:Text".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :calories, comment: "The number of calories.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "calories".freeze, - rangeIncludes: "schema:Energy".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Energy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :candidate, comment: "A sub property of object. The candidate subject of this action.".freeze, - domainIncludes: "schema:VoteAction".freeze, + domainIncludes: "http://schema.org/VoteAction".freeze, label: "candidate".freeze, - rangeIncludes: "schema:Person".freeze, - subPropertyOf: "schema:object".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + subPropertyOf: "http://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :caption, comment: "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]].".freeze, - domainIncludes: ["schema:AudioObject".freeze, "schema:ImageObject".freeze, "schema:VideoObject".freeze], + domainIncludes: ["http://schema.org/AudioObject".freeze, "http://schema.org/ImageObject".freeze, "http://schema.org/VideoObject".freeze], label: "caption".freeze, - rangeIncludes: ["schema:MediaObject".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MediaObject".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :carbohydrateContent, comment: "The number of grams of carbohydrates.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "carbohydrateContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cargoVolume, comment: "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\\n\\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\\n\\nNote: You can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :carrier, comment: "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.".freeze, - domainIncludes: ["schema:Flight".freeze, "schema:ParcelDelivery".freeze], + domainIncludes: ["http://schema.org/Flight".freeze, "http://schema.org/ParcelDelivery".freeze], + "http://schema.org/supersededBy": "http://schema.org/provider".freeze, label: "carrier".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:supersededBy": "schema:provider".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :carrierRequirements, comment: "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).".freeze, - domainIncludes: "schema:MobileApplication".freeze, + domainIncludes: "http://schema.org/MobileApplication".freeze, label: "carrierRequirements".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cashBack, comment: "A cardholder benefit that pays the cardholder a small percentage of their net expenditures.".freeze, - domainIncludes: "schema:PaymentCard".freeze, + domainIncludes: "http://schema.org/PaymentCard".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "cashBack".freeze, - rangeIncludes: ["schema:Boolean".freeze, "schema:Number".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 + rangeIncludes: ["http://schema.org/Boolean".freeze, "http://schema.org/Number".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :catalog, comment: "A data catalog which contains this dataset.".freeze, - domainIncludes: "schema:Dataset".freeze, + domainIncludes: "http://schema.org/Dataset".freeze, + "http://schema.org/supersededBy": "http://schema.org/includedInDataCatalog".freeze, label: "catalog".freeze, - rangeIncludes: "schema:DataCatalog".freeze, - "schema:supersededBy": "schema:includedInDataCatalog".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DataCatalog".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :catalogNumber, comment: "The catalog number for the release.".freeze, - domainIncludes: "schema:MusicRelease".freeze, + domainIncludes: "http://schema.org/MusicRelease".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "catalogNumber".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :category, comment: "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.".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], + domainIncludes: ["http://schema.org/ActionAccessSpecification".freeze, "http://schema.org/Invoice".freeze, "http://schema.org/Offer".freeze, "http://schema.org/PhysicalActivity".freeze, "http://schema.org/Product".freeze, "http://schema.org/Recommendation".freeze, "http://schema.org/Service".freeze, "http://schema.org/SpecialAnnouncement".freeze], + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1741".freeze, "https://github.com/schemaorg/schemaorg/issues/2490".freeze], label: "category".freeze, - rangeIncludes: ["schema:PhysicalActivityCategory".freeze, "schema:Text".freeze, "schema:Thing".freeze, "schema:URL".freeze], - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1741".freeze, "https://github.com/schemaorg/schemaorg/issues/2490".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/PhysicalActivityCategory".freeze, "http://schema.org/Text".freeze, "http://schema.org/Thing".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :causeOf, comment: "The condition, complication, symptom, sign, etc. caused.".freeze, - domainIncludes: "schema:MedicalCause".freeze, + domainIncludes: "http://schema.org/MedicalCause".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "causeOf".freeze, - rangeIncludes: "schema:MedicalEntity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ccRecipient, comment: "A sub property of recipient. The recipient copied on a message.".freeze, - domainIncludes: "schema:Message".freeze, + domainIncludes: "http://schema.org/Message".freeze, label: "ccRecipient".freeze, - rangeIncludes: ["schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:recipient".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/recipient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :character, comment: "Fictional person connected with a creative work.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "character".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterAttribute, comment: "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).".freeze, - domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/Game".freeze, "http://schema.org/VideoGameSeries".freeze], label: "characterAttribute".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterName, comment: "The name of a character played in some acting or performing role, i.e. in a PerformanceRole.".freeze, - domainIncludes: "schema:PerformanceRole".freeze, + domainIncludes: "http://schema.org/PerformanceRole".freeze, label: "characterName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cheatCode, comment: "Cheat codes to the game.".freeze, - domainIncludes: ["schema:VideoGame".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/VideoGame".freeze, "http://schema.org/VideoGameSeries".freeze], label: "cheatCode".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :checkinTime, comment: "The earliest someone may check into a lodging establishment.".freeze, - domainIncludes: ["schema:LodgingBusiness".freeze, "schema:LodgingReservation".freeze], + domainIncludes: ["http://schema.org/LodgingBusiness".freeze, "http://schema.org/LodgingReservation".freeze], label: "checkinTime".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Time".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Time".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :checkoutTime, comment: "The latest someone may check out of a lodging establishment.".freeze, - domainIncludes: ["schema:LodgingBusiness".freeze, "schema:LodgingReservation".freeze], + domainIncludes: ["http://schema.org/LodgingBusiness".freeze, "http://schema.org/LodgingReservation".freeze], label: "checkoutTime".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Time".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Time".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :childMaxAge, comment: "Maximal age of the child.".freeze, - domainIncludes: "schema:ParentAudience".freeze, + domainIncludes: "http://schema.org/ParentAudience".freeze, label: "childMaxAge".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :childMinAge, comment: "Minimal age of the child.".freeze, - domainIncludes: "schema:ParentAudience".freeze, + domainIncludes: "http://schema.org/ParentAudience".freeze, label: "childMinAge".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :children, comment: "A child of the person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "children".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cholesterolContent, comment: "The number of milligrams of cholesterol.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "cholesterolContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :circle, comment: "A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.".freeze, - domainIncludes: "schema:GeoShape".freeze, + domainIncludes: "http://schema.org/GeoShape".freeze, label: "circle".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :citation, comment: "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "citation".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :claimReviewed, comment: "A short summary of the specific claims reviewed in a ClaimReview.".freeze, - domainIncludes: "schema:ClaimReview".freeze, + domainIncludes: "http://schema.org/ClaimReview".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, label: "claimReviewed".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :clincalPharmacology, comment: "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, + "http://schema.org/supersededBy": "http://schema.org/clinicalPharmacology".freeze, label: "clincalPharmacology".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - "schema:supersededBy": "schema:clinicalPharmacology".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :clinicalPharmacology, comment: "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "clinicalPharmacology".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :clipNumber, comment: "Position of the clip within an ordered group of clips.".freeze, - domainIncludes: "schema:Clip".freeze, + domainIncludes: "http://schema.org/Clip".freeze, label: "clipNumber".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze], - subPropertyOf: "schema:position".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :closes, comment: "The closing hour of the place or service on the given day(s) of the week.".freeze, - domainIncludes: "schema:OpeningHoursSpecification".freeze, + domainIncludes: "http://schema.org/OpeningHoursSpecification".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "closes".freeze, - rangeIncludes: "schema:Time".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Time".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coach, comment: "A person that acts in a coaching role for a sports team.".freeze, - domainIncludes: "schema:SportsTeam".freeze, + domainIncludes: "http://schema.org/SportsTeam".freeze, label: "coach".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :code, comment: "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.".freeze, - domainIncludes: "schema:MedicalEntity".freeze, + domainIncludes: "http://schema.org/MedicalEntity".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "code".freeze, - rangeIncludes: "schema:MedicalCode".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalCode".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codeRepository, comment: "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).".freeze, - domainIncludes: "schema:SoftwareSourceCode".freeze, + domainIncludes: "http://schema.org/SoftwareSourceCode".freeze, label: "codeRepository".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codeSampleType, comment: "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.".freeze, - domainIncludes: "schema:SoftwareSourceCode".freeze, + domainIncludes: "http://schema.org/SoftwareSourceCode".freeze, label: "codeSampleType".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codeValue, comment: "A short textual code that uniquely identifies the value.".freeze, - domainIncludes: ["schema:CategoryCode".freeze, "schema:MedicalCode".freeze], + domainIncludes: ["http://schema.org/CategoryCode".freeze, "http://schema.org/MedicalCode".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "codeValue".freeze, - rangeIncludes: "schema:Text".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/termCode".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codingSystem, comment: "The coding system, e.g. 'ICD-10'.".freeze, - domainIncludes: "schema:MedicalCode".freeze, + domainIncludes: "http://schema.org/MedicalCode".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "codingSystem".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colleague, comment: "A colleague of the person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "colleague".freeze, - rangeIncludes: ["schema:Person".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Person".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colleagues, comment: "A colleague of the person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, + "http://schema.org/supersededBy": "http://schema.org/colleague".freeze, label: "colleagues".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:supersededBy": "schema:colleague".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :collection, comment: "A sub property of object. The collection target of the action.".freeze, - domainIncludes: "schema:UpdateAction".freeze, + domainIncludes: "http://schema.org/UpdateAction".freeze, + "http://schema.org/supersededBy": "http://schema.org/targetCollection".freeze, label: "collection".freeze, - rangeIncludes: "schema:Thing".freeze, - "schema:supersededBy": "schema:targetCollection".freeze, - subPropertyOf: "schema:object".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + subPropertyOf: "http://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :collectionSize, comment: "The number of items in the [[Collection]].".freeze, - domainIncludes: "schema:Collection".freeze, + domainIncludes: "http://schema.org/Collection".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, label: "collectionSize".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :color, comment: "The color of the product.".freeze, - domainIncludes: "schema:Product".freeze, + domainIncludes: "http://schema.org/Product".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "color".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colorist, comment: "The individual who adds color to inked drawings.".freeze, - domainIncludes: ["schema:ComicIssue".freeze, "schema:ComicStory".freeze, "schema:VisualArtwork".freeze], + domainIncludes: ["http://schema.org/ComicIssue".freeze, "http://schema.org/ComicStory".freeze, "http://schema.org/VisualArtwork".freeze], + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "colorist".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :comment, comment: "Comments, typically from users.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:RsvpAction".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/RsvpAction".freeze], label: "comment".freeze, - rangeIncludes: "schema:Comment".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Comment".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :commentCount, comment: "The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "commentCount".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :commentText, comment: "The text of the UserComment.".freeze, - domainIncludes: "schema:UserComments".freeze, + domainIncludes: "http://schema.org/UserComments".freeze, label: "commentText".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :commentTime, comment: "The time at which the UserComment was made.".freeze, - domainIncludes: "schema:UserComments".freeze, + domainIncludes: "http://schema.org/UserComments".freeze, label: "commentTime".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :competencyRequired, comment: "Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.".freeze, - domainIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:LearningResource".freeze], + domainIncludes: ["http://schema.org/EducationalOccupationalCredential".freeze, "http://schema.org/LearningResource".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "competencyRequired".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :competitor, comment: "A competitor in a sports event.".freeze, - domainIncludes: "schema:SportsEvent".freeze, + domainIncludes: "http://schema.org/SportsEvent".freeze, label: "competitor".freeze, - rangeIncludes: ["schema:Person".freeze, "schema:SportsTeam".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Person".freeze, "http://schema.org/SportsTeam".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Event".freeze, "schema:MusicComposition".freeze], + domainIncludes: ["http://schema.org/Event".freeze, "http://schema.org/MusicComposition".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".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 + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:AnatomicalSystem".freeze, + domainIncludes: "http://schema.org/AnatomicalSystem".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "comprisedOf".freeze, - rangeIncludes: ["schema:AnatomicalStructure".freeze, "schema:AnatomicalSystem".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AnatomicalStructure".freeze, "http://schema.org/AnatomicalSystem".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :conditionsOfAccess, 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.\\n\\nFor example \"Available by appointment from the Reading Room\" or \"Accessible only from logged-in accounts \". ".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2173".freeze, label: "conditionsOfAccess".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2173".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :confirmationNumber, comment: "A number that confirms the given order or payment has been received.".freeze, - domainIncludes: ["schema:Invoice".freeze, "schema:Order".freeze], + domainIncludes: ["http://schema.org/Invoice".freeze, "http://schema.org/Order".freeze], label: "confirmationNumber".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "schema:identifier".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :connectedTo, comment: "Other anatomical structures to which this structure is connected.".freeze, - domainIncludes: "schema:AnatomicalStructure".freeze, + domainIncludes: "http://schema.org/AnatomicalStructure".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "connectedTo".freeze, - rangeIncludes: "schema:AnatomicalStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :constrainingProperty, comment: "Indicates a property used as a constraint to define a [[StatisticalPopulation]] with respect to the set of entities\n corresponding to an indicated type (via [[populationType]]).".freeze, - domainIncludes: "schema:StatisticalPopulation".freeze, + domainIncludes: "http://schema.org/StatisticalPopulation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "constrainingProperty".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:ContactPoint".freeze, + domainIncludes: "http://schema.org/ContactPoint".freeze, label: "contactOption".freeze, - rangeIncludes: "schema:ContactPointOption".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ContactPointOption".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contactPoint, comment: "A contact point for a person or organization.".freeze, - domainIncludes: ["schema:HealthInsurancePlan".freeze, "schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/HealthInsurancePlan".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], label: "contactPoint".freeze, - rangeIncludes: "schema:ContactPoint".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ContactPoint".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contactPoints, comment: "A contact point for a person or organization.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/supersededBy": "http://schema.org/contactPoint".freeze, label: "contactPoints".freeze, - rangeIncludes: "schema:ContactPoint".freeze, - "schema:supersededBy": "schema:contactPoint".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ContactPoint".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contactType, comment: "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.".freeze, - domainIncludes: "schema:ContactPoint".freeze, + domainIncludes: "http://schema.org/ContactPoint".freeze, label: "contactType".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:PaymentCard".freeze, + domainIncludes: "http://schema.org/PaymentCard".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "contactlessPayment".freeze, - rangeIncludes: "schema:Boolean".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 + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containedIn, comment: "The basic containment relation between a place and one that contains it.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, + "http://schema.org/supersededBy": "http://schema.org/containedInPlace".freeze, label: "containedIn".freeze, - rangeIncludes: "schema:Place".freeze, - "schema:supersededBy": "schema:containedInPlace".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containedInPlace, comment: "The basic containment relation between a place and one that contains it.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, + "http://schema.org/inverseOf": "http://schema.org/containsPlace".freeze, label: "containedInPlace".freeze, - rangeIncludes: "schema:Place".freeze, - "schema:inverseOf": "schema:containsPlace".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containsPlace, comment: "The basic containment relation between a place and another that it contains.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, + "http://schema.org/inverseOf": "http://schema.org/containedInPlace".freeze, label: "containsPlace".freeze, - rangeIncludes: "schema:Place".freeze, - "schema:inverseOf": "schema:containedInPlace".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containsSeason, comment: "A season that is part of the media series.".freeze, - domainIncludes: ["schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGameSeries".freeze], label: "containsSeason".freeze, - rangeIncludes: "schema:CreativeWorkSeason".freeze, - subPropertyOf: "schema:hasPart".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWorkSeason".freeze, + subPropertyOf: "http://schema.org/hasPart".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentLocation, comment: "The location depicted or described in the content. For example, the location in a photograph or painting.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "contentLocation".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentRating, comment: "Official rating of a piece of content—for example,'MPAA PG-13'.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "contentRating".freeze, - rangeIncludes: ["schema:Rating".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Rating".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1050".freeze, label: "contentReferenceTime".freeze, - rangeIncludes: "schema:DateTime".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1050".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentSize, comment: "File size in (mega/kilo) bytes.".freeze, - domainIncludes: "schema:MediaObject".freeze, + domainIncludes: "http://schema.org/MediaObject".freeze, label: "contentSize".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentType, comment: "The supported content type(s) for an EntryPoint response.".freeze, - domainIncludes: "schema:EntryPoint".freeze, + domainIncludes: "http://schema.org/EntryPoint".freeze, label: "contentType".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentUrl, comment: "Actual bytes of the media object, for example the image file or video file.".freeze, - domainIncludes: "schema:MediaObject".freeze, + domainIncludes: "http://schema.org/MediaObject".freeze, label: "contentUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contraindication, comment: "A contraindication for this therapy.".freeze, - domainIncludes: ["schema:MedicalDevice".freeze, "schema:MedicalTherapy".freeze], + domainIncludes: ["http://schema.org/MedicalDevice".freeze, "http://schema.org/MedicalTherapy".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "contraindication".freeze, - rangeIncludes: ["schema:MedicalContraindication".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MedicalContraindication".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contributor, comment: "A secondary contributor to the CreativeWork or Event.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze], label: "contributor".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cookTime, comment: "The time it takes to actually cook the dish, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).".freeze, - domainIncludes: "schema:Recipe".freeze, + domainIncludes: "http://schema.org/Recipe".freeze, label: "cookTime".freeze, - rangeIncludes: "schema:Duration".freeze, - subPropertyOf: "schema:performTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + subPropertyOf: "http://schema.org/performTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cookingMethod, comment: "The method of cooking, such as Frying, Steaming, ...".freeze, - domainIncludes: "schema:Recipe".freeze, + domainIncludes: "http://schema.org/Recipe".freeze, label: "cookingMethod".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :copyrightHolder, comment: "The party holding the legal copyright to the CreativeWork.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "copyrightHolder".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :copyrightNotice, comment: "Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2659".freeze, label: "copyrightNotice".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2659".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :copyrightYear, comment: "The year during which the claimed copyright for the CreativeWork was first asserted.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "copyrightYear".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :correction, comment: "Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1950".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "correction".freeze, - rangeIncludes: ["schema:CorrectionComment".freeze, "schema:Text".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CorrectionComment".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/NewsMediaOrganization".freeze, "http://schema.org/Organization".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "correctionsPolicy".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costCategory, comment: "The category of cost, such as wholesale, retail, reimbursement cap, etc.".freeze, - domainIncludes: "schema:DrugCost".freeze, + domainIncludes: "http://schema.org/DrugCost".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "costCategory".freeze, - rangeIncludes: "schema:DrugCostCategory".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DrugCostCategory".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costCurrency, comment: "The currency (in 3-letter of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217 ".freeze, - domainIncludes: "schema:DrugCost".freeze, + domainIncludes: "http://schema.org/DrugCost".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "costCurrency".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costOrigin, comment: "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.".freeze, - domainIncludes: "schema:DrugCost".freeze, + domainIncludes: "http://schema.org/DrugCost".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "costOrigin".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costPerUnit, comment: "The cost per unit of the drug.".freeze, - domainIncludes: "schema:DrugCost".freeze, + domainIncludes: "http://schema.org/DrugCost".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "costPerUnit".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:QualitativeValue".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :countriesNotSupported, comment: "Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "countriesNotSupported".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :countriesSupported, comment: "Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "countriesSupported".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :countryOfOrigin, comment: "The country of the principal offices of the production company or individual responsible for the movie or program.".freeze, - domainIncludes: ["schema:Movie".freeze, "schema:TVEpisode".freeze, "schema:TVSeason".freeze, "schema:TVSeries".freeze], + domainIncludes: ["http://schema.org/Movie".freeze, "http://schema.org/TVEpisode".freeze, "http://schema.org/TVSeason".freeze, "http://schema.org/TVSeries".freeze], label: "countryOfOrigin".freeze, - rangeIncludes: "schema:Country".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Country".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :course, comment: "A sub property of location. The course where this action was taken.".freeze, - domainIncludes: "schema:ExerciseAction".freeze, + domainIncludes: "http://schema.org/ExerciseAction".freeze, + "http://schema.org/supersededBy": "http://schema.org/exerciseCourse".freeze, label: "course".freeze, - rangeIncludes: "schema:Place".freeze, - "schema:supersededBy": "schema:exerciseCourse".freeze, - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :courseCode, comment: "The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).".freeze, - domainIncludes: "schema:Course".freeze, + domainIncludes: "http://schema.org/Course".freeze, label: "courseCode".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :courseMode, comment: "The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).".freeze, - domainIncludes: "schema:CourseInstance".freeze, + domainIncludes: "http://schema.org/CourseInstance".freeze, label: "courseMode".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coursePrerequisites, comment: "Requirements for taking the Course. May be completion of another [[Course]] or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]].".freeze, - domainIncludes: "schema:Course".freeze, + domainIncludes: "http://schema.org/Course".freeze, label: "coursePrerequisites".freeze, - rangeIncludes: ["schema:AlignmentObject".freeze, "schema:Course".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AlignmentObject".freeze, "http://schema.org/Course".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CourseInstance".freeze, + domainIncludes: "http://schema.org/CourseInstance".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1909".freeze, label: "courseWorkload".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1909".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:LiveBlogPosting".freeze, + domainIncludes: "http://schema.org/LiveBlogPosting".freeze, label: "coverageEndTime".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coverageStartTime, comment: "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.".freeze, - domainIncludes: "schema:LiveBlogPosting".freeze, + domainIncludes: "http://schema.org/LiveBlogPosting".freeze, label: "coverageStartTime".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/987".freeze, label: "creativeWorkStatus".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/987".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :creator, comment: "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:UserComments".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/UserComments".freeze], label: "creator".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :credentialCategory, comment: "The category or type of credential being described, for example \"degree”, “certificate”, “badge”, or more specific term.".freeze, - domainIncludes: "schema:EducationalOccupationalCredential".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalCredential".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "credentialCategory".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :creditText, comment: "Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2659".freeze, label: "creditText".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2659".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:MusicRelease".freeze, + domainIncludes: "http://schema.org/MusicRelease".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".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 + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:SpeakableSpecification".freeze, "schema:WebPageElement".freeze], + domainIncludes: ["http://schema.org/SpeakableSpecification".freeze, "http://schema.org/WebPageElement".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, label: "cssSelector".freeze, - rangeIncludes: "schema:CssSelectorType".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CssSelectorType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :currenciesAccepted, comment: "The currency accepted.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".".freeze, - domainIncludes: "schema:LocalBusiness".freeze, + domainIncludes: "http://schema.org/LocalBusiness".freeze, label: "currenciesAccepted".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :currency, comment: "The currency in which the monetary amount is expressed.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".".freeze, - domainIncludes: ["schema:DatedMoneySpecification".freeze, "schema:ExchangeRateSpecification".freeze, "schema:LoanOrCredit".freeze, "schema:MonetaryAmount".freeze, "schema:MonetaryAmountDistribution".freeze], + domainIncludes: ["http://schema.org/DatedMoneySpecification".freeze, "http://schema.org/ExchangeRateSpecification".freeze, "http://schema.org/LoanOrCredit".freeze, "http://schema.org/MonetaryAmount".freeze, "http://schema.org/MonetaryAmountDistribution".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1253".freeze, label: "currency".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1253".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :currentExchangeRate, comment: "The current price of a currency.".freeze, - domainIncludes: "schema:ExchangeRateSpecification".freeze, + domainIncludes: "http://schema.org/ExchangeRateSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "currentExchangeRate".freeze, - rangeIncludes: "schema:UnitPriceSpecification".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 + rangeIncludes: "http://schema.org/UnitPriceSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :customer, comment: "Party placing the order or paying the invoice.".freeze, - domainIncludes: ["schema:Invoice".freeze, "schema:Order".freeze], + domainIncludes: ["http://schema.org/Invoice".freeze, "http://schema.org/Order".freeze], label: "customer".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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 ISO-8601 Time format, e.g. \"23:30:00-05:00\" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC).".freeze, - domainIncludes: "schema:ShippingDeliveryTime".freeze, + domainIncludes: "http://schema.org/ShippingDeliveryTime".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "cutoffTime".freeze, - rangeIncludes: "schema:Time".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Time".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdCollectionDate, comment: "collectiondate - Date for which patient counts are reported.".freeze, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdCollectionDate".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdFacilityCounty".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdFacilityId".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumBeds, comment: "numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients.".freeze, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumBeds".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumBedsOcc, comment: "numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.".freeze, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumBedsOcc".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19Died".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19HOPats".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumC19HospPats, comment: "numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.".freeze, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19HospPats".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19MechVentPats".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19OFMechVentPats".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19OverflowPats".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumICUBeds, comment: "numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds.".freeze, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumICUBeds".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumICUBedsOcc, comment: "numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.".freeze, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumICUBedsOcc".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumTotBeds".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumVent, comment: "numvent - MECHANICAL VENTILATORS: Total number of ventilators available.".freeze, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumVent".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumVentUse, comment: "numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.".freeze, - domainIncludes: "schema:CDCPMDRecord".freeze, + domainIncludes: "http://schema.org/CDCPMDRecord".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumVentUse".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dataFeedElement, comment: "An item within in a data feed. Data feeds may have many elements.".freeze, - domainIncludes: "schema:DataFeed".freeze, + domainIncludes: "http://schema.org/DataFeed".freeze, label: "dataFeedElement".freeze, - rangeIncludes: ["schema:DataFeedItem".freeze, "schema:Text".freeze, "schema:Thing".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DataFeedItem".freeze, "http://schema.org/Text".freeze, "http://schema.org/Thing".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dataset, comment: "A dataset contained in this catalog.".freeze, - domainIncludes: "schema:DataCatalog".freeze, + domainIncludes: "http://schema.org/DataCatalog".freeze, + "http://schema.org/inverseOf": "http://schema.org/includedInDataCatalog".freeze, label: "dataset".freeze, - rangeIncludes: "schema:Dataset".freeze, - "schema:inverseOf": "schema:includedInDataCatalog".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Dataset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datasetTimeInterval, comment: "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).".freeze, - domainIncludes: "schema:Dataset".freeze, + domainIncludes: "http://schema.org/Dataset".freeze, + "http://schema.org/supersededBy": "http://schema.org/temporalCoverage".freeze, label: "datasetTimeInterval".freeze, - rangeIncludes: "schema:DateTime".freeze, - "schema:supersededBy": "schema:temporalCoverage".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateCreated, comment: "The date on which the CreativeWork was created or the item was added to a DataFeed.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:DataFeedItem".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/DataFeedItem".freeze], label: "dateCreated".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateDeleted, comment: "The datetime the item was removed from the DataFeed.".freeze, - domainIncludes: "schema:DataFeedItem".freeze, + domainIncludes: "http://schema.org/DataFeedItem".freeze, label: "dateDeleted".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateIssued, comment: "The date the ticket was issued.".freeze, - domainIncludes: "schema:Ticket".freeze, + domainIncludes: "http://schema.org/Ticket".freeze, label: "dateIssued".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateModified, comment: "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:DataFeedItem".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/DataFeedItem".freeze], label: "dateModified".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datePosted, comment: "Publication date of an online listing.".freeze, - domainIncludes: ["schema:CDCPMDRecord".freeze, "schema:JobPosting".freeze, "schema:RealEstateListing".freeze, "schema:SpecialAnnouncement".freeze], + domainIncludes: ["http://schema.org/CDCPMDRecord".freeze, "http://schema.org/JobPosting".freeze, "http://schema.org/RealEstateListing".freeze, "http://schema.org/SpecialAnnouncement".freeze], + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/2490".freeze, "https://github.com/schemaorg/schemaorg/issues/2521".freeze], label: "datePosted".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/2490".freeze, "https://github.com/schemaorg/schemaorg/issues/2521".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datePublished, comment: "Date of first broadcast/publication.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "datePublished".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateRead, comment: "The date/time at which the message has been read by the recipient if a single recipient exists.".freeze, - domainIncludes: "schema:Message".freeze, + domainIncludes: "http://schema.org/Message".freeze, label: "dateRead".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateReceived, comment: "The date/time the message was received if a single recipient exists.".freeze, - domainIncludes: "schema:Message".freeze, + domainIncludes: "http://schema.org/Message".freeze, label: "dateReceived".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateSent, comment: "The date/time at which the message was sent.".freeze, - domainIncludes: "schema:Message".freeze, + domainIncludes: "http://schema.org/Message".freeze, label: "dateSent".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateVehicleFirstRegistered, comment: "The date of the first registration of the vehicle with the respective public authorities.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateline, comment: "A [dateline](https://en.wikipedia.org/wiki/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.\n\nStructured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]].\n\nDateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: \"BEIRUT, Lebanon, June 2.\", \"Paris, France\", \"December 19, 2017 11:43AM Reporting from Washington\", \"Beijing/Moscow\", \"QUEZON CITY, Philippines\".\n ".freeze, - domainIncludes: "schema:NewsArticle".freeze, + domainIncludes: "http://schema.org/NewsArticle".freeze, label: "dateline".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dayOfWeek, comment: "The day of the week for which these opening hours are valid.".freeze, - domainIncludes: ["schema:EducationalOccupationalProgram".freeze, "schema:OpeningHoursSpecification".freeze], + domainIncludes: ["http://schema.org/EducationalOccupationalProgram".freeze, "http://schema.org/OpeningHoursSpecification".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "dayOfWeek".freeze, - rangeIncludes: "schema:DayOfWeek".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DayOfWeek".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deathDate, comment: "Date of death.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "deathDate".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deathPlace, comment: "The place where the person died.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "deathPlace".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :defaultValue, comment: "The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.".freeze, - domainIncludes: "schema:PropertyValueSpecification".freeze, + domainIncludes: "http://schema.org/PropertyValueSpecification".freeze, label: "defaultValue".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:Thing".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/Thing".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deliveryAddress, comment: "Destination address.".freeze, - domainIncludes: "schema:ParcelDelivery".freeze, + domainIncludes: "http://schema.org/ParcelDelivery".freeze, label: "deliveryAddress".freeze, - rangeIncludes: "schema:PostalAddress".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PostalAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "deliveryLeadTime".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deliveryMethod, comment: "A sub property of instrument. The method of delivery.".freeze, - domainIncludes: ["schema:OrderAction".freeze, "schema:ReceiveAction".freeze, "schema:SendAction".freeze, "schema:TrackAction".freeze], + domainIncludes: ["http://schema.org/OrderAction".freeze, "http://schema.org/ReceiveAction".freeze, "http://schema.org/SendAction".freeze, "http://schema.org/TrackAction".freeze], label: "deliveryMethod".freeze, - rangeIncludes: "schema:DeliveryMethod".freeze, - subPropertyOf: "schema:instrument".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DeliveryMethod".freeze, + subPropertyOf: "http://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deliveryStatus, comment: "New entry added as the package passes through each leg of its journey (from shipment to final delivery).".freeze, - domainIncludes: "schema:ParcelDelivery".freeze, + domainIncludes: "http://schema.org/ParcelDelivery".freeze, label: "deliveryStatus".freeze, - rangeIncludes: "schema:DeliveryEvent".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DeliveryEvent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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], + domainIncludes: ["http://schema.org/DeliveryTimeSettings".freeze, "http://schema.org/OfferShippingDetails".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "deliveryTime".freeze, - rangeIncludes: "schema:ShippingDeliveryTime".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ShippingDeliveryTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + domainIncludes: "http://schema.org/Organization".freeze, label: "department".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureAirport, comment: "The airport where the flight originates.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "departureAirport".freeze, - rangeIncludes: "schema:Airport".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Airport".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureBoatTerminal, comment: "The terminal or port from which the boat departs.".freeze, - domainIncludes: "schema:BoatTrip".freeze, + domainIncludes: "http://schema.org/BoatTrip".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "departureBoatTerminal".freeze, - rangeIncludes: "schema:BoatTerminal".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BoatTerminal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureBusStop, comment: "The stop or station from which the bus departs.".freeze, - domainIncludes: "schema:BusTrip".freeze, + domainIncludes: "http://schema.org/BusTrip".freeze, label: "departureBusStop".freeze, - rangeIncludes: ["schema:BusStation".freeze, "schema:BusStop".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/BusStation".freeze, "http://schema.org/BusStop".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureGate, comment: "Identifier of the flight's departure gate.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "departureGate".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departurePlatform, comment: "The platform from which the train departs.".freeze, - domainIncludes: "schema:TrainTrip".freeze, + domainIncludes: "http://schema.org/TrainTrip".freeze, label: "departurePlatform".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureStation, comment: "The station from which the train departs.".freeze, - domainIncludes: "schema:TrainTrip".freeze, + domainIncludes: "http://schema.org/TrainTrip".freeze, label: "departureStation".freeze, - rangeIncludes: "schema:TrainStation".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/TrainStation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureTerminal, comment: "Identifier of the flight's departure terminal.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "departureTerminal".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureTime, comment: "The expected departure time.".freeze, - domainIncludes: "schema:Trip".freeze, + domainIncludes: "http://schema.org/Trip".freeze, label: "departureTime".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Time".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Time".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dependencies, comment: "Prerequisites needed to fulfill steps in article.".freeze, - domainIncludes: "schema:TechArticle".freeze, + domainIncludes: "http://schema.org/TechArticle".freeze, label: "dependencies".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :depth, comment: "The depth of the item.".freeze, - domainIncludes: ["schema:Product".freeze, "schema:VisualArtwork".freeze], + domainIncludes: ["http://schema.org/Product".freeze, "http://schema.org/VisualArtwork".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Distance".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, comment: "A description of the item.".freeze, - domainIncludes: "schema:Thing".freeze, - equivalentProperty: "dc:description".freeze, + domainIncludes: "http://schema.org/Thing".freeze, + equivalentProperty: "http://purl.org/dc/terms/description".freeze, label: "description".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :device, comment: "Device required to run the application. Used in cases where a specific make/model is required to run the application.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, + "http://schema.org/supersededBy": "http://schema.org/availableOnDevice".freeze, label: "device".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:supersededBy": "schema:availableOnDevice".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diagnosis, comment: "One or more alternative conditions considered in the differential diagnosis process as output of a diagnosis process.".freeze, - domainIncludes: ["schema:DDxElement".freeze, "schema:Patient".freeze], + domainIncludes: ["http://schema.org/DDxElement".freeze, "http://schema.org/Patient".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "diagnosis".freeze, - rangeIncludes: "schema:MedicalCondition".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalCondition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diagram, comment: "An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.".freeze, - domainIncludes: "schema:AnatomicalStructure".freeze, + domainIncludes: "http://schema.org/AnatomicalStructure".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "diagram".freeze, - rangeIncludes: "schema:ImageObject".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ImageObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diet, comment: "A sub property of instrument. The diet used in this action.".freeze, - domainIncludes: "schema:ExerciseAction".freeze, + domainIncludes: "http://schema.org/ExerciseAction".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "diet".freeze, - rangeIncludes: "schema:Diet".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subPropertyOf: "schema:instrument".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Diet".freeze, + subPropertyOf: "http://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dietFeatures, comment: "Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.".freeze, - domainIncludes: "schema:Diet".freeze, + domainIncludes: "http://schema.org/Diet".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "dietFeatures".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :differentialDiagnosis, comment: "One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "differentialDiagnosis".freeze, - rangeIncludes: "schema:DDxElement".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DDxElement".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :director, comment: "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.".freeze, - domainIncludes: ["schema:Clip".freeze, "schema:CreativeWorkSeason".freeze, "schema:Episode".freeze, "schema:Event".freeze, "schema:Movie".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:VideoObject".freeze], + domainIncludes: ["http://schema.org/Clip".freeze, "http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/Episode".freeze, "http://schema.org/Event".freeze, "http://schema.org/Movie".freeze, "http://schema.org/MovieSeries".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGame".freeze, "http://schema.org/VideoGameSeries".freeze, "http://schema.org/VideoObject".freeze], label: "director".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :directors, comment: "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.".freeze, - domainIncludes: ["schema:Clip".freeze, "schema:Episode".freeze, "schema:Movie".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:VideoObject".freeze], + domainIncludes: ["http://schema.org/Clip".freeze, "http://schema.org/Episode".freeze, "http://schema.org/Movie".freeze, "http://schema.org/MovieSeries".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGame".freeze, "http://schema.org/VideoGameSeries".freeze, "http://schema.org/VideoObject".freeze], + "http://schema.org/supersededBy": "http://schema.org/director".freeze, label: "directors".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:supersededBy": "schema:director".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :disambiguatingDescription, comment: "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.".freeze, - domainIncludes: "schema:Thing".freeze, + domainIncludes: "http://schema.org/Thing".freeze, label: "disambiguatingDescription".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "schema:description".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discount, comment: "Any discount applied (to an Order).".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "discount".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discountCode, comment: "Code used to redeem a discount.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "discountCode".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discountCurrency, comment: "The currency of the discount.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "discountCurrency".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discusses, comment: "Specifies the CreativeWork associated with the UserComment.".freeze, - domainIncludes: "schema:UserComments".freeze, + domainIncludes: "http://schema.org/UserComments".freeze, label: "discusses".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discussionUrl, comment: "A link to the page containing the comments of the CreativeWork.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "discussionUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diseasePreventionInfo, comment: "Information about disease prevention.".freeze, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "diseasePreventionInfo".freeze, - rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/URL".freeze, "http://schema.org/WebContent".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diseaseSpreadStatistics, comment: "Statistical information about the spread of a disease, either as [[WebContent]], or\n described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is\n provided, the page indicated might also contain more such markup.".freeze, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "diseaseSpreadStatistics".freeze, - rangeIncludes: ["schema:Dataset".freeze, "schema:Observation".freeze, "schema:URL".freeze, "schema:WebContent".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Dataset".freeze, "http://schema.org/Observation".freeze, "http://schema.org/URL".freeze, "http://schema.org/WebContent".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dissolutionDate, comment: "The date that this organization was dissolved.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, label: "dissolutionDate".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :distance, comment: "The distance travelled, e.g. exercising or travelling.".freeze, - domainIncludes: ["schema:ExerciseAction".freeze, "schema:TravelAction".freeze], + domainIncludes: ["http://schema.org/ExerciseAction".freeze, "http://schema.org/TravelAction".freeze], label: "distance".freeze, - rangeIncludes: "schema:Distance".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Distance".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :distinguishingSign, comment: "One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.".freeze, - domainIncludes: "schema:DDxElement".freeze, + domainIncludes: "http://schema.org/DDxElement".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "distinguishingSign".freeze, - rangeIncludes: "schema:MedicalSignOrSymptom".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalSignOrSymptom".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :distribution, comment: "A downloadable form of this dataset, at a specific location, in a specific format.".freeze, - domainIncludes: "schema:Dataset".freeze, + domainIncludes: "http://schema.org/Dataset".freeze, label: "distribution".freeze, - rangeIncludes: "schema:DataDownload".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DataDownload".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/NewsMediaOrganization".freeze, "http://schema.org/Organization".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "diversityPolicy".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/NewsMediaOrganization".freeze, "http://schema.org/Organization".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "diversityStaffingReport".freeze, - rangeIncludes: ["schema:Article".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/Article".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :documentation, comment: "Further documentation describing the Web API in more detail.".freeze, - domainIncludes: "schema:WebAPI".freeze, + domainIncludes: "http://schema.org/WebAPI".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, label: "documentation".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doesNotShip, comment: "Indicates when shipping to a particular [[shippingDestination]] is not available.".freeze, - domainIncludes: ["schema:OfferShippingDetails".freeze, "schema:ShippingRateSettings".freeze], + domainIncludes: ["http://schema.org/OfferShippingDetails".freeze, "http://schema.org/ShippingRateSettings".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "doesNotShip".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Property".freeze, + domainIncludes: "http://schema.org/Property".freeze, + "http://schema.org/isPartOf": "http://meta.schema.org".freeze, label: "domainIncludes".freeze, - rangeIncludes: "schema:Class".freeze, - "schema:isPartOf": "http://meta.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Class".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :domiciledMortgage, comment: "Whether borrower is a resident of the jurisdiction where the property is located.".freeze, - domainIncludes: "schema:MortgageLoan".freeze, + domainIncludes: "http://schema.org/MortgageLoan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "domiciledMortgage".freeze, - rangeIncludes: "schema:Boolean".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 + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doorTime, comment: "The time admission will commence.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, label: "doorTime".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Time".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Time".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dosageForm, comment: "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "dosageForm".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doseSchedule, comment: "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.".freeze, - domainIncludes: ["schema:Drug".freeze, "schema:TherapeuticProcedure".freeze], + domainIncludes: ["http://schema.org/Drug".freeze, "http://schema.org/TherapeuticProcedure".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "doseSchedule".freeze, - rangeIncludes: "schema:DoseSchedule".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DoseSchedule".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doseUnit, comment: "The unit of the dose, e.g. 'mg'.".freeze, - domainIncludes: "schema:DoseSchedule".freeze, + domainIncludes: "http://schema.org/DoseSchedule".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "doseUnit".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doseValue, comment: "The value of the dose, e.g. 500.".freeze, - domainIncludes: "schema:DoseSchedule".freeze, + domainIncludes: "http://schema.org/DoseSchedule".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "doseValue".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:QualitativeValue".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QualitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:RepaymentSpecification".freeze, + domainIncludes: "http://schema.org/RepaymentSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "downPayment".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".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 + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/Number".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :downloadUrl, comment: "If the file can be downloaded, URL to download the binary.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "downloadUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :downvoteCount, comment: "The number of downvotes this question, answer or comment has received from the community.".freeze, - domainIncludes: "schema:Comment".freeze, + domainIncludes: "http://schema.org/Comment".freeze, label: "downvoteCount".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :drainsTo, comment: "The vasculature that the vein drains into.".freeze, - domainIncludes: "schema:Vein".freeze, + domainIncludes: "http://schema.org/Vein".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "drainsTo".freeze, - rangeIncludes: "schema:Vessel".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Vessel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/DriveWheelConfigurationValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dropoffLocation, comment: "Where a rental car can be dropped off.".freeze, - domainIncludes: "schema:RentalCarReservation".freeze, + domainIncludes: "http://schema.org/RentalCarReservation".freeze, label: "dropoffLocation".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dropoffTime, comment: "When a rental car can be dropped off.".freeze, - domainIncludes: "schema:RentalCarReservation".freeze, + domainIncludes: "http://schema.org/RentalCarReservation".freeze, label: "dropoffTime".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :drug, comment: "Specifying a drug or medicine used in a medication procedure".freeze, - domainIncludes: ["schema:DrugClass".freeze, "schema:MedicalCondition".freeze, "schema:Patient".freeze, "schema:TherapeuticProcedure".freeze], + domainIncludes: ["http://schema.org/DrugClass".freeze, "http://schema.org/MedicalCondition".freeze, "http://schema.org/Patient".freeze, "http://schema.org/TherapeuticProcedure".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "drug".freeze, - rangeIncludes: "schema:Drug".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Drug".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :drugClass, comment: "The class of drug this belongs to (e.g., statins).".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "drugClass".freeze, - rangeIncludes: "schema:DrugClass".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DrugClass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :drugUnit, comment: "The unit in which the drug is measured, e.g. '5 mg tablet'.".freeze, - domainIncludes: ["schema:Drug".freeze, "schema:DrugCost".freeze], + domainIncludes: ["http://schema.org/Drug".freeze, "http://schema.org/DrugCost".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "drugUnit".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duns, comment: "The Dun & Bradstreet DUNS number for identifying an organization or business person.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duplicateTherapy, comment: "A therapy that duplicates or overlaps this one.".freeze, - domainIncludes: "schema:MedicalTherapy".freeze, + domainIncludes: "http://schema.org/MedicalTherapy".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "duplicateTherapy".freeze, - rangeIncludes: "schema:MedicalTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duration, comment: "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).".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], + domainIncludes: ["http://schema.org/Audiobook".freeze, "http://schema.org/Event".freeze, "http://schema.org/MediaObject".freeze, "http://schema.org/Movie".freeze, "http://schema.org/MusicRecording".freeze, "http://schema.org/MusicRelease".freeze, "http://schema.org/QuantitativeValueDistribution".freeze, "http://schema.org/Schedule".freeze], + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1457".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], label: "duration".freeze, - rangeIncludes: "schema:Duration".freeze, - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1457".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:WarrantyPromise".freeze, + domainIncludes: "http://schema.org/WarrantyPromise".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "durationOfWarranty".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duringMedia, comment: "A media object representing the circumstances while performing this direction.".freeze, - domainIncludes: "schema:HowToDirection".freeze, + domainIncludes: "http://schema.org/HowToDirection".freeze, label: "duringMedia".freeze, - rangeIncludes: ["schema:MediaObject".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MediaObject".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :earlyPrepaymentPenalty, comment: "The amount to be paid as a penalty in the event of early payment of the loan.".freeze, - domainIncludes: "schema:RepaymentSpecification".freeze, + domainIncludes: "http://schema.org/RepaymentSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "earlyPrepaymentPenalty".freeze, - rangeIncludes: "schema:MonetaryAmount".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 + rangeIncludes: "http://schema.org/MonetaryAmount".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :editEIDR, comment: "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.\n\nFor 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\".\n\nSince 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.\n".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2469".freeze, label: "editEIDR".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :editor, comment: "Specifies the Person who edited the CreativeWork.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "editor".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eduQuestionType, comment: "For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: \"Multiple choice\", \"Open ended\", \"Flashcard\".".freeze, - domainIncludes: ["schema:Question".freeze, "schema:SolveMathAction".freeze], + domainIncludes: ["http://schema.org/Question".freeze, "http://schema.org/SolveMathAction".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2636".freeze, label: "eduQuestionType".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2636".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationRequirements, comment: "Educational background needed for the position or Occupation.".freeze, - domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], + domainIncludes: ["http://schema.org/JobPosting".freeze, "http://schema.org/Occupation".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], label: "educationRequirements".freeze, - rangeIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/EducationalOccupationalCredential".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalAlignment, comment: "An alignment to an established educational framework.\n\nThis 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, "schema:LearningResource".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], label: "educationalAlignment".freeze, - rangeIncludes: "schema:AlignmentObject".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AlignmentObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Course".freeze, "schema:EducationalOccupationalProgram".freeze], + domainIncludes: ["http://schema.org/Course".freeze, "http://schema.org/EducationalOccupationalProgram".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "educationalCredentialAwarded".freeze, - rangeIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Text".freeze, "schema:URL".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/EducationalOccupationalCredential".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalFramework, comment: "The framework to which the resource being described is aligned.".freeze, - domainIncludes: "schema:AlignmentObject".freeze, + domainIncludes: "http://schema.org/AlignmentObject".freeze, label: "educationalFramework".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:CreativeWork".freeze, "schema:EducationEvent".freeze, "schema:EducationalOccupationalCredential".freeze, "schema:LearningResource".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/EducationEvent".freeze, "http://schema.org/EducationalOccupationalCredential".freeze, "http://schema.org/LearningResource".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "educationalLevel".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "educationalProgramMode".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalRole, comment: "An educationalRole of an EducationalAudience.".freeze, - domainIncludes: "schema:EducationalAudience".freeze, + domainIncludes: "http://schema.org/EducationalAudience".freeze, label: "educationalRole".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalUse, comment: "The purpose of a work in the context of education; for example, 'assignment', 'group work'.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:LearningResource".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], label: "educationalUse".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :elevation, comment: "The elevation of a location ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). Values may be of the form 'NUMBER UNIT_OF_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.".freeze, - domainIncludes: ["schema:GeoCoordinates".freeze, "schema:GeoShape".freeze], + domainIncludes: ["http://schema.org/GeoCoordinates".freeze, "http://schema.org/GeoShape".freeze], label: "elevation".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, label: "eligibilityToWorkRequirement".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eligibleCustomerType, comment: "The type(s) of customers for which the given offer is valid.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "eligibleCustomerType".freeze, - rangeIncludes: "schema:BusinessEntityType".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BusinessEntityType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eligibleDuration, comment: "The duration for which the given offer is valid.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "eligibleDuration".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:PriceSpecification".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/PriceSpecification".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "eligibleQuantity".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nSee also [[ineligibleRegion]].\n ".freeze, - domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:DeliveryChargeSpecification".freeze, "schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/ActionAccessSpecification".freeze, "http://schema.org/DeliveryChargeSpecification".freeze, "http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], label: "eligibleRegion".freeze, - rangeIncludes: ["schema:GeoShape".freeze, "schema:Place".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/GeoShape".freeze, "http://schema.org/Place".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/areaServed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:PriceSpecification".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/PriceSpecification".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "eligibleTransactionVolume".freeze, - rangeIncludes: "schema:PriceSpecification".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :email, comment: "Email address.".freeze, - domainIncludes: ["schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], label: "email".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :embedUrl, comment: "A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag.".freeze, - domainIncludes: "schema:MediaObject".freeze, + domainIncludes: "http://schema.org/MediaObject".freeze, label: "embedUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :employee, comment: "Someone working for this organization.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, label: "employee".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :employees, comment: "People working for this organization.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, + "http://schema.org/supersededBy": "http://schema.org/employee".freeze, label: "employees".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:supersededBy": "schema:employee".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :employerOverview, comment: "A description of the employer, career opportunities and work environment for this position.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, label: "employerOverview".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :employmentType, comment: "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, label: "employmentType".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2296".freeze, label: "employmentUnit".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2296".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodesCreativeWork, comment: "The CreativeWork encoded by this media object.".freeze, - domainIncludes: "schema:MediaObject".freeze, + domainIncludes: "http://schema.org/MediaObject".freeze, + "http://schema.org/inverseOf": "http://schema.org/encoding".freeze, label: "encodesCreativeWork".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - "schema:inverseOf": "schema:encoding".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encoding, comment: "A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/inverseOf": "http://schema.org/encodesCreativeWork".freeze, label: "encoding".freeze, - rangeIncludes: "schema:MediaObject".freeze, - "schema:inverseOf": "schema:encodesCreativeWork".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MediaObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodingFormat, comment: "Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).\n\nIn cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.\n\nUnregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:MediaObject".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/MediaObject".freeze], label: "encodingFormat".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodingType, comment: "The supported encoding type(s) for an EntryPoint request.".freeze, - domainIncludes: "schema:EntryPoint".freeze, + domainIncludes: "http://schema.org/EntryPoint".freeze, label: "encodingType".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodings, comment: "A media object that encodes this CreativeWork.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/supersededBy": "http://schema.org/encoding".freeze, label: "encodings".freeze, - rangeIncludes: "schema:MediaObject".freeze, - "schema:supersededBy": "schema:encoding".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MediaObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endDate, comment: "The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).".freeze, - domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:CreativeWorkSeries".freeze, "schema:DatedMoneySpecification".freeze, "schema:EducationalOccupationalProgram".freeze, "schema:Event".freeze, "schema:Role".freeze, "schema:Schedule".freeze], + domainIncludes: ["http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/CreativeWorkSeries".freeze, "http://schema.org/DatedMoneySpecification".freeze, "http://schema.org/EducationalOccupationalProgram".freeze, "http://schema.org/Event".freeze, "http://schema.org/Role".freeze, "http://schema.org/Schedule".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, label: "endDate".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endOffset, comment: "The end time of the clip expressed as the number of seconds from the beginning of the work.".freeze, - domainIncludes: "schema:Clip".freeze, + domainIncludes: "http://schema.org/Clip".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, label: "endOffset".freeze, - rangeIncludes: ["schema:HyperTocEntry".freeze, "schema:Number".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/HyperTocEntry".freeze, "http://schema.org/Number".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.".freeze, - domainIncludes: ["schema:Action".freeze, "schema:FoodEstablishmentReservation".freeze, "schema:MediaObject".freeze, "schema:Schedule".freeze], + domainIncludes: ["http://schema.org/Action".freeze, "http://schema.org/FoodEstablishmentReservation".freeze, "http://schema.org/MediaObject".freeze, "http://schema.org/Schedule".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, label: "endTime".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Time".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Time".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endorsee, comment: "A sub property of participant. The person/organization being supported.".freeze, - domainIncludes: "schema:EndorseAction".freeze, + domainIncludes: "http://schema.org/EndorseAction".freeze, label: "endorsee".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endorsers, comment: "People or organizations that endorse the plan.".freeze, - domainIncludes: "schema:Diet".freeze, + domainIncludes: "http://schema.org/Diet".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "endorsers".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :energyEfficiencyScaleMax, comment: "Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.".freeze, - domainIncludes: "schema:EnergyConsumptionDetails".freeze, + domainIncludes: "http://schema.org/EnergyConsumptionDetails".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "energyEfficiencyScaleMax".freeze, - rangeIncludes: "schema:EUEnergyEfficiencyEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :energyEfficiencyScaleMin, comment: "Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.".freeze, - domainIncludes: "schema:EnergyConsumptionDetails".freeze, + domainIncludes: "http://schema.org/EnergyConsumptionDetails".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "energyEfficiencyScaleMin".freeze, - rangeIncludes: "schema:EUEnergyEfficiencyEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :engineDisplacement, comment: "The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement. \\n\\nTypical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches\\n* Note 1: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, - domainIncludes: "schema:EngineSpecification".freeze, + domainIncludes: "http://schema.org/EngineSpecification".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :enginePower, comment: "The power of the vehicle's engine.\n Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)\\n\\n* Note 1: There are many different ways of measuring an engine's power. For an overview, see [http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes](http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes).\\n* Note 2: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 3: You can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, - domainIncludes: "schema:EngineSpecification".freeze, + domainIncludes: "http://schema.org/EngineSpecification".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :engineType, comment: "The type of engine or engines powering the vehicle.".freeze, - domainIncludes: "schema:EngineSpecification".freeze, + domainIncludes: "http://schema.org/EngineSpecification".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :entertainmentBusiness, comment: "A sub property of location. The entertainment business where the action occurred.".freeze, - domainIncludes: "schema:PerformAction".freeze, + domainIncludes: "http://schema.org/PerformAction".freeze, label: "entertainmentBusiness".freeze, - rangeIncludes: "schema:EntertainmentBusiness".freeze, - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/EntertainmentBusiness".freeze, + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :epidemiology, comment: "The characteristics of associated patients, such as age, gender, race etc.".freeze, - domainIncludes: ["schema:MedicalCondition".freeze, "schema:PhysicalActivity".freeze], + domainIncludes: ["http://schema.org/MedicalCondition".freeze, "http://schema.org/PhysicalActivity".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "epidemiology".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :episode, comment: "An episode of a tv, radio or game media within a series or season.".freeze, - domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGameSeries".freeze], label: "episode".freeze, - rangeIncludes: "schema:Episode".freeze, - subPropertyOf: "schema:hasPart".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Episode".freeze, + subPropertyOf: "http://schema.org/hasPart".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :episodeNumber, comment: "Position of the episode within an ordered group of episodes.".freeze, - domainIncludes: "schema:Episode".freeze, + domainIncludes: "http://schema.org/Episode".freeze, label: "episodeNumber".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze], - subPropertyOf: "schema:position".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :episodes, comment: "An episode of a TV/radio series or season.".freeze, - domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGameSeries".freeze], + "http://schema.org/supersededBy": "http://schema.org/episode".freeze, label: "episodes".freeze, - rangeIncludes: "schema:Episode".freeze, - "schema:supersededBy": "schema:episode".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Episode".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :equal, comment: "This ordering relation for qualitative values indicates that the subject is equal to the object.".freeze, - domainIncludes: "schema:QualitativeValue".freeze, + domainIncludes: "http://schema.org/QualitativeValue".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "equal".freeze, - rangeIncludes: "schema:QualitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :error, comment: "For failed actions, more information on the cause of the failure.".freeze, - domainIncludes: "schema:Action".freeze, + domainIncludes: "http://schema.org/Action".freeze, label: "error".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :estimatedCost, comment: "The estimated cost of the supply or supplies consumed when performing instructions.".freeze, - domainIncludes: ["schema:HowTo".freeze, "schema:HowToSupply".freeze], + domainIncludes: ["http://schema.org/HowTo".freeze, "http://schema.org/HowToSupply".freeze], label: "estimatedCost".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :estimatedFlightDuration, comment: "The estimated time the flight will take.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "estimatedFlightDuration".freeze, - rangeIncludes: ["schema:Duration".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Duration".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], + domainIncludes: ["http://schema.org/JobPosting".freeze, "http://schema.org/Occupation".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "estimatedSalary".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:MonetaryAmountDistribution".freeze, "schema:Number".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/MonetaryAmountDistribution".freeze, "http://schema.org/Number".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :estimatesRiskOf, comment: "The condition, complication, or symptom whose risk is being estimated.".freeze, - domainIncludes: "schema:MedicalRiskEstimator".freeze, + domainIncludes: "http://schema.org/MedicalRiskEstimator".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "estimatesRiskOf".freeze, - rangeIncludes: "schema:MedicalEntity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/NewsMediaOrganization".freeze, "http://schema.org/Organization".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1525".freeze, label: "ethicsPolicy".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1525".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :event, comment: "Upcoming or past event associated with this place, organization, or action.".freeze, - domainIncludes: ["schema:InformAction".freeze, "schema:InviteAction".freeze, "schema:JoinAction".freeze, "schema:LeaveAction".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:PlayAction".freeze], + domainIncludes: ["http://schema.org/InformAction".freeze, "http://schema.org/InviteAction".freeze, "http://schema.org/JoinAction".freeze, "http://schema.org/LeaveAction".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Place".freeze, "http://schema.org/PlayAction".freeze], label: "event".freeze, - rangeIncludes: "schema:Event".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventAttendanceMode, comment: "The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "eventAttendanceMode".freeze, - rangeIncludes: "schema:EventAttendanceModeEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/EventAttendanceModeEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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\n repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly\n gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that\n is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated\n [[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\n or seasons.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "eventSchedule".freeze, - rangeIncludes: "schema:Schedule".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Schedule".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventStatus, comment: "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, label: "eventStatus".freeze, - rangeIncludes: "schema:EventStatusType".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/EventStatusType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :events, comment: "Upcoming or past events associated with this place or organization.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Place".freeze], + "http://schema.org/supersededBy": "http://schema.org/event".freeze, label: "events".freeze, - rangeIncludes: "schema:Event".freeze, - "schema:supersededBy": "schema:event".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :evidenceLevel, comment: "Strength of evidence of the data used to formulate the guideline (enumerated).".freeze, - domainIncludes: "schema:MedicalGuideline".freeze, + domainIncludes: "http://schema.org/MedicalGuideline".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "evidenceLevel".freeze, - rangeIncludes: "schema:MedicalEvidenceLevel".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalEvidenceLevel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :evidenceOrigin, comment: "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.".freeze, - domainIncludes: "schema:MedicalGuideline".freeze, + domainIncludes: "http://schema.org/MedicalGuideline".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "evidenceOrigin".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exampleOfWork, comment: "A creative work that this work is an example/instance/realization/derivation of.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/inverseOf": "http://schema.org/workExample".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".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 + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exceptDate, comment: "Defines a [[Date]] or [[DateTime]] during which a scheduled [[Event]] will not take place. The property allows exceptions to\n 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\n 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\n excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.".freeze, - domainIncludes: "schema:Schedule".freeze, + domainIncludes: "http://schema.org/Schedule".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "exceptDate".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exchangeRateSpread, comment: "The difference between the price at which a broker or other intermediary buys and sells foreign currency.".freeze, - domainIncludes: "schema:ExchangeRateSpecification".freeze, + domainIncludes: "http://schema.org/ExchangeRateSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "exchangeRateSpread".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".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 + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/Number".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :executableLibraryName, comment: "Library file name e.g., mscorlib.dll, system.web.dll.".freeze, - domainIncludes: "schema:APIReference".freeze, + domainIncludes: "http://schema.org/APIReference".freeze, label: "executableLibraryName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exerciseCourse, comment: "A sub property of location. The course where this action was taken.".freeze, - domainIncludes: "schema:ExerciseAction".freeze, + domainIncludes: "http://schema.org/ExerciseAction".freeze, label: "exerciseCourse".freeze, - rangeIncludes: "schema:Place".freeze, - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exercisePlan, comment: "A sub property of instrument. The exercise plan used on this action.".freeze, - domainIncludes: "schema:ExerciseAction".freeze, + domainIncludes: "http://schema.org/ExerciseAction".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "exercisePlan".freeze, - rangeIncludes: "schema:ExercisePlan".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subPropertyOf: "schema:instrument".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ExercisePlan".freeze, + subPropertyOf: "http://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exerciseRelatedDiet, comment: "A sub property of instrument. The diet used in this action.".freeze, - domainIncludes: "schema:ExerciseAction".freeze, + domainIncludes: "http://schema.org/ExerciseAction".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "exerciseRelatedDiet".freeze, - rangeIncludes: "schema:Diet".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subPropertyOf: "schema:instrument".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Diet".freeze, + subPropertyOf: "http://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exerciseType, comment: "Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.".freeze, - domainIncludes: ["schema:ExerciseAction".freeze, "schema:ExercisePlan".freeze], + domainIncludes: ["http://schema.org/ExerciseAction".freeze, "http://schema.org/ExercisePlan".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "exerciseType".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exifData, comment: "exif data for this object.".freeze, - domainIncludes: "schema:ImageObject".freeze, + domainIncludes: "http://schema.org/ImageObject".freeze, label: "exifData".freeze, - rangeIncludes: ["schema:PropertyValue".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/PropertyValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expectedArrivalFrom, comment: "The earliest date the package may arrive.".freeze, - domainIncludes: "schema:ParcelDelivery".freeze, + domainIncludes: "http://schema.org/ParcelDelivery".freeze, label: "expectedArrivalFrom".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expectedArrivalUntil, comment: "The latest date the package may arrive.".freeze, - domainIncludes: "schema:ParcelDelivery".freeze, + domainIncludes: "http://schema.org/ParcelDelivery".freeze, label: "expectedArrivalUntil".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expectedPrognosis, comment: "The likely outcome in either the short term or long term of the medical condition.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "expectedPrognosis".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:ConsumeAction".freeze, "schema:MediaSubscription".freeze], + domainIncludes: ["http://schema.org/ActionAccessSpecification".freeze, "http://schema.org/ConsumeAction".freeze, "http://schema.org/MediaSubscription".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "expectsAcceptanceOf".freeze, - rangeIncludes: "schema:Offer".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :experienceRequirements, comment: "Description of skills and experience needed for the position or Occupation.".freeze, - domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], + domainIncludes: ["http://schema.org/JobPosting".freeze, "http://schema.org/Occupation".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "experienceRequirements".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expertConsiderations, comment: "Medical expert advice related to the plan.".freeze, - domainIncludes: "schema:Diet".freeze, + domainIncludes: "http://schema.org/Diet".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "expertConsiderations".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expires, comment: "Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "expires".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :familyName, comment: "Family name. In the U.S., the last name of a Person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "familyName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fatContent, comment: "The number of grams of fat.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "fatContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :faxNumber, comment: "The fax number.".freeze, - domainIncludes: ["schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze, "http://schema.org/Place".freeze], label: "faxNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :featureList, comment: "Features or modules provided by this application (and possibly required by other applications).".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "featureList".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:FinancialProduct".freeze, "schema:FinancialService".freeze], + domainIncludes: ["http://schema.org/FinancialProduct".freeze, "http://schema.org/FinancialService".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".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 + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fiberContent, comment: "The number of grams of fiber.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "fiberContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileFormat, comment: "Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/supersededBy": "http://schema.org/encodingFormat".freeze, label: "fileFormat".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:supersededBy": "schema:encodingFormat".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileSize, comment: "Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "fileSize".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2418".freeze, label: "financialAidEligible".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2418".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :firstAppearance, comment: "Indicates the first known occurence of a [[Claim]] in some [[CreativeWork]].".freeze, - domainIncludes: "schema:Claim".freeze, + domainIncludes: "http://schema.org/Claim".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, label: "firstAppearance".freeze, - rangeIncludes: "schema:CreativeWork".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 + rangeIncludes: "http://schema.org/CreativeWork".freeze, + subPropertyOf: "http://schema.org/workExample".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :firstPerformance, comment: "The date and place the work was first performed.".freeze, - domainIncludes: "schema:MusicComposition".freeze, + domainIncludes: "http://schema.org/MusicComposition".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "firstPerformance".freeze, - rangeIncludes: "schema:Event".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :flightDistance, comment: "The distance of the flight.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "flightDistance".freeze, - rangeIncludes: ["schema:Distance".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Distance".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :flightNumber, comment: "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "flightNumber".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "schema:identifier".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :floorLevel, comment: "The floor level for an [[Accommodation]] in a multi-storey building. Since counting\n systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.".freeze, - domainIncludes: "schema:Accommodation".freeze, + domainIncludes: "http://schema.org/Accommodation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "floorLevel".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :floorLimit, comment: "A floor limit is the amount of money above which credit card transactions must be authorized.".freeze, - domainIncludes: "schema:PaymentCard".freeze, + domainIncludes: "http://schema.org/PaymentCard".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "floorLimit".freeze, - rangeIncludes: "schema:MonetaryAmount".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 + rangeIncludes: "http://schema.org/MonetaryAmount".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :floorSize, comment: "The size of the accommodation, e.g. in square meter or squarefoot.\nTypical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard ".freeze, - domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/FloorPlan".freeze], + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :followee, comment: "A sub property of object. The person or organization being followed.".freeze, - domainIncludes: "schema:FollowAction".freeze, + domainIncludes: "http://schema.org/FollowAction".freeze, label: "followee".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:object".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :follows, comment: "The most generic uni-directional social relation.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "follows".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :followup, comment: "Typical or recommended followup care after the procedure is performed.".freeze, - domainIncludes: "schema:MedicalProcedure".freeze, + domainIncludes: "http://schema.org/MedicalProcedure".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "followup".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foodEstablishment, comment: "A sub property of location. The specific food establishment where the action occurred.".freeze, - domainIncludes: "schema:CookAction".freeze, + domainIncludes: "http://schema.org/CookAction".freeze, label: "foodEstablishment".freeze, - rangeIncludes: ["schema:FoodEstablishment".freeze, "schema:Place".freeze], - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/FoodEstablishment".freeze, "http://schema.org/Place".freeze], + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foodEvent, comment: "A sub property of location. The specific food event where the action occurred.".freeze, - domainIncludes: "schema:CookAction".freeze, + domainIncludes: "http://schema.org/CookAction".freeze, label: "foodEvent".freeze, - rangeIncludes: "schema:FoodEvent".freeze, - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/FoodEvent".freeze, + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foodWarning, comment: "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "foodWarning".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :founder, comment: "A person who founded this organization.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, label: "founder".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :founders, comment: "A person who founded this organization.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, + "http://schema.org/supersededBy": "http://schema.org/founder".freeze, label: "founders".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:supersededBy": "schema:founder".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foundingDate, comment: "The date that this organization was founded.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, label: "foundingDate".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foundingLocation, comment: "The place where the Organization was founded.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, label: "foundingLocation".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :free, comment: "A flag to signal that the item, event, or place is accessible for free.".freeze, - domainIncludes: "schema:PublicationEvent".freeze, + domainIncludes: "http://schema.org/PublicationEvent".freeze, + "http://schema.org/supersededBy": "http://schema.org/isAccessibleForFree".freeze, label: "free".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:supersededBy": "schema:isAccessibleForFree".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :freeShippingThreshold, comment: "A monetary value above which (or equal to) the shipping rate becomes free. Intended to be used via an [[OfferShippingDetails]] with [[shippingSettingsLink]] matching this [[ShippingRateSettings]].".freeze, - domainIncludes: "schema:ShippingRateSettings".freeze, + domainIncludes: "http://schema.org/ShippingRateSettings".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "freeShippingThreshold".freeze, - rangeIncludes: ["schema:DeliveryChargeSpecification".freeze, "schema:MonetaryAmount".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DeliveryChargeSpecification".freeze, "http://schema.org/MonetaryAmount".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frequency, comment: "How often the dose is taken, e.g. 'daily'.".freeze, - domainIncludes: "schema:DoseSchedule".freeze, + domainIncludes: "http://schema.org/DoseSchedule".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "frequency".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fromLocation, comment: "A sub property of location. The original location of the object or the agent before the action.".freeze, - domainIncludes: ["schema:ExerciseAction".freeze, "schema:MoveAction".freeze, "schema:TransferAction".freeze], + domainIncludes: ["http://schema.org/ExerciseAction".freeze, "http://schema.org/MoveAction".freeze, "http://schema.org/TransferAction".freeze], label: "fromLocation".freeze, - rangeIncludes: "schema:Place".freeze, - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fuelCapacity, 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.\\n\\nTypical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles).".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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).\\n\\n* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* 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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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).\\n\\n* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* 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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:EngineSpecification".freeze, "schema:Vehicle".freeze], + domainIncludes: ["http://schema.org/EngineSpecification".freeze, "http://schema.org/Vehicle".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :functionalClass, comment: "The degree of mobility the joint allows.".freeze, - domainIncludes: "schema:Joint".freeze, + domainIncludes: "http://schema.org/Joint".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "functionalClass".freeze, - rangeIncludes: ["schema:MedicalEntity".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MedicalEntity".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fundedItem, comment: "Indicates an item funded or sponsored through a [[Grant]].".freeze, - domainIncludes: "schema:Grant".freeze, + domainIncludes: "http://schema.org/Grant".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/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], label: "fundedItem".freeze, - rangeIncludes: "schema:Thing".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 + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :funder, comment: "A person or organization that supports (sponsors) something through some kind of financial contribution.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:MonetaryGrant".freeze, "schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze, "http://schema.org/MonetaryGrant".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], label: "funder".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:sponsor".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/sponsor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :game, comment: "Video game which is played on this server.".freeze, - domainIncludes: "schema:GameServer".freeze, + domainIncludes: "http://schema.org/GameServer".freeze, + "http://schema.org/inverseOf": "http://schema.org/gameServer".freeze, label: "game".freeze, - rangeIncludes: "schema:VideoGame".freeze, - "schema:inverseOf": "schema:gameServer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/VideoGame".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gameItem, comment: "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.".freeze, - domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/Game".freeze, "http://schema.org/VideoGameSeries".freeze], label: "gameItem".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gameLocation, comment: "Real or fictional location of the game (or part of game).".freeze, - domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/Game".freeze, "http://schema.org/VideoGameSeries".freeze], label: "gameLocation".freeze, - rangeIncludes: ["schema:Place".freeze, "schema:PostalAddress".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Place".freeze, "http://schema.org/PostalAddress".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gamePlatform, comment: "The electronic systems used to play video games.".freeze, - domainIncludes: ["schema:VideoGame".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/VideoGame".freeze, "http://schema.org/VideoGameSeries".freeze], label: "gamePlatform".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:Thing".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/Thing".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gameServer, comment: "The server on which it is possible to play the game.".freeze, - domainIncludes: "schema:VideoGame".freeze, + domainIncludes: "http://schema.org/VideoGame".freeze, + "http://schema.org/inverseOf": "http://schema.org/game".freeze, label: "gameServer".freeze, - rangeIncludes: "schema:GameServer".freeze, - "schema:inverseOf": "schema:game".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/GameServer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gameTip, comment: "Links to tips, tactics, etc.".freeze, - domainIncludes: "schema:VideoGame".freeze, + domainIncludes: "http://schema.org/VideoGame".freeze, label: "gameTip".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Person".freeze, "schema:SportsTeam".freeze], + domainIncludes: ["http://schema.org/Person".freeze, "http://schema.org/SportsTeam".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2341".freeze, label: "gender".freeze, - rangeIncludes: ["schema:GenderType".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2341".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GenderType".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :genre, comment: "Genre of the creative work, broadcast channel or group.".freeze, - domainIncludes: ["schema:BroadcastChannel".freeze, "schema:CreativeWork".freeze, "schema:MusicGroup".freeze], + domainIncludes: ["http://schema.org/BroadcastChannel".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/MusicGroup".freeze], label: "genre".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geo, comment: "The geo coordinates of the place.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, label: "geo".freeze, - rangeIncludes: ["schema:GeoCoordinates".freeze, "schema:GeoShape".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeoCoordinates".freeze, "http://schema.org/GeoShape".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoContains, comment: "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoContains".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoCoveredBy, comment: "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoCoveredBy".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoCovers, comment: "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoCovers".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoCrosses, comment: "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoCrosses".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoDisjoint, comment: "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: they have no point in common. They form a set of disconnected geometries.\" (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM))".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoDisjoint".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoEquals, comment: "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship)".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoEquals".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoIntersects, comment: "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoIntersects".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoMidpoint, comment: "Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.".freeze, - domainIncludes: "schema:GeoCircle".freeze, + domainIncludes: "http://schema.org/GeoCircle".freeze, label: "geoMidpoint".freeze, - rangeIncludes: "schema:GeoCoordinates".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/GeoCoordinates".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoOverlaps, comment: "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoOverlaps".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoRadius, comment: "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).".freeze, - domainIncludes: "schema:GeoCircle".freeze, + domainIncludes: "http://schema.org/GeoCircle".freeze, label: "geoRadius".freeze, - rangeIncludes: ["schema:Distance".freeze, "schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Distance".freeze, "http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoTouches, comment: "Represents spatial relations in which two geometries (or the places they represent) touch: they have at least one boundary point in common, but no interior points.\" (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) )".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoTouches".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoWithin, comment: "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, - domainIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], label: "geoWithin".freeze, - rangeIncludes: ["schema:GeospatialGeometry".freeze, "schema:Place".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeospatialGeometry".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geographicArea, comment: "The geographic area associated with the audience.".freeze, - domainIncludes: "schema:Audience".freeze, + domainIncludes: "http://schema.org/Audience".freeze, label: "geographicArea".freeze, - rangeIncludes: "schema:AdministrativeArea".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gettingTestedInfo, comment: "Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.".freeze, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "gettingTestedInfo".freeze, - rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/URL".freeze, "http://schema.org/WebContent".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :givenName, comment: "Given name. In the U.S., the first name of a Person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "givenName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :globalLocationNumber, comment: "The [Global Location Number](http://www.gs1.org/gln) (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, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze, "http://schema.org/Place".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :governmentBenefitsInfo, comment: "governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.".freeze, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "governmentBenefitsInfo".freeze, - rangeIncludes: "schema:GovernmentService".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/GovernmentService".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:LoanOrCredit".freeze, + domainIncludes: "http://schema.org/LoanOrCredit".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "gracePeriod".freeze, - rangeIncludes: "schema:Duration".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 + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :grantee, comment: "The person, organization, contact point, or audience that has been granted this permission.".freeze, - domainIncludes: "schema:DigitalDocumentPermission".freeze, + domainIncludes: "http://schema.org/DigitalDocumentPermission".freeze, label: "grantee".freeze, - rangeIncludes: ["schema:Audience".freeze, "schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Audience".freeze, "http://schema.org/ContactPoint".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :greater, comment: "This ordering relation for qualitative values indicates that the subject is greater than the object.".freeze, - domainIncludes: "schema:QualitativeValue".freeze, + domainIncludes: "http://schema.org/QualitativeValue".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "greater".freeze, - rangeIncludes: "schema:QualitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :greaterOrEqual, comment: "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.".freeze, - domainIncludes: "schema:QualitativeValue".freeze, + domainIncludes: "http://schema.org/QualitativeValue".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "greaterOrEqual".freeze, - rangeIncludes: "schema:QualitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gtin, comment: "A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/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](https://www.gs1.org/standards/Digital-Link/) 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](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged.\n ".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Product".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "gtin".freeze, - rangeIncludes: "schema:Text".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gtin12, comment: "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Product".freeze], label: "gtin12".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: ["schema:gtin".freeze, "schema:identifier".freeze], - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: ["http://schema.org/gtin".freeze, "http://schema.org/identifier".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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 preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Product".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: ["http://schema.org/gtin".freeze, "http://schema.org/identifier".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gtin14, comment: "The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Product".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: ["http://schema.org/gtin".freeze, "http://schema.org/identifier".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gtin8, comment: "The [GTIN-8](http://apps.gs1.org/GDD/glossary/Pages/GTIN-8.aspx) 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](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Product".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: ["http://schema.org/gtin".freeze, "http://schema.org/identifier".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :guideline, comment: "A medical guideline related to this entity.".freeze, - domainIncludes: "schema:MedicalEntity".freeze, + domainIncludes: "http://schema.org/MedicalEntity".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "guideline".freeze, - rangeIncludes: "schema:MedicalGuideline".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalGuideline".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :guidelineDate, comment: "Date on which this guideline's recommendation was made.".freeze, - domainIncludes: "schema:MedicalGuideline".freeze, + domainIncludes: "http://schema.org/MedicalGuideline".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "guidelineDate".freeze, - rangeIncludes: "schema:Date".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :guidelineSubject, comment: "The medical conditions, treatments, etc. that are the subject of the guideline.".freeze, - domainIncludes: "schema:MedicalGuideline".freeze, + domainIncludes: "http://schema.org/MedicalGuideline".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "guidelineSubject".freeze, - rangeIncludes: "schema:MedicalEntity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + domainIncludes: "http://schema.org/ShippingDeliveryTime".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "handlingTime".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasBroadcastChannel, comment: "A broadcast channel of a broadcast service.".freeze, - domainIncludes: "schema:BroadcastService".freeze, + domainIncludes: "http://schema.org/BroadcastService".freeze, + "http://schema.org/inverseOf": "http://schema.org/providesBroadcastService".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "hasBroadcastChannel".freeze, - rangeIncludes: "schema:BroadcastChannel".freeze, - "schema:inverseOf": "schema:providesBroadcastService".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BroadcastChannel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCategoryCode, comment: "A Category code contained in this code set.".freeze, - domainIncludes: "schema:CategoryCodeSet".freeze, + domainIncludes: "http://schema.org/CategoryCodeSet".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "hasCategoryCode".freeze, - rangeIncludes: "schema:CategoryCode".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 + rangeIncludes: "http://schema.org/CategoryCode".freeze, + subPropertyOf: "http://schema.org/hasDefinedTerm".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCourse, comment: "A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program.".freeze, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2483".freeze, label: "hasCourse".freeze, - rangeIncludes: "schema:Course".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2483".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Course".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCourseInstance, comment: "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.".freeze, - domainIncludes: "schema:Course".freeze, + domainIncludes: "http://schema.org/Course".freeze, label: "hasCourseInstance".freeze, - rangeIncludes: "schema:CourseInstance".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CourseInstance".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCredential, comment: "A credential awarded to the Person or Organization.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "hasCredential".freeze, - rangeIncludes: "schema:EducationalOccupationalCredential".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/EducationalOccupationalCredential".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDefinedTerm, comment: "A Defined Term contained in this term set.".freeze, - domainIncludes: "schema:DefinedTermSet".freeze, + domainIncludes: "http://schema.org/DefinedTermSet".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "hasDefinedTerm".freeze, - rangeIncludes: "schema:DefinedTerm".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DefinedTerm".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDeliveryMethod, comment: "Method used for delivery or shipping.".freeze, - domainIncludes: ["schema:DeliveryEvent".freeze, "schema:ParcelDelivery".freeze], + domainIncludes: ["http://schema.org/DeliveryEvent".freeze, "http://schema.org/ParcelDelivery".freeze], label: "hasDeliveryMethod".freeze, - rangeIncludes: "schema:DeliveryMethod".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DeliveryMethod".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDigitalDocumentPermission, comment: "A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".".freeze, - domainIncludes: "schema:DigitalDocument".freeze, + domainIncludes: "http://schema.org/DigitalDocument".freeze, label: "hasDigitalDocumentPermission".freeze, - rangeIncludes: "schema:DigitalDocumentPermission".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DigitalDocumentPermission".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "hasDriveThroughService".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEnergyConsumptionDetails, comment: "Defines the energy efficiency Category (also known as \"class\" or \"rating\") for a product according to an international energy efficiency standard".freeze, - domainIncludes: "schema:Product".freeze, + domainIncludes: "http://schema.org/Product".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "hasEnergyConsumptionDetails".freeze, - rangeIncludes: "schema:EnergyConsumptionDetails".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/EnergyConsumptionDetails".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEnergyEfficiencyCategory, comment: "Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard".freeze, - domainIncludes: "schema:EnergyConsumptionDetails".freeze, + domainIncludes: "http://schema.org/EnergyConsumptionDetails".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "hasEnergyEfficiencyCategory".freeze, - rangeIncludes: "schema:EnergyEfficiencyEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/EnergyEfficiencyEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:HealthTopicContent".freeze, + domainIncludes: "http://schema.org/HealthTopicContent".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "hasHealthAspect".freeze, - rangeIncludes: "schema:HealthAspectEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/HealthAspectEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMap, comment: "A URL to a map of the place.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, label: "hasMap".freeze, - rangeIncludes: ["schema:Map".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Map".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMenu, comment: "Either the actual menu as a structured representation, as text, or a URL of the menu.".freeze, - domainIncludes: "schema:FoodEstablishment".freeze, + domainIncludes: "http://schema.org/FoodEstablishment".freeze, label: "hasMenu".freeze, - rangeIncludes: ["schema:Menu".freeze, "schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Menu".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMenuItem, comment: "A food or drink item contained in a menu or menu section.".freeze, - domainIncludes: ["schema:Menu".freeze, "schema:MenuSection".freeze], + domainIncludes: ["http://schema.org/Menu".freeze, "http://schema.org/MenuSection".freeze], label: "hasMenuItem".freeze, - rangeIncludes: "schema:MenuItem".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MenuItem".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMenuSection, comment: "A subgrouping of the menu (by dishes, course, serving time period, etc.).".freeze, - domainIncludes: ["schema:Menu".freeze, "schema:MenuSection".freeze], + domainIncludes: ["http://schema.org/Menu".freeze, "http://schema.org/MenuSection".freeze], label: "hasMenuSection".freeze, - rangeIncludes: "schema:MenuSection".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MenuSection".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMerchantReturnPolicy, comment: "Indicates a MerchantReturnPolicy that may be applicable.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Product".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "hasMerchantReturnPolicy".freeze, - rangeIncludes: "schema:MerchantReturnPolicy".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MerchantReturnPolicy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasOccupation, comment: "The Person's occupation. For past professions, use Role for expressing dates.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "hasOccupation".freeze, - rangeIncludes: "schema:Occupation".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Occupation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasOfferCatalog, comment: "Indicates an OfferCatalog listing for this Organization, Person, or Service.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze, "http://schema.org/Service".freeze], label: "hasOfferCatalog".freeze, - rangeIncludes: "schema:OfferCatalog".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/OfferCatalog".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPOS, comment: "Points-of-Sales operated by the organization or person.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "hasPOS".freeze, - rangeIncludes: "schema:Place".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPart, comment: "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/inverseOf": "http://schema.org/isPartOf".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".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 + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasProductReturnPolicy, comment: "Indicates a ProductReturnPolicy that may be applicable.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Product".freeze], + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "http://schema.org/supersededBy": "http://schema.org/hasMerchantReturnPolicy".freeze, label: "hasProductReturnPolicy".freeze, - rangeIncludes: "schema:ProductReturnPolicy".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 + rangeIncludes: "http://schema.org/ProductReturnPolicy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasVariant, comment: "Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]).".freeze, - domainIncludes: "schema:ProductGroup".freeze, + domainIncludes: "http://schema.org/ProductGroup".freeze, + "http://schema.org/inverseOf": "http://schema.org/isVariantOf".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "hasVariant".freeze, - rangeIncludes: "schema:Product".freeze, - "schema:inverseOf": "schema:isVariantOf".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :headline, comment: "Headline of the article.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "headline".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthCondition, comment: "Specifying the health condition(s) of a patient, medical study, or other target audience.".freeze, - domainIncludes: ["schema:MedicalStudy".freeze, "schema:Patient".freeze, "schema:PeopleAudience".freeze], + domainIncludes: ["http://schema.org/MedicalStudy".freeze, "http://schema.org/Patient".freeze, "http://schema.org/PeopleAudience".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "healthCondition".freeze, - rangeIncludes: "schema:MedicalCondition".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalCondition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCoinsuranceOption, comment: "Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?".freeze, - domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, + domainIncludes: "http://schema.org/HealthPlanCostSharingSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCoinsuranceOption".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCoinsuranceRate, comment: "Whether The rate of coinsurance expressed as a number between 0.0 and 1.0.".freeze, - domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, + domainIncludes: "http://schema.org/HealthPlanCostSharingSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCoinsuranceRate".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCopay, comment: "Whether The copay amount.".freeze, - domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, + domainIncludes: "http://schema.org/HealthPlanCostSharingSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCopay".freeze, - rangeIncludes: "schema:PriceSpecification".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCopayOption, comment: "Whether the copay is before or after deductible, etc. TODO: Is this a closed set?".freeze, - domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, + domainIncludes: "http://schema.org/HealthPlanCostSharingSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCopayOption".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCostSharing, comment: "Whether The costs to the patient for services under this network or formulary.".freeze, - domainIncludes: ["schema:HealthPlanFormulary".freeze, "schema:HealthPlanNetwork".freeze], + domainIncludes: ["http://schema.org/HealthPlanFormulary".freeze, "http://schema.org/HealthPlanNetwork".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCostSharing".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanDrugOption, comment: "TODO.".freeze, - domainIncludes: "schema:HealthInsurancePlan".freeze, + domainIncludes: "http://schema.org/HealthInsurancePlan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanDrugOption".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanDrugTier, comment: "The tier(s) of drugs offered by this formulary or insurance plan.".freeze, - domainIncludes: ["schema:HealthInsurancePlan".freeze, "schema:HealthPlanFormulary".freeze], + domainIncludes: ["http://schema.org/HealthInsurancePlan".freeze, "http://schema.org/HealthPlanFormulary".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanDrugTier".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanId, comment: "The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.)".freeze, - domainIncludes: "schema:HealthInsurancePlan".freeze, + domainIncludes: "http://schema.org/HealthInsurancePlan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanId".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanMarketingUrl, comment: "The URL that goes directly to the plan brochure for the specific standard plan or plan variation.".freeze, - domainIncludes: "schema:HealthInsurancePlan".freeze, + domainIncludes: "http://schema.org/HealthInsurancePlan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanMarketingUrl".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanNetworkId, comment: "Name or unique ID of network. (Networks are often reused across different insurance plans).".freeze, - domainIncludes: ["schema:HealthPlanNetwork".freeze, "schema:MedicalOrganization".freeze], + domainIncludes: ["http://schema.org/HealthPlanNetwork".freeze, "http://schema.org/MedicalOrganization".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanNetworkId".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanNetworkTier, comment: "The tier(s) for this network.".freeze, - domainIncludes: "schema:HealthPlanNetwork".freeze, + domainIncludes: "http://schema.org/HealthPlanNetwork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanNetworkTier".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanPharmacyCategory, comment: "The category or type of pharmacy associated with this cost sharing.".freeze, - domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, + domainIncludes: "http://schema.org/HealthPlanCostSharingSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanPharmacyCategory".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthcareReportingData, comment: "Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].".freeze, - domainIncludes: "schema:Hospital".freeze, + domainIncludes: "http://schema.org/Hospital".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "healthcareReportingData".freeze, - rangeIncludes: ["schema:CDCPMDRecord".freeze, "schema:Dataset".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CDCPMDRecord".freeze, "http://schema.org/Dataset".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :height, comment: "The height of the item.".freeze, - domainIncludes: ["schema:MediaObject".freeze, "schema:Person".freeze, "schema:Product".freeze, "schema:VisualArtwork".freeze], + domainIncludes: ["http://schema.org/MediaObject".freeze, "http://schema.org/Person".freeze, "http://schema.org/Product".freeze, "http://schema.org/VisualArtwork".freeze], label: "height".freeze, - rangeIncludes: ["schema:Distance".freeze, "schema:QuantitativeValue".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Distance".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :highPrice, comment: "The highest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, - domainIncludes: "schema:AggregateOffer".freeze, + domainIncludes: "http://schema.org/AggregateOffer".freeze, label: "highPrice".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hiringOrganization, comment: "Organization offering the job position.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, label: "hiringOrganization".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :holdingArchive, comment: "[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]].".freeze, - domainIncludes: "schema:ArchiveComponent".freeze, + domainIncludes: "http://schema.org/ArchiveComponent".freeze, + "http://schema.org/inverseOf": "http://schema.org/archiveHeld".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "holdingArchive".freeze, - rangeIncludes: "schema:ArchiveOrganization".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 + rangeIncludes: "http://schema.org/ArchiveOrganization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :homeLocation, comment: "A contact location for a person's residence.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "homeLocation".freeze, - rangeIncludes: ["schema:ContactPoint".freeze, "schema:Place".freeze], - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/Place".freeze], + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :homeTeam, comment: "The home team in a sports event.".freeze, - domainIncludes: "schema:SportsEvent".freeze, + domainIncludes: "http://schema.org/SportsEvent".freeze, label: "homeTeam".freeze, - rangeIncludes: ["schema:Person".freeze, "schema:SportsTeam".freeze], - subPropertyOf: "schema:competitor".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Person".freeze, "http://schema.org/SportsTeam".freeze], + subPropertyOf: "http://schema.org/competitor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :honorificPrefix, comment: "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "honorificPrefix".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :honorificSuffix, comment: "An honorific suffix following a Person's name such as M.D. /PhD/MSCSW.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "honorificSuffix".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hospitalAffiliation, comment: "A hospital with which the physician or office is affiliated.".freeze, - domainIncludes: "schema:Physician".freeze, + domainIncludes: "http://schema.org/Physician".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "hospitalAffiliation".freeze, - rangeIncludes: "schema:Hospital".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Hospital".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hostingOrganization, comment: "The organization (airline, travelers' club, etc.) the membership is made with.".freeze, - domainIncludes: "schema:ProgramMembership".freeze, + domainIncludes: "http://schema.org/ProgramMembership".freeze, label: "hostingOrganization".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hoursAvailable, comment: "The hours during which this service or contact is available.".freeze, - domainIncludes: ["schema:ContactPoint".freeze, "schema:LocationFeatureSpecification".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/LocationFeatureSpecification".freeze, "http://schema.org/Service".freeze], label: "hoursAvailable".freeze, - rangeIncludes: "schema:OpeningHoursSpecification".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/OpeningHoursSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :howPerformed, comment: "How the procedure is performed.".freeze, - domainIncludes: "schema:MedicalProcedure".freeze, + domainIncludes: "http://schema.org/MedicalProcedure".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "howPerformed".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :httpMethod, comment: "An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.".freeze, - domainIncludes: "schema:EntryPoint".freeze, + domainIncludes: "http://schema.org/EntryPoint".freeze, label: "httpMethod".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :iataCode, comment: "IATA identifier for an airline or airport.".freeze, - domainIncludes: ["schema:Airline".freeze, "schema:Airport".freeze], + domainIncludes: ["http://schema.org/Airline".freeze, "http://schema.org/Airport".freeze], label: "iataCode".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :icaoCode, comment: "ICAO identifier for an airport.".freeze, - domainIncludes: "schema:Airport".freeze, + domainIncludes: "http://schema.org/Airport".freeze, label: "icaoCode".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifier, comment: "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.\n ".freeze, - domainIncludes: "schema:Thing".freeze, - equivalentProperty: "dc:identifier".freeze, + domainIncludes: "http://schema.org/Thing".freeze, + equivalentProperty: "http://purl.org/dc/terms/identifier".freeze, label: "identifier".freeze, - rangeIncludes: ["schema:PropertyValue".freeze, "schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/PropertyValue".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifyingExam, comment: "A physical examination that can identify this sign.".freeze, - domainIncludes: "schema:MedicalSign".freeze, + domainIncludes: "http://schema.org/MedicalSign".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "identifyingExam".freeze, - rangeIncludes: "schema:PhysicalExam".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PhysicalExam".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifyingTest, comment: "A diagnostic test that can identify this sign.".freeze, - domainIncludes: "schema:MedicalSign".freeze, + domainIncludes: "http://schema.org/MedicalSign".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "identifyingTest".freeze, - rangeIncludes: "schema:MedicalTest".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :illustrator, comment: "The illustrator of the book.".freeze, - domainIncludes: "schema:Book".freeze, + domainIncludes: "http://schema.org/Book".freeze, label: "illustrator".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :image, comment: "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].".freeze, - domainIncludes: "schema:Thing".freeze, + domainIncludes: "http://schema.org/Thing".freeze, label: "image".freeze, - rangeIncludes: ["schema:ImageObject".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ImageObject".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :imagingTechnique, comment: "Imaging technique used.".freeze, - domainIncludes: "schema:ImagingTest".freeze, + domainIncludes: "http://schema.org/ImagingTest".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "imagingTechnique".freeze, - rangeIncludes: "schema:MedicalImagingTechnique".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalImagingTechnique".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inAlbum, comment: "The album to which this recording belongs.".freeze, - domainIncludes: "schema:MusicRecording".freeze, + domainIncludes: "http://schema.org/MusicRecording".freeze, label: "inAlbum".freeze, - rangeIncludes: "schema:MusicAlbum".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicAlbum".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inBroadcastLineup, comment: "The CableOrSatelliteService offering the channel.".freeze, - domainIncludes: "schema:BroadcastChannel".freeze, + domainIncludes: "http://schema.org/BroadcastChannel".freeze, label: "inBroadcastLineup".freeze, - rangeIncludes: "schema:CableOrSatelliteService".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CableOrSatelliteService".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inCodeSet, comment: "A [[CategoryCodeSet]] that contains this category code.".freeze, - domainIncludes: "schema:CategoryCode".freeze, + domainIncludes: "http://schema.org/CategoryCode".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "inCodeSet".freeze, - rangeIncludes: ["schema:CategoryCodeSet".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CategoryCodeSet".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/inDefinedTermSet".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inDefinedTermSet, comment: "A [[DefinedTermSet]] that contains this term.".freeze, - domainIncludes: "schema:DefinedTerm".freeze, + domainIncludes: "http://schema.org/DefinedTerm".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "inDefinedTermSet".freeze, - rangeIncludes: ["schema:DefinedTermSet".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/DefinedTermSet".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].".freeze, - domainIncludes: ["schema:BroadcastService".freeze, "schema:CommunicateAction".freeze, "schema:CreativeWork".freeze, "schema:Event".freeze, "schema:LinkRole".freeze, "schema:PronounceableText".freeze, "schema:WriteAction".freeze], + domainIncludes: ["http://schema.org/BroadcastService".freeze, "http://schema.org/CommunicateAction".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze, "http://schema.org/LinkRole".freeze, "http://schema.org/PronounceableText".freeze, "http://schema.org/WriteAction".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2382".freeze, label: "inLanguage".freeze, - rangeIncludes: ["schema:Language".freeze, "schema:Text".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2382".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Language".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inPlaylist, comment: "The playlist to which this recording belongs.".freeze, - domainIncludes: "schema:MusicRecording".freeze, + domainIncludes: "http://schema.org/MusicRecording".freeze, label: "inPlaylist".freeze, - rangeIncludes: "schema:MusicPlaylist".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicPlaylist".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inProductGroupWithID, comment: "Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. ".freeze, - domainIncludes: "schema:Product".freeze, + domainIncludes: "http://schema.org/Product".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "inProductGroupWithID".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inStoreReturnsOffered, comment: "Are in-store returns offered?".freeze, - domainIncludes: "schema:MerchantReturnPolicy".freeze, + domainIncludes: "http://schema.org/MerchantReturnPolicy".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "inStoreReturnsOffered".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inSupportOf, comment: "Qualification, candidature, degree, application that Thesis supports.".freeze, - domainIncludes: "schema:Thesis".freeze, + domainIncludes: "http://schema.org/Thesis".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "inSupportOf".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :incentiveCompensation, comment: "Description of bonus and commission compensation aspects of the job.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, label: "incentiveCompensation".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :incentives, comment: "Description of bonus and commission compensation aspects of the job.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/supersededBy": "http://schema.org/incentiveCompensation".freeze, label: "incentives".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:supersededBy": "schema:incentiveCompensation".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedComposition, comment: "Smaller compositions included in this work (e.g. a movement in a symphony).".freeze, - domainIncludes: "schema:MusicComposition".freeze, + domainIncludes: "http://schema.org/MusicComposition".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "includedComposition".freeze, - rangeIncludes: "schema:MusicComposition".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicComposition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedDataCatalog, comment: "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').".freeze, - domainIncludes: "schema:Dataset".freeze, + domainIncludes: "http://schema.org/Dataset".freeze, + "http://schema.org/supersededBy": "http://schema.org/includedInDataCatalog".freeze, label: "includedDataCatalog".freeze, - rangeIncludes: "schema:DataCatalog".freeze, - "schema:supersededBy": "schema:includedInDataCatalog".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DataCatalog".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedInDataCatalog, comment: "A data catalog which contains this dataset.".freeze, - domainIncludes: "schema:Dataset".freeze, + domainIncludes: "http://schema.org/Dataset".freeze, + "http://schema.org/inverseOf": "http://schema.org/dataset".freeze, label: "includedInDataCatalog".freeze, - rangeIncludes: "schema:DataCatalog".freeze, - "schema:inverseOf": "schema:dataset".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DataCatalog".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedInHealthInsurancePlan, comment: "The insurance plans that cover this drug.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "includedInHealthInsurancePlan".freeze, - rangeIncludes: "schema:HealthInsurancePlan".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/HealthInsurancePlan".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedRiskFactor, comment: "A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.".freeze, - domainIncludes: "schema:MedicalRiskEstimator".freeze, + domainIncludes: "http://schema.org/MedicalRiskEstimator".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "includedRiskFactor".freeze, - rangeIncludes: "schema:MedicalRiskFactor".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalRiskFactor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includesAttraction, comment: "Attraction located at destination.".freeze, - domainIncludes: "schema:TouristDestination".freeze, + domainIncludes: "http://schema.org/TouristDestination".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "includesAttraction".freeze, - rangeIncludes: "schema:TouristAttraction".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, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/TouristAttraction".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includesHealthPlanFormulary, comment: "Formularies covered by this plan.".freeze, - domainIncludes: "schema:HealthInsurancePlan".freeze, + domainIncludes: "http://schema.org/HealthInsurancePlan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "includesHealthPlanFormulary".freeze, - rangeIncludes: "schema:HealthPlanFormulary".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/HealthPlanFormulary".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includesHealthPlanNetwork, comment: "Networks covered by this plan.".freeze, - domainIncludes: "schema:HealthInsurancePlan".freeze, + domainIncludes: "http://schema.org/HealthInsurancePlan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "includesHealthPlanNetwork".freeze, - rangeIncludes: "schema:HealthPlanNetwork".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/HealthPlanNetwork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includesObject, comment: "This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]].".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:ProductCollection".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/ProductCollection".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "includesObject".freeze, - rangeIncludes: "schema:TypeAndQuantityNode".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/TypeAndQuantityNode".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :increasesRiskOf, comment: "The condition, complication, etc. influenced by this factor.".freeze, - domainIncludes: "schema:MedicalRiskFactor".freeze, + domainIncludes: "http://schema.org/MedicalRiskFactor".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "increasesRiskOf".freeze, - rangeIncludes: "schema:MedicalEntity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :industry, comment: "The industry associated with the job position.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, label: "industry".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ineligibleRegion, 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.\\n\\nSee also [[eligibleRegion]].\n ".freeze, - domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:DeliveryChargeSpecification".freeze, "schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/ActionAccessSpecification".freeze, "http://schema.org/DeliveryChargeSpecification".freeze, "http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2242".freeze, label: "ineligibleRegion".freeze, - rangeIncludes: ["schema:GeoShape".freeze, "schema:Place".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2242".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GeoShape".freeze, "http://schema.org/Place".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :infectiousAgent, comment: "The actual infectious agent, such as a specific bacterium.".freeze, - domainIncludes: "schema:InfectiousDisease".freeze, + domainIncludes: "http://schema.org/InfectiousDisease".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "infectiousAgent".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :infectiousAgentClass, comment: "The class of infectious agent (bacteria, prion, etc.) that causes the disease.".freeze, - domainIncludes: "schema:InfectiousDisease".freeze, + domainIncludes: "http://schema.org/InfectiousDisease".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "infectiousAgentClass".freeze, - rangeIncludes: "schema:InfectiousAgentClass".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/InfectiousAgentClass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ingredients, comment: "A single ingredient used in the recipe, e.g. sugar, flour or garlic.".freeze, - domainIncludes: "schema:Recipe".freeze, + domainIncludes: "http://schema.org/Recipe".freeze, + "http://schema.org/supersededBy": "http://schema.org/recipeIngredient".freeze, label: "ingredients".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:supersededBy": "schema:recipeIngredient".freeze, - subPropertyOf: "schema:supply".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/supply".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inker, comment: "The individual who traces over the pencil drawings in ink after pencils are complete.".freeze, - domainIncludes: ["schema:ComicIssue".freeze, "schema:ComicStory".freeze, "schema:VisualArtwork".freeze], + domainIncludes: ["http://schema.org/ComicIssue".freeze, "http://schema.org/ComicStory".freeze, "http://schema.org/VisualArtwork".freeze], + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "inker".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :insertion, comment: "The place of attachment of a muscle, or what the muscle moves.".freeze, - domainIncludes: "schema:Muscle".freeze, + domainIncludes: "http://schema.org/Muscle".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "insertion".freeze, - rangeIncludes: "schema:AnatomicalStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :installUrl, comment: "URL at which the app may be installed, if different from the URL of the item.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "installUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instructor, comment: "A person assigned to instruct or provide instructional assistance for the [[CourseInstance]].".freeze, - domainIncludes: "schema:CourseInstance".freeze, + domainIncludes: "http://schema.org/CourseInstance".freeze, label: "instructor".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instrument, comment: "The object that helped the agent perform the action. e.g. John wrote a book with *a pen*.".freeze, - domainIncludes: "schema:Action".freeze, + domainIncludes: "http://schema.org/Action".freeze, label: "instrument".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :intensity, comment: "Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.".freeze, - domainIncludes: "schema:ExercisePlan".freeze, + domainIncludes: "http://schema.org/ExercisePlan".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "intensity".freeze, - rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QuantitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interactingDrug, comment: "Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "interactingDrug".freeze, - rangeIncludes: "schema:Drug".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Drug".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interactionCount, comment: "This property is deprecated, alongside the UserInteraction types on which it depended.".freeze, + "http://schema.org/supersededBy": "http://schema.org/interactionStatistic".freeze, label: "interactionCount".freeze, - "schema:supersededBy": "schema:interactionStatistic".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interactionService, comment: "The WebSite or SoftwareApplication where the interactions took place.".freeze, - domainIncludes: "schema:InteractionCounter".freeze, + domainIncludes: "http://schema.org/InteractionCounter".freeze, label: "interactionService".freeze, - rangeIncludes: ["schema:SoftwareApplication".freeze, "schema:WebSite".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/SoftwareApplication".freeze, "http://schema.org/WebSite".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2421".freeze, label: "interactionStatistic".freeze, - rangeIncludes: "schema:InteractionCounter".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2421".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/InteractionCounter".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:InteractionCounter".freeze, + domainIncludes: "http://schema.org/InteractionCounter".freeze, label: "interactionType".freeze, - rangeIncludes: "schema:Action".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Action".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interactivityType, comment: "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "interactivityType".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:FinancialProduct".freeze, + domainIncludes: "http://schema.org/FinancialProduct".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inventoryLevel, comment: "The current approximate inventory level for the item or items.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:SomeProducts".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/SomeProducts".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "inventoryLevel".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Property".freeze, + domainIncludes: "http://schema.org/Property".freeze, + "http://schema.org/isPartOf": "http://meta.schema.org".freeze, label: "inverseOf".freeze, - rangeIncludes: "schema:Property".freeze, - "schema:isPartOf": "http://meta.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAcceptingNewPatients, comment: "Whether the provider is accepting new patients.".freeze, - domainIncludes: "schema:MedicalOrganization".freeze, + domainIncludes: "http://schema.org/MedicalOrganization".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "isAcceptingNewPatients".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAccessibleForFree, comment: "A flag to signal that the item, event, or place is accessible for free.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze, "http://schema.org/Place".freeze], label: "isAccessibleForFree".freeze, - rangeIncludes: "schema:Boolean".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAccessoryOrSparePartFor, comment: "A pointer to another product (or multiple products) for which this product is an accessory or spare part.".freeze, - domainIncludes: "schema:Product".freeze, + domainIncludes: "http://schema.org/Product".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isAccessoryOrSparePartFor".freeze, - rangeIncludes: "schema:Product".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAvailableGenerically, comment: "True if the drug is available in a generic form (regardless of name).".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "isAvailableGenerically".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isBasedOn, comment: "A resource from which this work is derived or from which it is a modification or adaption.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "isBasedOn".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:Product".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Product".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isBasedOnUrl, comment: "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/supersededBy": "http://schema.org/isBasedOn".freeze, label: "isBasedOnUrl".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:Product".freeze, "schema:URL".freeze], - "schema:supersededBy": "schema:isBasedOn".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Product".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isConsumableFor, comment: "A pointer to another product (or multiple products) for which this product is a consumable.".freeze, - domainIncludes: "schema:Product".freeze, + domainIncludes: "http://schema.org/Product".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isConsumableFor".freeze, - rangeIncludes: "schema:Product".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isFamilyFriendly, comment: "Indicates whether this content is family friendly.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "isFamilyFriendly".freeze, - rangeIncludes: "schema:Boolean".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isGift, comment: "Was the offer accepted as a gift for someone other than the buyer.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "isGift".freeze, - rangeIncludes: "schema:Boolean".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isLiveBroadcast, comment: "True is the broadcast is of a live event.".freeze, - domainIncludes: "schema:BroadcastEvent".freeze, + domainIncludes: "http://schema.org/BroadcastEvent".freeze, label: "isLiveBroadcast".freeze, - rangeIncludes: "schema:Boolean".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isPartOf, comment: "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/inverseOf": "http://schema.org/hasPart".freeze, label: "isPartOf".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], - "schema:inverseOf": "schema:hasPart".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isPlanForApartment, comment: "Indicates some accommodation that this floor plan describes.".freeze, - domainIncludes: "schema:FloorPlan".freeze, + domainIncludes: "http://schema.org/FloorPlan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "isPlanForApartment".freeze, - rangeIncludes: "schema:Accommodation".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Accommodation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isProprietary, comment: "True if this item's name is a proprietary/brand name (vs. generic name).".freeze, - domainIncludes: ["schema:DietarySupplement".freeze, "schema:Drug".freeze], + domainIncludes: ["http://schema.org/DietarySupplement".freeze, "http://schema.org/Drug".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "isProprietary".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isRelatedTo, comment: "A pointer to another, somehow related product (or multiple products).".freeze, - domainIncludes: ["schema:Product".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/Product".freeze, "http://schema.org/Service".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Product".freeze, "http://schema.org/Service".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:3DModel".freeze, + domainIncludes: "http://schema.org/3DModel".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2394".freeze, label: "isResizable".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2394".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isSimilarTo, comment: "A pointer to another, functionally similar product (or multiple products).".freeze, - domainIncludes: ["schema:Product".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/Product".freeze, "http://schema.org/Service".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Product".freeze, "http://schema.org/Service".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isUnlabelledFallback, comment: "This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[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 transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings.".freeze, - domainIncludes: ["schema:DeliveryTimeSettings".freeze, "schema:ShippingRateSettings".freeze], + domainIncludes: ["http://schema.org/DeliveryTimeSettings".freeze, "http://schema.org/ShippingRateSettings".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "isUnlabelledFallback".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isVariantOf, comment: "Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) 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. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group.".freeze, - domainIncludes: ["schema:Product".freeze, "schema:ProductModel".freeze], + domainIncludes: ["http://schema.org/Product".freeze, "http://schema.org/ProductModel".freeze], + "http://schema.org/inverseOf": "http://schema.org/hasVariant".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isVariantOf".freeze, - rangeIncludes: ["schema:ProductGroup".freeze, "schema:ProductModel".freeze], - "schema:inverseOf": "schema:hasVariant".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ProductGroup".freeze, "http://schema.org/ProductModel".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isbn, comment: "The ISBN of the book.".freeze, - domainIncludes: "schema:Book".freeze, - equivalentProperty: "bibo:isbn".freeze, + domainIncludes: "http://schema.org/Book".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/isbn".freeze, label: "isbn".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "schema:identifier".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze, "http://schema.org/Place".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isicV4".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isrcCode, comment: "The International Standard Recording Code for the recording.".freeze, - domainIncludes: "schema:MusicRecording".freeze, + domainIncludes: "http://schema.org/MusicRecording".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "isrcCode".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Blog".freeze, "schema:CreativeWorkSeries".freeze, "schema:Dataset".freeze, "schema:WebSite".freeze], - equivalentProperty: "bibo:issn".freeze, + domainIncludes: ["http://schema.org/Blog".freeze, "http://schema.org/CreativeWorkSeries".freeze, "http://schema.org/Dataset".freeze, "http://schema.org/WebSite".freeze], + equivalentProperty: "http://purl.org/ontology/bibo/issn".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :issueNumber, comment: "Identifies the issue of publication; for example, \"iii\" or \"2\".".freeze, - domainIncludes: "schema:PublicationIssue".freeze, - equivalentProperty: "bibo:issue".freeze, + domainIncludes: "http://schema.org/PublicationIssue".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/issue".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".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 + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :issuedBy, comment: "The organization issuing the ticket or permit.".freeze, - domainIncludes: ["schema:Permit".freeze, "schema:Ticket".freeze], + domainIncludes: ["http://schema.org/Permit".freeze, "http://schema.org/Ticket".freeze], label: "issuedBy".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :issuedThrough, comment: "The service through with the permit was granted.".freeze, - domainIncludes: "schema:Permit".freeze, + domainIncludes: "http://schema.org/Permit".freeze, label: "issuedThrough".freeze, - rangeIncludes: "schema:Service".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Service".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :iswcCode, comment: "The International Standard Musical Work Code for the composition.".freeze, - domainIncludes: "schema:MusicComposition".freeze, + domainIncludes: "http://schema.org/MusicComposition".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "iswcCode".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:DataFeedItem".freeze, "schema:ListItem".freeze], + domainIncludes: ["http://schema.org/DataFeedItem".freeze, "http://schema.org/ListItem".freeze], label: "item".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemCondition, comment: "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Product".freeze], label: "itemCondition".freeze, - rangeIncludes: "schema:OfferItemCondition".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/OfferItemCondition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemListElement, comment: "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\\n\\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\\n\\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.".freeze, - domainIncludes: "schema:ItemList".freeze, + domainIncludes: "http://schema.org/ItemList".freeze, label: "itemListElement".freeze, - rangeIncludes: ["schema:ListItem".freeze, "schema:Text".freeze, "schema:Thing".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ListItem".freeze, "http://schema.org/Text".freeze, "http://schema.org/Thing".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemListOrder, comment: "Type of ordering (e.g. Ascending, Descending, Unordered).".freeze, - domainIncludes: "schema:ItemList".freeze, + domainIncludes: "http://schema.org/ItemList".freeze, label: "itemListOrder".freeze, - rangeIncludes: ["schema:ItemListOrderType".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ItemListOrderType".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemLocation, comment: "Current location of the item.".freeze, - domainIncludes: "schema:ArchiveComponent".freeze, + domainIncludes: "http://schema.org/ArchiveComponent".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "itemLocation".freeze, - rangeIncludes: ["schema:Place".freeze, "schema:PostalAddress".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/Place".freeze, "http://schema.org/PostalAddress".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemOffered, comment: "An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/inverseOf": "http://schema.org/offers".freeze, label: "itemOffered".freeze, - rangeIncludes: ["schema:AggregateOffer".freeze, "schema:CreativeWork".freeze, "schema:Event".freeze, "schema:MenuItem".freeze, "schema:Product".freeze, "schema:Service".freeze, "schema:Trip".freeze], - "schema:inverseOf": "schema:offers".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AggregateOffer".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze, "http://schema.org/MenuItem".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze, "http://schema.org/Trip".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemReviewed, comment: "The item that is being reviewed/rated.".freeze, - domainIncludes: ["schema:AggregateRating".freeze, "schema:Review".freeze], + domainIncludes: ["http://schema.org/AggregateRating".freeze, "http://schema.org/Review".freeze], label: "itemReviewed".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemShipped, comment: "Item(s) being shipped.".freeze, - domainIncludes: "schema:ParcelDelivery".freeze, + domainIncludes: "http://schema.org/ParcelDelivery".freeze, label: "itemShipped".freeze, - rangeIncludes: "schema:Product".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Trip".freeze, + domainIncludes: "http://schema.org/Trip".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "itinerary".freeze, - rangeIncludes: ["schema:ItemList".freeze, "schema:Place".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ItemList".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobBenefits, comment: "Description of benefits associated with the job.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, label: "jobBenefits".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobImmediateStart, comment: "An indicator as to whether a position is available for an immediate start.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, label: "jobImmediateStart".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobLocation, comment: "A (typically single) geographic location associated with the job position.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, label: "jobLocation".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobLocationType, comment: "A description of the job location (e.g TELECOMMUTE for telecommute jobs).".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1591".freeze, label: "jobLocationType".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1591".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, label: "jobStartDate".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobTitle, comment: "The job title of the person (for example, Financial Manager).".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2192".freeze, label: "jobTitle".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2192".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jurisdiction, comment: "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.".freeze, - domainIncludes: ["schema:GovernmentService".freeze, "schema:Legislation".freeze], + domainIncludes: ["http://schema.org/GovernmentService".freeze, "http://schema.org/Legislation".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "jurisdiction".freeze, - rangeIncludes: ["schema:AdministrativeArea".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AdministrativeArea".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "keywords".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :knownVehicleDamages, comment: "A textual description of known damages, both repaired and unrepaired.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :knows, comment: "The most generic bi-directional social/work relation.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "knows".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "knowsAbout".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:Thing".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/Thing".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](http://tools.ietf.org/html/bcp47).".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "knowsLanguage".freeze, - rangeIncludes: ["schema:Language".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/Language".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :labelDetails, comment: "Link to the drug's label details.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "labelDetails".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :landlord, comment: "A sub property of participant. The owner of the real estate property.".freeze, - domainIncludes: "schema:RentAction".freeze, + domainIncludes: "http://schema.org/RentAction".freeze, label: "landlord".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :language, comment: "A sub property of instrument. The language used on this action.".freeze, - domainIncludes: ["schema:CommunicateAction".freeze, "schema:WriteAction".freeze], + domainIncludes: ["http://schema.org/CommunicateAction".freeze, "http://schema.org/WriteAction".freeze], + "http://schema.org/supersededBy": "http://schema.org/inLanguage".freeze, label: "language".freeze, - rangeIncludes: "schema:Language".freeze, - "schema:supersededBy": "schema:inLanguage".freeze, - subPropertyOf: "schema:instrument".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Language".freeze, + subPropertyOf: "http://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lastReviewed, comment: "Date on which the content on this web page was last reviewed for accuracy and/or completeness.".freeze, - domainIncludes: "schema:WebPage".freeze, + domainIncludes: "http://schema.org/WebPage".freeze, label: "lastReviewed".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :latitude, comment: "The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).".freeze, - domainIncludes: ["schema:GeoCoordinates".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeoCoordinates".freeze, "http://schema.org/Place".freeze], label: "latitude".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :layoutImage, comment: "A schematic image showing the floorplan layout.".freeze, - domainIncludes: "schema:FloorPlan".freeze, + domainIncludes: "http://schema.org/FloorPlan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2690".freeze, label: "layoutImage".freeze, - rangeIncludes: ["schema:ImageObject".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2690".freeze, - subPropertyOf: "schema:image".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ImageObject".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/image".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :learningResourceType, comment: "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:LearningResource".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/LearningResource".freeze], label: "learningResourceType".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Accommodation".freeze, "schema:Offer".freeze, "schema:RealEstateListing".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/Offer".freeze, "http://schema.org/RealEstateListing".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "leaseLength".freeze, - rangeIncludes: ["schema:Duration".freeze, "schema:QuantitativeValue".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Duration".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legalName, comment: "The official name of the organization, e.g. the registered company name.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "legalName".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legalStatus, comment: "The drug or supplement's legal status, including any controlled substance schedules that apply.".freeze, - domainIncludes: ["schema:DietarySupplement".freeze, "schema:Drug".freeze, "schema:MedicalEntity".freeze], + domainIncludes: ["http://schema.org/DietarySupplement".freeze, "http://schema.org/Drug".freeze, "http://schema.org/MedicalEntity".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "legalStatus".freeze, - rangeIncludes: ["schema:DrugLegalStatus".freeze, "schema:MedicalEnumeration".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DrugLegalStatus".freeze, "http://schema.org/MedicalEnumeration".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#implements".freeze, exactMatch: "http://data.europa.eu/eli/ontology#implements".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationApplies".freeze, - rangeIncludes: "schema:Legislation".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 + rangeIncludes: "http://schema.org/Legislation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#changes".freeze, exactMatch: "http://data.europa.eu/eli/ontology#changes".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationChanges".freeze, - rangeIncludes: "schema:Legislation".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 + rangeIncludes: "http://schema.org/Legislation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#consolidates".freeze, exactMatch: "http://data.europa.eu/eli/ontology#consolidates".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationConsolidates".freeze, - rangeIncludes: "schema:Legislation".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 + rangeIncludes: "http://schema.org/Legislation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#date_document".freeze, exactMatch: "http://data.europa.eu/eli/ontology#date_document".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationDate".freeze, - rangeIncludes: "schema:Date".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 + rangeIncludes: "http://schema.org/Date".freeze, + subPropertyOf: "http://schema.org/dateCreated".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#version_date".freeze, exactMatch: "http://data.europa.eu/eli/ontology#version_date".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationDateVersion".freeze, - rangeIncludes: "schema:Date".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 + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://data.europa.eu/eli/ontology#id_local".freeze, label: "legislationIdentifier".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legislationJurisdiction, comment: "The jurisdiction from which the legislation originates.".freeze, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#jurisdiction".freeze, exactMatch: "http://data.europa.eu/eli/ontology#jurisdiction".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationJurisdiction".freeze, - rangeIncludes: ["schema:AdministrativeArea".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/AdministrativeArea".freeze, "http://schema.org/Text".freeze], + subPropertyOf: ["http://schema.org/jurisdiction".freeze, "http://schema.org/spatialCoverage".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legislationLegalForce, comment: "Whether the legislation is currently in force, not in force, or partially in force.".freeze, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#in_force".freeze, exactMatch: "http://data.europa.eu/eli/ontology#in_force".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationLegalForce".freeze, - rangeIncludes: "schema:LegalForceStatus".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 + rangeIncludes: "http://schema.org/LegalForceStatus".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:LegislationObject".freeze, + domainIncludes: "http://schema.org/LegislationObject".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#legal_value".freeze, exactMatch: "http://data.europa.eu/eli/ontology#legal_value".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationLegalValue".freeze, - rangeIncludes: "schema:LegalValueLevel".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 + rangeIncludes: "http://schema.org/LegalValueLevel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#passed_by".freeze, exactMatch: "http://data.europa.eu/eli/ontology#passed_by".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationPassedBy".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".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 + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/creator".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#responsibility_of".freeze, exactMatch: "http://data.europa.eu/eli/ontology#responsibility_of".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationResponsible".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".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 + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#transposes".freeze, exactMatch: "http://data.europa.eu/eli/ontology#transposes".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationTransposes".freeze, - rangeIncludes: "schema:Legislation".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 + rangeIncludes: "http://schema.org/Legislation".freeze, + subPropertyOf: "http://schema.org/legislationApplies".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Legislation".freeze, + domainIncludes: "http://schema.org/Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#type_document".freeze, exactMatch: "http://data.europa.eu/eli/ontology#type_document".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationType".freeze, - rangeIncludes: ["schema:CategoryCode".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/CategoryCode".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/genre".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :leiCode, comment: "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lender, comment: "A sub property of participant. The person that lends the object being borrowed.".freeze, - domainIncludes: "schema:BorrowAction".freeze, + domainIncludes: "http://schema.org/BorrowAction".freeze, label: "lender".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lesser, comment: "This ordering relation for qualitative values indicates that the subject is lesser than the object.".freeze, - domainIncludes: "schema:QualitativeValue".freeze, + domainIncludes: "http://schema.org/QualitativeValue".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "lesser".freeze, - rangeIncludes: "schema:QualitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lesserOrEqual, comment: "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.".freeze, - domainIncludes: "schema:QualitativeValue".freeze, + domainIncludes: "http://schema.org/QualitativeValue".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "lesserOrEqual".freeze, - rangeIncludes: "schema:QualitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :letterer, comment: "The individual who adds lettering, including speech balloons and sound effects, to artwork.".freeze, - domainIncludes: ["schema:ComicIssue".freeze, "schema:ComicStory".freeze, "schema:VisualArtwork".freeze], + domainIncludes: ["http://schema.org/ComicIssue".freeze, "http://schema.org/ComicStory".freeze, "http://schema.org/VisualArtwork".freeze], + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "letterer".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :license, comment: "A license document that applies to this content, typically indicated by URL.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "license".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :line, comment: "A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.".freeze, - domainIncludes: "schema:GeoShape".freeze, + domainIncludes: "http://schema.org/GeoShape".freeze, label: "line".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :linkRelationship, comment: "Indicates the relationship type of a Web link. ".freeze, - domainIncludes: "schema:LinkRole".freeze, + domainIncludes: "http://schema.org/LinkRole".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, label: "linkRelationship".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :liveBlogUpdate, comment: "An update to the LiveBlog.".freeze, - domainIncludes: "schema:LiveBlogPosting".freeze, + domainIncludes: "http://schema.org/LiveBlogPosting".freeze, label: "liveBlogUpdate".freeze, - rangeIncludes: "schema:BlogPosting".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BlogPosting".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loanMortgageMandateAmount, comment: "Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.".freeze, - domainIncludes: "schema:MortgageLoan".freeze, + domainIncludes: "http://schema.org/MortgageLoan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanMortgageMandateAmount".freeze, - rangeIncludes: "schema:MonetaryAmount".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 + rangeIncludes: "http://schema.org/MonetaryAmount".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loanPaymentAmount, comment: "The amount of money to pay in a single payment.".freeze, - domainIncludes: "schema:RepaymentSpecification".freeze, + domainIncludes: "http://schema.org/RepaymentSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanPaymentAmount".freeze, - rangeIncludes: "schema:MonetaryAmount".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 + rangeIncludes: "http://schema.org/MonetaryAmount".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:RepaymentSpecification".freeze, + domainIncludes: "http://schema.org/RepaymentSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanPaymentFrequency".freeze, - rangeIncludes: "schema:Number".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 + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:LoanOrCredit".freeze, + domainIncludes: "http://schema.org/LoanOrCredit".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanRepaymentForm".freeze, - rangeIncludes: "schema:RepaymentSpecification".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 + rangeIncludes: "http://schema.org/RepaymentSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loanTerm, comment: "The duration of the loan or credit agreement.".freeze, - domainIncludes: "schema:LoanOrCredit".freeze, + domainIncludes: "http://schema.org/LoanOrCredit".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + subPropertyOf: "http://schema.org/duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loanType, comment: "The type of a loan or credit.".freeze, - domainIncludes: "schema:LoanOrCredit".freeze, + domainIncludes: "http://schema.org/LoanOrCredit".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanType".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :location, comment: "The location of, for example, where an event is happening, where an organization is located, or where an action takes place.".freeze, - domainIncludes: ["schema:Action".freeze, "schema:Event".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/Action".freeze, "http://schema.org/Event".freeze, "http://schema.org/Organization".freeze], label: "location".freeze, - rangeIncludes: ["schema:Place".freeze, "schema:PostalAddress".freeze, "schema:Text".freeze, "schema:VirtualLocation".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Place".freeze, "http://schema.org/PostalAddress".freeze, "http://schema.org/Text".freeze, "http://schema.org/VirtualLocation".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationCreated, comment: "The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "locationCreated".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lodgingUnitDescription, comment: "A full description of the lodging unit.".freeze, - domainIncludes: "schema:LodgingReservation".freeze, + domainIncludes: "http://schema.org/LodgingReservation".freeze, label: "lodgingUnitDescription".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lodgingUnitType, comment: "Textual description of the unit type (including suite vs. room, size of bed, etc.).".freeze, - domainIncludes: "schema:LodgingReservation".freeze, + domainIncludes: "http://schema.org/LodgingReservation".freeze, label: "lodgingUnitType".freeze, - rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :logo, comment: "An associated logo.".freeze, - domainIncludes: ["schema:Brand".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Product".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/Brand".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Place".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/ImageObject".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/image".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :longitude, comment: "The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).".freeze, - domainIncludes: ["schema:GeoCoordinates".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/GeoCoordinates".freeze, "http://schema.org/Place".freeze], label: "longitude".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loser, comment: "A sub property of participant. The loser of the action.".freeze, - domainIncludes: "schema:WinAction".freeze, + domainIncludes: "http://schema.org/WinAction".freeze, label: "loser".freeze, - rangeIncludes: "schema:Person".freeze, - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lowPrice, comment: "The lowest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, - domainIncludes: "schema:AggregateOffer".freeze, + domainIncludes: "http://schema.org/AggregateOffer".freeze, label: "lowPrice".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lyricist, comment: "The person who wrote the words.".freeze, - domainIncludes: "schema:MusicComposition".freeze, + domainIncludes: "http://schema.org/MusicComposition".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "lyricist".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lyrics, comment: "The words in the song.".freeze, - domainIncludes: "schema:MusicComposition".freeze, + domainIncludes: "http://schema.org/MusicComposition".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "lyrics".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mainContentOfPage, comment: "Indicates if this web page element is the main subject of the page.".freeze, - domainIncludes: "schema:WebPage".freeze, + domainIncludes: "http://schema.org/WebPage".freeze, label: "mainContentOfPage".freeze, - rangeIncludes: "schema:WebPageElement".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mainEntity, comment: "Indicates the primary entity described in some page or other CreativeWork.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/inverseOf": "http://schema.org/mainEntityOfPage".freeze, label: "mainEntity".freeze, - rangeIncludes: "schema:Thing".freeze, - "schema:inverseOf": "schema:mainEntityOfPage".freeze, - subPropertyOf: "schema:about".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + subPropertyOf: "http://schema.org/about".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mainEntityOfPage, comment: "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.".freeze, - domainIncludes: "schema:Thing".freeze, + domainIncludes: "http://schema.org/Thing".freeze, + "http://schema.org/inverseOf": "http://schema.org/mainEntity".freeze, label: "mainEntityOfPage".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], - "schema:inverseOf": "schema:mainEntity".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\n ".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2311".freeze, label: "maintainer".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2311".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :makesOffer, comment: "A pointer to products or services offered by the organization or person.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/inverseOf": "http://schema.org/offeredBy".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :manufacturer, comment: "The manufacturer of the product.".freeze, - domainIncludes: ["schema:DietarySupplement".freeze, "schema:Drug".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/DietarySupplement".freeze, "http://schema.org/Drug".freeze, "http://schema.org/Product".freeze], label: "manufacturer".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :map, comment: "A URL to a map of the place.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, + "http://schema.org/supersededBy": "http://schema.org/hasMap".freeze, label: "map".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:supersededBy": "schema:hasMap".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mapType, comment: "Indicates the kind of Map, from the MapCategoryType Enumeration.".freeze, - domainIncludes: "schema:Map".freeze, + domainIncludes: "http://schema.org/Map".freeze, label: "mapType".freeze, - rangeIncludes: "schema:MapCategoryType".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MapCategoryType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maps, comment: "A URL to a map of the place.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, + "http://schema.org/supersededBy": "http://schema.org/hasMap".freeze, label: "maps".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:supersededBy": "schema:hasMap".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :marginOfError, comment: "A marginOfError for an [[Observation]].".freeze, - domainIncludes: "schema:Observation".freeze, + domainIncludes: "http://schema.org/Observation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "marginOfError".freeze, - rangeIncludes: "schema:DateTime".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :masthead, comment: "For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management.".freeze, - domainIncludes: "schema:NewsMediaOrganization".freeze, + domainIncludes: "http://schema.org/NewsMediaOrganization".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "masthead".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :material, comment: "A material that something is made from, e.g. leather, wool, cotton, paper.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Product".freeze], label: "material".freeze, - rangeIncludes: ["schema:Product".freeze, "schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Product".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :materialExtent, comment: "The quantity of the materials being described or an expression of the physical space they occupy.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, label: "materialExtent".freeze, - rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QuantitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mathExpression, comment: "A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard.".freeze, - domainIncludes: "schema:MathSolver".freeze, + domainIncludes: "http://schema.org/MathSolver".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, label: "mathExpression".freeze, - rangeIncludes: ["schema:SolveMathAction".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/SolveMathAction".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maxPrice, comment: "The highest price if the price is a range.".freeze, - domainIncludes: "schema:PriceSpecification".freeze, + domainIncludes: "http://schema.org/PriceSpecification".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "maxPrice".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maxValue, comment: "The upper value of some characteristic or property.".freeze, - domainIncludes: ["schema:MonetaryAmount".freeze, "schema:PropertyValue".freeze, "schema:PropertyValueSpecification".freeze, "schema:QuantitativeValue".freeze], + domainIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/PropertyValue".freeze, "http://schema.org/PropertyValueSpecification".freeze, "http://schema.org/QuantitativeValue".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "maxValue".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maximumAttendeeCapacity, comment: "The total number of individuals that may attend an event or venue.".freeze, - domainIncludes: ["schema:Event".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/Event".freeze, "http://schema.org/Place".freeze], label: "maximumAttendeeCapacity".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maximumEnrollment, comment: "The maximum number of students who may be enrolled in the program.".freeze, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "maximumEnrollment".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maximumIntake, comment: "Recommended intake of this supplement for a given population as defined by a specific recommending authority.".freeze, - domainIncludes: ["schema:DietarySupplement".freeze, "schema:Drug".freeze, "schema:DrugStrength".freeze, "schema:Substance".freeze], + domainIncludes: ["http://schema.org/DietarySupplement".freeze, "http://schema.org/Drug".freeze, "http://schema.org/DrugStrength".freeze, "http://schema.org/Substance".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "maximumIntake".freeze, - rangeIncludes: "schema:MaximumDoseSchedule".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MaximumDoseSchedule".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "maximumPhysicalAttendeeCapacity".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "maximumVirtualAttendeeCapacity".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mealService, comment: "Description of the meals that will be provided or available for purchase.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "mealService".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](https://www.gs1.org/voc/?show=properties).".freeze, - domainIncludes: "schema:Observation".freeze, + domainIncludes: "http://schema.org/Observation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "measuredProperty".freeze, - rangeIncludes: "schema:Property".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measuredValue, comment: "The measuredValue of an [[Observation]].".freeze, - domainIncludes: "schema:Observation".freeze, + domainIncludes: "http://schema.org/Observation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "measuredValue".freeze, - rangeIncludes: "schema:DataType".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DataType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementTechnique, comment: "A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]),\ncorresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.\n\nFor example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\".\n\nIf the [[variableMeasured]] is \"depression rating\", the [[measurementTechnique]] could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\".\n\nIf there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]].\n ".freeze, - domainIncludes: ["schema:DataCatalog".freeze, "schema:DataDownload".freeze, "schema:Dataset".freeze, "schema:PropertyValue".freeze], + domainIncludes: ["http://schema.org/DataCatalog".freeze, "http://schema.org/DataDownload".freeze, "http://schema.org/Dataset".freeze, "http://schema.org/PropertyValue".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1425".freeze, label: "measurementTechnique".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1425".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mechanismOfAction, comment: "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.".freeze, - domainIncludes: ["schema:DietarySupplement".freeze, "schema:Drug".freeze], + domainIncludes: ["http://schema.org/DietarySupplement".freeze, "http://schema.org/Drug".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "mechanismOfAction".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mediaAuthenticityCategory, comment: "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared).".freeze, - domainIncludes: "schema:MediaReview".freeze, + domainIncludes: "http://schema.org/MediaReview".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "mediaAuthenticityCategory".freeze, - rangeIncludes: "schema:MediaManipulationRatingEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MediaManipulationRatingEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :median, comment: "The median value.".freeze, - domainIncludes: "schema:QuantitativeValueDistribution".freeze, + domainIncludes: "http://schema.org/QuantitativeValueDistribution".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "median".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :medicalAudience, comment: "Medical audience for page.".freeze, - domainIncludes: "schema:MedicalWebPage".freeze, + domainIncludes: "http://schema.org/MedicalWebPage".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "medicalAudience".freeze, - rangeIncludes: ["schema:MedicalAudience".freeze, "schema:MedicalAudienceType".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MedicalAudience".freeze, "http://schema.org/MedicalAudienceType".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :medicalSpecialty, comment: "A medical specialty of the provider.".freeze, - domainIncludes: ["schema:Hospital".freeze, "schema:MedicalClinic".freeze, "schema:MedicalOrganization".freeze, "schema:Physician".freeze], + domainIncludes: ["http://schema.org/Hospital".freeze, "http://schema.org/MedicalClinic".freeze, "http://schema.org/MedicalOrganization".freeze, "http://schema.org/Physician".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "medicalSpecialty".freeze, - rangeIncludes: "schema:MedicalSpecialty".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalSpecialty".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :medicineSystem, comment: "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.".freeze, - domainIncludes: "schema:MedicalEntity".freeze, + domainIncludes: "http://schema.org/MedicalEntity".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "medicineSystem".freeze, - rangeIncludes: "schema:MedicineSystem".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicineSystem".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :meetsEmissionStandard, comment: "Indicates that the vehicle meets the respective emission standard.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Organization".freeze, "schema:ProgramMembership".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/ProgramMembership".freeze], + "http://schema.org/inverseOf": "http://schema.org/memberOf".freeze, label: "member".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:inverseOf": "schema:memberOf".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :memberOf, comment: "An Organization (or ProgramMembership) to which this Person or Organization belongs.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/inverseOf": "http://schema.org/member".freeze, label: "memberOf".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:ProgramMembership".freeze], - "schema:inverseOf": "schema:member".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/ProgramMembership".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :members, comment: "A member of this organization.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:ProgramMembership".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/ProgramMembership".freeze], + "http://schema.org/supersededBy": "http://schema.org/member".freeze, label: "members".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:supersededBy": "schema:member".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :membershipNumber, comment: "A unique identifier for the membership.".freeze, - domainIncludes: "schema:ProgramMembership".freeze, + domainIncludes: "http://schema.org/ProgramMembership".freeze, label: "membershipNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:ProgramMembership".freeze, + domainIncludes: "http://schema.org/ProgramMembership".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2085".freeze, label: "membershipPointsEarned".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2085".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :memoryRequirements, comment: "Minimum memory requirements.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "memoryRequirements".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mentions, comment: "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "mentions".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :menu, comment: "Either the actual menu as a structured representation, as text, or a URL of the menu.".freeze, - domainIncludes: "schema:FoodEstablishment".freeze, + domainIncludes: "http://schema.org/FoodEstablishment".freeze, + "http://schema.org/supersededBy": "http://schema.org/hasMenu".freeze, label: "menu".freeze, - rangeIncludes: ["schema:Menu".freeze, "schema:Text".freeze, "schema:URL".freeze], - "schema:supersededBy": "schema:hasMenu".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Menu".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:MenuItem".freeze, + domainIncludes: "http://schema.org/MenuItem".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1541".freeze, label: "menuAddOn".freeze, - rangeIncludes: ["schema:MenuItem".freeze, "schema:MenuSection".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1541".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MenuItem".freeze, "http://schema.org/MenuSection".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :merchant, comment: "'merchant' is an out-dated term for 'seller'.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, + "http://schema.org/supersededBy": "http://schema.org/seller".freeze, label: "merchant".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:supersededBy": "schema:seller".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :merchantReturnDays, comment: "The merchantReturnDays property indicates the number of days (from purchase) within which relevant merchant return policy is applicable.".freeze, - domainIncludes: "schema:MerchantReturnPolicy".freeze, + domainIncludes: "http://schema.org/MerchantReturnPolicy".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "merchantReturnDays".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :merchantReturnLink, comment: "Indicates a Web page or service by URL, for product return.".freeze, - domainIncludes: "schema:MerchantReturnPolicy".freeze, + domainIncludes: "http://schema.org/MerchantReturnPolicy".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "merchantReturnLink".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :messageAttachment, comment: "A CreativeWork attached to the message.".freeze, - domainIncludes: "schema:Message".freeze, + domainIncludes: "http://schema.org/Message".freeze, label: "messageAttachment".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mileageFromOdometer, comment: "The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\\n\\nTypical unit code(s): KMT for kilometers, SMI for statute miles".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minPrice, comment: "The lowest price if the price is a range.".freeze, - domainIncludes: "schema:PriceSpecification".freeze, + domainIncludes: "http://schema.org/PriceSpecification".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "minPrice".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minValue, comment: "The lower value of some characteristic or property.".freeze, - domainIncludes: ["schema:MonetaryAmount".freeze, "schema:PropertyValue".freeze, "schema:PropertyValueSpecification".freeze, "schema:QuantitativeValue".freeze], + domainIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/PropertyValue".freeze, "http://schema.org/PropertyValueSpecification".freeze, "http://schema.org/QuantitativeValue".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "minValue".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minimumPaymentDue, comment: "The minimum payment required at this time.".freeze, - domainIncludes: "schema:Invoice".freeze, + domainIncludes: "http://schema.org/Invoice".freeze, label: "minimumPaymentDue".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:PriceSpecification".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/PriceSpecification".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :missionCoveragePrioritiesPolicy, comment: "For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.".freeze, - domainIncludes: "schema:NewsMediaOrganization".freeze, + domainIncludes: "http://schema.org/NewsMediaOrganization".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "missionCoveragePrioritiesPolicy".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :model, comment: "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.".freeze, - domainIncludes: "schema:Product".freeze, + domainIncludes: "http://schema.org/Product".freeze, label: "model".freeze, - rangeIncludes: ["schema:ProductModel".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ProductModel".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :modelDate, comment: "The release date of a vehicle model (often used to differentiate versions of the same make and model).".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :modifiedTime, comment: "The date and time the reservation was modified.".freeze, - domainIncludes: "schema:Reservation".freeze, + domainIncludes: "http://schema.org/Reservation".freeze, label: "modifiedTime".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:PaymentCard".freeze, + domainIncludes: "http://schema.org/PaymentCard".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "monthlyMinimumRepaymentAmount".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".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 + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/Number".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mpn, comment: "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Product".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "mpn".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :multipleValues, comment: "Whether multiple values are allowed for the property. Default is false.".freeze, - domainIncludes: "schema:PropertyValueSpecification".freeze, + domainIncludes: "http://schema.org/PropertyValueSpecification".freeze, label: "multipleValues".freeze, - rangeIncludes: "schema:Boolean".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :muscleAction, comment: "The movement the muscle generates.".freeze, - domainIncludes: "schema:Muscle".freeze, + domainIncludes: "http://schema.org/Muscle".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "muscleAction".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicArrangement, comment: "An arrangement derived from the composition.".freeze, - domainIncludes: "schema:MusicComposition".freeze, + domainIncludes: "http://schema.org/MusicComposition".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "musicArrangement".freeze, - rangeIncludes: "schema:MusicComposition".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicComposition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicBy, comment: "The composer of the soundtrack.".freeze, - domainIncludes: ["schema:Clip".freeze, "schema:Episode".freeze, "schema:Movie".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze, "schema:VideoObject".freeze], + domainIncludes: ["http://schema.org/Clip".freeze, "http://schema.org/Episode".freeze, "http://schema.org/Movie".freeze, "http://schema.org/MovieSeries".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGame".freeze, "http://schema.org/VideoGameSeries".freeze, "http://schema.org/VideoObject".freeze], label: "musicBy".freeze, - rangeIncludes: ["schema:MusicGroup".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MusicGroup".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicCompositionForm, comment: "The type of composition (e.g. overture, sonata, symphony, etc.).".freeze, - domainIncludes: "schema:MusicComposition".freeze, + domainIncludes: "http://schema.org/MusicComposition".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "musicCompositionForm".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicGroupMember, comment: "A member of a music group—for example, John, Paul, George, or Ringo.".freeze, - domainIncludes: "schema:MusicGroup".freeze, + domainIncludes: "http://schema.org/MusicGroup".freeze, + "http://schema.org/supersededBy": "http://schema.org/member".freeze, label: "musicGroupMember".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:supersededBy": "schema:member".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicReleaseFormat, comment: "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).".freeze, - domainIncludes: "schema:MusicRelease".freeze, + domainIncludes: "http://schema.org/MusicRelease".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "musicReleaseFormat".freeze, - rangeIncludes: "schema:MusicReleaseFormatType".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicReleaseFormatType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicalKey, comment: "The key, mode, or scale this composition uses.".freeze, - domainIncludes: "schema:MusicComposition".freeze, + domainIncludes: "http://schema.org/MusicComposition".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "musicalKey".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :naics, comment: "The North American Industry Classification System (NAICS) code for a particular organization or business person.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "naics".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :name, comment: "The name of the item.".freeze, - domainIncludes: "schema:Thing".freeze, - equivalentProperty: "dc:title".freeze, + domainIncludes: "http://schema.org/Thing".freeze, + equivalentProperty: "http://purl.org/dc/terms/title".freeze, label: "name".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "rdfs:label".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :namedPosition, comment: "A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.".freeze, - domainIncludes: "schema:Role".freeze, + domainIncludes: "http://schema.org/Role".freeze, + "http://schema.org/supersededBy": "http://schema.org/roleName".freeze, label: "namedPosition".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:supersededBy": "schema:roleName".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nationality, comment: "Nationality of the person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "nationality".freeze, - rangeIncludes: "schema:Country".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Country".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :naturalProgression, comment: "The expected progression of the condition if it is not treated and allowed to progress naturally.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "naturalProgression".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nerve, comment: "The underlying innervation associated with the muscle.".freeze, - domainIncludes: "schema:Muscle".freeze, + domainIncludes: "http://schema.org/Muscle".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "nerve".freeze, - rangeIncludes: "schema:Nerve".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Nerve".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nerveMotor, comment: "The neurological pathway extension that involves muscle control.".freeze, - domainIncludes: "schema:Nerve".freeze, + domainIncludes: "http://schema.org/Nerve".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "nerveMotor".freeze, - rangeIncludes: "schema:Muscle".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Muscle".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :netWorth, comment: "The total financial value of the person as calculated by subtracting assets from liabilities.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "netWorth".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:PriceSpecification".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/PriceSpecification".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "newsUpdatesAndGuidelines".freeze, - rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/URL".freeze, "http://schema.org/WebContent".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nextItem, comment: "A link to the ListItem that follows the current one.".freeze, - domainIncludes: "schema:ListItem".freeze, + domainIncludes: "http://schema.org/ListItem".freeze, label: "nextItem".freeze, - rangeIncludes: "schema:ListItem".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ListItem".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:NewsMediaOrganization".freeze, + domainIncludes: "http://schema.org/NewsMediaOrganization".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "noBylinesPolicy".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nonEqual, comment: "This ordering relation for qualitative values indicates that the subject is not equal to the object.".freeze, - domainIncludes: "schema:QualitativeValue".freeze, + domainIncludes: "http://schema.org/QualitativeValue".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "nonEqual".freeze, - rangeIncludes: "schema:QualitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nonProprietaryName, comment: "The generic name of this drug or supplement.".freeze, - domainIncludes: ["schema:DietarySupplement".freeze, "schema:Drug".freeze], + domainIncludes: ["http://schema.org/DietarySupplement".freeze, "http://schema.org/Drug".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "nonProprietaryName".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + domainIncludes: "http://schema.org/Organization".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "nonprofitStatus".freeze, - rangeIncludes: "schema:NonprofitType".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/NonprofitType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :normalRange, comment: "Range of acceptable values for a typical patient, when applicable.".freeze, - domainIncludes: "schema:MedicalTest".freeze, + domainIncludes: "http://schema.org/MedicalTest".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "normalRange".freeze, - rangeIncludes: ["schema:MedicalEnumeration".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MedicalEnumeration".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nsn, comment: "Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. ".freeze, - domainIncludes: "schema:Product".freeze, + domainIncludes: "http://schema.org/Product".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2126".freeze, label: "nsn".freeze, - rangeIncludes: "schema:Text".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numAdults, comment: "The number of adults staying in the unit.".freeze, - domainIncludes: "schema:LodgingReservation".freeze, + domainIncludes: "http://schema.org/LodgingReservation".freeze, label: "numAdults".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:QuantitativeValue".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numChildren, comment: "The number of children staying in the unit.".freeze, - domainIncludes: "schema:LodgingReservation".freeze, + domainIncludes: "http://schema.org/LodgingReservation".freeze, label: "numChildren".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:QuantitativeValue".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:StatisticalPopulation".freeze, + domainIncludes: "http://schema.org/StatisticalPopulation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "numConstraints".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numTracks, comment: "The number of tracks in this album or playlist.".freeze, - domainIncludes: "schema:MusicPlaylist".freeze, + domainIncludes: "http://schema.org/MusicPlaylist".freeze, label: "numTracks".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:ApartmentComplex".freeze, "schema:FloorPlan".freeze], + domainIncludes: ["http://schema.org/ApartmentComplex".freeze, "http://schema.org/FloorPlan".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfAccommodationUnits".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfAirbags, comment: "The number or type of airbags in the vehicle.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:ApartmentComplex".freeze, "schema:FloorPlan".freeze], + domainIncludes: ["http://schema.org/ApartmentComplex".freeze, "http://schema.org/FloorPlan".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfAvailableAccommodationUnits".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfAxles, comment: "The number of axles.\\n\\nTypical unit code(s): C62".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfBathroomsTotal, comment: "The total integer number of bathrooms in a some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): \"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, - domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/FloorPlan".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfBathroomsTotal".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfBedrooms, comment: "The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]].".freeze, - domainIncludes: ["schema:Accommodation".freeze, "schema:ApartmentComplex".freeze, "schema:FloorPlan".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/ApartmentComplex".freeze, "http://schema.org/FloorPlan".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfBedrooms".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfBeds, comment: "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.".freeze, - domainIncludes: "schema:BedDetails".freeze, + domainIncludes: "http://schema.org/BedDetails".freeze, + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfCredits, comment: "The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.".freeze, - domainIncludes: ["schema:Course".freeze, "schema:EducationalOccupationalProgram".freeze], + domainIncludes: ["http://schema.org/Course".freeze, "http://schema.org/EducationalOccupationalProgram".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "numberOfCredits".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:StructuredValue".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/StructuredValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfDoors, comment: "The number of doors.\\n\\nTypical unit code(s): C62".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfEmployees, comment: "The number of employees in an organization e.g. business.".freeze, - domainIncludes: ["schema:BusinessAudience".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/BusinessAudience".freeze, "http://schema.org/Organization".freeze], label: "numberOfEmployees".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfEpisodes, comment: "The number of episodes in this season or series.".freeze, - domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGameSeries".freeze], label: "numberOfEpisodes".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfForwardGears, comment: "The total number of forward gears available for the transmission system of the vehicle.\\n\\nTypical unit code(s): C62".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field).".freeze, - domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/FloorPlan".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfFullBathrooms".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:ItemList".freeze, + domainIncludes: "http://schema.org/ItemList".freeze, label: "numberOfItems".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:RepaymentSpecification".freeze, + domainIncludes: "http://schema.org/RepaymentSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "numberOfLoanPayments".freeze, - rangeIncludes: "schema:Number".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 + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfPages, comment: "The number of pages in the book.".freeze, - domainIncludes: "schema:Book".freeze, + domainIncludes: "http://schema.org/Book".freeze, label: "numberOfPages".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). ".freeze, - domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/FloorPlan".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfPartialBathrooms".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfPlayers, comment: "Indicate how many people can play this game (minimum, maximum, or range).".freeze, - domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/Game".freeze, "http://schema.org/VideoGameSeries".freeze], label: "numberOfPlayers".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfPreviousOwners, comment: "The number of owners of the vehicle, including the current one.\\n\\nTypical unit code(s): C62".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfRooms, comment: "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical 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, - domainIncludes: ["schema:Accommodation".freeze, "schema:Apartment".freeze, "schema:FloorPlan".freeze, "schema:House".freeze, "schema:LodgingBusiness".freeze, "schema:SingleFamilyResidence".freeze, "schema:Suite".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/Apartment".freeze, "http://schema.org/FloorPlan".freeze, "http://schema.org/House".freeze, "http://schema.org/LodgingBusiness".freeze, "http://schema.org/SingleFamilyResidence".freeze, "http://schema.org/Suite".freeze], + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfSeasons, comment: "The number of seasons in this series.".freeze, - domainIncludes: ["schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGameSeries".freeze], label: "numberOfSeasons".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberedPosition, comment: "A number associated with a role in an organization, for example, the number on an athlete's jersey.".freeze, - domainIncludes: "schema:OrganizationRole".freeze, + domainIncludes: "http://schema.org/OrganizationRole".freeze, label: "numberedPosition".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nutrition, comment: "Nutrition information about the recipe or menu item.".freeze, - domainIncludes: ["schema:MenuItem".freeze, "schema:Recipe".freeze], + domainIncludes: ["http://schema.org/MenuItem".freeze, "http://schema.org/Recipe".freeze], label: "nutrition".freeze, - rangeIncludes: "schema:NutritionInformation".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/NutritionInformation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :object, comment: "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read *a book*.".freeze, - domainIncludes: "schema:Action".freeze, + domainIncludes: "http://schema.org/Action".freeze, label: "object".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :observationDate, comment: "The observationDate of an [[Observation]].".freeze, - domainIncludes: "schema:Observation".freeze, + domainIncludes: "http://schema.org/Observation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "observationDate".freeze, - rangeIncludes: "schema:DateTime".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :observedNode, comment: "The observedNode of an [[Observation]], often a [[StatisticalPopulation]].".freeze, - domainIncludes: "schema:Observation".freeze, + domainIncludes: "http://schema.org/Observation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "observedNode".freeze, - rangeIncludes: "schema:StatisticalPopulation".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/StatisticalPopulation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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).\nTypical unit code(s): C62 for person".freeze, - domainIncludes: ["schema:Apartment".freeze, "schema:HotelRoom".freeze, "schema:SingleFamilyResidence".freeze, "schema:Suite".freeze], + domainIncludes: ["http://schema.org/Apartment".freeze, "http://schema.org/HotelRoom".freeze, "http://schema.org/SingleFamilyResidence".freeze, "http://schema.org/Suite".freeze], + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Occupation".freeze, + domainIncludes: "http://schema.org/Occupation".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "occupationLocation".freeze, - rangeIncludes: "schema:AdministrativeArea".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :occupationalCategory, comment: "A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) 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.\\n\nNote: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.".freeze, - domainIncludes: ["schema:EducationalOccupationalProgram".freeze, "schema:JobPosting".freeze, "schema:Occupation".freeze, "schema:WorkBasedProgram".freeze], + domainIncludes: ["http://schema.org/EducationalOccupationalProgram".freeze, "http://schema.org/JobPosting".freeze, "http://schema.org/Occupation".freeze, "http://schema.org/WorkBasedProgram".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/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], label: "occupationalCategory".freeze, - rangeIncludes: ["schema:CategoryCode".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/CategoryCode".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Course".freeze, "schema:EducationalOccupationalProgram".freeze], + domainIncludes: ["http://schema.org/Course".freeze, "http://schema.org/EducationalOccupationalProgram".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "occupationalCredentialAwarded".freeze, - rangeIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/EducationalOccupationalCredential".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offerCount, comment: "The number of offers for the product.".freeze, - domainIncludes: "schema:AggregateOffer".freeze, + domainIncludes: "http://schema.org/AggregateOffer".freeze, label: "offerCount".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offeredBy, comment: "A pointer to the organization or person making the offer.".freeze, - domainIncludes: "schema:Offer".freeze, + domainIncludes: "http://schema.org/Offer".freeze, + "http://schema.org/inverseOf": "http://schema.org/makesOffer".freeze, label: "offeredBy".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:inverseOf": "schema:makesOffer".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\n ".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], + domainIncludes: ["http://schema.org/AggregateOffer".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/EducationalOccupationalProgram".freeze, "http://schema.org/Event".freeze, "http://schema.org/MenuItem".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze, "http://schema.org/Trip".freeze], + "http://schema.org/inverseOf": "http://schema.org/itemOffered".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "offers".freeze, - rangeIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], - "schema:inverseOf": "schema:itemOffered".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offersPrescriptionByMail, comment: "Whether prescriptions can be delivered by mail.".freeze, - domainIncludes: "schema:HealthPlanFormulary".freeze, + domainIncludes: "http://schema.org/HealthPlanFormulary".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "offersPrescriptionByMail".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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 '-'.\\n\\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \\n* Here is an example: <time itemprop=\"openingHours\" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>.\\n* If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>.".freeze, - domainIncludes: ["schema:CivicStructure".freeze, "schema:LocalBusiness".freeze], + domainIncludes: ["http://schema.org/CivicStructure".freeze, "http://schema.org/LocalBusiness".freeze], label: "openingHours".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :openingHoursSpecification, comment: "The opening hours of a certain place.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "openingHoursSpecification".freeze, - rangeIncludes: "schema:OpeningHoursSpecification".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/OpeningHoursSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :opens, comment: "The opening hour of the place or service on the given day(s) of the week.".freeze, - domainIncludes: "schema:OpeningHoursSpecification".freeze, + domainIncludes: "http://schema.org/OpeningHoursSpecification".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "opens".freeze, - rangeIncludes: "schema:Time".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Time".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :operatingSystem, comment: "Operating systems supported (Windows 7, OSX 10.6, Android 1.6).".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "operatingSystem".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :opponent, comment: "A sub property of participant. The opponent on this action.".freeze, - domainIncludes: "schema:ExerciseAction".freeze, + domainIncludes: "http://schema.org/ExerciseAction".freeze, label: "opponent".freeze, - rangeIncludes: "schema:Person".freeze, - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :option, comment: "A sub property of object. The options subject to this action.".freeze, - domainIncludes: "schema:ChooseAction".freeze, + domainIncludes: "http://schema.org/ChooseAction".freeze, + "http://schema.org/supersededBy": "http://schema.org/actionOption".freeze, label: "option".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:Thing".freeze], - "schema:supersededBy": "schema:actionOption".freeze, - subPropertyOf: "schema:object".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/Thing".freeze], + subPropertyOf: "http://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderDate, comment: "Date order was placed.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "orderDate".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderDelivery, comment: "The delivery of the parcel related to this order or order item.".freeze, - domainIncludes: ["schema:Order".freeze, "schema:OrderItem".freeze], + domainIncludes: ["http://schema.org/Order".freeze, "http://schema.org/OrderItem".freeze], label: "orderDelivery".freeze, - rangeIncludes: "schema:ParcelDelivery".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ParcelDelivery".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderItemNumber, comment: "The identifier of the order item.".freeze, - domainIncludes: "schema:OrderItem".freeze, + domainIncludes: "http://schema.org/OrderItem".freeze, label: "orderItemNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderItemStatus, comment: "The current status of the order item.".freeze, - domainIncludes: "schema:OrderItem".freeze, + domainIncludes: "http://schema.org/OrderItem".freeze, label: "orderItemStatus".freeze, - rangeIncludes: "schema:OrderStatus".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/OrderStatus".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderNumber, comment: "The identifier of the transaction.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "orderNumber".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "schema:identifier".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderQuantity, comment: "The number of the item ordered. If the property is not set, assume the quantity is one.".freeze, - domainIncludes: "schema:OrderItem".freeze, + domainIncludes: "http://schema.org/OrderItem".freeze, label: "orderQuantity".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderStatus, comment: "The current status of the order.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "orderStatus".freeze, - rangeIncludes: "schema:OrderStatus".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/OrderStatus".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderedItem, comment: "The item ordered.".freeze, - domainIncludes: ["schema:Order".freeze, "schema:OrderItem".freeze], + domainIncludes: ["http://schema.org/Order".freeze, "http://schema.org/OrderItem".freeze], label: "orderedItem".freeze, - rangeIncludes: ["schema:OrderItem".freeze, "schema:Product".freeze, "schema:Service".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/OrderItem".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organizer, comment: "An organizer of an Event.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, label: "organizer".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :originAddress, comment: "Shipper's address.".freeze, - domainIncludes: "schema:ParcelDelivery".freeze, + domainIncludes: "http://schema.org/ParcelDelivery".freeze, label: "originAddress".freeze, - rangeIncludes: "schema:PostalAddress".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PostalAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :originatesFrom, comment: "The vasculature the lymphatic structure originates, or afferents, from.".freeze, - domainIncludes: "schema:LymphaticVessel".freeze, + domainIncludes: "http://schema.org/LymphaticVessel".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "originatesFrom".freeze, - rangeIncludes: "schema:Vessel".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Vessel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :overdosage, comment: "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "overdosage".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ownedFrom, comment: "The date and time of obtaining the product.".freeze, - domainIncludes: "schema:OwnershipInfo".freeze, + domainIncludes: "http://schema.org/OwnershipInfo".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "ownedFrom".freeze, - rangeIncludes: "schema:DateTime".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ownedThrough, comment: "The date and time of giving up ownership on the product.".freeze, - domainIncludes: "schema:OwnershipInfo".freeze, + domainIncludes: "http://schema.org/OwnershipInfo".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "ownedThrough".freeze, - rangeIncludes: "schema:DateTime".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/NewsMediaOrganization".freeze, "http://schema.org/Organization".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "ownershipFundingInfo".freeze, - rangeIncludes: ["schema:AboutPage".freeze, "schema:CreativeWork".freeze, "schema:Text".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/AboutPage".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :owns, comment: "Products owned by the organization or person.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/OwnershipInfo".freeze, "http://schema.org/Product".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageEnd, comment: "The page on which the work ends; for example \"138\" or \"xvi\".".freeze, - domainIncludes: ["schema:Article".freeze, "schema:Chapter".freeze, "schema:PublicationIssue".freeze, "schema:PublicationVolume".freeze], - equivalentProperty: "bibo:pageEnd".freeze, + domainIncludes: ["http://schema.org/Article".freeze, "http://schema.org/Chapter".freeze, "http://schema.org/PublicationIssue".freeze, "http://schema.org/PublicationVolume".freeze], + equivalentProperty: "http://purl.org/ontology/bibo/pageEnd".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".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 + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageStart, comment: "The page on which the work starts; for example \"135\" or \"xiii\".".freeze, - domainIncludes: ["schema:Article".freeze, "schema:Chapter".freeze, "schema:PublicationIssue".freeze, "schema:PublicationVolume".freeze], - equivalentProperty: "bibo:pageStart".freeze, + domainIncludes: ["http://schema.org/Article".freeze, "http://schema.org/Chapter".freeze, "http://schema.org/PublicationIssue".freeze, "http://schema.org/PublicationVolume".freeze], + equivalentProperty: "http://purl.org/ontology/bibo/pageStart".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".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 + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Article".freeze, "schema:Chapter".freeze, "schema:PublicationIssue".freeze, "schema:PublicationVolume".freeze], - equivalentProperty: "bibo:pages".freeze, + domainIncludes: ["http://schema.org/Article".freeze, "http://schema.org/Chapter".freeze, "http://schema.org/PublicationIssue".freeze, "http://schema.org/PublicationVolume".freeze], + equivalentProperty: "http://purl.org/ontology/bibo/pages".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "pagination".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parent, comment: "A parent of this person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "parent".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parentItem, comment: "The parent of a question, answer or item in general.".freeze, - domainIncludes: "schema:Comment".freeze, + domainIncludes: "http://schema.org/Comment".freeze, label: "parentItem".freeze, - rangeIncludes: "schema:Comment".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Comment".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parentOrganization, comment: "The larger organization that this organization is a [[subOrganization]] of, if any.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, + "http://schema.org/inverseOf": "http://schema.org/subOrganization".freeze, label: "parentOrganization".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:inverseOf": "schema:subOrganization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parentService, comment: "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.".freeze, - domainIncludes: "schema:BroadcastService".freeze, + domainIncludes: "http://schema.org/BroadcastService".freeze, label: "parentService".freeze, - rangeIncludes: "schema:BroadcastService".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BroadcastService".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parents, comment: "A parents of the person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, + "http://schema.org/supersededBy": "http://schema.org/parent".freeze, label: "parents".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:supersededBy": "schema:parent".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfEpisode, comment: "The episode to which this clip belongs.".freeze, - domainIncludes: "schema:Clip".freeze, + domainIncludes: "http://schema.org/Clip".freeze, label: "partOfEpisode".freeze, - rangeIncludes: "schema:Episode".freeze, - subPropertyOf: "schema:isPartOf".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Episode".freeze, + subPropertyOf: "http://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfInvoice, comment: "The order is being paid as part of the referenced Invoice.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "partOfInvoice".freeze, - rangeIncludes: "schema:Invoice".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Invoice".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfOrder, comment: "The overall order the items in this delivery were included in.".freeze, - domainIncludes: "schema:ParcelDelivery".freeze, + domainIncludes: "http://schema.org/ParcelDelivery".freeze, label: "partOfOrder".freeze, - rangeIncludes: "schema:Order".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Order".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfSeason, comment: "The season to which this episode belongs.".freeze, - domainIncludes: ["schema:Clip".freeze, "schema:Episode".freeze], + domainIncludes: ["http://schema.org/Clip".freeze, "http://schema.org/Episode".freeze], label: "partOfSeason".freeze, - rangeIncludes: "schema:CreativeWorkSeason".freeze, - subPropertyOf: "schema:isPartOf".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWorkSeason".freeze, + subPropertyOf: "http://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfSeries, comment: "The series to which this episode or season belongs.".freeze, - domainIncludes: ["schema:Clip".freeze, "schema:CreativeWorkSeason".freeze, "schema:Episode".freeze], + domainIncludes: ["http://schema.org/Clip".freeze, "http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/Episode".freeze], label: "partOfSeries".freeze, - rangeIncludes: "schema:CreativeWorkSeries".freeze, - subPropertyOf: "schema:isPartOf".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWorkSeries".freeze, + subPropertyOf: "http://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfSystem, comment: "The anatomical or organ system that this structure is part of.".freeze, - domainIncludes: "schema:AnatomicalStructure".freeze, + domainIncludes: "http://schema.org/AnatomicalStructure".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "partOfSystem".freeze, - rangeIncludes: "schema:AnatomicalSystem".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AnatomicalSystem".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfTVSeries, comment: "The TV series to which this episode or season belongs.".freeze, - domainIncludes: ["schema:TVClip".freeze, "schema:TVEpisode".freeze, "schema:TVSeason".freeze], + domainIncludes: ["http://schema.org/TVClip".freeze, "http://schema.org/TVEpisode".freeze, "http://schema.org/TVSeason".freeze], + "http://schema.org/supersededBy": "http://schema.org/partOfSeries".freeze, label: "partOfTVSeries".freeze, - rangeIncludes: "schema:TVSeries".freeze, - "schema:supersededBy": "schema:partOfSeries".freeze, - subPropertyOf: "schema:isPartOf".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/TVSeries".freeze, + subPropertyOf: "http://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Trip".freeze, + domainIncludes: "http://schema.org/Trip".freeze, + "http://schema.org/inverseOf": "http://schema.org/subTrip".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "partOfTrip".freeze, - rangeIncludes: "schema:Trip".freeze, - "schema:inverseOf": "schema:subTrip".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Trip".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :participant, comment: "Other co-agents that participated in the action indirectly. e.g. John wrote a book with *Steve*.".freeze, - domainIncludes: "schema:Action".freeze, + domainIncludes: "http://schema.org/Action".freeze, label: "participant".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partySize, comment: "Number of people the reservation should accommodate.".freeze, - domainIncludes: ["schema:FoodEstablishmentReservation".freeze, "schema:TaxiReservation".freeze], + domainIncludes: ["http://schema.org/FoodEstablishmentReservation".freeze, "http://schema.org/TaxiReservation".freeze], label: "partySize".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:QuantitativeValue".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :passengerPriorityStatus, comment: "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).".freeze, - domainIncludes: "schema:FlightReservation".freeze, + domainIncludes: "http://schema.org/FlightReservation".freeze, label: "passengerPriorityStatus".freeze, - rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :passengerSequenceNumber, comment: "The passenger's sequence number as assigned by the airline.".freeze, - domainIncludes: "schema:FlightReservation".freeze, + domainIncludes: "http://schema.org/FlightReservation".freeze, label: "passengerSequenceNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pathophysiology, comment: "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.".freeze, - domainIncludes: ["schema:MedicalCondition".freeze, "schema:PhysicalActivity".freeze], + domainIncludes: ["http://schema.org/MedicalCondition".freeze, "http://schema.org/PhysicalActivity".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "pathophysiology".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pattern, comment: "A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Product".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "pattern".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :payload, comment: "The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]\\n* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentAccepted, comment: "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.".freeze, - domainIncludes: "schema:LocalBusiness".freeze, + domainIncludes: "http://schema.org/LocalBusiness".freeze, label: "paymentAccepted".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentDue, comment: "The date that payment is due.".freeze, - domainIncludes: ["schema:Invoice".freeze, "schema:Order".freeze], + domainIncludes: ["http://schema.org/Invoice".freeze, "http://schema.org/Order".freeze], + "http://schema.org/supersededBy": "http://schema.org/paymentDueDate".freeze, label: "paymentDue".freeze, - rangeIncludes: "schema:DateTime".freeze, - "schema:supersededBy": "schema:paymentDueDate".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentDueDate, comment: "The date that payment is due.".freeze, - domainIncludes: ["schema:Invoice".freeze, "schema:Order".freeze], + domainIncludes: ["http://schema.org/Invoice".freeze, "http://schema.org/Order".freeze], label: "paymentDueDate".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentMethod, comment: "The name of the credit card or other method of payment for the order.".freeze, - domainIncludes: ["schema:Invoice".freeze, "schema:Order".freeze], + domainIncludes: ["http://schema.org/Invoice".freeze, "http://schema.org/Order".freeze], label: "paymentMethod".freeze, - rangeIncludes: "schema:PaymentMethod".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PaymentMethod".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentMethodId, comment: "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).".freeze, - domainIncludes: ["schema:Invoice".freeze, "schema:Order".freeze], + domainIncludes: ["http://schema.org/Invoice".freeze, "http://schema.org/Order".freeze], label: "paymentMethodId".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentStatus, comment: "The status of payment; whether the invoice has been paid or not.".freeze, - domainIncludes: "schema:Invoice".freeze, + domainIncludes: "http://schema.org/Invoice".freeze, label: "paymentStatus".freeze, - rangeIncludes: ["schema:PaymentStatusType".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/PaymentStatusType".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentUrl, comment: "The URL for sending a payment.".freeze, - domainIncludes: "schema:Order".freeze, + domainIncludes: "http://schema.org/Order".freeze, label: "paymentUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :penciler, comment: "The individual who draws the primary narrative artwork.".freeze, - domainIncludes: ["schema:ComicIssue".freeze, "schema:ComicStory".freeze, "schema:VisualArtwork".freeze], + domainIncludes: ["http://schema.org/ComicIssue".freeze, "http://schema.org/ComicStory".freeze, "http://schema.org/VisualArtwork".freeze], + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "penciler".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :percentile10, comment: "The 10th percentile value.".freeze, - domainIncludes: "schema:QuantitativeValueDistribution".freeze, + domainIncludes: "http://schema.org/QuantitativeValueDistribution".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "percentile10".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :percentile25, comment: "The 25th percentile value.".freeze, - domainIncludes: "schema:QuantitativeValueDistribution".freeze, + domainIncludes: "http://schema.org/QuantitativeValueDistribution".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "percentile25".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :percentile75, comment: "The 75th percentile value.".freeze, - domainIncludes: "schema:QuantitativeValueDistribution".freeze, + domainIncludes: "http://schema.org/QuantitativeValueDistribution".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "percentile75".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :percentile90, comment: "The 90th percentile value.".freeze, - domainIncludes: "schema:QuantitativeValueDistribution".freeze, + domainIncludes: "http://schema.org/QuantitativeValueDistribution".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "percentile90".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](http://en.wikipedia.org/wiki/ISO_8601).".freeze, - domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze], + domainIncludes: ["http://schema.org/HowTo".freeze, "http://schema.org/HowToDirection".freeze], label: "performTime".freeze, - rangeIncludes: "schema:Duration".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :performer, comment: "A performer at the event—for example, a presenter, musician, musical group or actor.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, label: "performer".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :performerIn, comment: "Event that this person is a performer or participant in.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "performerIn".freeze, - rangeIncludes: "schema:Event".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :performers, comment: "The main performer or performers of the event—for example, a presenter, musician, or actor.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/supersededBy": "http://schema.org/performer".freeze, label: "performers".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:supersededBy": "schema:performer".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permissionType, comment: "The type of permission granted the person, organization, or audience.".freeze, - domainIncludes: "schema:DigitalDocumentPermission".freeze, + domainIncludes: "http://schema.org/DigitalDocumentPermission".freeze, label: "permissionType".freeze, - rangeIncludes: "schema:DigitalDocumentPermissionType".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DigitalDocumentPermissionType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permissions, comment: "Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "permissions".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permitAudience, comment: "The target audience for this permit.".freeze, - domainIncludes: "schema:Permit".freeze, + domainIncludes: "http://schema.org/Permit".freeze, label: "permitAudience".freeze, - rangeIncludes: "schema:Audience".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Audience".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permittedUsage, comment: "Indications regarding the permitted usage of the accommodation.".freeze, - domainIncludes: "schema:Accommodation".freeze, + domainIncludes: "http://schema.org/Accommodation".freeze, + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Accommodation".freeze, "schema:ApartmentComplex".freeze, "schema:FloorPlan".freeze, "schema:LodgingBusiness".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/ApartmentComplex".freeze, "http://schema.org/FloorPlan".freeze, "http://schema.org/LodgingBusiness".freeze], + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: ["http://schema.org/Boolean".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:PronounceableText".freeze, + domainIncludes: "http://schema.org/PronounceableText".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, label: "phoneticText".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :photo, comment: "A photograph of this place.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, label: "photo".freeze, - rangeIncludes: ["schema:ImageObject".freeze, "schema:Photograph".freeze], - subPropertyOf: "schema:image".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ImageObject".freeze, "http://schema.org/Photograph".freeze], + subPropertyOf: "http://schema.org/image".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :photos, comment: "Photographs of this place.".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, + "http://schema.org/supersededBy": "http://schema.org/photo".freeze, label: "photos".freeze, - rangeIncludes: ["schema:ImageObject".freeze, "schema:Photograph".freeze], - "schema:supersededBy": "schema:photo".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ImageObject".freeze, "http://schema.org/Photograph".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, label: "physicalRequirement".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :physiologicalBenefits, comment: "Specific physiologic benefits associated to the plan.".freeze, - domainIncludes: "schema:Diet".freeze, + domainIncludes: "http://schema.org/Diet".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "physiologicalBenefits".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pickupLocation, comment: "Where a taxi will pick up a passenger or a rental car can be picked up.".freeze, - domainIncludes: ["schema:RentalCarReservation".freeze, "schema:TaxiReservation".freeze], + domainIncludes: ["http://schema.org/RentalCarReservation".freeze, "http://schema.org/TaxiReservation".freeze], label: "pickupLocation".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pickupTime, comment: "When a taxi will pickup a passenger or a rental car can be picked up.".freeze, - domainIncludes: ["schema:RentalCarReservation".freeze, "schema:TaxiReservation".freeze], + domainIncludes: ["http://schema.org/RentalCarReservation".freeze, "http://schema.org/TaxiReservation".freeze], label: "pickupTime".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :playMode, comment: "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.".freeze, - domainIncludes: ["schema:VideoGame".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/VideoGame".freeze, "http://schema.org/VideoGameSeries".freeze], label: "playMode".freeze, - rangeIncludes: "schema:GamePlayMode".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/GamePlayMode".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :playerType, comment: "Player type required—for example, Flash or Silverlight.".freeze, - domainIncludes: "schema:MediaObject".freeze, + domainIncludes: "http://schema.org/MediaObject".freeze, label: "playerType".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :playersOnline, comment: "Number of players on the server.".freeze, - domainIncludes: "schema:GameServer".freeze, + domainIncludes: "http://schema.org/GameServer".freeze, label: "playersOnline".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :polygon, comment: "A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.".freeze, - domainIncludes: "schema:GeoShape".freeze, + domainIncludes: "http://schema.org/GeoShape".freeze, label: "polygon".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :populationType, comment: "Indicates the populationType common to all members of a [[StatisticalPopulation]].".freeze, - domainIncludes: "schema:StatisticalPopulation".freeze, + domainIncludes: "http://schema.org/StatisticalPopulation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "populationType".freeze, - rangeIncludes: "schema:Class".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Class".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :position, comment: "The position of an item in a series or sequence of items.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:ListItem".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/ListItem".freeze], label: "position".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :possibleComplication, comment: "A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "possibleComplication".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :possibleTreatment, comment: "A possible treatment to address this condition, sign or symptom.".freeze, - domainIncludes: ["schema:MedicalCondition".freeze, "schema:MedicalSignOrSymptom".freeze], + domainIncludes: ["http://schema.org/MedicalCondition".freeze, "http://schema.org/MedicalSignOrSymptom".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "possibleTreatment".freeze, - rangeIncludes: "schema:MedicalTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postOfficeBoxNumber, comment: "The post office box number for PO box addresses.".freeze, - domainIncludes: "schema:PostalAddress".freeze, + domainIncludes: "http://schema.org/PostalAddress".freeze, label: "postOfficeBoxNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postOp, comment: "A description of the postoperative procedures, care, and/or followups for this device.".freeze, - domainIncludes: "schema:MedicalDevice".freeze, + domainIncludes: "http://schema.org/MedicalDevice".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "postOp".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postalCode, comment: "The postal code. For example, 94043.".freeze, - domainIncludes: ["schema:DefinedRegion".freeze, "schema:GeoCoordinates".freeze, "schema:GeoShape".freeze, "schema:PostalAddress".freeze], + domainIncludes: ["http://schema.org/DefinedRegion".freeze, "http://schema.org/GeoCoordinates".freeze, "http://schema.org/GeoShape".freeze, "http://schema.org/PostalAddress".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCode".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postalCodeBegin, comment: "First postal code in a range (included).".freeze, - domainIncludes: "schema:PostalCodeRangeSpecification".freeze, + domainIncludes: "http://schema.org/PostalCodeRangeSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCodeBegin".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postalCodeEnd, comment: "Last postal code in the range (included). Needs to be after [[postalCodeBegin]].".freeze, - domainIncludes: "schema:PostalCodeRangeSpecification".freeze, + domainIncludes: "http://schema.org/PostalCodeRangeSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCodeEnd".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + domainIncludes: "http://schema.org/DefinedRegion".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCodePrefix".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postalCodeRange, comment: "A defined range of postal codes.".freeze, - domainIncludes: "schema:DefinedRegion".freeze, + domainIncludes: "http://schema.org/DefinedRegion".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCodeRange".freeze, - rangeIncludes: "schema:PostalCodeRangeSpecification".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PostalCodeRangeSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :potentialAction, comment: "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.".freeze, - domainIncludes: "schema:Thing".freeze, + domainIncludes: "http://schema.org/Thing".freeze, label: "potentialAction".freeze, - rangeIncludes: "schema:Action".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Action".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :preOp, comment: "A description of the workup, testing, and other preparations required before implanting this device.".freeze, - domainIncludes: "schema:MedicalDevice".freeze, + domainIncludes: "http://schema.org/MedicalDevice".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "preOp".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :predecessorOf, comment: "A pointer from a previous, often discontinued variant of the product to its newer variant.".freeze, - domainIncludes: "schema:ProductModel".freeze, + domainIncludes: "http://schema.org/ProductModel".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "predecessorOf".freeze, - rangeIncludes: "schema:ProductModel".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ProductModel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pregnancyCategory, comment: "Pregnancy category of this drug.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "pregnancyCategory".freeze, - rangeIncludes: "schema:DrugPregnancyCategory".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DrugPregnancyCategory".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pregnancyWarning, comment: "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "pregnancyWarning".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prepTime, comment: "The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).".freeze, - domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze], + domainIncludes: ["http://schema.org/HowTo".freeze, "http://schema.org/HowToDirection".freeze], label: "prepTime".freeze, - rangeIncludes: "schema:Duration".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :preparation, comment: "Typical preparation that a patient must undergo before having the procedure performed.".freeze, - domainIncludes: "schema:MedicalProcedure".freeze, + domainIncludes: "http://schema.org/MedicalProcedure".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "preparation".freeze, - rangeIncludes: ["schema:MedicalEntity".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MedicalEntity".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prescribingInfo, comment: "Link to prescribing information for the drug.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "prescribingInfo".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prescriptionStatus, comment: "Indicates the status of drug prescription eg. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "prescriptionStatus".freeze, - rangeIncludes: ["schema:DrugPrescriptionStatus".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DrugPrescriptionStatus".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :previousItem, comment: "A link to the ListItem that preceeds the current one.".freeze, - domainIncludes: "schema:ListItem".freeze, + domainIncludes: "http://schema.org/ListItem".freeze, label: "previousItem".freeze, - rangeIncludes: "schema:ListItem".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ListItem".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :previousStartDate, comment: "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, label: "previousStartDate".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :price, comment: "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\\n\\nUsage guidelines:\\n\\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n ".freeze, - domainIncludes: ["schema:Offer".freeze, "schema:PriceSpecification".freeze, "schema:TradeAction".freeze], + domainIncludes: ["http://schema.org/Offer".freeze, "http://schema.org/PriceSpecification".freeze, "http://schema.org/TradeAction".freeze], label: "price".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceComponent, comment: "This property links to all [[UnitPriceSpecification]] nodes that apply in parallel for the [[CompoundPriceSpecification]] node.".freeze, - domainIncludes: "schema:CompoundPriceSpecification".freeze, + domainIncludes: "http://schema.org/CompoundPriceSpecification".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "priceComponent".freeze, - rangeIncludes: "schema:UnitPriceSpecification".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/UnitPriceSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceComponentType, comment: "Identifies a price component (for example, a line item on an invoice), part of the total price for an offer.".freeze, - domainIncludes: "schema:UnitPriceSpecification".freeze, + domainIncludes: "http://schema.org/UnitPriceSpecification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "priceComponentType".freeze, - rangeIncludes: "schema:PriceComponentTypeEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PriceComponentTypeEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceCurrency, comment: "The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".".freeze, - domainIncludes: ["schema:Offer".freeze, "schema:PriceSpecification".freeze, "schema:Reservation".freeze, "schema:Ticket".freeze, "schema:TradeAction".freeze], + domainIncludes: ["http://schema.org/Offer".freeze, "http://schema.org/PriceSpecification".freeze, "http://schema.org/Reservation".freeze, "http://schema.org/Ticket".freeze, "http://schema.org/TradeAction".freeze], label: "priceCurrency".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceRange, comment: "The price range of the business, for example ```$$$```.".freeze, - domainIncludes: "schema:LocalBusiness".freeze, + domainIncludes: "http://schema.org/LocalBusiness".freeze, label: "priceRange".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceSpecification, comment: "One or more detailed price specifications, indicating the unit price and delivery or payment charges.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:TradeAction".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/TradeAction".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "priceSpecification".freeze, - rangeIncludes: "schema:PriceSpecification".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceType, comment: "Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration.".freeze, - domainIncludes: ["schema:CompoundPriceSpecification".freeze, "schema:UnitPriceSpecification".freeze], + domainIncludes: ["http://schema.org/CompoundPriceSpecification".freeze, "http://schema.org/UnitPriceSpecification".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "priceType".freeze, - rangeIncludes: ["schema:PriceTypeEnumeration".freeze, "schema:Text".freeze], - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/PriceTypeEnumeration".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceValidUntil, comment: "The date after which the price is no longer available.".freeze, - domainIncludes: "schema:Offer".freeze, + domainIncludes: "http://schema.org/Offer".freeze, label: "priceValidUntil".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :primaryImageOfPage, comment: "Indicates the main image on the page.".freeze, - domainIncludes: "schema:WebPage".freeze, + domainIncludes: "http://schema.org/WebPage".freeze, label: "primaryImageOfPage".freeze, - rangeIncludes: "schema:ImageObject".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ImageObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :primaryPrevention, comment: "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "primaryPrevention".freeze, - rangeIncludes: "schema:MedicalTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :printColumn, comment: "The number of the column in which the NewsArticle appears in the print edition.".freeze, - domainIncludes: "schema:NewsArticle".freeze, + domainIncludes: "http://schema.org/NewsArticle".freeze, label: "printColumn".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :printEdition, comment: "The edition of the print product in which the NewsArticle appears.".freeze, - domainIncludes: "schema:NewsArticle".freeze, + domainIncludes: "http://schema.org/NewsArticle".freeze, label: "printEdition".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :printPage, comment: "If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).".freeze, - domainIncludes: "schema:NewsArticle".freeze, + domainIncludes: "http://schema.org/NewsArticle".freeze, label: "printPage".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :printSection, comment: "If this NewsArticle appears in print, this field indicates the print section in which the article appeared.".freeze, - domainIncludes: "schema:NewsArticle".freeze, + domainIncludes: "http://schema.org/NewsArticle".freeze, label: "printSection".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :procedure, comment: "A description of the procedure involved in setting up, using, and/or installing the device.".freeze, - domainIncludes: "schema:MedicalDevice".freeze, + domainIncludes: "http://schema.org/MedicalDevice".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "procedure".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :procedureType, comment: "The type of procedure, for example Surgical, Noninvasive, or Percutaneous.".freeze, - domainIncludes: "schema:MedicalProcedure".freeze, + domainIncludes: "http://schema.org/MedicalProcedure".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "procedureType".freeze, - rangeIncludes: "schema:MedicalProcedureType".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalProcedureType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :processingTime, comment: "Estimated processing time for the service using this channel.".freeze, - domainIncludes: "schema:ServiceChannel".freeze, + domainIncludes: "http://schema.org/ServiceChannel".freeze, label: "processingTime".freeze, - rangeIncludes: "schema:Duration".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :processorRequirements, comment: "Processor architecture required to run the application (e.g. IA64).".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "processorRequirements".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :producer, comment: "The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.).".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "producer".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :produces, comment: "The tangible thing generated by the service, e.g. a passport, permit, etc.".freeze, - domainIncludes: "schema:Service".freeze, + domainIncludes: "http://schema.org/Service".freeze, + "http://schema.org/supersededBy": "http://schema.org/serviceOutput".freeze, label: "produces".freeze, - rangeIncludes: "schema:Thing".freeze, - "schema:supersededBy": "schema:serviceOutput".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productGroupID, comment: "Indicates a textual identifier for a ProductGroup.".freeze, - domainIncludes: "schema:ProductGroup".freeze, + domainIncludes: "http://schema.org/ProductGroup".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "productGroupID".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productID, comment: "The product identifier, such as ISBN. For example: ``` meta itemprop=\"productID\" content=\"isbn:123-456-789\" ```.".freeze, - domainIncludes: "schema:Product".freeze, + domainIncludes: "http://schema.org/Product".freeze, label: "productID".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "schema:identifier".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productReturnDays, comment: "The productReturnDays property indicates the number of days (from purchase) within which relevant product return policy is applicable.".freeze, - domainIncludes: "schema:ProductReturnPolicy".freeze, + domainIncludes: "http://schema.org/ProductReturnPolicy".freeze, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "http://schema.org/supersededBy": "http://schema.org/merchantReturnDays".freeze, label: "productReturnDays".freeze, - rangeIncludes: "schema:Integer".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 + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productReturnLink, comment: "Indicates a Web page or service by URL, for product return.".freeze, - domainIncludes: "schema:ProductReturnPolicy".freeze, + domainIncludes: "http://schema.org/ProductReturnPolicy".freeze, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "http://schema.org/supersededBy": "http://schema.org/merchantReturnLink".freeze, label: "productReturnLink".freeze, - rangeIncludes: "schema:URL".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 + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productSupported, comment: "The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\").".freeze, - domainIncludes: "schema:ContactPoint".freeze, + domainIncludes: "http://schema.org/ContactPoint".freeze, label: "productSupported".freeze, - rangeIncludes: ["schema:Product".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Product".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productionCompany, comment: "The production company or studio responsible for the item e.g. series, video game, episode etc.".freeze, - domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:Episode".freeze, "schema:MediaObject".freeze, "schema:Movie".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/Episode".freeze, "http://schema.org/MediaObject".freeze, "http://schema.org/Movie".freeze, "http://schema.org/MovieSeries".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGameSeries".freeze], label: "productionCompany".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productionDate, comment: "The date of production of the item, e.g. vehicle.".freeze, - domainIncludes: ["schema:Product".freeze, "schema:Vehicle".freeze], + domainIncludes: ["http://schema.org/Product".freeze, "http://schema.org/Vehicle".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :proficiencyLevel, comment: "Proficiency needed for this content; expected values: 'Beginner', 'Expert'.".freeze, - domainIncludes: "schema:TechArticle".freeze, + domainIncludes: "http://schema.org/TechArticle".freeze, label: "proficiencyLevel".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programMembershipUsed, comment: "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.".freeze, - domainIncludes: "schema:Reservation".freeze, + domainIncludes: "http://schema.org/Reservation".freeze, label: "programMembershipUsed".freeze, - rangeIncludes: "schema:ProgramMembership".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ProgramMembership".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programName, comment: "The program providing the membership.".freeze, - domainIncludes: "schema:ProgramMembership".freeze, + domainIncludes: "http://schema.org/ProgramMembership".freeze, label: "programName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programPrerequisites, comment: "Prerequisites for enrolling in the program.".freeze, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "programPrerequisites".freeze, - rangeIncludes: ["schema:AlignmentObject".freeze, "schema:Course".freeze, "schema:EducationalOccupationalCredential".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AlignmentObject".freeze, "http://schema.org/Course".freeze, "http://schema.org/EducationalOccupationalCredential".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programType, comment: "The type of educational or occupational program. For example, classroom, internship, alternance, etc..".freeze, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2460".freeze, label: "programType".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2460".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programmingLanguage, comment: "The computer programming language.".freeze, - domainIncludes: "schema:SoftwareSourceCode".freeze, + domainIncludes: "http://schema.org/SoftwareSourceCode".freeze, label: "programmingLanguage".freeze, - rangeIncludes: ["schema:ComputerLanguage".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ComputerLanguage".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programmingModel, comment: "Indicates whether API is managed or unmanaged.".freeze, - domainIncludes: "schema:APIReference".freeze, + domainIncludes: "http://schema.org/APIReference".freeze, label: "programmingModel".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :propertyID, comment: "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.".freeze, - domainIncludes: "schema:PropertyValue".freeze, + domainIncludes: "http://schema.org/PropertyValue".freeze, label: "propertyID".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :proprietaryName, comment: "Proprietary name given to the diet plan, typically by its originator or creator.".freeze, - domainIncludes: ["schema:DietarySupplement".freeze, "schema:Drug".freeze], + domainIncludes: ["http://schema.org/DietarySupplement".freeze, "http://schema.org/Drug".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "proprietaryName".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :proteinContent, comment: "The number of grams of protein.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "proteinContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:CreativeWork".freeze, "schema:EducationalOccupationalProgram".freeze, "schema:Invoice".freeze, "schema:ParcelDelivery".freeze, "schema:Reservation".freeze, "schema:Service".freeze, "schema:Trip".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/EducationalOccupationalProgram".freeze, "http://schema.org/Invoice".freeze, "http://schema.org/ParcelDelivery".freeze, "http://schema.org/Reservation".freeze, "http://schema.org/Service".freeze, "http://schema.org/Trip".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "provider".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :providerMobility, comment: "Indicates the mobility of a provided service (e.g. 'static', 'dynamic').".freeze, - domainIncludes: "schema:Service".freeze, + domainIncludes: "http://schema.org/Service".freeze, label: "providerMobility".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :providesBroadcastService, comment: "The BroadcastService offered on this channel.".freeze, - domainIncludes: "schema:BroadcastChannel".freeze, + domainIncludes: "http://schema.org/BroadcastChannel".freeze, + "http://schema.org/inverseOf": "http://schema.org/hasBroadcastChannel".freeze, label: "providesBroadcastService".freeze, - rangeIncludes: "schema:BroadcastService".freeze, - "schema:inverseOf": "schema:hasBroadcastChannel".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BroadcastService".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :providesService, comment: "The service provided by this channel.".freeze, - domainIncludes: "schema:ServiceChannel".freeze, + domainIncludes: "http://schema.org/ServiceChannel".freeze, label: "providesService".freeze, - rangeIncludes: "schema:Service".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Service".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicAccess, comment: "A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, label: "publicAccess".freeze, - rangeIncludes: "schema:Boolean".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicTransportClosuresInfo, comment: "Information about public transport closures.".freeze, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "publicTransportClosuresInfo".freeze, - rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/URL".freeze, "http://schema.org/WebContent".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publication, comment: "A publication event associated with the item.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "publication".freeze, - rangeIncludes: "schema:PublicationEvent".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PublicationEvent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationType, comment: "The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html).".freeze, - domainIncludes: "schema:MedicalScholarlyArticle".freeze, + domainIncludes: "http://schema.org/MedicalScholarlyArticle".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "publicationType".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishedBy, comment: "An agent associated with the publication event.".freeze, - domainIncludes: "schema:PublicationEvent".freeze, + domainIncludes: "http://schema.org/PublicationEvent".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "publishedBy".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishedOn, comment: "A broadcast service associated with the publication event.".freeze, - domainIncludes: "schema:PublicationEvent".freeze, + domainIncludes: "http://schema.org/PublicationEvent".freeze, label: "publishedOn".freeze, - rangeIncludes: "schema:BroadcastService".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BroadcastService".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publisher, comment: "The publisher of the creative work.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "publisher".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publisherImprint, comment: "The publishing division which published the comic.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "publisherImprint".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishingPrinciples, comment: "The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.\n".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], label: "publishingPrinciples".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :purchaseDate, comment: "The date the item e.g. vehicle was purchased by the current owner.".freeze, - domainIncludes: ["schema:Product".freeze, "schema:Vehicle".freeze], + domainIncludes: ["http://schema.org/Product".freeze, "http://schema.org/Vehicle".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :qualifications, comment: "Specific qualifications required for this role or Occupation.".freeze, - domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], + domainIncludes: ["http://schema.org/JobPosting".freeze, "http://schema.org/Occupation".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], label: "qualifications".freeze, - rangeIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/EducationalOccupationalCredential".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :quarantineGuidelines, comment: "Guidelines about quarantine rules, e.g. in the context of a pandemic.".freeze, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "quarantineGuidelines".freeze, - rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/URL".freeze, "http://schema.org/WebContent".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :query, comment: "A sub property of instrument. The query used on this action.".freeze, - domainIncludes: "schema:SearchAction".freeze, + domainIncludes: "http://schema.org/SearchAction".freeze, label: "query".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "schema:instrument".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :quest, comment: "The task that a player-controlled character, or group of characters may complete in order to gain a reward.".freeze, - domainIncludes: ["schema:Game".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/Game".freeze, "http://schema.org/VideoGameSeries".freeze], label: "quest".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :question, comment: "A sub property of object. A question.".freeze, - domainIncludes: "schema:AskAction".freeze, + domainIncludes: "http://schema.org/AskAction".freeze, label: "question".freeze, - rangeIncludes: "schema:Question".freeze, - subPropertyOf: "schema:object".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Question".freeze, + subPropertyOf: "http://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rangeIncludes, comment: "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.".freeze, - domainIncludes: "schema:Property".freeze, + domainIncludes: "http://schema.org/Property".freeze, + "http://schema.org/isPartOf": "http://meta.schema.org".freeze, label: "rangeIncludes".freeze, - rangeIncludes: "schema:Class".freeze, - "schema:isPartOf": "http://meta.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Class".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingCount, comment: "The count of total number of ratings.".freeze, - domainIncludes: "schema:AggregateRating".freeze, + domainIncludes: "http://schema.org/AggregateRating".freeze, label: "ratingCount".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Rating".freeze, + domainIncludes: "http://schema.org/Rating".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2300".freeze, label: "ratingExplanation".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2300".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingValue, comment: "The rating for the content.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, - domainIncludes: "schema:Rating".freeze, + domainIncludes: "http://schema.org/Rating".freeze, label: "ratingValue".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :readBy, comment: "A person who reads (performs) the audiobook.".freeze, - domainIncludes: "schema:Audiobook".freeze, + domainIncludes: "http://schema.org/Audiobook".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "readBy".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - subPropertyOf: "schema:actor".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + subPropertyOf: "http://schema.org/actor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :readonlyValue, comment: "Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a \"hidden\" input in an HTML form.".freeze, - domainIncludes: "schema:PropertyValueSpecification".freeze, + domainIncludes: "http://schema.org/PropertyValueSpecification".freeze, label: "readonlyValue".freeze, - rangeIncludes: "schema:Boolean".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :realEstateAgent, comment: "A sub property of participant. The real estate agent involved in the action.".freeze, - domainIncludes: "schema:RentAction".freeze, + domainIncludes: "http://schema.org/RentAction".freeze, label: "realEstateAgent".freeze, - rangeIncludes: "schema:RealEstateAgent".freeze, - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/RealEstateAgent".freeze, + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipe, comment: "A sub property of instrument. The recipe/instructions used to perform the action.".freeze, - domainIncludes: "schema:CookAction".freeze, + domainIncludes: "http://schema.org/CookAction".freeze, label: "recipe".freeze, - rangeIncludes: "schema:Recipe".freeze, - subPropertyOf: "schema:instrument".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Recipe".freeze, + subPropertyOf: "http://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeCategory, comment: "The category of the recipe—for example, appetizer, entree, etc.".freeze, - domainIncludes: "schema:Recipe".freeze, + domainIncludes: "http://schema.org/Recipe".freeze, label: "recipeCategory".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeCuisine, comment: "The cuisine of the recipe (for example, French or Ethiopian).".freeze, - domainIncludes: "schema:Recipe".freeze, + domainIncludes: "http://schema.org/Recipe".freeze, label: "recipeCuisine".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeIngredient, comment: "A single ingredient used in the recipe, e.g. sugar, flour or garlic.".freeze, - domainIncludes: "schema:Recipe".freeze, + domainIncludes: "http://schema.org/Recipe".freeze, label: "recipeIngredient".freeze, - rangeIncludes: "schema:Text".freeze, - subPropertyOf: "schema:supply".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/supply".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeInstructions, comment: "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.".freeze, - domainIncludes: "schema:Recipe".freeze, + domainIncludes: "http://schema.org/Recipe".freeze, label: "recipeInstructions".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:ItemList".freeze, "schema:Text".freeze], - subPropertyOf: "schema:step".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/ItemList".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/step".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeYield, comment: "The quantity produced by the recipe (for example, number of people served, number of servings, etc).".freeze, - domainIncludes: "schema:Recipe".freeze, + domainIncludes: "http://schema.org/Recipe".freeze, label: "recipeYield".freeze, - rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Text".freeze], - subPropertyOf: "schema:yield".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QuantitativeValue".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/yield".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipient, comment: "A sub property of participant. The participant who is at the receiving end of the action.".freeze, - domainIncludes: ["schema:AuthorizeAction".freeze, "schema:CommunicateAction".freeze, "schema:DonateAction".freeze, "schema:GiveAction".freeze, "schema:Message".freeze, "schema:PayAction".freeze, "schema:ReturnAction".freeze, "schema:SendAction".freeze, "schema:TipAction".freeze], + domainIncludes: ["http://schema.org/AuthorizeAction".freeze, "http://schema.org/CommunicateAction".freeze, "http://schema.org/DonateAction".freeze, "http://schema.org/GiveAction".freeze, "http://schema.org/Message".freeze, "http://schema.org/PayAction".freeze, "http://schema.org/ReturnAction".freeze, "http://schema.org/SendAction".freeze, "http://schema.org/TipAction".freeze], label: "recipient".freeze, - rangeIncludes: ["schema:Audience".freeze, "schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Audience".freeze, "http://schema.org/ContactPoint".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:EducationalOccupationalCredential".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalCredential".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "recognizedBy".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recognizingAuthority, comment: "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.".freeze, - domainIncludes: "schema:MedicalEntity".freeze, + domainIncludes: "http://schema.org/MedicalEntity".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "recognizingAuthority".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recommendationStrength, comment: "Strength of the guideline's recommendation (e.g. 'class I').".freeze, - domainIncludes: "schema:MedicalGuidelineRecommendation".freeze, + domainIncludes: "http://schema.org/MedicalGuidelineRecommendation".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "recommendationStrength".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recommendedIntake, comment: "Recommended intake of this supplement for a given population as defined by a specific recommending authority.".freeze, - domainIncludes: "schema:DietarySupplement".freeze, + domainIncludes: "http://schema.org/DietarySupplement".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "recommendedIntake".freeze, - rangeIncludes: "schema:RecommendedDoseSchedule".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/RecommendedDoseSchedule".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordLabel, comment: "The label that issued the release.".freeze, - domainIncludes: "schema:MusicRelease".freeze, - equivalentProperty: "mo:label".freeze, + domainIncludes: "http://schema.org/MusicRelease".freeze, + equivalentProperty: "http://purl.org/ontology/mo/label".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "recordLabel".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordedAs, comment: "An audio recording of the work.".freeze, - domainIncludes: "schema:MusicComposition".freeze, + domainIncludes: "http://schema.org/MusicComposition".freeze, + "http://schema.org/inverseOf": "http://schema.org/recordingOf".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".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 + rangeIncludes: "http://schema.org/MusicRecording".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordedAt, comment: "The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/inverseOf": "http://schema.org/recordedIn".freeze, label: "recordedAt".freeze, - rangeIncludes: "schema:Event".freeze, - "schema:inverseOf": "schema:recordedIn".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordedIn, comment: "The CreativeWork that captured all or part of this Event.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/inverseOf": "http://schema.org/recordedAt".freeze, label: "recordedIn".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - "schema:inverseOf": "schema:recordedAt".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordingOf, comment: "The composition this track is a recording of.".freeze, - domainIncludes: "schema:MusicRecording".freeze, + domainIncludes: "http://schema.org/MusicRecording".freeze, + "http://schema.org/inverseOf": "http://schema.org/recordedAs".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".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 + rangeIncludes: "http://schema.org/MusicComposition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:LoanOrCredit".freeze, + domainIncludes: "http://schema.org/LoanOrCredit".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "recourseLoan".freeze, - rangeIncludes: "schema:Boolean".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 + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:UnitPriceSpecification".freeze, + domainIncludes: "http://schema.org/UnitPriceSpecification".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :referencesOrder, comment: "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice.".freeze, - domainIncludes: "schema:Invoice".freeze, + domainIncludes: "http://schema.org/Invoice".freeze, label: "referencesOrder".freeze, - rangeIncludes: "schema:Order".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Order".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :refundType, comment: "A refundType, from an enumerated list.".freeze, - domainIncludes: "schema:MerchantReturnPolicy".freeze, + domainIncludes: "http://schema.org/MerchantReturnPolicy".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "refundType".freeze, - rangeIncludes: "schema:RefundTypeEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/RefundTypeEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :regionDrained, comment: "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.".freeze, - domainIncludes: ["schema:LymphaticVessel".freeze, "schema:Vein".freeze], + domainIncludes: ["http://schema.org/LymphaticVessel".freeze, "http://schema.org/Vein".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "regionDrained".freeze, - rangeIncludes: ["schema:AnatomicalStructure".freeze, "schema:AnatomicalSystem".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AnatomicalStructure".freeze, "http://schema.org/AnatomicalSystem".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :regionsAllowed, comment: "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166).".freeze, - domainIncludes: "schema:MediaObject".freeze, + domainIncludes: "http://schema.org/MediaObject".freeze, label: "regionsAllowed".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedAnatomy, comment: "Anatomical systems or structures that relate to the superficial anatomy.".freeze, - domainIncludes: "schema:SuperficialAnatomy".freeze, + domainIncludes: "http://schema.org/SuperficialAnatomy".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "relatedAnatomy".freeze, - rangeIncludes: ["schema:AnatomicalStructure".freeze, "schema:AnatomicalSystem".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AnatomicalStructure".freeze, "http://schema.org/AnatomicalSystem".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedCondition, comment: "A medical condition associated with this anatomy.".freeze, - domainIncludes: ["schema:AnatomicalStructure".freeze, "schema:AnatomicalSystem".freeze, "schema:SuperficialAnatomy".freeze], + domainIncludes: ["http://schema.org/AnatomicalStructure".freeze, "http://schema.org/AnatomicalSystem".freeze, "http://schema.org/SuperficialAnatomy".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "relatedCondition".freeze, - rangeIncludes: "schema:MedicalCondition".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalCondition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedDrug, comment: "Any other drug related to this one, for example commonly-prescribed alternatives.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "relatedDrug".freeze, - rangeIncludes: "schema:Drug".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Drug".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedLink, comment: "A link related to this web page, for example to other related web pages.".freeze, - domainIncludes: "schema:WebPage".freeze, + domainIncludes: "http://schema.org/WebPage".freeze, label: "relatedLink".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedStructure, comment: "Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.".freeze, - domainIncludes: "schema:AnatomicalSystem".freeze, + domainIncludes: "http://schema.org/AnatomicalSystem".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "relatedStructure".freeze, - rangeIncludes: "schema:AnatomicalStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedTherapy, comment: "A medical therapy related to this anatomy.".freeze, - domainIncludes: ["schema:AnatomicalStructure".freeze, "schema:AnatomicalSystem".freeze, "schema:SuperficialAnatomy".freeze], + domainIncludes: ["http://schema.org/AnatomicalStructure".freeze, "http://schema.org/AnatomicalSystem".freeze, "http://schema.org/SuperficialAnatomy".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "relatedTherapy".freeze, - rangeIncludes: "schema:MedicalTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedTo, comment: "The most generic familial relation.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "relatedTo".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Product".freeze, + domainIncludes: "http://schema.org/Product".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "releaseDate".freeze, - rangeIncludes: "schema:Date".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :releaseNotes, comment: "Description of what changed in this version.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "releaseNotes".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :releaseOf, comment: "The album this is a release of.".freeze, - domainIncludes: "schema:MusicRelease".freeze, + domainIncludes: "http://schema.org/MusicRelease".freeze, + "http://schema.org/inverseOf": "http://schema.org/albumRelease".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".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 + rangeIncludes: "http://schema.org/MusicAlbum".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :releasedEvent, comment: "The place and time the release was issued, expressed as a PublicationEvent.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "releasedEvent".freeze, - rangeIncludes: "schema:PublicationEvent".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PublicationEvent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relevantOccupation, comment: "The Occupation for the JobPosting.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "relevantOccupation".freeze, - rangeIncludes: "schema:Occupation".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Occupation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relevantSpecialty, comment: "If applicable, a medical specialty in which this entity is relevant.".freeze, - domainIncludes: "schema:MedicalEntity".freeze, + domainIncludes: "http://schema.org/MedicalEntity".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "relevantSpecialty".freeze, - rangeIncludes: "schema:MedicalSpecialty".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalSpecialty".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :remainingAttendeeCapacity, comment: "The number of attendee places for an event that remain unallocated.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, label: "remainingAttendeeCapacity".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :renegotiableLoan, comment: "Whether the terms for payment of interest can be renegotiated during the life of the loan.".freeze, - domainIncludes: "schema:LoanOrCredit".freeze, + domainIncludes: "http://schema.org/LoanOrCredit".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "renegotiableLoan".freeze, - rangeIncludes: "schema:Boolean".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 + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :repeatCount, comment: "Defines the number of times a recurring [[Event]] will take place".freeze, - domainIncludes: "schema:Schedule".freeze, + domainIncludes: "http://schema.org/Schedule".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "repeatCount".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :repeatFrequency, comment: "Defines the frequency at which [[Events]] will occur according to a schedule [[Schedule]]. The intervals between\n events should be defined as a [[Duration]] of time.".freeze, - domainIncludes: "schema:Schedule".freeze, + domainIncludes: "http://schema.org/Schedule".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "repeatFrequency".freeze, - rangeIncludes: ["schema:Duration".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/Duration".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/frequency".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :repetitions, comment: "Number of times one should repeat the activity.".freeze, - domainIncludes: "schema:ExercisePlan".freeze, + domainIncludes: "http://schema.org/ExercisePlan".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "repetitions".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :replacee, comment: "A sub property of object. The object that is being replaced.".freeze, - domainIncludes: "schema:ReplaceAction".freeze, + domainIncludes: "http://schema.org/ReplaceAction".freeze, label: "replacee".freeze, - rangeIncludes: "schema:Thing".freeze, - subPropertyOf: "schema:object".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + subPropertyOf: "http://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :replacer, comment: "A sub property of object. The object that replaces.".freeze, - domainIncludes: "schema:ReplaceAction".freeze, + domainIncludes: "http://schema.org/ReplaceAction".freeze, label: "replacer".freeze, - rangeIncludes: "schema:Thing".freeze, - subPropertyOf: "schema:object".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + subPropertyOf: "http://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :replyToUrl, comment: "The URL at which a reply may be posted to the specified UserComment.".freeze, - domainIncludes: "schema:UserComments".freeze, + domainIncludes: "http://schema.org/UserComments".freeze, label: "replyToUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reportNumber, comment: "The number or other unique designator assigned to a Report by the publishing organization.".freeze, - domainIncludes: "schema:Report".freeze, + domainIncludes: "http://schema.org/Report".freeze, label: "reportNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :representativeOfPage, comment: "Indicates whether this image is representative of the content of the page.".freeze, - domainIncludes: "schema:ImageObject".freeze, + domainIncludes: "http://schema.org/ImageObject".freeze, label: "representativeOfPage".freeze, - rangeIncludes: "schema:Boolean".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:LoanOrCredit".freeze, + domainIncludes: "http://schema.org/LoanOrCredit".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".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 + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/Thing".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requiredGender, comment: "Audiences defined by a person's gender.".freeze, - domainIncludes: "schema:PeopleAudience".freeze, + domainIncludes: "http://schema.org/PeopleAudience".freeze, label: "requiredGender".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requiredMaxAge, comment: "Audiences defined by a person's maximum age.".freeze, - domainIncludes: "schema:PeopleAudience".freeze, + domainIncludes: "http://schema.org/PeopleAudience".freeze, label: "requiredMaxAge".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requiredMinAge, comment: "Audiences defined by a person's minimum age.".freeze, - domainIncludes: "schema:PeopleAudience".freeze, + domainIncludes: "http://schema.org/PeopleAudience".freeze, label: "requiredMinAge".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requiredQuantity, comment: "The required quantity of the item(s).".freeze, - domainIncludes: "schema:HowToItem".freeze, + domainIncludes: "http://schema.org/HowToItem".freeze, label: "requiredQuantity".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requirements, comment: "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, + "http://schema.org/supersededBy": "http://schema.org/softwareRequirements".freeze, label: "requirements".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:supersededBy": "schema:softwareRequirements".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:MediaObject".freeze], + domainIncludes: ["http://schema.org/ActionAccessSpecification".freeze, "http://schema.org/MediaObject".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "requiresSubscription".freeze, - rangeIncludes: ["schema:Boolean".freeze, "schema:MediaSubscription".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Boolean".freeze, "http://schema.org/MediaSubscription".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reservationFor, comment: "The thing -- flight, event, restaurant,etc. being reserved.".freeze, - domainIncludes: "schema:Reservation".freeze, + domainIncludes: "http://schema.org/Reservation".freeze, label: "reservationFor".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reservationId, comment: "A unique identifier for the reservation.".freeze, - domainIncludes: "schema:Reservation".freeze, + domainIncludes: "http://schema.org/Reservation".freeze, label: "reservationId".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reservationStatus, comment: "The current status of the reservation.".freeze, - domainIncludes: "schema:Reservation".freeze, + domainIncludes: "http://schema.org/Reservation".freeze, label: "reservationStatus".freeze, - rangeIncludes: "schema:ReservationStatusType".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ReservationStatusType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reservedTicket, comment: "A ticket associated with the reservation.".freeze, - domainIncludes: "schema:Reservation".freeze, + domainIncludes: "http://schema.org/Reservation".freeze, label: "reservedTicket".freeze, - rangeIncludes: "schema:Ticket".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Ticket".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :responsibilities, comment: "Responsibilities associated with this role or Occupation.".freeze, - domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], + domainIncludes: ["http://schema.org/JobPosting".freeze, "http://schema.org/Occupation".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "responsibilities".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :restPeriods, comment: "How often one should break from the activity.".freeze, - domainIncludes: "schema:ExercisePlan".freeze, + domainIncludes: "http://schema.org/ExercisePlan".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "restPeriods".freeze, - rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QuantitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :result, comment: "The result produced in the action. e.g. John wrote *a book*.".freeze, - domainIncludes: "schema:Action".freeze, + domainIncludes: "http://schema.org/Action".freeze, label: "result".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resultComment, comment: "A sub property of result. The Comment created or sent as a result of this action.".freeze, - domainIncludes: ["schema:CommentAction".freeze, "schema:ReplyAction".freeze], + domainIncludes: ["http://schema.org/CommentAction".freeze, "http://schema.org/ReplyAction".freeze], label: "resultComment".freeze, - rangeIncludes: "schema:Comment".freeze, - subPropertyOf: "schema:result".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Comment".freeze, + subPropertyOf: "http://schema.org/result".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resultReview, comment: "A sub property of result. The review that resulted in the performing of the action.".freeze, - domainIncludes: "schema:ReviewAction".freeze, + domainIncludes: "http://schema.org/ReviewAction".freeze, label: "resultReview".freeze, - rangeIncludes: "schema:Review".freeze, - subPropertyOf: "schema:result".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Review".freeze, + subPropertyOf: "http://schema.org/result".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :returnFees, comment: "Indicates (via enumerated options) the return fees policy for a MerchantReturnPolicy".freeze, - domainIncludes: "schema:MerchantReturnPolicy".freeze, + domainIncludes: "http://schema.org/MerchantReturnPolicy".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "returnFees".freeze, - rangeIncludes: "schema:ReturnFeesEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ReturnFeesEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :returnPolicyCategory, comment: "A returnPolicyCategory expresses at most one of several enumerated kinds of return.".freeze, - domainIncludes: "schema:MerchantReturnPolicy".freeze, + domainIncludes: "http://schema.org/MerchantReturnPolicy".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "returnPolicyCategory".freeze, - rangeIncludes: "schema:MerchantReturnEnumeration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MerchantReturnEnumeration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :review, comment: "A review of the item.".freeze, - domainIncludes: ["schema:Brand".freeze, "schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Offer".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Product".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/Brand".freeze, "http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Place".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze], label: "review".freeze, - rangeIncludes: "schema:Review".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Review".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewAspect, comment: "This Review or Rating is relevant to this part or facet of the itemReviewed.".freeze, - domainIncludes: ["schema:Guide".freeze, "schema:Rating".freeze, "schema:Review".freeze], + domainIncludes: ["http://schema.org/Guide".freeze, "http://schema.org/Rating".freeze, "http://schema.org/Review".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, label: "reviewAspect".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewBody, comment: "The actual body of the review.".freeze, - domainIncludes: "schema:Review".freeze, + domainIncludes: "http://schema.org/Review".freeze, label: "reviewBody".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewCount, comment: "The count of total number of reviews.".freeze, - domainIncludes: "schema:AggregateRating".freeze, + domainIncludes: "http://schema.org/AggregateRating".freeze, label: "reviewCount".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewRating, comment: "The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work.".freeze, - domainIncludes: "schema:Review".freeze, + domainIncludes: "http://schema.org/Review".freeze, label: "reviewRating".freeze, - rangeIncludes: "schema:Rating".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewedBy, comment: "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.".freeze, - domainIncludes: "schema:WebPage".freeze, + domainIncludes: "http://schema.org/WebPage".freeze, label: "reviewedBy".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviews, comment: "Review of the item.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Offer".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Place".freeze, "http://schema.org/Product".freeze], + "http://schema.org/supersededBy": "http://schema.org/review".freeze, label: "reviews".freeze, - rangeIncludes: "schema:Review".freeze, - "schema:supersededBy": "schema:review".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Review".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :riskFactor, comment: "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "riskFactor".freeze, - rangeIncludes: "schema:MedicalRiskFactor".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalRiskFactor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :risks, comment: "Specific physiologic risks associated to the diet plan.".freeze, - domainIncludes: "schema:Diet".freeze, + domainIncludes: "http://schema.org/Diet".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "risks".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :roleName, comment: "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.".freeze, - domainIncludes: "schema:Role".freeze, + domainIncludes: "http://schema.org/Role".freeze, label: "roleName".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :roofLoad, comment: "The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, - domainIncludes: ["schema:BusOrCoach".freeze, "schema:Car".freeze], + domainIncludes: ["http://schema.org/BusOrCoach".freeze, "http://schema.org/Car".freeze], + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rsvpResponse, comment: "The response (yes, no, maybe) to the RSVP.".freeze, - domainIncludes: "schema:RsvpAction".freeze, + domainIncludes: "http://schema.org/RsvpAction".freeze, label: "rsvpResponse".freeze, - rangeIncludes: "schema:RsvpResponseType".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/RsvpResponseType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :runsTo, comment: "The vasculature the lymphatic structure runs, or efferents, to.".freeze, - domainIncludes: "schema:LymphaticVessel".freeze, + domainIncludes: "http://schema.org/LymphaticVessel".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "runsTo".freeze, - rangeIncludes: "schema:Vessel".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Vessel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :runtime, comment: "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).".freeze, - domainIncludes: "schema:SoftwareSourceCode".freeze, + domainIncludes: "http://schema.org/SoftwareSourceCode".freeze, + "http://schema.org/supersededBy": "http://schema.org/runtimePlatform".freeze, label: "runtime".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:supersededBy": "schema:runtimePlatform".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :runtimePlatform, comment: "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).".freeze, - domainIncludes: "schema:SoftwareSourceCode".freeze, + domainIncludes: "http://schema.org/SoftwareSourceCode".freeze, label: "runtimePlatform".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rxcui, comment: "The RxCUI drug identifier from RXNORM.".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "rxcui".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:DietarySupplement".freeze, + domainIncludes: "http://schema.org/DietarySupplement".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "safetyConsideration".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :salaryCurrency, comment: "The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) ) used for the main salary information in this job posting or for this employee.".freeze, - domainIncludes: ["schema:EmployeeRole".freeze, "schema:JobPosting".freeze], + domainIncludes: ["http://schema.org/EmployeeRole".freeze, "http://schema.org/JobPosting".freeze], label: "salaryCurrency".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :salaryUponCompletion, comment: "The expected salary upon completing the training.".freeze, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "salaryUponCompletion".freeze, - rangeIncludes: "schema:MonetaryAmountDistribution".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MonetaryAmountDistribution".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Thing".freeze, + domainIncludes: "http://schema.org/Thing".freeze, label: "sameAs".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sampleType, comment: "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.".freeze, - domainIncludes: "schema:SoftwareSourceCode".freeze, + domainIncludes: "http://schema.org/SoftwareSourceCode".freeze, + "http://schema.org/supersededBy": "http://schema.org/codeSampleType".freeze, label: "sampleType".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:supersededBy": "schema:codeSampleType".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :saturatedFatContent, comment: "The number of grams of saturated fat.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "saturatedFatContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Schedule".freeze, + domainIncludes: "http://schema.org/Schedule".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "scheduleTimezone".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :scheduledPaymentDate, comment: "The date the invoice is scheduled to be paid.".freeze, - domainIncludes: "schema:Invoice".freeze, + domainIncludes: "http://schema.org/Invoice".freeze, label: "scheduledPaymentDate".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :scheduledTime, comment: "The time the object is scheduled to.".freeze, - domainIncludes: "schema:PlanAction".freeze, + domainIncludes: "http://schema.org/PlanAction".freeze, label: "scheduledTime".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :schemaVersion, comment: "Indicates (by URL or string) a particular version of a schema used in some CreativeWork. For example, a document could declare a schemaVersion using an URL such as http://schema.org/version/2.0/ if precise indication of schema version was required by some application. ".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "schemaVersion".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :schoolClosuresInfo, comment: "Information about school closures.".freeze, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "schoolClosuresInfo".freeze, - rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/URL".freeze, "http://schema.org/WebContent".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :screenCount, comment: "The number of screens in the movie theater.".freeze, - domainIncludes: "schema:MovieTheater".freeze, + domainIncludes: "http://schema.org/MovieTheater".freeze, label: "screenCount".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :screenshot, comment: "A link to a screenshot image of the app.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "screenshot".freeze, - rangeIncludes: ["schema:ImageObject".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ImageObject".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sdDatePublished, comment: "Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, label: "sdDatePublished".freeze, - rangeIncludes: "schema:Date".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sdLicense, comment: "A license document that applies to this structured data, typically indicated by URL.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, label: "sdLicense".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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\n[[sdPublisher]] property helps make such practices more explicit.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, label: "sdPublisher".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :season, comment: "A season in a media series.".freeze, - domainIncludes: ["schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGameSeries".freeze], + "http://schema.org/supersededBy": "http://schema.org/containsSeason".freeze, label: "season".freeze, - rangeIncludes: ["schema:CreativeWorkSeason".freeze, "schema:URL".freeze], - "schema:supersededBy": "schema:containsSeason".freeze, - subPropertyOf: "schema:hasPart".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/hasPart".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seasonNumber, comment: "Position of the season within an ordered group of seasons.".freeze, - domainIncludes: "schema:CreativeWorkSeason".freeze, + domainIncludes: "http://schema.org/CreativeWorkSeason".freeze, label: "seasonNumber".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze], - subPropertyOf: "schema:position".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seasons, comment: "A season in a media series.".freeze, - domainIncludes: ["schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGameSeries".freeze], + "http://schema.org/supersededBy": "http://schema.org/season".freeze, label: "seasons".freeze, - rangeIncludes: "schema:CreativeWorkSeason".freeze, - "schema:supersededBy": "schema:season".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWorkSeason".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatNumber, comment: "The location of the reserved seat (e.g., 27).".freeze, - domainIncludes: "schema:Seat".freeze, + domainIncludes: "http://schema.org/Seat".freeze, label: "seatNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatRow, comment: "The row location of the reserved seat (e.g., B).".freeze, - domainIncludes: "schema:Seat".freeze, + domainIncludes: "http://schema.org/Seat".freeze, label: "seatRow".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatSection, comment: "The section location of the reserved seat (e.g. Orchestra).".freeze, - domainIncludes: "schema:Seat".freeze, + domainIncludes: "http://schema.org/Seat".freeze, label: "seatSection".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatingCapacity, 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.\\n\\nTypical unit code(s): C62 for persons ".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatingType, comment: "The type/class of the seat.".freeze, - domainIncludes: "schema:Seat".freeze, + domainIncludes: "http://schema.org/Seat".freeze, label: "seatingType".freeze, - rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :secondaryPrevention, comment: "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "secondaryPrevention".freeze, - rangeIncludes: "schema:MedicalTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :securityClearanceRequirement, comment: "A description of any security clearance requirements of the job.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, label: "securityClearanceRequirement".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :securityScreening, comment: "The type of security screening the passenger is subject to.".freeze, - domainIncludes: "schema:FlightReservation".freeze, + domainIncludes: "http://schema.org/FlightReservation".freeze, label: "securityScreening".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seeks, comment: "A pointer to products or services sought by the organization or person (demand).".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "seeks".freeze, - rangeIncludes: "schema:Demand".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Demand".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seller, comment: "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider.".freeze, - domainIncludes: ["schema:BuyAction".freeze, "schema:Demand".freeze, "schema:Flight".freeze, "schema:Offer".freeze, "schema:Order".freeze], + domainIncludes: ["http://schema.org/BuyAction".freeze, "http://schema.org/Demand".freeze, "http://schema.org/Flight".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Order".freeze], label: "seller".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sender, comment: "A sub property of participant. The participant who is at the sending end of the action.".freeze, - domainIncludes: ["schema:Message".freeze, "schema:ReceiveAction".freeze], + domainIncludes: ["http://schema.org/Message".freeze, "http://schema.org/ReceiveAction".freeze], label: "sender".freeze, - rangeIncludes: ["schema:Audience".freeze, "schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Audience".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, label: "sensoryRequirement".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sensoryUnit, comment: "The neurological pathway extension that inputs and sends information to the brain or spinal cord.".freeze, - domainIncludes: "schema:Nerve".freeze, + domainIncludes: "http://schema.org/Nerve".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "sensoryUnit".freeze, - rangeIncludes: ["schema:AnatomicalStructure".freeze, "schema:SuperficialAnatomy".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AnatomicalStructure".freeze, "http://schema.org/SuperficialAnatomy".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Demand".freeze, "schema:IndividualProduct".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/IndividualProduct".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seriousAdverseOutcome, comment: "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.".freeze, - domainIncludes: ["schema:MedicalDevice".freeze, "schema:MedicalTherapy".freeze], + domainIncludes: ["http://schema.org/MedicalDevice".freeze, "http://schema.org/MedicalTherapy".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "seriousAdverseOutcome".freeze, - rangeIncludes: "schema:MedicalEntity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serverStatus, comment: "Status of a game server.".freeze, - domainIncludes: "schema:GameServer".freeze, + domainIncludes: "http://schema.org/GameServer".freeze, label: "serverStatus".freeze, - rangeIncludes: "schema:GameServerStatus".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/GameServerStatus".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servesCuisine, comment: "The cuisine of the restaurant.".freeze, - domainIncludes: "schema:FoodEstablishment".freeze, + domainIncludes: "http://schema.org/FoodEstablishment".freeze, label: "servesCuisine".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceArea, comment: "The geographic area where the service is provided.".freeze, - domainIncludes: ["schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Service".freeze], + "http://schema.org/supersededBy": "http://schema.org/areaServed".freeze, label: "serviceArea".freeze, - rangeIncludes: ["schema:AdministrativeArea".freeze, "schema:GeoShape".freeze, "schema:Place".freeze], - "schema:supersededBy": "schema:areaServed".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/AdministrativeArea".freeze, "http://schema.org/GeoShape".freeze, "http://schema.org/Place".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceAudience, comment: "The audience eligible for this service.".freeze, - domainIncludes: "schema:Service".freeze, + domainIncludes: "http://schema.org/Service".freeze, + "http://schema.org/supersededBy": "http://schema.org/audience".freeze, label: "serviceAudience".freeze, - rangeIncludes: "schema:Audience".freeze, - "schema:supersededBy": "schema:audience".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Audience".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceLocation, comment: "The location (e.g. civic structure, local business, etc.) where a person can go to access the service.".freeze, - domainIncludes: "schema:ServiceChannel".freeze, + domainIncludes: "http://schema.org/ServiceChannel".freeze, label: "serviceLocation".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceOperator, comment: "The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.".freeze, - domainIncludes: "schema:GovernmentService".freeze, + domainIncludes: "http://schema.org/GovernmentService".freeze, label: "serviceOperator".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceOutput, comment: "The tangible thing generated by the service, e.g. a passport, permit, etc.".freeze, - domainIncludes: "schema:Service".freeze, + domainIncludes: "http://schema.org/Service".freeze, label: "serviceOutput".freeze, - rangeIncludes: "schema:Thing".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servicePhone, comment: "The phone number to use to access the service.".freeze, - domainIncludes: "schema:ServiceChannel".freeze, + domainIncludes: "http://schema.org/ServiceChannel".freeze, label: "servicePhone".freeze, - rangeIncludes: "schema:ContactPoint".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ContactPoint".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servicePostalAddress, comment: "The address for accessing the service by mail.".freeze, - domainIncludes: "schema:ServiceChannel".freeze, + domainIncludes: "http://schema.org/ServiceChannel".freeze, label: "servicePostalAddress".freeze, - rangeIncludes: "schema:PostalAddress".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/PostalAddress".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceSmsNumber, comment: "The number to access the service by text message.".freeze, - domainIncludes: "schema:ServiceChannel".freeze, + domainIncludes: "http://schema.org/ServiceChannel".freeze, label: "serviceSmsNumber".freeze, - rangeIncludes: "schema:ContactPoint".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ContactPoint".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceType, comment: "The type of service being offered, e.g. veterans' benefits, emergency relief, etc.".freeze, - domainIncludes: "schema:Service".freeze, + domainIncludes: "http://schema.org/Service".freeze, label: "serviceType".freeze, - rangeIncludes: ["schema:GovernmentBenefitsType".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/GovernmentBenefitsType".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceUrl, comment: "The website to access the service.".freeze, - domainIncludes: "schema:ServiceChannel".freeze, + domainIncludes: "http://schema.org/ServiceChannel".freeze, label: "serviceUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servingSize, comment: "The serving size, in terms of the number of volume or mass.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "servingSize".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sharedContent, comment: "A CreativeWork such as an image, video, or audio clip shared as part of this posting.".freeze, - domainIncludes: "schema:SocialMediaPosting".freeze, + domainIncludes: "http://schema.org/SocialMediaPosting".freeze, label: "sharedContent".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shippingDestination, 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], + domainIncludes: ["http://schema.org/DeliveryTimeSettings".freeze, "http://schema.org/OfferShippingDetails".freeze, "http://schema.org/ShippingRateSettings".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingDestination".freeze, - rangeIncludes: "schema:DefinedRegion".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DefinedRegion".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shippingDetails, comment: "Indicates information about the shipping policies and options associated with an [[Offer]].".freeze, - domainIncludes: "schema:Offer".freeze, + domainIncludes: "http://schema.org/Offer".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingDetails".freeze, - rangeIncludes: "schema:OfferShippingDetails".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/OfferShippingDetails".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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], + domainIncludes: ["http://schema.org/OfferShippingDetails".freeze, "http://schema.org/ShippingRateSettings".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingLabel".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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], + domainIncludes: ["http://schema.org/OfferShippingDetails".freeze, "http://schema.org/ShippingRateSettings".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingRate".freeze, - rangeIncludes: "schema:MonetaryAmount".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MonetaryAmount".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shippingSettingsLink, comment: "Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details.".freeze, - domainIncludes: "schema:OfferShippingDetails".freeze, + domainIncludes: "http://schema.org/OfferShippingDetails".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingSettingsLink".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sibling, comment: "A sibling of the person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "sibling".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :siblings, comment: "A sibling of the person.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, + "http://schema.org/supersededBy": "http://schema.org/sibling".freeze, label: "siblings".freeze, - rangeIncludes: "schema:Person".freeze, - "schema:supersededBy": "schema:sibling".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :signDetected, comment: "A sign detected by the test.".freeze, - domainIncludes: "schema:MedicalTest".freeze, + domainIncludes: "http://schema.org/MedicalTest".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "signDetected".freeze, - rangeIncludes: "schema:MedicalSign".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalSign".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :signOrSymptom, comment: "A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "signOrSymptom".freeze, - rangeIncludes: "schema:MedicalSignOrSymptom".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalSignOrSymptom".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :significance, comment: "The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.".freeze, - domainIncludes: "schema:SuperficialAnatomy".freeze, + domainIncludes: "http://schema.org/SuperficialAnatomy".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "significance".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :significantLink, comment: "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.".freeze, - domainIncludes: "schema:WebPage".freeze, + domainIncludes: "http://schema.org/WebPage".freeze, label: "significantLink".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :significantLinks, comment: "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.".freeze, - domainIncludes: "schema:WebPage".freeze, + domainIncludes: "http://schema.org/WebPage".freeze, + "http://schema.org/supersededBy": "http://schema.org/significantLink".freeze, label: "significantLinks".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:supersededBy": "schema:significantLink".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :size, comment: "A standardized size of a product or creative work, often simplifying richer information into a simple textual string, either through referring to named sizes or (in the case of product markup), by adopting conventional simplifications. Use of QuantitativeValue with a unitCode or unitText can add more structure; in other cases, the /width, /height, /depth and /weight properties may be more applicable. ".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Product".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "size".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:QuantitativeValue".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/QuantitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], + domainIncludes: ["http://schema.org/JobPosting".freeze, "http://schema.org/Occupation".freeze], + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/2322".freeze], label: "skills".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/2322".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze, "http://schema.org/Product".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :slogan, comment: "A slogan or motto associated with the item.".freeze, - domainIncludes: ["schema:Brand".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Product".freeze, "schema:Service".freeze], + domainIncludes: ["http://schema.org/Brand".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Place".freeze, "http://schema.org/Product".freeze, "http://schema.org/Service".freeze], label: "slogan".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sodiumContent, comment: "The number of milligrams of sodium.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "sodiumContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :softwareAddOn, comment: "Additional content for a software application.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "softwareAddOn".freeze, - rangeIncludes: "schema:SoftwareApplication".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/SoftwareApplication".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :softwareHelp, comment: "Software application help.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "softwareHelp".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :softwareRequirements, comment: "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "softwareRequirements".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :softwareVersion, comment: "Version of the software instance.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "softwareVersion".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourceOrganization, comment: "The Organization on whose behalf the creator was working.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "sourceOrganization".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourcedFrom, comment: "The neurological pathway that originates the neurons.".freeze, - domainIncludes: "schema:Nerve".freeze, + domainIncludes: "http://schema.org/Nerve".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "sourcedFrom".freeze, - rangeIncludes: "schema:BrainStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/BrainStructure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spatial, comment: "The \"spatial\" property can be used in cases when more specific properties\n(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.".freeze, - domainIncludes: "schema:CreativeWork".freeze, - equivalentProperty: "dc:spatial".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + equivalentProperty: "http://purl.org/dc/terms/spatial".freeze, label: "spatial".freeze, - rangeIncludes: "schema:Place".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spatialCoverage, comment: "The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of\n contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates\n areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.".freeze, - domainIncludes: "schema:CreativeWork".freeze, - equivalentProperty: "dc:spatial".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + equivalentProperty: "http://purl.org/dc/terms/spatial".freeze, label: "spatialCoverage".freeze, - rangeIncludes: "schema:Place".freeze, - subPropertyOf: "schema:contentLocation".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + subPropertyOf: "http://schema.org/contentLocation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :speakable, comment: "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the [[cssSelector]] property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.\n\n\nFor 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\nwe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property.\n ".freeze, - domainIncludes: ["schema:Article".freeze, "schema:WebPage".freeze], + domainIncludes: ["http://schema.org/Article".freeze, "http://schema.org/WebPage".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, label: "speakable".freeze, - rangeIncludes: ["schema:SpeakableSpecification".freeze, "schema:URL".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/SpeakableSpecification".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :specialCommitments, comment: "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, label: "specialCommitments".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :specialOpeningHoursSpecification, comment: "The special opening hours of a certain place.\\n\\nUse this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].\n ".freeze, - domainIncludes: "schema:Place".freeze, + domainIncludes: "http://schema.org/Place".freeze, label: "specialOpeningHoursSpecification".freeze, - rangeIncludes: "schema:OpeningHoursSpecification".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/OpeningHoursSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :specialty, comment: "One of the domain specialities to which this web page's content applies.".freeze, - domainIncludes: "schema:WebPage".freeze, + domainIncludes: "http://schema.org/WebPage".freeze, label: "specialty".freeze, - rangeIncludes: "schema:Specialty".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Specialty".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :speechToTextMarkup, comment: "Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898).".freeze, - domainIncludes: "schema:PronounceableText".freeze, + domainIncludes: "http://schema.org/PronounceableText".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, label: "speechToTextMarkup".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nTypical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot\\n\\n*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.\\n* 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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spokenByCharacter, comment: "The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.".freeze, - domainIncludes: "schema:Quotation".freeze, + domainIncludes: "http://schema.org/Quotation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, label: "spokenByCharacter".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze, "schema:Grant".freeze, "schema:MedicalStudy".freeze, "schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze, "http://schema.org/Grant".freeze, "http://schema.org/MedicalStudy".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], label: "sponsor".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sport, comment: "A type of sport (e.g. Baseball).".freeze, - domainIncludes: ["schema:SportsEvent".freeze, "schema:SportsOrganization".freeze], + domainIncludes: ["http://schema.org/SportsEvent".freeze, "http://schema.org/SportsOrganization".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1951".freeze, label: "sport".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1951".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sportsActivityLocation, comment: "A sub property of location. The sports activity location where this action occurred.".freeze, - domainIncludes: "schema:ExerciseAction".freeze, + domainIncludes: "http://schema.org/ExerciseAction".freeze, label: "sportsActivityLocation".freeze, - rangeIncludes: "schema:SportsActivityLocation".freeze, - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/SportsActivityLocation".freeze, + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sportsEvent, comment: "A sub property of location. The sports event where this action occurred.".freeze, - domainIncludes: "schema:ExerciseAction".freeze, + domainIncludes: "http://schema.org/ExerciseAction".freeze, label: "sportsEvent".freeze, - rangeIncludes: "schema:SportsEvent".freeze, - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/SportsEvent".freeze, + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sportsTeam, comment: "A sub property of participant. The sports team that participated on this action.".freeze, - domainIncludes: "schema:ExerciseAction".freeze, + domainIncludes: "http://schema.org/ExerciseAction".freeze, label: "sportsTeam".freeze, - rangeIncludes: "schema:SportsTeam".freeze, - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/SportsTeam".freeze, + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spouse, comment: "The person's spouse.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "spouse".freeze, - rangeIncludes: "schema:Person".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stage, comment: "The stage of the condition, if applicable.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "stage".freeze, - rangeIncludes: "schema:MedicalConditionStage".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalConditionStage".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stageAsNumber, comment: "The stage represented as a number, e.g. 3.".freeze, - domainIncludes: "schema:MedicalConditionStage".freeze, + domainIncludes: "http://schema.org/MedicalConditionStage".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "stageAsNumber".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:FoodEstablishment".freeze, "schema:LodgingBusiness".freeze], + domainIncludes: ["http://schema.org/FoodEstablishment".freeze, "http://schema.org/LodgingBusiness".freeze], + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: "http://schema.org/Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startDate, comment: "The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).".freeze, - domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:CreativeWorkSeries".freeze, "schema:DatedMoneySpecification".freeze, "schema:EducationalOccupationalProgram".freeze, "schema:Event".freeze, "schema:Role".freeze, "schema:Schedule".freeze], + domainIncludes: ["http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/CreativeWorkSeries".freeze, "http://schema.org/DatedMoneySpecification".freeze, "http://schema.org/EducationalOccupationalProgram".freeze, "http://schema.org/Event".freeze, "http://schema.org/Role".freeze, "http://schema.org/Schedule".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, label: "startDate".freeze, - rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startOffset, comment: "The start time of the clip expressed as the number of seconds from the beginning of the work.".freeze, - domainIncludes: "schema:Clip".freeze, + domainIncludes: "http://schema.org/Clip".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, label: "startOffset".freeze, - rangeIncludes: ["schema:HyperTocEntry".freeze, "schema:Number".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/HyperTocEntry".freeze, "http://schema.org/Number".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.".freeze, - domainIncludes: ["schema:Action".freeze, "schema:FoodEstablishmentReservation".freeze, "schema:MediaObject".freeze, "schema:Schedule".freeze], + domainIncludes: ["http://schema.org/Action".freeze, "http://schema.org/FoodEstablishmentReservation".freeze, "http://schema.org/MediaObject".freeze, "http://schema.org/Schedule".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, label: "startTime".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Time".freeze], - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Time".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :status, comment: "The status of the study (enumerated).".freeze, - domainIncludes: ["schema:MedicalCondition".freeze, "schema:MedicalProcedure".freeze, "schema:MedicalStudy".freeze], + domainIncludes: ["http://schema.org/MedicalCondition".freeze, "http://schema.org/MedicalProcedure".freeze, "http://schema.org/MedicalStudy".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "status".freeze, - rangeIncludes: ["schema:EventStatusType".freeze, "schema:MedicalStudyStatus".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/EventStatusType".freeze, "http://schema.org/MedicalStudyStatus".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :steeringPosition, comment: "The position of the steering wheel or similar device (mostly for cars).".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/SteeringPositionValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :step, comment: "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.".freeze, - domainIncludes: "schema:HowTo".freeze, + domainIncludes: "http://schema.org/HowTo".freeze, label: "step".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:HowToSection".freeze, "schema:HowToStep".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/HowToSection".freeze, "http://schema.org/HowToStep".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stepValue, comment: "The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification.".freeze, - domainIncludes: "schema:PropertyValueSpecification".freeze, + domainIncludes: "http://schema.org/PropertyValueSpecification".freeze, label: "stepValue".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :steps, comment: "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).".freeze, - domainIncludes: ["schema:HowTo".freeze, "schema:HowToSection".freeze], + domainIncludes: ["http://schema.org/HowTo".freeze, "http://schema.org/HowToSection".freeze], + "http://schema.org/supersededBy": "http://schema.org/step".freeze, label: "steps".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:ItemList".freeze, "schema:Text".freeze], - "schema:supersededBy": "schema:step".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/ItemList".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :storageRequirements, comment: "Storage requirements (free space required).".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "storageRequirements".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :streetAddress, comment: "The street address. For example, 1600 Amphitheatre Pkwy.".freeze, - domainIncludes: "schema:PostalAddress".freeze, + domainIncludes: "http://schema.org/PostalAddress".freeze, label: "streetAddress".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :strengthUnit, comment: "The units of an active ingredient's strength, e.g. mg.".freeze, - domainIncludes: "schema:DrugStrength".freeze, + domainIncludes: "http://schema.org/DrugStrength".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "strengthUnit".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :strengthValue, comment: "The value of an active ingredient's strength, e.g. 325.".freeze, - domainIncludes: "schema:DrugStrength".freeze, + domainIncludes: "http://schema.org/DrugStrength".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "strengthValue".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :structuralClass, comment: "The name given to how bone physically connects to each other.".freeze, - domainIncludes: "schema:Joint".freeze, + domainIncludes: "http://schema.org/Joint".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "structuralClass".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :study, comment: "A medical study or trial related to this entity.".freeze, - domainIncludes: "schema:MedicalEntity".freeze, + domainIncludes: "http://schema.org/MedicalEntity".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "study".freeze, - rangeIncludes: "schema:MedicalStudy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalStudy".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :studyDesign, comment: "Specifics about the observational study design (enumerated).".freeze, - domainIncludes: "schema:MedicalObservationalStudy".freeze, + domainIncludes: "http://schema.org/MedicalObservationalStudy".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "studyDesign".freeze, - rangeIncludes: "schema:MedicalObservationalStudyDesign".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalObservationalStudyDesign".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :studyLocation, comment: "The location in which the study is taking/took place.".freeze, - domainIncludes: "schema:MedicalStudy".freeze, + domainIncludes: "http://schema.org/MedicalStudy".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "studyLocation".freeze, - rangeIncludes: "schema:AdministrativeArea".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :studySubject, comment: "A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.".freeze, - domainIncludes: "schema:MedicalStudy".freeze, + domainIncludes: "http://schema.org/MedicalStudy".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "studySubject".freeze, - rangeIncludes: "schema:MedicalEntity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stupidProperty, comment: "This is a StupidProperty! - for testing only".freeze, - domainIncludes: ["schema:StupidType".freeze, "schema:Vehicle".freeze], + domainIncludes: ["http://schema.org/StupidType".freeze, "http://schema.org/Vehicle".freeze], + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, label: "stupidProperty".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:isPartOf": "http://attic.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subEvent, comment: "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/inverseOf": "http://schema.org/superEvent".freeze, label: "subEvent".freeze, - rangeIncludes: "schema:Event".freeze, - "schema:inverseOf": "schema:superEvent".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subEvents, comment: "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/supersededBy": "http://schema.org/subEvent".freeze, label: "subEvents".freeze, - rangeIncludes: "schema:Event".freeze, - "schema:supersededBy": "schema:subEvent".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subOrganization, comment: "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.".freeze, - domainIncludes: "schema:Organization".freeze, + domainIncludes: "http://schema.org/Organization".freeze, + "http://schema.org/inverseOf": "http://schema.org/parentOrganization".freeze, label: "subOrganization".freeze, - rangeIncludes: "schema:Organization".freeze, - "schema:inverseOf": "schema:parentOrganization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subReservation, comment: "The individual reservations included in the package. Typically a repeated property.".freeze, - domainIncludes: "schema:ReservationPackage".freeze, + domainIncludes: "http://schema.org/ReservationPackage".freeze, label: "subReservation".freeze, - rangeIncludes: "schema:Reservation".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Reservation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subStageSuffix, comment: "The substage, e.g. 'a' for Stage IIIa.".freeze, - domainIncludes: "schema:MedicalConditionStage".freeze, + domainIncludes: "http://schema.org/MedicalConditionStage".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "subStageSuffix".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subStructure, comment: "Component (sub-)structure(s) that comprise this anatomical structure.".freeze, - domainIncludes: "schema:AnatomicalStructure".freeze, + domainIncludes: "http://schema.org/AnatomicalStructure".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "subStructure".freeze, - rangeIncludes: "schema:AnatomicalStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subTest, comment: "A component test of the panel.".freeze, - domainIncludes: "schema:MedicalTestPanel".freeze, + domainIncludes: "http://schema.org/MedicalTestPanel".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "subTest".freeze, - rangeIncludes: "schema:MedicalTest".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Trip".freeze, + domainIncludes: "http://schema.org/Trip".freeze, + "http://schema.org/inverseOf": "http://schema.org/partOfTrip".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "subTrip".freeze, - rangeIncludes: "schema:Trip".freeze, - "schema:inverseOf": "schema:partOfTrip".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Trip".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subjectOf, comment: "A CreativeWork or Event about this Thing.".freeze, - domainIncludes: "schema:Thing".freeze, + domainIncludes: "http://schema.org/Thing".freeze, + "http://schema.org/inverseOf": "http://schema.org/about".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, label: "subjectOf".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze], - "schema:inverseOf": "schema:about".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subtitleLanguage, comment: "Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).".freeze, - domainIncludes: ["schema:BroadcastEvent".freeze, "schema:Movie".freeze, "schema:ScreeningEvent".freeze, "schema:TVEpisode".freeze], + domainIncludes: ["http://schema.org/BroadcastEvent".freeze, "http://schema.org/Movie".freeze, "http://schema.org/ScreeningEvent".freeze, "http://schema.org/TVEpisode".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2110".freeze, label: "subtitleLanguage".freeze, - rangeIncludes: ["schema:Language".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2110".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Language".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :successorOf, comment: "A pointer from a newer variant of a product to its previous, often discontinued predecessor.".freeze, - domainIncludes: "schema:ProductModel".freeze, + domainIncludes: "http://schema.org/ProductModel".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "successorOf".freeze, - rangeIncludes: "schema:ProductModel".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ProductModel".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sugarContent, comment: "The number of grams of sugar.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "sugarContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suggestedAnswer, comment: "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.".freeze, - domainIncludes: "schema:Question".freeze, + domainIncludes: "http://schema.org/Question".freeze, label: "suggestedAnswer".freeze, - rangeIncludes: ["schema:Answer".freeze, "schema:ItemList".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Answer".freeze, "http://schema.org/ItemList".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suggestedGender, comment: "The gender of the person or audience.".freeze, - domainIncludes: "schema:PeopleAudience".freeze, + domainIncludes: "http://schema.org/PeopleAudience".freeze, label: "suggestedGender".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suggestedMaxAge, comment: "Maximal age recommended for viewing content.".freeze, - domainIncludes: "schema:PeopleAudience".freeze, + domainIncludes: "http://schema.org/PeopleAudience".freeze, label: "suggestedMaxAge".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suggestedMinAge, comment: "Minimal age recommended for viewing content.".freeze, - domainIncludes: "schema:PeopleAudience".freeze, + domainIncludes: "http://schema.org/PeopleAudience".freeze, label: "suggestedMinAge".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suitableForDiet, comment: "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.".freeze, - domainIncludes: ["schema:MenuItem".freeze, "schema:Recipe".freeze], + domainIncludes: ["http://schema.org/MenuItem".freeze, "http://schema.org/Recipe".freeze], label: "suitableForDiet".freeze, - rangeIncludes: "schema:RestrictedDiet".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/RestrictedDiet".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :superEvent, comment: "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, + "http://schema.org/inverseOf": "http://schema.org/subEvent".freeze, label: "superEvent".freeze, - rangeIncludes: "schema:Event".freeze, - "schema:inverseOf": "schema:subEvent".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Event".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supersededBy, comment: "Relates a term (i.e. a property, class or enumeration) to one that supersedes it.".freeze, - domainIncludes: ["schema:Class".freeze, "schema:Enumeration".freeze, "schema:Property".freeze], + domainIncludes: ["http://schema.org/Class".freeze, "http://schema.org/Enumeration".freeze, "http://schema.org/Property".freeze], + "http://schema.org/isPartOf": "http://meta.schema.org".freeze, label: "supersededBy".freeze, - rangeIncludes: ["schema:Class".freeze, "schema:Enumeration".freeze, "schema:Property".freeze], - "schema:isPartOf": "http://meta.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Class".freeze, "http://schema.org/Enumeration".freeze, "http://schema.org/Property".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supply, comment: "A sub-property of instrument. A supply consumed when performing instructions or a direction.".freeze, - domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze], + domainIncludes: ["http://schema.org/HowTo".freeze, "http://schema.org/HowToDirection".freeze], label: "supply".freeze, - rangeIncludes: ["schema:HowToSupply".freeze, "schema:Text".freeze], - subPropertyOf: "schema:instrument".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/HowToSupply".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supplyTo, comment: "The area to which the artery supplies blood.".freeze, - domainIncludes: "schema:Artery".freeze, + domainIncludes: "http://schema.org/Artery".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "supplyTo".freeze, - rangeIncludes: "schema:AnatomicalStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supportingData, comment: "Supporting data for a SoftwareApplication.".freeze, - domainIncludes: "schema:SoftwareApplication".freeze, + domainIncludes: "http://schema.org/SoftwareApplication".freeze, label: "supportingData".freeze, - rangeIncludes: "schema:DataFeed".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DataFeed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :surface, comment: "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.".freeze, - domainIncludes: "schema:VisualArtwork".freeze, + domainIncludes: "http://schema.org/VisualArtwork".freeze, + "http://schema.org/supersededBy": "http://schema.org/artworkSurface".freeze, label: "surface".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:supersededBy": "schema:artworkSurface".freeze, - subPropertyOf: "schema:material".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/material".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :target, comment: "Indicates a target EntryPoint for an Action.".freeze, - domainIncludes: "schema:Action".freeze, + domainIncludes: "http://schema.org/Action".freeze, label: "target".freeze, - rangeIncludes: "schema:EntryPoint".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/EntryPoint".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetCollection, comment: "A sub property of object. The collection target of the action.".freeze, - domainIncludes: "schema:UpdateAction".freeze, + domainIncludes: "http://schema.org/UpdateAction".freeze, label: "targetCollection".freeze, - rangeIncludes: "schema:Thing".freeze, - subPropertyOf: "schema:object".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Thing".freeze, + subPropertyOf: "http://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetDescription, comment: "The description of a node in an established educational framework.".freeze, - domainIncludes: "schema:AlignmentObject".freeze, + domainIncludes: "http://schema.org/AlignmentObject".freeze, label: "targetDescription".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetName, comment: "The name of a node in an established educational framework.".freeze, - domainIncludes: "schema:AlignmentObject".freeze, + domainIncludes: "http://schema.org/AlignmentObject".freeze, label: "targetName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetPlatform, comment: "Type of app development: phone, Metro style, desktop, XBox, etc.".freeze, - domainIncludes: "schema:APIReference".freeze, + domainIncludes: "http://schema.org/APIReference".freeze, label: "targetPlatform".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetPopulation, comment: "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.".freeze, - domainIncludes: ["schema:DietarySupplement".freeze, "schema:DoseSchedule".freeze], + domainIncludes: ["http://schema.org/DietarySupplement".freeze, "http://schema.org/DoseSchedule".freeze], + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "targetPopulation".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetProduct, comment: "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.".freeze, - domainIncludes: "schema:SoftwareSourceCode".freeze, + domainIncludes: "http://schema.org/SoftwareSourceCode".freeze, label: "targetProduct".freeze, - rangeIncludes: "schema:SoftwareApplication".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/SoftwareApplication".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetUrl, comment: "The URL of a node in an established educational framework.".freeze, - domainIncludes: "schema:AlignmentObject".freeze, + domainIncludes: "http://schema.org/AlignmentObject".freeze, label: "targetUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, "schema:LearningResource".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/EducationEvent".freeze, "http://schema.org/LearningResource".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, label: "teaches".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :telephone, comment: "The telephone number.".freeze, - domainIncludes: ["schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze, "http://schema.org/Place".freeze], label: "telephone".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :temporal, comment: "The \"temporal\" property can be used in cases where more specific properties\n(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "temporal".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :temporalCoverage, comment: "The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In\n the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL.\n Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".\n\nOpen-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.".freeze, - domainIncludes: "schema:CreativeWork".freeze, - equivalentProperty: "dc:temporal".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + equivalentProperty: "http://purl.org/dc/terms/temporal".freeze, label: "temporalCoverage".freeze, - rangeIncludes: ["schema:DateTime".freeze, "schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DateTime".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :termCode, comment: "A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]".freeze, - domainIncludes: "schema:DefinedTerm".freeze, + domainIncludes: "http://schema.org/DefinedTerm".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "termCode".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "termDuration".freeze, - rangeIncludes: "schema:Duration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :termsOfService, comment: "Human-readable terms of service documentation.".freeze, - domainIncludes: "schema:Service".freeze, + domainIncludes: "http://schema.org/Service".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, label: "termsOfService".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "termsPerYear".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :text, comment: "The textual content of this CreativeWork.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "text".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textValue, comment: "Text value being annotated.".freeze, - domainIncludes: "schema:PronounceableText".freeze, + domainIncludes: "http://schema.org/PronounceableText".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, label: "textValue".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :thumbnail, comment: "Thumbnail image for an image or video.".freeze, - domainIncludes: ["schema:ImageObject".freeze, "schema:VideoObject".freeze], + domainIncludes: ["http://schema.org/ImageObject".freeze, "http://schema.org/VideoObject".freeze], label: "thumbnail".freeze, - rangeIncludes: "schema:ImageObject".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/ImageObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :thumbnailUrl, comment: "A thumbnail image relevant to the Thing.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "thumbnailUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tickerSymbol, comment: "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022.".freeze, - domainIncludes: "schema:Corporation".freeze, + domainIncludes: "http://schema.org/Corporation".freeze, label: "tickerSymbol".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ticketNumber, comment: "The unique identifier for the ticket.".freeze, - domainIncludes: "schema:Ticket".freeze, + domainIncludes: "http://schema.org/Ticket".freeze, label: "ticketNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ticketToken, comment: "Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.".freeze, - domainIncludes: "schema:Ticket".freeze, + domainIncludes: "http://schema.org/Ticket".freeze, label: "ticketToken".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ticketedSeat, comment: "The seat associated with the ticket.".freeze, - domainIncludes: "schema:Ticket".freeze, + domainIncludes: "http://schema.org/Ticket".freeze, label: "ticketedSeat".freeze, - rangeIncludes: "schema:Seat".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Seat".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timeOfDay, comment: "The time of day the program normally runs. For example, \"evenings\".".freeze, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "timeOfDay".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "timeRequired".freeze, - rangeIncludes: "schema:Duration".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timeToComplete, comment: "The expected length of time to complete the program if attending full-time.".freeze, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "timeToComplete".freeze, - rangeIncludes: "schema:Duration".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tissueSample, comment: "The type of tissue sample required for the test.".freeze, - domainIncludes: "schema:PathologyTest".freeze, + domainIncludes: "http://schema.org/PathologyTest".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "tissueSample".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, comment: "The title of the job.".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, label: "title".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :titleEIDR, comment: "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.\n\nFor 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]].\n\nSince 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.\n".freeze, - domainIncludes: ["schema:Movie".freeze, "schema:TVEpisode".freeze], + domainIncludes: ["http://schema.org/Movie".freeze, "http://schema.org/TVEpisode".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2469".freeze, label: "titleEIDR".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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], + domainIncludes: ["http://schema.org/ExerciseAction".freeze, "http://schema.org/InsertAction".freeze, "http://schema.org/MoveAction".freeze, "http://schema.org/TransferAction".freeze], label: "toLocation".freeze, - rangeIncludes: "schema:Place".freeze, - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Place".freeze, + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :toRecipient, comment: "A sub property of recipient. The recipient who was directly sent the message.".freeze, - domainIncludes: "schema:Message".freeze, + domainIncludes: "http://schema.org/Message".freeze, label: "toRecipient".freeze, - rangeIncludes: ["schema:Audience".freeze, "schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze], - subPropertyOf: "schema:recipient".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Audience".freeze, "http://schema.org/ContactPoint".freeze, "http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/recipient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tocContinuation, comment: "A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render.".freeze, - domainIncludes: "schema:HyperTocEntry".freeze, + domainIncludes: "http://schema.org/HyperTocEntry".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "tocContinuation".freeze, - rangeIncludes: "schema:HyperTocEntry".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/HyperTocEntry".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tocEntry, comment: "Indicates a [[HyperTocEntry]] in a [[HyperToc]].".freeze, - domainIncludes: "schema:HyperToc".freeze, + domainIncludes: "http://schema.org/HyperToc".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "tocEntry".freeze, - rangeIncludes: "schema:HyperTocEntry".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - subPropertyOf: "schema:hasPart".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/HyperTocEntry".freeze, + subPropertyOf: "http://schema.org/hasPart".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tongueWeight, comment: "The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR)\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tool, comment: "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.".freeze, - domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze], + domainIncludes: ["http://schema.org/HowTo".freeze, "http://schema.org/HowToDirection".freeze], label: "tool".freeze, - rangeIncludes: ["schema:HowToTool".freeze, "schema:Text".freeze], - subPropertyOf: "schema:instrument".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/HowToTool".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :torque, comment: "The torque (turning force) of the vehicle's engine.\\n\\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\\n\\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, - domainIncludes: "schema:EngineSpecification".freeze, + domainIncludes: "http://schema.org/EngineSpecification".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2329".freeze, label: "totalJobOpenings".freeze, - rangeIncludes: "schema:Integer".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2329".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalPaymentDue, comment: "The total amount due.".freeze, - domainIncludes: "schema:Invoice".freeze, + domainIncludes: "http://schema.org/Invoice".freeze, label: "totalPaymentDue".freeze, - rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:PriceSpecification".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/PriceSpecification".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalPrice, comment: "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, - domainIncludes: ["schema:Reservation".freeze, "schema:Ticket".freeze], + domainIncludes: ["http://schema.org/Reservation".freeze, "http://schema.org/Ticket".freeze], label: "totalPrice".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:PriceSpecification".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/PriceSpecification".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalTime, comment: "The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).".freeze, - domainIncludes: ["schema:HowTo".freeze, "schema:HowToDirection".freeze], + domainIncludes: ["http://schema.org/HowTo".freeze, "http://schema.org/HowToDirection".freeze], label: "totalTime".freeze, - rangeIncludes: "schema:Duration".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Accommodation".freeze, "schema:ApartmentComplex".freeze, "schema:Place".freeze], + domainIncludes: ["http://schema.org/Accommodation".freeze, "http://schema.org/ApartmentComplex".freeze, "http://schema.org/Place".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "tourBookingPage".freeze, - rangeIncludes: "schema:URL".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :touristType, comment: "Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc. ".freeze, - domainIncludes: ["schema:TouristAttraction".freeze, "schema:TouristDestination".freeze, "schema:TouristTrip".freeze], + domainIncludes: ["http://schema.org/TouristAttraction".freeze, "http://schema.org/TouristDestination".freeze, "http://schema.org/TouristTrip".freeze], + "http://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], label: "touristType".freeze, - rangeIncludes: ["schema:Audience".freeze, "schema:Text".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 + rangeIncludes: ["http://schema.org/Audience".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:MusicGroup".freeze, "schema:MusicPlaylist".freeze], + domainIncludes: ["http://schema.org/MusicGroup".freeze, "http://schema.org/MusicPlaylist".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".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 + rangeIncludes: ["http://schema.org/ItemList".freeze, "http://schema.org/MusicRecording".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trackingNumber, comment: "Shipper tracking number.".freeze, - domainIncludes: "schema:ParcelDelivery".freeze, + domainIncludes: "http://schema.org/ParcelDelivery".freeze, label: "trackingNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trackingUrl, comment: "Tracking url for the parcel delivery.".freeze, - domainIncludes: "schema:ParcelDelivery".freeze, + domainIncludes: "http://schema.org/ParcelDelivery".freeze, label: "trackingUrl".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tracks, comment: "A music recording (track)—usually a single song.".freeze, - domainIncludes: ["schema:MusicGroup".freeze, "schema:MusicPlaylist".freeze], + domainIncludes: ["http://schema.org/MusicGroup".freeze, "http://schema.org/MusicPlaylist".freeze], + "http://schema.org/supersededBy": "http://schema.org/track".freeze, label: "tracks".freeze, - rangeIncludes: "schema:MusicRecording".freeze, - "schema:supersededBy": "schema:track".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MusicRecording".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trailer, comment: "The trailer of a movie or tv/radio series, season, episode, etc.".freeze, - domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:Episode".freeze, "schema:Movie".freeze, "schema:MovieSeries".freeze, "schema:RadioSeries".freeze, "schema:TVSeries".freeze, "schema:VideoGame".freeze, "schema:VideoGameSeries".freeze], + domainIncludes: ["http://schema.org/CreativeWorkSeason".freeze, "http://schema.org/Episode".freeze, "http://schema.org/Movie".freeze, "http://schema.org/MovieSeries".freeze, "http://schema.org/RadioSeries".freeze, "http://schema.org/TVSeries".freeze, "http://schema.org/VideoGame".freeze, "http://schema.org/VideoGameSeries".freeze], label: "trailer".freeze, - rangeIncludes: "schema:VideoObject".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/VideoObject".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trailerWeight, comment: "The permitted weight of a trailer attached to the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trainName, comment: "The name of the train (e.g. The Orient Express).".freeze, - domainIncludes: "schema:TrainTrip".freeze, + domainIncludes: "http://schema.org/TrainTrip".freeze, label: "trainName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trainNumber, comment: "The unique identifier for the train.".freeze, - domainIncludes: "schema:TrainTrip".freeze, + domainIncludes: "http://schema.org/TrainTrip".freeze, label: "trainNumber".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trainingSalary, comment: "The estimated salary earned while in the program.".freeze, - domainIncludes: ["schema:EducationalOccupationalProgram".freeze, "schema:WorkBasedProgram".freeze], + domainIncludes: ["http://schema.org/EducationalOccupationalProgram".freeze, "http://schema.org/WorkBasedProgram".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/2289".freeze, "https://github.com/schemaorg/schemaorg/issues/2460".freeze], label: "trainingSalary".freeze, - rangeIncludes: "schema:MonetaryAmountDistribution".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 + rangeIncludes: "http://schema.org/MonetaryAmountDistribution".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :transFatContent, comment: "The number of grams of trans fat.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "transFatContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :transcript, comment: "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.".freeze, - domainIncludes: ["schema:AudioObject".freeze, "schema:VideoObject".freeze], + domainIncludes: ["http://schema.org/AudioObject".freeze, "http://schema.org/VideoObject".freeze], label: "transcript".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + domainIncludes: "http://schema.org/ShippingDeliveryTime".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "transitTime".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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], + domainIncludes: ["http://schema.org/DeliveryTimeSettings".freeze, "http://schema.org/OfferShippingDetails".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "transitTimeLabel".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/inverseOf": "http://schema.org/workTranslation".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "translationOfWork".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - "schema:inverseOf": "schema:workTranslation".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :translator, comment: "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze], label: "translator".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :transmissionMethod, comment: "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.".freeze, - domainIncludes: "schema:InfectiousDisease".freeze, + domainIncludes: "http://schema.org/InfectiousDisease".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "transmissionMethod".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :travelBans, comment: "Information about travel bans, e.g. in the context of a pandemic.".freeze, - domainIncludes: "schema:SpecialAnnouncement".freeze, + domainIncludes: "http://schema.org/SpecialAnnouncement".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "travelBans".freeze, - rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/URL".freeze, "http://schema.org/WebContent".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trialDesign, comment: "Specifics about the trial design (enumerated).".freeze, - domainIncludes: "schema:MedicalTrial".freeze, + domainIncludes: "http://schema.org/MedicalTrial".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "trialDesign".freeze, - rangeIncludes: "schema:MedicalTrialDesign".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTrialDesign".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tributary, comment: "The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.".freeze, - domainIncludes: "schema:Vein".freeze, + domainIncludes: "http://schema.org/Vein".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "tributary".freeze, - rangeIncludes: "schema:AnatomicalStructure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:BedDetails".freeze, + domainIncludes: "http://schema.org/BedDetails".freeze, + "http://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".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 + rangeIncludes: ["http://schema.org/BedType".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :typeOfGood, comment: "The product that this structured value is referring to.".freeze, - domainIncludes: ["schema:OwnershipInfo".freeze, "schema:TypeAndQuantityNode".freeze], + domainIncludes: ["http://schema.org/OwnershipInfo".freeze, "http://schema.org/TypeAndQuantityNode".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Product".freeze, "http://schema.org/Service".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :typicalAgeRange, comment: "The typical expected age range, e.g. '7-9', '11-'.".freeze, - domainIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze], + domainIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/Event".freeze], label: "typicalAgeRange".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:EducationalOccupationalProgram".freeze, + domainIncludes: "http://schema.org/EducationalOccupationalProgram".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "typicalCreditsPerTerm".freeze, - rangeIncludes: ["schema:Integer".freeze, "schema:StructuredValue".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/StructuredValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :typicalTest, comment: "A medical test typically performed given this condition.".freeze, - domainIncludes: "schema:MedicalCondition".freeze, + domainIncludes: "http://schema.org/MedicalCondition".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "typicalTest".freeze, - rangeIncludes: "schema:MedicalTest".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :underName, comment: "The person or organization the reservation or ticket is for.".freeze, - domainIncludes: ["schema:Reservation".freeze, "schema:Ticket".freeze], + domainIncludes: ["http://schema.org/Reservation".freeze, "http://schema.org/Ticket".freeze], label: "underName".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:PropertyValue".freeze, "schema:QuantitativeValue".freeze, "schema:TypeAndQuantityNode".freeze, "schema:UnitPriceSpecification".freeze], + domainIncludes: ["http://schema.org/PropertyValue".freeze, "http://schema.org/QuantitativeValue".freeze, "http://schema.org/TypeAndQuantityNode".freeze, "http://schema.org/UnitPriceSpecification".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :unitText, comment: "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.".freeze, - domainIncludes: ["schema:PropertyValue".freeze, "schema:QuantitativeValue".freeze, "schema:TypeAndQuantityNode".freeze, "schema:UnitPriceSpecification".freeze], + domainIncludes: ["http://schema.org/PropertyValue".freeze, "http://schema.org/QuantitativeValue".freeze, "http://schema.org/TypeAndQuantityNode".freeze, "http://schema.org/UnitPriceSpecification".freeze], label: "unitText".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], + domainIncludes: ["http://schema.org/NewsMediaOrganization".freeze, "http://schema.org/Organization".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "unnamedSourcesPolicy".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :unsaturatedFatContent, comment: "The number of grams of unsaturated fat.".freeze, - domainIncludes: "schema:NutritionInformation".freeze, + domainIncludes: "http://schema.org/NutritionInformation".freeze, label: "unsaturatedFatContent".freeze, - rangeIncludes: "schema:Mass".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Mass".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :uploadDate, comment: "Date when this media object was uploaded to this site.".freeze, - domainIncludes: "schema:MediaObject".freeze, + domainIncludes: "http://schema.org/MediaObject".freeze, label: "uploadDate".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :upvoteCount, comment: "The number of upvotes this question, answer or comment has received from the community.".freeze, - domainIncludes: "schema:Comment".freeze, + domainIncludes: "http://schema.org/Comment".freeze, label: "upvoteCount".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :url, comment: "URL of the item.".freeze, - domainIncludes: "schema:Thing".freeze, + domainIncludes: "http://schema.org/Thing".freeze, label: "url".freeze, - rangeIncludes: "schema:URL".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/URL".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :urlTemplate, comment: "An url template (RFC6570) that will be used to construct the target of the execution of the action.".freeze, - domainIncludes: "schema:EntryPoint".freeze, + domainIncludes: "http://schema.org/EntryPoint".freeze, label: "urlTemplate".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :usageInfo, 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.\n\nThis 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, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, label: "usageInfo".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :usedToDiagnose, comment: "A condition the test is used to diagnose.".freeze, - domainIncludes: "schema:MedicalTest".freeze, + domainIncludes: "http://schema.org/MedicalTest".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "usedToDiagnose".freeze, - rangeIncludes: "schema:MedicalCondition".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalCondition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :userInteractionCount, comment: "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.".freeze, - domainIncludes: "schema:InteractionCounter".freeze, + domainIncludes: "http://schema.org/InteractionCounter".freeze, label: "userInteractionCount".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :usesDevice, comment: "Device used to perform the test.".freeze, - domainIncludes: "schema:MedicalTest".freeze, + domainIncludes: "http://schema.org/MedicalTest".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "usesDevice".freeze, - rangeIncludes: "schema:MedicalDevice".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/MedicalDevice".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:HealthInsurancePlan".freeze, + domainIncludes: "http://schema.org/HealthInsurancePlan".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "usesHealthPlanIdStandard".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :utterances, comment: "Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].".freeze, - domainIncludes: "schema:HyperTocEntry".freeze, + domainIncludes: "http://schema.org/HyperTocEntry".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "utterances".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :validFor, comment: "The duration of validity of a permit or similar thing.".freeze, - domainIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Permit".freeze], + domainIncludes: ["http://schema.org/EducationalOccupationalCredential".freeze, "http://schema.org/Permit".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "validFor".freeze, - rangeIncludes: "schema:Duration".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :validFrom, comment: "The date when the item becomes valid.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:LocationFeatureSpecification".freeze, "schema:MonetaryAmount".freeze, "schema:Offer".freeze, "schema:OpeningHoursSpecification".freeze, "schema:Permit".freeze, "schema:PriceSpecification".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/LocationFeatureSpecification".freeze, "http://schema.org/MonetaryAmount".freeze, "http://schema.org/Offer".freeze, "http://schema.org/OpeningHoursSpecification".freeze, "http://schema.org/Permit".freeze, "http://schema.org/PriceSpecification".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :validIn, comment: "The geographic area where a permit or similar thing is valid.".freeze, - domainIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Permit".freeze], + domainIncludes: ["http://schema.org/EducationalOccupationalCredential".freeze, "http://schema.org/Permit".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "validIn".freeze, - rangeIncludes: "schema:AdministrativeArea".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:Demand".freeze, "schema:JobPosting".freeze, "schema:LocationFeatureSpecification".freeze, "schema:MonetaryAmount".freeze, "schema:Offer".freeze, "schema:OpeningHoursSpecification".freeze, "schema:PriceSpecification".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/JobPosting".freeze, "http://schema.org/LocationFeatureSpecification".freeze, "http://schema.org/MonetaryAmount".freeze, "http://schema.org/Offer".freeze, "http://schema.org/OpeningHoursSpecification".freeze, "http://schema.org/PriceSpecification".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Date".freeze, "http://schema.org/DateTime".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :validUntil, comment: "The date when the item is no longer valid.".freeze, - domainIncludes: "schema:Permit".freeze, + domainIncludes: "http://schema.org/Permit".freeze, label: "validUntil".freeze, - rangeIncludes: "schema:Date".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :value, comment: "The value of the quantitative value or property value node.\\n\\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\\n* For [[PropertyValue]], it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, - domainIncludes: ["schema:MonetaryAmount".freeze, "schema:PropertyValue".freeze, "schema:QuantitativeValue".freeze], + domainIncludes: ["http://schema.org/MonetaryAmount".freeze, "http://schema.org/PropertyValue".freeze, "http://schema.org/QuantitativeValue".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Boolean".freeze, "http://schema.org/Number".freeze, "http://schema.org/StructuredValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueAddedTaxIncluded, comment: "Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.".freeze, - domainIncludes: "schema:PriceSpecification".freeze, + domainIncludes: "http://schema.org/PriceSpecification".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "valueAddedTaxIncluded".freeze, - rangeIncludes: "schema:Boolean".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueMaxLength, comment: "Specifies the allowed range for number of characters in a literal value.".freeze, - domainIncludes: "schema:PropertyValueSpecification".freeze, + domainIncludes: "http://schema.org/PropertyValueSpecification".freeze, label: "valueMaxLength".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueMinLength, comment: "Specifies the minimum allowed range for number of characters in a literal value.".freeze, - domainIncludes: "schema:PropertyValueSpecification".freeze, + domainIncludes: "http://schema.org/PropertyValueSpecification".freeze, label: "valueMinLength".freeze, - rangeIncludes: "schema:Number".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueName, comment: "Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.".freeze, - domainIncludes: "schema:PropertyValueSpecification".freeze, + domainIncludes: "http://schema.org/PropertyValueSpecification".freeze, label: "valueName".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valuePattern, comment: "Specifies a regular expression for testing literal values according to the HTML spec.".freeze, - domainIncludes: "schema:PropertyValueSpecification".freeze, + domainIncludes: "http://schema.org/PropertyValueSpecification".freeze, label: "valuePattern".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:PropertyValue".freeze, "schema:QualitativeValue".freeze, "schema:QuantitativeValue".freeze], + domainIncludes: ["http://schema.org/PropertyValue".freeze, "http://schema.org/QualitativeValue".freeze, "http://schema.org/QuantitativeValue".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".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 + rangeIncludes: ["http://schema.org/Enumeration".freeze, "http://schema.org/PropertyValue".freeze, "http://schema.org/QualitativeValue".freeze, "http://schema.org/QuantitativeValue".freeze, "http://schema.org/StructuredValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueRequired, comment: "Whether the property must be filled in to complete the action. Default is false.".freeze, - domainIncludes: "schema:PropertyValueSpecification".freeze, + domainIncludes: "http://schema.org/PropertyValueSpecification".freeze, label: "valueRequired".freeze, - rangeIncludes: "schema:Boolean".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Dataset".freeze, + domainIncludes: "http://schema.org/Dataset".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1083".freeze, label: "variableMeasured".freeze, - rangeIncludes: ["schema:PropertyValue".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1083".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/PropertyValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Dataset".freeze, + domainIncludes: "http://schema.org/Dataset".freeze, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, label: "variablesMeasured".freeze, - rangeIncludes: ["schema:PropertyValue".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://attic.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/PropertyValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :variantCover, comment: "A description of the variant cover\n \tfor the issue, if the issue is a variant printing. For example, \"Bryan Hitch\n \tVariant Cover\" or \"2nd Printing Variant\".".freeze, - domainIncludes: "schema:ComicIssue".freeze, + domainIncludes: "http://schema.org/ComicIssue".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "variantCover".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :variesBy, comment: "Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. \"color\"; terms defined elsewhere can be referenced with their URIs.".freeze, - domainIncludes: "schema:ProductGroup".freeze, + domainIncludes: "http://schema.org/ProductGroup".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "variesBy".freeze, - rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DefinedTerm".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vatID, comment: "The Value-added Tax ID of the organization or person.".freeze, - domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + domainIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "vatID".freeze, - rangeIncludes: "schema:Text".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vehicleEngine, comment: "Information about the engine or engines of the vehicle.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/EngineSpecification".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Text".freeze, + subPropertyOf: "http://schema.org/serialNumber".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vehicleInteriorColor, comment: "The color or color combination of the interior of the vehicle.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vehicleModelDate, comment: "The release date of a vehicle model (often used to differentiate versions of the same make and model).".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/Date".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nTypical unit code(s): C62 for persons.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/CarUsageType".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: ["http://schema.org/QualitativeValue".freeze, "http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vendor, comment: "'vendor' is an earlier term for 'seller'.".freeze, - domainIncludes: "schema:BuyAction".freeze, + domainIncludes: "http://schema.org/BuyAction".freeze, + "http://schema.org/supersededBy": "http://schema.org/seller".freeze, label: "vendor".freeze, - rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], - "schema:supersededBy": "schema:seller".freeze, - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Organization".freeze, "http://schema.org/Person".freeze], + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verificationFactCheckingPolicy, comment: "Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].".freeze, - domainIncludes: "schema:NewsMediaOrganization".freeze, + domainIncludes: "http://schema.org/NewsMediaOrganization".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "verificationFactCheckingPolicy".freeze, - rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".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 + rangeIncludes: ["http://schema.org/CreativeWork".freeze, "http://schema.org/URL".freeze], + subPropertyOf: "http://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :version, comment: "The version of the CreativeWork embodied by a specified resource.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "version".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :video, comment: "An embedded video object.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, label: "video".freeze, - rangeIncludes: ["schema:Clip".freeze, "schema:VideoObject".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Clip".freeze, "http://schema.org/VideoObject".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoFormat, comment: "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).".freeze, - domainIncludes: ["schema:BroadcastEvent".freeze, "schema:BroadcastService".freeze, "schema:ScreeningEvent".freeze], + domainIncludes: ["http://schema.org/BroadcastEvent".freeze, "http://schema.org/BroadcastService".freeze, "http://schema.org/ScreeningEvent".freeze], label: "videoFormat".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoFrameSize, comment: "The frame size of the video.".freeze, - domainIncludes: "schema:VideoObject".freeze, + domainIncludes: "http://schema.org/VideoObject".freeze, label: "videoFrameSize".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoQuality, comment: "The quality of the video.".freeze, - domainIncludes: "schema:VideoObject".freeze, + domainIncludes: "http://schema.org/VideoObject".freeze, label: "videoQuality".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :volumeNumber, comment: "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".".freeze, - domainIncludes: "schema:PublicationVolume".freeze, - equivalentProperty: "bibo:volume".freeze, + domainIncludes: "http://schema.org/PublicationVolume".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/volume".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".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 + rangeIncludes: ["http://schema.org/Integer".freeze, "http://schema.org/Text".freeze], + subPropertyOf: "http://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :warning, comment: "Any FDA or other warnings about the drug (text or URL).".freeze, - domainIncludes: "schema:Drug".freeze, + domainIncludes: "http://schema.org/Drug".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "warning".freeze, - rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Text".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :warranty, comment: "The warranty promise(s) included in the offer.".freeze, - domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], + domainIncludes: ["http://schema.org/Demand".freeze, "http://schema.org/Offer".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "warranty".freeze, - rangeIncludes: "schema:WarrantyPromise".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/WarrantyPromise".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :warrantyPromise, comment: "The warranty promise(s) included in the offer.".freeze, - domainIncludes: ["schema:BuyAction".freeze, "schema:SellAction".freeze], + domainIncludes: ["http://schema.org/BuyAction".freeze, "http://schema.org/SellAction".freeze], + "http://schema.org/supersededBy": "http://schema.org/warranty".freeze, label: "warrantyPromise".freeze, - rangeIncludes: "schema:WarrantyPromise".freeze, - "schema:supersededBy": "schema:warranty".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/WarrantyPromise".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :warrantyScope, comment: "The scope of the warranty promise.".freeze, - domainIncludes: "schema:WarrantyPromise".freeze, + domainIncludes: "http://schema.org/WarrantyPromise".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "warrantyScope".freeze, - rangeIncludes: "schema:WarrantyScope".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/WarrantyScope".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :webCheckinTime, comment: "The time when a passenger can check into the flight online.".freeze, - domainIncludes: "schema:Flight".freeze, + domainIncludes: "http://schema.org/Flight".freeze, label: "webCheckinTime".freeze, - rangeIncludes: "schema:DateTime".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/DateTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:PodcastSeries".freeze, "schema:SpecialAnnouncement".freeze], + domainIncludes: ["http://schema.org/PodcastSeries".freeze, "http://schema.org/SpecialAnnouncement".freeze], + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "webFeed".freeze, - rangeIncludes: ["schema:DataFeed".freeze, "schema:URL".freeze], - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/DataFeed".freeze, "http://schema.org/URL".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :weight, comment: "The weight of the product or person.".freeze, - domainIncludes: ["schema:Person".freeze, "schema:Product".freeze], + domainIncludes: ["http://schema.org/Person".freeze, "http://schema.org/Product".freeze], + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "weight".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :weightTotal, comment: "The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :wheelbase, comment: "The distance between the centers of the front and rear wheels.\\n\\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet".freeze, - domainIncludes: "schema:Vehicle".freeze, + domainIncludes: "http://schema.org/Vehicle".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".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 + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :width, comment: "The width of the item.".freeze, - domainIncludes: ["schema:MediaObject".freeze, "schema:Product".freeze, "schema:VisualArtwork".freeze], + domainIncludes: ["http://schema.org/MediaObject".freeze, "http://schema.org/Product".freeze, "http://schema.org/VisualArtwork".freeze], label: "width".freeze, - rangeIncludes: ["schema:Distance".freeze, "schema:QuantitativeValue".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Distance".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :winner, comment: "A sub property of participant. The winner of the action.".freeze, - domainIncludes: "schema:LoseAction".freeze, + domainIncludes: "http://schema.org/LoseAction".freeze, label: "winner".freeze, - rangeIncludes: "schema:Person".freeze, - subPropertyOf: "schema:participant".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Person".freeze, + subPropertyOf: "http://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :wordCount, comment: "The number of words in the text of the Article.".freeze, - domainIncludes: "schema:Article".freeze, + domainIncludes: "http://schema.org/Article".freeze, label: "wordCount".freeze, - rangeIncludes: "schema:Integer".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/inverseOf": "http://schema.org/exampleOfWork".freeze, + "http://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".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 + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workFeatured, comment: "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, label: "workFeatured".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workHours, comment: "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).".freeze, - domainIncludes: "schema:JobPosting".freeze, + domainIncludes: "http://schema.org/JobPosting".freeze, label: "workHours".freeze, - rangeIncludes: "schema:Text".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Text".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workLocation, comment: "A contact location for a person's place of work.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "workLocation".freeze, - rangeIncludes: ["schema:ContactPoint".freeze, "schema:Place".freeze], - subPropertyOf: "schema:location".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/ContactPoint".freeze, "http://schema.org/Place".freeze], + subPropertyOf: "http://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workPerformed, comment: "A work performed in some event, for example a play performed in a TheaterEvent.".freeze, - domainIncludes: "schema:Event".freeze, + domainIncludes: "http://schema.org/Event".freeze, label: "workPerformed".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - subPropertyOf: "schema:workFeatured".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + subPropertyOf: "http://schema.org/workFeatured".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workPresented, comment: "The movie presented during this event.".freeze, - domainIncludes: "schema:ScreeningEvent".freeze, + domainIncludes: "http://schema.org/ScreeningEvent".freeze, label: "workPresented".freeze, - rangeIncludes: "schema:Movie".freeze, - subPropertyOf: "schema:workFeatured".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Movie".freeze, + subPropertyOf: "http://schema.org/workFeatured".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workTranslation, comment: "A work that is a translation of the content of this work. e.g. 西遊記 has an English workTranslation “Journey to the West”,a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.".freeze, - domainIncludes: "schema:CreativeWork".freeze, + domainIncludes: "http://schema.org/CreativeWork".freeze, + "http://schema.org/inverseOf": "http://schema.org/translationOfWork".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "workTranslation".freeze, - rangeIncludes: "schema:CreativeWork".freeze, - "schema:inverseOf": "schema:translationOfWork".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workload, comment: "Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.".freeze, - domainIncludes: "schema:ExercisePlan".freeze, + domainIncludes: "http://schema.org/ExercisePlan".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "workload".freeze, - rangeIncludes: ["schema:Energy".freeze, "schema:QuantitativeValue".freeze], - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Energy".freeze, "http://schema.org/QuantitativeValue".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :worksFor, comment: "Organizations that the person works for.".freeze, - domainIncludes: "schema:Person".freeze, + domainIncludes: "http://schema.org/Person".freeze, label: "worksFor".freeze, - rangeIncludes: "schema:Organization".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :worstRating, comment: "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.".freeze, - domainIncludes: "schema:Rating".freeze, + domainIncludes: "http://schema.org/Rating".freeze, label: "worstRating".freeze, - rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/Number".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - domainIncludes: ["schema:SpeakableSpecification".freeze, "schema:WebPageElement".freeze], + domainIncludes: ["http://schema.org/SpeakableSpecification".freeze, "http://schema.org/WebPageElement".freeze], + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, label: "xpath".freeze, - rangeIncludes: "schema:XPathType".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/XPathType".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yearBuilt, comment: "The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). ".freeze, - domainIncludes: "schema:Accommodation".freeze, + domainIncludes: "http://schema.org/Accommodation".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "yearBuilt".freeze, - rangeIncludes: "schema:Number".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/Number".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yearlyRevenue, comment: "The size of the business in annual revenue.".freeze, - domainIncludes: "schema:BusinessAudience".freeze, + domainIncludes: "http://schema.org/BusinessAudience".freeze, label: "yearlyRevenue".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yearsInOperation, comment: "The age of the business.".freeze, - domainIncludes: "schema:BusinessAudience".freeze, + domainIncludes: "http://schema.org/BusinessAudience".freeze, label: "yearsInOperation".freeze, - rangeIncludes: "schema:QuantitativeValue".freeze, - type: "rdf:Property".freeze + rangeIncludes: "http://schema.org/QuantitativeValue".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yield, comment: "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.".freeze, - domainIncludes: "schema:HowTo".freeze, + domainIncludes: "http://schema.org/HowTo".freeze, label: "yield".freeze, - rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Text".freeze], - type: "rdf:Property".freeze + rangeIncludes: ["http://schema.org/QuantitativeValue".freeze, "http://schema.org/Text".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :Abdomen, comment: "Abdomen clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Abdomen".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :ActivationFee, comment: "Represents the activation fee part of the total price for an offered product, for example a cellphone contract".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "ActivationFee".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schema:PriceComponentTypeEnumeration".freeze + type: "http://schema.org/PriceComponentTypeEnumeration".freeze term :ActiveActionStatus, comment: "An in-progress action (e.g, while watching the movie, or driving to a location).".freeze, label: "ActiveActionStatus".freeze, - type: "schema:ActionStatusType".freeze + type: "http://schema.org/ActionStatusType".freeze term :ActiveNotRecruiting, comment: "Active, but not recruiting new participants.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "ActiveNotRecruiting".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :AerobicActivity, comment: "Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "AerobicActivity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalActivityCategory".freeze + type: "http://schema.org/PhysicalActivityCategory".freeze term :AlbumRelease, comment: "AlbumRelease.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumReleaseType".freeze term :AllWheelDriveConfiguration, comment: "All-wheel Drive is a transmission layout where the engine drives all four wheels.".freeze, + "http://schema.org/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 + type: "http://schema.org/DriveWheelConfigurationValue".freeze term :AnaerobicActivity, comment: "Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "AnaerobicActivity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalActivityCategory".freeze + type: "http://schema.org/PhysicalActivityCategory".freeze term :Anesthesia, comment: "A specific branch of medical science that pertains to study of anesthetics and their application.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Anesthesia".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :Appearance, comment: "Appearance assessment with clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Appearance".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :AudiobookFormat, comment: "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.".freeze, label: "AudiobookFormat".freeze, - type: "schema:BookFormatType".freeze + type: "http://schema.org/BookFormatType".freeze term :AuthenticContent, comment: "AuthenticMediaObject: An unaltered image that is presented in an accurate way.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "AuthenticContent".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, - type: "schema:MediaManipulationRatingEnumeration".freeze + type: "http://schema.org/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, exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-authoritative".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "AuthoritativeLegalValue".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 + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Ayurvedic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicineSystem".freeze + type: "http://schema.org/MedicineSystem".freeze term :Balance, comment: "Physical activity that is engaged to help maintain posture and balance.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Balance".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalActivityCategory".freeze + type: "http://schema.org/PhysicalActivityCategory".freeze term :BasicIncome, comment: "BasicIncome: this is a benefit for basic income.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "BasicIncome".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schema:GovernmentBenefitsType".freeze + type: "http://schema.org/GovernmentBenefitsType".freeze term :BenefitsHealthAspect, comment: "Content about the benefits and advantages of usage or utilization of topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "BenefitsHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :BroadcastRelease, comment: "BroadcastRelease.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumReleaseType".freeze term :BusinessSupport, comment: "BusinessSupport: this is a benefit for supporting businesses.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "BusinessSupport".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schema:GovernmentBenefitsType".freeze + type: "http://schema.org/GovernmentBenefitsType".freeze term :CDFormat, comment: "CDFormat.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicReleaseFormatType".freeze term :CT, comment: "X-ray computed tomography imaging.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "CT".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalImagingTechnique".freeze + type: "http://schema.org/MedicalImagingTechnique".freeze term :Cardiovascular, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Cardiovascular".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :CardiovascularExam, comment: "Cardiovascular system assessment withclinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "CardiovascularExam".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :CaseSeries, comment: "A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "CaseSeries".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalObservationalStudyDesign".freeze + type: "http://schema.org/MedicalObservationalStudyDesign".freeze term :CassetteFormat, comment: "CassetteFormat.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicReleaseFormatType".freeze term :CausesHealthAspect, comment: "Information about the causes and main actions that gave rise to the topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "CausesHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :CharitableIncorporatedOrganization, comment: "CharitableIncorporatedOrganization: Non-profit type referring to a Charitable Incorporated Organization (UK).".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "CharitableIncorporatedOrganization".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:UKNonprofitType".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Chiropractic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicineSystem".freeze + type: "http://schema.org/MedicineSystem".freeze term :CleaningFee, comment: "Represents the cleaning fee part of the total price for an offered product, for example a vacation rental".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "CleaningFee".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schema:PriceComponentTypeEnumeration".freeze + type: "http://schema.org/PriceComponentTypeEnumeration".freeze term :Clinician, comment: "Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Clinician".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalAudienceType".freeze + type: "http://schema.org/MedicalAudienceType".freeze term :CoOp, comment: "Play mode: CoOp. Co-operative games, where you play on the same team with friends.".freeze, label: "CoOp".freeze, - type: "schema:GamePlayMode".freeze + type: "http://schema.org/GamePlayMode".freeze term :CohortStudy, comment: "Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "CohortStudy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalObservationalStudyDesign".freeze + type: "http://schema.org/MedicalObservationalStudyDesign".freeze term :CommentPermission, comment: "Permission to add comments to the document.".freeze, label: "CommentPermission".freeze, - type: "schema:DigitalDocumentPermissionType".freeze + type: "http://schema.org/DigitalDocumentPermissionType".freeze term :CommunityHealth, comment: "A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "CommunityHealth".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :CompilationAlbum, comment: "CompilationAlbum.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumProductionType".freeze term :Completed, comment: "Completed.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Completed".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :CompletedActionStatus, comment: "An action that has already taken place.".freeze, label: "CompletedActionStatus".freeze, - type: "schema:ActionStatusType".freeze + type: "http://schema.org/ActionStatusType".freeze term :ContagiousnessHealthAspect, comment: "Content about contagion mechanisms and contagiousness information over the topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "ContagiousnessHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "CrossSectional".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalObservationalStudyDesign".freeze + type: "http://schema.org/MedicalObservationalStudyDesign".freeze term :DJMixAlbum, comment: "DJMixAlbum.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumProductionType".freeze term :DVDFormat, comment: "DVDFormat.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicReleaseFormatType".freeze term :DamagedCondition, comment: "Indicates that the item is damaged.".freeze, label: "DamagedCondition".freeze, - type: "schema:OfferItemCondition".freeze + type: "http://schema.org/OfferItemCondition".freeze 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.)\n Something \"Definitive\" is considered to be also [[AuthoritativeLegalValue]].".freeze, exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-definitive".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "DefinitiveLegalValue".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 + type: "http://schema.org/LegalValueLevel".freeze term :DemoAlbum, comment: "DemoAlbum.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumProductionType".freeze term :Dentistry, comment: "A branch of medicine that is involved in the dental care.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Dentistry".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :Dermatologic, comment: "Something relating to or practicing dermatology".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, + "http://schema.org/supersededBy": "http://schema.org/Dermatology".freeze, label: "Dermatologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - "schema:supersededBy": "schema:Dermatology".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :Dermatology, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Dermatology".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :DiabeticDiet, comment: "A diet appropriate for people with diabetes.".freeze, label: "DiabeticDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :Diagnostic, comment: "A medical device used for diagnostic purposes.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Diagnostic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalDevicePurpose".freeze + type: "http://schema.org/MedicalDevicePurpose".freeze term :DietNutrition, comment: "Dietetic and nutrition as a medical speciality.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DietNutrition".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :DigitalAudioTapeFormat, comment: "DigitalAudioTapeFormat.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicReleaseFormatType".freeze term :DigitalFormat, comment: "DigitalFormat.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicReleaseFormatType".freeze term :DisabilitySupport, comment: "DisabilitySupport: this is a benefit for disability support.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "DisabilitySupport".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schema:GovernmentBenefitsType".freeze + type: "http://schema.org/GovernmentBenefitsType".freeze term :Discontinued, comment: "Indicates that the item has been discontinued.".freeze, label: "Discontinued".freeze, - type: "schema:ItemAvailability".freeze + type: "http://schema.org/ItemAvailability".freeze term :DistanceFee, comment: "Represents the distance fee (e.g., price per km or mile) part of the total price for an offered product, for example a car rental".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "DistanceFee".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schema:PriceComponentTypeEnumeration".freeze + type: "http://schema.org/PriceComponentTypeEnumeration".freeze term :DoubleBlindedTrial, comment: "A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "DoubleBlindedTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalTrialDesign".freeze + type: "http://schema.org/MedicalTrialDesign".freeze term :Downpayment, comment: "Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "Downpayment".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schema:PriceComponentTypeEnumeration".freeze + type: "http://schema.org/PriceComponentTypeEnumeration".freeze term :DrivingSchoolVehicleUsage, comment: "Indicates the usage of the vehicle for driving school.".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/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 + type: "http://schema.org/CarUsageType".freeze term :EBook, comment: "Book format: Ebook.".freeze, label: "EBook".freeze, - type: "schema:BookFormatType".freeze + type: "http://schema.org/BookFormatType".freeze term :EPRelease, comment: "EPRelease.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumReleaseType".freeze term :EUEnergyEfficiencyCategoryA, comment: "Represents EU Energy Efficiency Class A as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryA".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryA1Plus, comment: "Represents EU Energy Efficiency Class A+ as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryA1Plus".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryA2Plus, comment: "Represents EU Energy Efficiency Class A++ as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryA2Plus".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryA3Plus, comment: "Represents EU Energy Efficiency Class A+++ as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryA3Plus".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryB, comment: "Represents EU Energy Efficiency Class B as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryB".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryC, comment: "Represents EU Energy Efficiency Class C as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryC".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryD, comment: "Represents EU Energy Efficiency Class D as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryD".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryE, comment: "Represents EU Energy Efficiency Class E as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryE".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryF, comment: "Represents EU Energy Efficiency Class F as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryF".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryG, comment: "Represents EU Energy Efficiency Class G as defined in EU energy labeling regulations".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryG".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EUEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EUEnergyEfficiencyEnumeration".freeze term :Ear, comment: "Ear function assessment with clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Ear".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :Emergency, comment: "A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Emergency".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :Endocrine, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Endocrine".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :EnergyStarCertified, comment: "Represents EnergyStar certification".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EnergyStarCertified".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schema:EnergyStarEnergyEfficiencyEnumeration".freeze + type: "http://schema.org/EnergyStarEnergyEfficiencyEnumeration".freeze term :EnrollingByInvitation, comment: "Enrolling participants by invitation only.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "EnrollingByInvitation".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :EventCancelled, comment: "The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s).".freeze, label: "EventCancelled".freeze, - type: "schema:EventStatusType".freeze + type: "http://schema.org/EventStatusType".freeze term :EventMovedOnline, comment: "Indicates that the event was changed to allow online participation. See [[eventAttendanceMode]] for specifics of whether it is now fully or partially online.".freeze, label: "EventMovedOnline".freeze, - type: "schema:EventStatusType".freeze + type: "http://schema.org/EventStatusType".freeze term :EventPostponed, comment: "The event has been postponed and no new date has been set. The event's previousStartDate should be set.".freeze, label: "EventPostponed".freeze, - type: "schema:EventStatusType".freeze + type: "http://schema.org/EventStatusType".freeze term :EventRescheduled, comment: "The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated).".freeze, label: "EventRescheduled".freeze, - type: "schema:EventStatusType".freeze + type: "http://schema.org/EventStatusType".freeze term :EventScheduled, comment: "The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default.".freeze, label: "EventScheduled".freeze, - type: "schema:EventStatusType".freeze + type: "http://schema.org/EventStatusType".freeze term :EvidenceLevelA, comment: "Data derived from multiple randomized clinical trials or meta-analyses.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "EvidenceLevelA".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalEvidenceLevel".freeze + type: "http://schema.org/MedicalEvidenceLevel".freeze term :EvidenceLevelB, comment: "Data derived from a single randomized trial, or nonrandomized studies.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "EvidenceLevelB".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalEvidenceLevel".freeze + type: "http://schema.org/MedicalEvidenceLevel".freeze term :EvidenceLevelC, comment: "Only consensus opinion of experts, case studies, or standard-of-care.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "EvidenceLevelC".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalEvidenceLevel".freeze + type: "http://schema.org/MedicalEvidenceLevel".freeze term :ExchangeRefund, comment: "A ExchangeRefund ...".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ExchangeRefund".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:RefundTypeEnumeration".freeze + type: "http://schema.org/RefundTypeEnumeration".freeze term :Eye, comment: "Eye or ophtalmological function assessment with clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Eye".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :FDAcategoryA, comment: "A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "FDAcategoryA".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugPregnancyCategory".freeze + type: "http://schema.org/DrugPregnancyCategory".freeze term :FDAcategoryB, comment: "A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "FDAcategoryB".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugPregnancyCategory".freeze + type: "http://schema.org/DrugPregnancyCategory".freeze term :FDAcategoryC, comment: "A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "FDAcategoryC".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugPregnancyCategory".freeze + type: "http://schema.org/DrugPregnancyCategory".freeze term :FDAcategoryD, comment: "A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "FDAcategoryD".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugPregnancyCategory".freeze + type: "http://schema.org/DrugPregnancyCategory".freeze term :FDAcategoryX, comment: "A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "FDAcategoryX".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugPregnancyCategory".freeze + type: "http://schema.org/DrugPregnancyCategory".freeze term :FDAnotEvaluated, comment: "A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "FDAnotEvaluated".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugPregnancyCategory".freeze + type: "http://schema.org/DrugPregnancyCategory".freeze term :FailedActionStatus, comment: "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure.".freeze, label: "FailedActionStatus".freeze, - type: "schema:ActionStatusType".freeze + type: "http://schema.org/ActionStatusType".freeze term :False, comment: "The boolean value false.".freeze, label: "False".freeze, - type: "schema:Boolean".freeze + type: "http://schema.org/Boolean".freeze term :Female, comment: "The female gender.".freeze, label: "Female".freeze, - type: "schema:GenderType".freeze + type: "http://schema.org/GenderType".freeze term :Flexibility, comment: "Physical activity that is engaged in to improve joint and muscle flexibility.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Flexibility".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalActivityCategory".freeze + type: "http://schema.org/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, + "http://schema.org/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 + type: "http://schema.org/DriveWheelConfigurationValue".freeze term :Friday, comment: "The day of the week between Thursday and Saturday.".freeze, + "http://schema.org/sameAs": "http://www.wikidata.org/entity/Q130".freeze, label: "Friday".freeze, - "schema:sameAs": "http://www.wikidata.org/entity/Q130".freeze, - type: "schema:DayOfWeek".freeze + type: "http://schema.org/DayOfWeek".freeze term :FrontWheelDriveConfiguration, comment: "Front-wheel drive is a transmission layout where the engine drives the front wheels.".freeze, + "http://schema.org/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 + type: "http://schema.org/DriveWheelConfigurationValue".freeze term :FullRefund, comment: "A FullRefund ...".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "FullRefund".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:RefundTypeEnumeration".freeze + type: "http://schema.org/RefundTypeEnumeration".freeze term :Gastroenterologic, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Gastroenterologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :Genetic, comment: "A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Genetic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :Genitourinary, comment: "Genitourinary system function assessment with clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Genitourinary".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :Geriatric, comment: "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Geriatric".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :GlutenFreeDiet, comment: "A diet exclusive of gluten.".freeze, label: "GlutenFreeDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :GraphicNovel, comment: "Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.".freeze, + "http://schema.org/isPartOf": "http://bib.schema.org".freeze, label: "GraphicNovel".freeze, - "schema:isPartOf": "http://bib.schema.org".freeze, - type: "schema:BookFormatType".freeze + type: "http://schema.org/BookFormatType".freeze term :GroupBoardingPolicy, comment: "The airline boards by groups based on check-in time, priority, etc.".freeze, label: "GroupBoardingPolicy".freeze, - type: "schema:BoardingPolicyType".freeze + type: "http://schema.org/BoardingPolicyType".freeze term :Gynecologic, comment: "A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Gynecologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :HalalDiet, comment: "A diet conforming to Islamic dietary practices.".freeze, label: "HalalDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :Hardcover, comment: "Book format: Hardcover.".freeze, label: "Hardcover".freeze, - type: "schema:BookFormatType".freeze + type: "http://schema.org/BookFormatType".freeze term :Head, comment: "Head assessment with clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Head".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :HealthCare, comment: "HealthCare: this is a benefit for health care.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "HealthCare".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schema:GovernmentBenefitsType".freeze + type: "http://schema.org/GovernmentBenefitsType".freeze term :HearingImpairedSupported, comment: "Uses devices to support users with hearing impairments.".freeze, label: "HearingImpairedSupported".freeze, - type: "schema:ContactPointOption".freeze + type: "http://schema.org/ContactPointOption".freeze term :Hematologic, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Hematologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :HinduDiet, comment: "A diet conforming to Hindu dietary practices, in particular, beef-free.".freeze, label: "HinduDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :Homeopathic, comment: "A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Homeopathic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicineSystem".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "HowOrWhereHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :InForce, comment: "Indicates that a legislation is in force.".freeze, exactMatch: "http://data.europa.eu/eli/ontology#InForce-inForce".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "InForce".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 + type: "http://schema.org/LegalForceStatus".freeze term :InStock, comment: "Indicates that the item is in stock.".freeze, label: "InStock".freeze, - type: "schema:ItemAvailability".freeze + type: "http://schema.org/ItemAvailability".freeze term :InStoreOnly, comment: "Indicates that the item is available only at physical locations.".freeze, label: "InStoreOnly".freeze, - type: "schema:ItemAvailability".freeze + type: "http://schema.org/ItemAvailability".freeze term :Infectious, comment: "Something in medical science that pertains to infectious diseases i.e caused by bacterial, viral, fungal or parasitic infections.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Infectious".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :Installment, comment: "Represents the installment pricing component of the total price for an offered product".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "Installment".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schema:PriceComponentTypeEnumeration".freeze + type: "http://schema.org/PriceComponentTypeEnumeration".freeze term :InternationalTrial, comment: "An international trial.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "InternationalTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalTrialDesign".freeze + type: "http://schema.org/MedicalTrialDesign".freeze term :InvoicePrice, comment: "Represents the invoice price of an offered product.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "InvoicePrice".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schema:PriceTypeEnumeration".freeze + type: "http://schema.org/PriceTypeEnumeration".freeze term :ItemListOrderAscending, comment: "An ItemList ordered with lower values listed first.".freeze, label: "ItemListOrderAscending".freeze, - type: "schema:ItemListOrderType".freeze + type: "http://schema.org/ItemListOrderType".freeze term :ItemListOrderDescending, comment: "An ItemList ordered with higher values listed first.".freeze, label: "ItemListOrderDescending".freeze, - type: "schema:ItemListOrderType".freeze + type: "http://schema.org/ItemListOrderType".freeze term :ItemListUnordered, comment: "An ItemList ordered with no explicit order.".freeze, label: "ItemListUnordered".freeze, - type: "schema:ItemListOrderType".freeze + type: "http://schema.org/ItemListOrderType".freeze term :KosherDiet, comment: "A diet conforming to Jewish dietary practices.".freeze, label: "KosherDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :LaboratoryScience, comment: "A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "LaboratoryScience".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :LaserDiscFormat, comment: "LaserDiscFormat.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicReleaseFormatType".freeze term :LeftHandDriving, comment: "The steering position is on the left side of the vehicle (viewed from the main direction of driving).".freeze, + "http://schema.org/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 + type: "http://schema.org/SteeringPositionValue".freeze term :LeisureTimeActivity, comment: "Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "LeisureTimeActivity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalActivityCategory".freeze + type: "http://schema.org/PhysicalActivityCategory".freeze term :LimitedAvailability, comment: "Indicates that the item has limited availability.".freeze, label: "LimitedAvailability".freeze, - type: "schema:ItemAvailability".freeze + type: "http://schema.org/ItemAvailability".freeze term :LimitedByGuaranteeCharity, comment: "LimitedByGuaranteeCharity: Non-profit type referring to a charitable company that is limited by guarantee (UK).".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "LimitedByGuaranteeCharity".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:UKNonprofitType".freeze + type: "http://schema.org/UKNonprofitType".freeze term :ListPrice, comment: "Represents the list price (the price a product is actually advertised for) of an offered product.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "ListPrice".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schema:PriceTypeEnumeration".freeze + type: "http://schema.org/PriceTypeEnumeration".freeze term :LiveAlbum, comment: "LiveAlbum.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumProductionType".freeze term :LivingWithHealthAspect, comment: "Information about coping or life related to the topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "LivingWithHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :LockerDelivery, comment: "A DeliveryMethod in which an item is made available via locker.".freeze, label: "LockerDelivery".freeze, - type: "schema:DeliveryMethod".freeze + type: "http://schema.org/DeliveryMethod".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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Longitudinal".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalObservationalStudyDesign".freeze + type: "http://schema.org/MedicalObservationalStudyDesign".freeze term :LowCalorieDiet, comment: "A diet focused on reduced calorie intake.".freeze, label: "LowCalorieDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :LowFatDiet, comment: "A diet focused on reduced fat and cholesterol intake.".freeze, label: "LowFatDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :LowLactoseDiet, comment: "A diet appropriate for people with lactose intolerance.".freeze, label: "LowLactoseDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :LowSaltDiet, comment: "A diet focused on reduced sodium intake.".freeze, label: "LowSaltDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :Lung, comment: "Lung and respiratory system clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Lung".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :MRI, comment: "Magnetic resonance imaging.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MRI".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalImagingTechnique".freeze + type: "http://schema.org/MedicalImagingTechnique".freeze term :MSRP, comment: "Represents the manufacturer suggested retail price (\"MSRP\") of an offered product.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "MSRP".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schema:PriceTypeEnumeration".freeze + type: "http://schema.org/PriceTypeEnumeration".freeze term :Male, comment: "The male gender.".freeze, label: "Male".freeze, - type: "schema:GenderType".freeze + type: "http://schema.org/GenderType".freeze term :MayTreatHealthAspect, comment: "Related topics may be treated by a Topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "MayTreatHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :MedicalResearcher, comment: "Medical researchers.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MedicalResearcher".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalAudienceType".freeze + type: "http://schema.org/MedicalAudienceType".freeze term :MerchantReturnFiniteReturnWindow, comment: "MerchantReturnFiniteReturnWindow: there is a finite window for product returns.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnFiniteReturnWindow".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:MerchantReturnEnumeration".freeze + type: "http://schema.org/MerchantReturnEnumeration".freeze term :MerchantReturnNotPermitted, comment: "MerchantReturnNotPermitted: product returns are not permitted.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnNotPermitted".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:MerchantReturnEnumeration".freeze + type: "http://schema.org/MerchantReturnEnumeration".freeze term :MerchantReturnUnlimitedWindow, comment: "MerchantReturnUnlimitedWindow: there is an unlimited window for product returns.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnUnlimitedWindow".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:MerchantReturnEnumeration".freeze + type: "http://schema.org/MerchantReturnEnumeration".freeze term :MerchantReturnUnspecified, comment: "MerchantReturnUnspecified: a product return policy is not specified here.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnUnspecified".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:MerchantReturnEnumeration".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Midwifery".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :MinimumAdvertisedPrice, comment: "Represents the minimum advertised price (\"MAP\") (as dictated by the manufacturer) of an offered product.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "MinimumAdvertisedPrice".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schema:PriceTypeEnumeration".freeze + type: "http://schema.org/PriceTypeEnumeration".freeze term :MisconceptionsHealthAspect, comment: "Content about common misconceptions and myths that are related to a topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "MisconceptionsHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :MissingContext, comment: "MissingContext: ...".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "MissingContext".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, - type: "schema:MediaManipulationRatingEnumeration".freeze + type: "http://schema.org/MediaManipulationRatingEnumeration".freeze term :MixedEventAttendanceMode, comment: "MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "MixedEventAttendanceMode".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "schema:EventAttendanceModeEnumeration".freeze + type: "http://schema.org/EventAttendanceModeEnumeration".freeze term :MixtapeAlbum, comment: "MixtapeAlbum.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumProductionType".freeze term :Monday, comment: "The day of the week between Sunday and Tuesday.".freeze, + "http://schema.org/sameAs": "http://www.wikidata.org/entity/Q105".freeze, label: "Monday".freeze, - "schema:sameAs": "http://www.wikidata.org/entity/Q105".freeze, - type: "schema:DayOfWeek".freeze + type: "http://schema.org/DayOfWeek".freeze term :MultiCenterTrial, comment: "A trial that takes place at multiple centers.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MultiCenterTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalTrialDesign".freeze + type: "http://schema.org/MedicalTrialDesign".freeze term :MultiPlayer, comment: "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.".freeze, label: "MultiPlayer".freeze, - type: "schema:GamePlayMode".freeze + type: "http://schema.org/GamePlayMode".freeze term :Musculoskeletal, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Musculoskeletal".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :MusculoskeletalExam, comment: "Musculoskeletal system clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "MusculoskeletalExam".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :Neck, comment: "Neck assessment with clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Neck".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :Neuro, comment: "Neurological system clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Neuro".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :Neurologic, comment: "A specific branch of medical science that studies the nerves and nervous system and its respective disease states.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Neurologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :NewCondition, comment: "Indicates that the item is new.".freeze, label: "NewCondition".freeze, - type: "schema:OfferItemCondition".freeze + type: "http://schema.org/OfferItemCondition".freeze term :NoninvasiveProcedure, comment: "A type of medical procedure that involves noninvasive techniques.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "NoninvasiveProcedure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalProcedureType".freeze + type: "http://schema.org/MedicalProcedureType".freeze term :Nonprofit501a, comment: "Nonprofit501a: Non-profit type referring to Farmers’ Cooperative Associations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501a".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c1".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c10, comment: "Nonprofit501c10: Non-profit type referring to Domestic Fraternal Societies and Associations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c10".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c11, comment: "Nonprofit501c11: Non-profit type referring to Teachers' Retirement Fund Associations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c11".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c12".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c13, comment: "Nonprofit501c13: Non-profit type referring to Cemetery Companies.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c13".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c14, comment: "Nonprofit501c14: Non-profit type referring to State-Chartered Credit Unions, Mutual Reserve Funds.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c14".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c15, comment: "Nonprofit501c15: Non-profit type referring to Mutual Insurance Companies or Associations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c15".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c16, comment: "Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c16".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c17, comment: "Nonprofit501c17: Non-profit type referring to Supplemental Unemployment Benefit Trusts.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c17".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c18, comment: "Nonprofit501c18: Non-profit type referring to Employee Funded Pension Trust (created before 25 June 1959).".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c18".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c19, comment: "Nonprofit501c19: Non-profit type referring to Post or Organization of Past or Present Members of the Armed Forces.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c19".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c2, comment: "Nonprofit501c2: Non-profit type referring to Title-holding Corporations for Exempt Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c2".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c20, comment: "Nonprofit501c20: Non-profit type referring to Group Legal Services Plan Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c20".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c21, comment: "Nonprofit501c21: Non-profit type referring to Black Lung Benefit Trusts.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c21".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c22, comment: "Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c22".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c23, comment: "Nonprofit501c23: Non-profit type referring to Veterans Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c23".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c24, comment: "Nonprofit501c24: Non-profit type referring to Section 4049 ERISA Trusts.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c24".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c25, comment: "Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c25".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c26, comment: "Nonprofit501c26: Non-profit type referring to State-Sponsored Organizations Providing Health Coverage for High-Risk Individuals.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c26".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c27, comment: "Nonprofit501c27: Non-profit type referring to State-Sponsored Workers' Compensation Reinsurance Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c27".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c28, comment: "Nonprofit501c28: Non-profit type referring to National Railroad Retirement Investment Trusts.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c28".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c3".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c4, comment: "Nonprofit501c4: Non-profit type referring to Civic Leagues, Social Welfare Organizations, and Local Associations of Employees.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c4".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c5, comment: "Nonprofit501c5: Non-profit type referring to Labor, Agricultural and Horticultural Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c5".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c6, comment: "Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c6".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c7, comment: "Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c7".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c8, comment: "Nonprofit501c8: Non-profit type referring to Fraternal Beneficiary Societies and Associations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c8".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501c9, comment: "Nonprofit501c9: Non-profit type referring to Voluntary Employee Beneficiary Associations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c9".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501d, comment: "Nonprofit501d: Non-profit type referring to Religious and Apostolic Associations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501d".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501e, comment: "Nonprofit501e: Non-profit type referring to Cooperative Hospital Service Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501e".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501f, comment: "Nonprofit501f: Non-profit type referring to Cooperative Service Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501f".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501k, comment: "Nonprofit501k: Non-profit type referring to Child Care Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501k".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501n, comment: "Nonprofit501n: Non-profit type referring to Charitable Risk Pools.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501n".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit501q, comment: "Nonprofit501q: Non-profit type referring to Credit Counseling Organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501q".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :Nonprofit527, comment: "Nonprofit527: Non-profit type referring to Political organizations.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit527".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:USNonprofitType".freeze + type: "http://schema.org/USNonprofitType".freeze term :NonprofitANBI, comment: "NonprofitANBI: Non-profit type referring to a Public Benefit Organization (NL).".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "NonprofitANBI".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:NLNonprofitType".freeze + type: "http://schema.org/NLNonprofitType".freeze term :NonprofitSBBI, comment: "NonprofitSBBI: Non-profit type referring to a Social Interest Promoting Institution (NL).".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "NonprofitSBBI".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:NLNonprofitType".freeze + type: "http://schema.org/NLNonprofitType".freeze term :Nose, comment: "Nose function assessment with clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Nose".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :NotInForce, comment: "Indicates that a legislation is currently not in force.".freeze, exactMatch: "http://data.europa.eu/eli/ontology#InForce-notInForce".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "NotInForce".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 + type: "http://schema.org/LegalForceStatus".freeze term :NotYetRecruiting, comment: "Not yet recruiting.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "NotYetRecruiting".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :Nursing, comment: "A health profession of a person formally educated and trained in the care of the sick or infirm person.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Nursing".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :OTC, comment: "The character of a medical substance, typically a medicine, of being available over the counter or not.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "OTC".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugPrescriptionStatus".freeze + type: "http://schema.org/DrugPrescriptionStatus".freeze term :Observational, comment: "An observational study design.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Observational".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalObservationalStudyDesign".freeze + type: "http://schema.org/MedicalObservationalStudyDesign".freeze term :Obstetric, comment: "A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Obstetric".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :OccupationalActivity, comment: "Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "OccupationalActivity".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalActivityCategory".freeze + type: "http://schema.org/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, exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-official".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "OfficialLegalValue".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 + type: "http://schema.org/LegalValueLevel".freeze term :OfflineEventAttendanceMode, comment: "OfflineEventAttendanceMode - an event that is primarily conducted offline. ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "OfflineEventAttendanceMode".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "schema:EventAttendanceModeEnumeration".freeze + type: "http://schema.org/EventAttendanceModeEnumeration".freeze term :OfflinePermanently, comment: "Game server status: OfflinePermanently. Server is offline and not available.".freeze, label: "OfflinePermanently".freeze, - type: "schema:GameServerStatus".freeze + type: "http://schema.org/GameServerStatus".freeze term :OfflineTemporarily, comment: "Game server status: OfflineTemporarily. Server is offline now but it can be online soon.".freeze, label: "OfflineTemporarily".freeze, - type: "schema:GameServerStatus".freeze + type: "http://schema.org/GameServerStatus".freeze term :OnSitePickup, comment: "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.".freeze, label: "OnSitePickup".freeze, - type: "schema:DeliveryMethod".freeze + type: "http://schema.org/DeliveryMethod".freeze term :Oncologic, comment: "A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Oncologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :OneTimePayments, comment: "OneTimePayments: this is a benefit for one-time payments for individuals.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "OneTimePayments".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schema:GovernmentBenefitsType".freeze + type: "http://schema.org/GovernmentBenefitsType".freeze term :Online, comment: "Game server status: Online. Server is available.".freeze, label: "Online".freeze, - type: "schema:GameServerStatus".freeze + type: "http://schema.org/GameServerStatus".freeze term :OnlineEventAttendanceMode, comment: "OnlineEventAttendanceMode - an event that is primarily conducted online. ".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "OnlineEventAttendanceMode".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "schema:EventAttendanceModeEnumeration".freeze + type: "http://schema.org/EventAttendanceModeEnumeration".freeze term :OnlineFull, comment: "Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.".freeze, label: "OnlineFull".freeze, - type: "schema:GameServerStatus".freeze + type: "http://schema.org/GameServerStatus".freeze term :OnlineOnly, comment: "Indicates that the item is available only online.".freeze, label: "OnlineOnly".freeze, - type: "schema:ItemAvailability".freeze + type: "http://schema.org/ItemAvailability".freeze term :OpenTrial, comment: "A trial design in which the researcher knows the full details of the treatment, and so does the patient.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "OpenTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalTrialDesign".freeze + type: "http://schema.org/MedicalTrialDesign".freeze term :Optometric, comment: "The science or practice of testing visual acuity and prescribing corrective lenses.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Optometric".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :OrderCancelled, comment: "OrderStatus representing cancellation of an order.".freeze, label: "OrderCancelled".freeze, - type: "schema:OrderStatus".freeze + type: "http://schema.org/OrderStatus".freeze term :OrderDelivered, comment: "OrderStatus representing successful delivery of an order.".freeze, label: "OrderDelivered".freeze, - type: "schema:OrderStatus".freeze + type: "http://schema.org/OrderStatus".freeze term :OrderInTransit, comment: "OrderStatus representing that an order is in transit.".freeze, label: "OrderInTransit".freeze, - type: "schema:OrderStatus".freeze + type: "http://schema.org/OrderStatus".freeze term :OrderPaymentDue, comment: "OrderStatus representing that payment is due on an order.".freeze, label: "OrderPaymentDue".freeze, - type: "schema:OrderStatus".freeze + type: "http://schema.org/OrderStatus".freeze term :OrderPickupAvailable, comment: "OrderStatus representing availability of an order for pickup.".freeze, label: "OrderPickupAvailable".freeze, - type: "schema:OrderStatus".freeze + type: "http://schema.org/OrderStatus".freeze term :OrderProblem, comment: "OrderStatus representing that there is a problem with the order.".freeze, label: "OrderProblem".freeze, - type: "schema:OrderStatus".freeze + type: "http://schema.org/OrderStatus".freeze term :OrderProcessing, comment: "OrderStatus representing that an order is being processed.".freeze, label: "OrderProcessing".freeze, - type: "schema:OrderStatus".freeze + type: "http://schema.org/OrderStatus".freeze term :OrderReturned, comment: "OrderStatus representing that an order has been returned.".freeze, label: "OrderReturned".freeze, - type: "schema:OrderStatus".freeze + type: "http://schema.org/OrderStatus".freeze term :OriginalShippingFees, comment: "OriginalShippingFees ...".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "OriginalShippingFees".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:ReturnFeesEnumeration".freeze + type: "http://schema.org/ReturnFeesEnumeration".freeze term :Osteopathic, comment: "A system of medicine focused on promoting the body's innate ability to heal itself.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Osteopathic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicineSystem".freeze + type: "http://schema.org/MedicineSystem".freeze term :Otolaryngologic, comment: "A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Otolaryngologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :OutOfStock, comment: "Indicates that the item is out of stock.".freeze, label: "OutOfStock".freeze, - type: "schema:ItemAvailability".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "OverviewHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :PET, comment: "Positron emission tomography imaging.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PET".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalImagingTechnique".freeze + type: "http://schema.org/MedicalImagingTechnique".freeze term :PaidLeave, comment: "PaidLeave: this is a benefit for paid leave.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "PaidLeave".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schema:GovernmentBenefitsType".freeze + type: "http://schema.org/GovernmentBenefitsType".freeze term :Paperback, comment: "Book format: Paperback.".freeze, label: "Paperback".freeze, - type: "schema:BookFormatType".freeze + type: "http://schema.org/BookFormatType".freeze term :ParcelService, comment: "A private parcel service as the delivery mode available for a certain offer.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ".freeze, + "http://schema.org/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, - type: "schema:DeliveryMethod".freeze + type: "http://schema.org/DeliveryMethod".freeze term :ParentalSupport, comment: "ParentalSupport: this is a benefit for parental support.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "ParentalSupport".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schema:GovernmentBenefitsType".freeze + type: "http://schema.org/GovernmentBenefitsType".freeze term :ParkingMap, comment: "A parking map.".freeze, label: "ParkingMap".freeze, - type: "schema:MapCategoryType".freeze + type: "http://schema.org/MapCategoryType".freeze term :PartiallyInForce, comment: "Indicates that parts of the legislation are in force, and parts are not.".freeze, exactMatch: "http://data.europa.eu/eli/ontology#InForce-partiallyInForce".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "PartiallyInForce".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 + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Pathology".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "PatientExperienceHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :PaymentAutomaticallyApplied, comment: "An automatic payment system is in place and will be used.".freeze, label: "PaymentAutomaticallyApplied".freeze, - type: "schema:PaymentStatusType".freeze + type: "http://schema.org/PaymentStatusType".freeze term :PaymentComplete, comment: "The payment has been received and processed.".freeze, label: "PaymentComplete".freeze, - type: "schema:PaymentStatusType".freeze + type: "http://schema.org/PaymentStatusType".freeze term :PaymentDeclined, comment: "The payee received the payment, but it was declined for some reason.".freeze, label: "PaymentDeclined".freeze, - type: "schema:PaymentStatusType".freeze + type: "http://schema.org/PaymentStatusType".freeze term :PaymentDue, comment: "The payment is due, but still within an acceptable time to be received.".freeze, label: "PaymentDue".freeze, - type: "schema:PaymentStatusType".freeze + type: "http://schema.org/PaymentStatusType".freeze term :PaymentPastDue, comment: "The payment is due and considered late.".freeze, label: "PaymentPastDue".freeze, - type: "schema:PaymentStatusType".freeze + type: "http://schema.org/PaymentStatusType".freeze term :Pediatric, comment: "A specific branch of medical science that specializes in the care of infants, children and adolescents.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Pediatric".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :PercutaneousProcedure, comment: "A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PercutaneousProcedure".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalProcedureType".freeze + type: "http://schema.org/MedicalProcedureType".freeze term :PharmacySpecialty, comment: "The practice or art and science of preparing and dispensing drugs and medicines.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PharmacySpecialty".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :Physiotherapy, comment: "The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery..".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Physiotherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :PlaceboControlledTrial, comment: "A placebo-controlled trial design.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PlaceboControlledTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalTrialDesign".freeze + type: "http://schema.org/MedicalTrialDesign".freeze term :PlasticSurgery, comment: "A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PlasticSurgery".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :Podiatric, comment: "Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Podiatric".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :PotentialActionStatus, comment: "A description of an action that is supported.".freeze, label: "PotentialActionStatus".freeze, - type: "schema:ActionStatusType".freeze + type: "http://schema.org/ActionStatusType".freeze term :PreOrder, comment: "Indicates that the item is available for pre-order.".freeze, label: "PreOrder".freeze, - type: "schema:ItemAvailability".freeze + type: "http://schema.org/ItemAvailability".freeze term :PreSale, comment: "Indicates that the item is available for ordering and delivery before general availability.".freeze, label: "PreSale".freeze, - type: "schema:ItemAvailability".freeze + type: "http://schema.org/ItemAvailability".freeze term :PrescriptionOnly, comment: "Available by prescription only.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PrescriptionOnly".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugPrescriptionStatus".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "PreventionHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PrimaryCare".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :ProductReturnFiniteReturnWindow, comment: "ProductReturnFiniteReturnWindow: there is a finite window for product returns.".freeze, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "http://schema.org/supersededBy": "http://schema.org/MerchantReturnFiniteReturnWindow".freeze, label: "ProductReturnFiniteReturnWindow".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 + type: "http://schema.org/ProductReturnEnumeration".freeze term :ProductReturnNotPermitted, comment: "ProductReturnNotPermitted: product returns are not permitted.".freeze, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "http://schema.org/supersededBy": "http://schema.org/MerchantReturnNotPermitted".freeze, label: "ProductReturnNotPermitted".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 + type: "http://schema.org/ProductReturnEnumeration".freeze term :ProductReturnUnlimitedWindow, comment: "ProductReturnUnlimitedWindow: there is an unlimited window for product returns.".freeze, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "http://schema.org/supersededBy": "http://schema.org/MerchantReturnUnlimitedWindow".freeze, label: "ProductReturnUnlimitedWindow".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 + type: "http://schema.org/ProductReturnEnumeration".freeze term :ProductReturnUnspecified, comment: "ProductReturnUnspecified: a product return policy is not specified here.".freeze, + "http://schema.org/isPartOf": "http://attic.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "http://schema.org/supersededBy": "http://schema.org/MerchantReturnUnspecified".freeze, label: "ProductReturnUnspecified".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 + type: "http://schema.org/ProductReturnEnumeration".freeze term :PrognosisHealthAspect, comment: "Typical progression and happenings of life course of the topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "PrognosisHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Psychiatric".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :PublicHealth, comment: "Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "PublicHealth".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalBusiness".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalBusiness".freeze, + type: "http://schema.org/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, + "http://schema.org/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 + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Pulmonary".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :Radiography, comment: "Radiography is an imaging technique that uses electromagnetic radiation other than visible light, especially X-rays, to view the internal structure of a non-uniformly composed and opaque object such as the human body.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Radiography".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: ["schema:MedicalImagingTechnique".freeze, "schema:MedicalSpecialty".freeze] + type: ["http://schema.org/MedicalImagingTechnique".freeze, "http://schema.org/MedicalSpecialty".freeze] term :RandomizedTrial, comment: "A randomized trial design.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "RandomizedTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalTrialDesign".freeze + type: "http://schema.org/MedicalTrialDesign".freeze term :ReadPermission, comment: "Permission to read or view the document.".freeze, label: "ReadPermission".freeze, - type: "schema:DigitalDocumentPermissionType".freeze + type: "http://schema.org/DigitalDocumentPermissionType".freeze term :RearWheelDriveConfiguration, comment: "Real-wheel drive is a transmission layout where the engine drives the rear wheels.".freeze, + "http://schema.org/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 + type: "http://schema.org/DriveWheelConfigurationValue".freeze term :Recruiting, comment: "Recruiting participants.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Recruiting".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :RefurbishedCondition, comment: "Indicates that the item is refurbished.".freeze, label: "RefurbishedCondition".freeze, - type: "schema:OfferItemCondition".freeze + type: "http://schema.org/OfferItemCondition".freeze term :Registry, comment: "A registry-based study design.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Registry".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalObservationalStudyDesign".freeze + type: "http://schema.org/MedicalObservationalStudyDesign".freeze term :ReimbursementCap, comment: "The drug's cost represents the maximum reimbursement paid by an insurer for the drug.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "ReimbursementCap".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugCostCategory".freeze + type: "http://schema.org/DrugCostCategory".freeze term :RelatedTopicsHealthAspect, comment: "Other prominent or relevant topics tied to the main topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "RelatedTopicsHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :RemixAlbum, comment: "RemixAlbum.".freeze, + "http://schema.org/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 + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Renal".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :RentalVehicleUsage, comment: "Indicates the usage of the vehicle as a rental car.".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/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 + type: "http://schema.org/CarUsageType".freeze term :ReservationCancelled, comment: "The status for a previously confirmed reservation that is now cancelled.".freeze, label: "ReservationCancelled".freeze, - type: "schema:ReservationStatusType".freeze + type: "http://schema.org/ReservationStatusType".freeze term :ReservationConfirmed, comment: "The status of a confirmed reservation.".freeze, label: "ReservationConfirmed".freeze, - type: "schema:ReservationStatusType".freeze + type: "http://schema.org/ReservationStatusType".freeze term :ReservationHold, comment: "The status of a reservation on hold pending an update like credit card number or flight changes.".freeze, label: "ReservationHold".freeze, - type: "schema:ReservationStatusType".freeze + type: "http://schema.org/ReservationStatusType".freeze term :ReservationPending, comment: "The status of a reservation when a request has been sent, but not confirmed.".freeze, label: "ReservationPending".freeze, - type: "schema:ReservationStatusType".freeze + type: "http://schema.org/ReservationStatusType".freeze term :RespiratoryTherapy, comment: "The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "RespiratoryTherapy".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - subClassOf: "schema:MedicalTherapy".freeze, - type: "schema:MedicalSpecialty".freeze + subClassOf: "http://schema.org/MedicalTherapy".freeze, + type: "http://schema.org/MedicalSpecialty".freeze term :RestockingFees, comment: "RestockingFees ...".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "RestockingFees".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:ReturnFeesEnumeration".freeze + type: "http://schema.org/ReturnFeesEnumeration".freeze term :ResultsAvailable, comment: "Results are available.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "ResultsAvailable".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :ResultsNotAvailable, comment: "Results are not available.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "ResultsNotAvailable".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :Retail, comment: "The drug's cost represents the retail cost of the drug.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Retail".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugCostCategory".freeze + type: "http://schema.org/DrugCostCategory".freeze term :ReturnShippingFees, comment: "ReturnShippingFees ...".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ReturnShippingFees".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:ReturnFeesEnumeration".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Rheumatologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :RightHandDriving, comment: "The steering position is on the right side of the vehicle (viewed from the main direction of driving).".freeze, + "http://schema.org/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 + type: "http://schema.org/SteeringPositionValue".freeze term :RisksOrComplicationsHealthAspect, comment: "Information about the risk factors and possible complications that may follow a topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "RisksOrComplicationsHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :RsvpResponseMaybe, comment: "The invitee may or may not attend.".freeze, label: "RsvpResponseMaybe".freeze, - type: "schema:RsvpResponseType".freeze + type: "http://schema.org/RsvpResponseType".freeze term :RsvpResponseNo, comment: "The invitee will not attend.".freeze, label: "RsvpResponseNo".freeze, - type: "schema:RsvpResponseType".freeze + type: "http://schema.org/RsvpResponseType".freeze term :RsvpResponseYes, comment: "The invitee will attend.".freeze, label: "RsvpResponseYes".freeze, - type: "schema:RsvpResponseType".freeze + type: "http://schema.org/RsvpResponseType".freeze term :SRP, comment: "Represents the suggested retail price (\"SRP\") of an offered product.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "SRP".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schema:PriceTypeEnumeration".freeze + type: "http://schema.org/PriceTypeEnumeration".freeze term :SalePrice, comment: "Represents a sale price (usually active for a limited period) of an offered product.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "SalePrice".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schema:PriceTypeEnumeration".freeze + type: "http://schema.org/PriceTypeEnumeration".freeze term :Saturday, comment: "The day of the week between Friday and Sunday.".freeze, + "http://schema.org/sameAs": "http://www.wikidata.org/entity/Q131".freeze, label: "Saturday".freeze, - "schema:sameAs": "http://www.wikidata.org/entity/Q131".freeze, - type: "schema:DayOfWeek".freeze + type: "http://schema.org/DayOfWeek".freeze term :ScreeningHealthAspect, comment: "Content about how to screen or further filter a topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "ScreeningHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :SeatingMap, comment: "A seating map.".freeze, label: "SeatingMap".freeze, - type: "schema:MapCategoryType".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SeeDoctorHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SelfCareHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :SideEffectsHealthAspect, comment: "Side effects that can be observed from the usage of the topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SideEffectsHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "SingleBlindedTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalTrialDesign".freeze + type: "http://schema.org/MedicalTrialDesign".freeze term :SingleCenterTrial, comment: "A trial that takes place at a single center.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "SingleCenterTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalTrialDesign".freeze + type: "http://schema.org/MedicalTrialDesign".freeze term :SinglePlayer, comment: "Play mode: SinglePlayer. Which is played by a lone player.".freeze, label: "SinglePlayer".freeze, - type: "schema:GamePlayMode".freeze + type: "http://schema.org/GamePlayMode".freeze term :SingleRelease, comment: "SingleRelease.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumReleaseType".freeze term :Skin, comment: "Skin assessment with clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Skin".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :SoldOut, comment: "Indicates that the item has sold out.".freeze, label: "SoldOut".freeze, - type: "schema:ItemAvailability".freeze + type: "http://schema.org/ItemAvailability".freeze term :SoundtrackAlbum, comment: "SoundtrackAlbum.".freeze, + "http://schema.org/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 + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "SpeechPathology".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :SpokenWordAlbum, comment: "SpokenWordAlbum.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumProductionType".freeze term :StagesHealthAspect, comment: "Stages that can be observed from a topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "StagesHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :StoreCreditRefund, comment: "A StoreCreditRefund ...".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "StoreCreditRefund".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schema:RefundTypeEnumeration".freeze + type: "http://schema.org/RefundTypeEnumeration".freeze term :StrengthTraining, comment: "Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "StrengthTraining".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalActivityCategory".freeze + type: "http://schema.org/PhysicalActivityCategory".freeze term :StudioAlbum, comment: "StudioAlbum.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicAlbumProductionType".freeze term :Subscription, comment: "Represents the subscription pricing component of the total price for an offered product".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "Subscription".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schema:PriceComponentTypeEnumeration".freeze + type: "http://schema.org/PriceComponentTypeEnumeration".freeze term :Sunday, comment: "The day of the week between Saturday and Monday.".freeze, + "http://schema.org/sameAs": "http://www.wikidata.org/entity/Q132".freeze, label: "Sunday".freeze, - "schema:sameAs": "http://www.wikidata.org/entity/Q132".freeze, - type: "schema:DayOfWeek".freeze + type: "http://schema.org/DayOfWeek".freeze term :Surgical, comment: "A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Surgical".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :Suspended, comment: "Suspended.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Suspended".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :SymptomsHealthAspect, comment: "Symptoms or related symptoms of a Topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SymptomsHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :TaxiVehicleUsage, comment: "Indicates the usage of the car as a taxi.".freeze, + "http://schema.org/isPartOf": "http://auto.schema.org".freeze, + "http://schema.org/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 + type: "http://schema.org/CarUsageType".freeze term :Terminated, comment: "Terminated.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Terminated".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :Therapeutic, comment: "A medical device used for therapeutic purposes.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Therapeutic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalDevicePurpose".freeze + type: "http://schema.org/MedicalDevicePurpose".freeze term :Throat, comment: "Throat assessment with clinical examination.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Throat".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:PhysicalExam".freeze + type: "http://schema.org/PhysicalExam".freeze term :Thursday, comment: "The day of the week between Wednesday and Friday.".freeze, + "http://schema.org/sameAs": "http://www.wikidata.org/entity/Q129".freeze, label: "Thursday".freeze, - "schema:sameAs": "http://www.wikidata.org/entity/Q129".freeze, - type: "schema:DayOfWeek".freeze + type: "http://schema.org/DayOfWeek".freeze term :TollFree, comment: "The associated telephone number is toll free.".freeze, label: "TollFree".freeze, - type: "schema:ContactPointOption".freeze + type: "http://schema.org/ContactPointOption".freeze term :Toxicologic, comment: "A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Toxicologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :TraditionalChinese, comment: "A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "TraditionalChinese".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicineSystem".freeze + type: "http://schema.org/MedicineSystem".freeze term :TransitMap, comment: "A transit map.".freeze, label: "TransitMap".freeze, - type: "schema:MapCategoryType".freeze + type: "http://schema.org/MapCategoryType".freeze term :TreatmentsHealthAspect, comment: "Treatments or related therapies for a Topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "TreatmentsHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "TripleBlindedTrial".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalTrialDesign".freeze + type: "http://schema.org/MedicalTrialDesign".freeze term :True, comment: "The boolean value true.".freeze, label: "True".freeze, - type: "schema:Boolean".freeze + type: "http://schema.org/Boolean".freeze term :Tuesday, comment: "The day of the week between Monday and Wednesday.".freeze, + "http://schema.org/sameAs": "http://www.wikidata.org/entity/Q127".freeze, label: "Tuesday".freeze, - "schema:sameAs": "http://www.wikidata.org/entity/Q127".freeze, - type: "schema:DayOfWeek".freeze + type: "http://schema.org/DayOfWeek".freeze term :TypesHealthAspect, comment: "Categorization and other types related to a topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "TypesHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :UKTrust, comment: "UKTrust: Non-profit type referring to a UK trust.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "UKTrust".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:UKNonprofitType".freeze + type: "http://schema.org/UKNonprofitType".freeze term :Ultrasound, comment: "Ultrasound imaging.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Ultrasound".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalImagingTechnique".freeze + type: "http://schema.org/MedicalImagingTechnique".freeze term :UnemploymentSupport, comment: "UnemploymentSupport: this is a benefit for unemployment support.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "UnemploymentSupport".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schema:GovernmentBenefitsType".freeze + type: "http://schema.org/GovernmentBenefitsType".freeze term :UnincorporatedAssociationCharity, comment: "UnincorporatedAssociationCharity: Non-profit type referring to a charitable company that is not incorporated (UK).".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "UnincorporatedAssociationCharity".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schema:UKNonprofitType".freeze + type: "http://schema.org/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, exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-unofficial".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "UnofficialLegalValue".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 + type: "http://schema.org/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, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Urologic".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalSpecialty".freeze + type: "http://schema.org/MedicalSpecialty".freeze term :UsageOrScheduleHealthAspect, comment: "Content about how, when, frequency and dosage of a topic.".freeze, + "http://schema.org/isPartOf": "http://pending.schema.org".freeze, + "http://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "UsageOrScheduleHealthAspect".freeze, - "schema:isPartOf": "http://pending.schema.org".freeze, - "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schema:HealthAspectEnumeration".freeze + type: "http://schema.org/HealthAspectEnumeration".freeze term :UsedCondition, comment: "Indicates that the item is used.".freeze, label: "UsedCondition".freeze, - type: "schema:OfferItemCondition".freeze + type: "http://schema.org/OfferItemCondition".freeze term :VeganDiet, comment: "A diet exclusive of all animal products.".freeze, label: "VeganDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :VegetarianDiet, comment: "A diet exclusive of animal meat.".freeze, label: "VegetarianDiet".freeze, - type: "schema:RestrictedDiet".freeze + type: "http://schema.org/RestrictedDiet".freeze term :VenueMap, comment: "A venue map (e.g. for malls, auditoriums, museums, etc.).".freeze, label: "VenueMap".freeze, - type: "schema:MapCategoryType".freeze + type: "http://schema.org/MapCategoryType".freeze term :VinylFormat, comment: "VinylFormat.".freeze, + "http://schema.org/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 + type: "http://schema.org/MusicReleaseFormatType".freeze term :Wednesday, comment: "The day of the week between Tuesday and Thursday.".freeze, + "http://schema.org/sameAs": "http://www.wikidata.org/entity/Q128".freeze, label: "Wednesday".freeze, - "schema:sameAs": "http://www.wikidata.org/entity/Q128".freeze, - type: "schema:DayOfWeek".freeze + type: "http://schema.org/DayOfWeek".freeze term :WesternConventional, comment: "The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "WesternConventional".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicineSystem".freeze + type: "http://schema.org/MedicineSystem".freeze term :Wholesale, comment: "The drug's cost represents the wholesale acquisition cost of the drug.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Wholesale".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:DrugCostCategory".freeze + type: "http://schema.org/DrugCostCategory".freeze term :Withdrawn, comment: "Withdrawn.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "Withdrawn".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalStudyStatus".freeze + type: "http://schema.org/MedicalStudyStatus".freeze term :WritePermission, comment: "Permission to write or edit the document.".freeze, label: "WritePermission".freeze, - type: "schema:DigitalDocumentPermissionType".freeze + type: "http://schema.org/DigitalDocumentPermissionType".freeze term :XRay, comment: "X-ray imaging.".freeze, + "http://schema.org/isPartOf": "http://health-lifesci.schema.org".freeze, label: "XRay".freeze, - "schema:isPartOf": "http://health-lifesci.schema.org".freeze, - type: "schema:MedicalImagingTechnique".freeze + type: "http://schema.org/MedicalImagingTechnique".freeze term :ZoneBoardingPolicy, comment: "The airline boards by zones of the plane.".freeze, label: "ZoneBoardingPolicy".freeze, - type: "schema:BoardingPolicyType".freeze + type: "http://schema.org/BoardingPolicyType".freeze end end diff --git a/lib/rdf/vocab/schemas.rb b/lib/rdf/vocab/schemas.rb index 38baf98..517a0bb 100644 --- a/lib/rdf/vocab/schemas.rb +++ b/lib/rdf/vocab/schemas.rb @@ -3,26800 +3,16331 @@ # This file generated automatically using rdf vocabulary format from https://schema.org/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class SCHEMAS < RDF::StrictVocabulary - # # A radio channel that uses AM. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AMRadioChannel - # - # # Reference documentation for application programming interfaces (APIs). - # # @return [RDF::Vocabulary::Term] - # attr_reader :APIReference - # - # # Web page type: About page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AboutPage - # - # # The act of committing to/adopting an object.\n\nRelated actions:\n\n* [[RejectAction]]: The antonym of AcceptAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AcceptAction - # - # # An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement. 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Accommodation - # - # # Accountancy business.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :AccountingService - # - # # The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AchieveAction - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Action - # - # # A set of requirements that a must be fulfilled in order to perform an Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActionAccessSpecification - # - # # The status of an Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActionStatusType - # - # # The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActivateAction - # - # # The act of editing by adding an object to a collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AddAction - # - # # A geographical region, typically under the jurisdiction of a particular government. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdministrativeArea - # - # # An adult entertainment establishment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdultEntertainment - # - # # An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AdvertiserContentArticle - # - # # When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\n\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AggregateOffer - # - # # The average rating based on multiple ratings or reviews. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AggregateRating - # - # # The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AgreeAction - # - # # An organization that provides flights for passengers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Airline - # - # # An airport. - # # @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. 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 - # - # # The act of organizing tasks/objects/events by associating resources to it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AllocateAction - # - # # A creative work with a visual storytelling format intended to be viewed online, particularly on mobile devices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmpStory - # - # # An amusement park. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AmusementPark - # - # # An AnalysisNewsArticle is a [[NewsArticle]] that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnalysisNewsArticle - # - # # Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnatomicalStructure - # - # # An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnatomicalSystem - # - # # Animal shelter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnimalShelter - # - # # An answer offered to a question; perhaps correct, perhaps opinionated or wrong. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Answer - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Apartment - # - # # Residence type: Apartment complex. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ApartmentComplex - # - # # The act of inserting at the end if an ordered collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AppendAction - # - # # The act of registering to an organization/service without the guarantee to receive it.\n\nRelated actions:\n\n* [[RegisterAction]]: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ApplyAction - # - # # An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ApprovedIndication - # - # # Aquarium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Aquarium - # - # # An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArchiveComponent - # - # # An organization with archival holdings. An organization which keeps and preserves archival material and typically makes it accessible to the public. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArchiveOrganization - # - # # The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArriveAction - # - # # An art gallery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArtGallery - # - # # A type of blood vessel that specifically carries blood away from the heart. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Artery - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Article - # - # # The act of posing a question / favor to someone.\n\nRelated actions:\n\n* [[ReplyAction]]: Appears generally as a response to AskAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AskAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AskPublicNewsArticle - # - # # The act of forming one's opinion, reaction or sentiment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AssessAction - # - # # The act of allocating an action/event/task to some destination (someone or something). - # # @return [RDF::Vocabulary::Term] - # attr_reader :AssignAction - # - # # A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Atlas - # - # # Professional service: Attorney. \n\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Attorney - # - # # Intended audience for an item, i.e. the group for whom the item was created. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Audience - # - # # An audio file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioObject - # - # # An audiobook. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Audiobook - # - # # The act of granting permission to an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AuthorizeAction - # - # # Auto body shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoBodyShop - # - # # An car dealership. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoDealer - # - # # An auto parts store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoPartsStore - # - # # A car rental business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoRental - # - # # Car repair business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoRepair - # - # # A car wash business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutoWash - # - # # ATM/cash machine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutomatedTeller - # - # # Car repair, sales, or parts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AutomotiveBusiness - # - # # 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](https://en.wikipedia.org/wiki/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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BackgroundNewsArticle - # - # # Pathogenic bacteria that cause bacterial infection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bacteria - # - # # A bakery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bakery - # - # # A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BankAccount - # - # # Bank or credit union. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BankOrCreditUnion - # - # # A bar or pub. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BarOrPub - # - # # An image of a visual machine-readable code such as a barcode or QR code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Barcode - # - # # Beach. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Beach - # - # # Beauty salon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BeautySalon - # - # # Bed and breakfast.

See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BedAndBreakfast - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :BedDetails - # - # # A type of bed. This is used for indicating the bed or beds available in an accommodation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BedType - # - # # The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.\n\nRelated actions:\n\n* [[FollowAction]]: Unlike FollowAction, BefriendAction implies that the connection is reciprocal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BefriendAction - # - # # A bike store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BikeStore - # - # # A blog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Blog - # - # # A blog post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BlogPosting - # - # # A medical test performed on a sample of a patient's blood. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BloodTest - # - # # A type of boarding policy used by an airline. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoardingPolicyType - # - # # A reservation for boat travel. Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoatReservation - # - # # A terminal for boats, ships, and other water vessels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoatTerminal - # - # # A trip on a commercial ferry line. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoatTrip - # - # # A body of water, such as a sea, ocean, or lake. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BodyOfWater - # - # # Rigid connective tissue that comprises up the skeletal structure of the human body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bone - # - # # A book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Book - # - # # The publication format of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookFormatType - # - # # A series of books. Included books can be indicated with the hasPart property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookSeries - # - # # A bookstore. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookStore - # - # # An agent bookmarks/flags/labels/tags/marks an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookmarkAction - # - # # Boolean: True or False. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Boolean - # - # # The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\n\nRelated actions:\n\n* [[LendAction]]: Reciprocal of BorrowAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BorrowAction - # - # # A bowling alley. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BowlingAlley - # - # # Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BrainStructure - # - # # A brand is a name used by an organization or business person for labeling a product, product group, or similar. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brand - # - # # A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\n\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the "top" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BreadcrumbList - # - # # Brewery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Brewery - # - # # A bridge. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Bridge - # - # # A unique instance of a BroadcastService on a CableOrSatelliteService lineup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastChannel - # - # # An over the air or online broadcast event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastEvent - # - # # The frequency in MHz and the modulation used for a particular BroadcastService. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastFrequencySpecification - # - # # A delivery service through which content is provided via broadcast over the air or online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastService - # - # # An account that allows an investor to deposit funds and place investment orders with a licensed broker or brokerage firm. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BrokerageAccount - # - # # A Buddhist temple. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BuddhistTemple - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusOrCoach - # - # # A reservation for bus travel. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusReservation - # - # # A bus station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusStation - # - # # A bus stop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusStop - # - # # A trip on a commercial bus line. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusTrip - # - # # A set of characteristics belonging to businesses, e.g. who compose an item's target audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessAudience - # - # # A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#Business\n* http://purl.org/goodrelations/v1#Enduser\n* http://purl.org/goodrelations/v1#PublicInstitution\n* http://purl.org/goodrelations/v1#Reseller - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessEntityType - # - # # Event type: Business event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessEvent - # - # # The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#ConstructionInstallation\n* http://purl.org/goodrelations/v1#Dispose\n* http://purl.org/goodrelations/v1#LeaseOut\n* http://purl.org/goodrelations/v1#Maintain\n* http://purl.org/goodrelations/v1#ProvideService\n* http://purl.org/goodrelations/v1#Repair\n* http://purl.org/goodrelations/v1#Sell\n* http://purl.org/goodrelations/v1#Buy - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessFunction - # - # # The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BuyAction - # - # # A CDCPMDRecord is a data structure representing a record in a CDC tabular data format used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative definitions used as the source here. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CDCPMDRecord - # - # # A service which provides access to media programming like TV or radio. Access may be via cable or satellite. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CableOrSatelliteService - # - # # A cafe or coffee shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CafeOrCoffeeShop - # - # # A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \n\n 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](https://en.wikipedia.org/wiki/Campsite)).\n\n See also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Campground - # - # # A [[CampingPitch]] is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or [[Campground]].\n\n In British English a campsite, or campground, 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](https://en.wikipedia.org/wiki/Campsite)).\n\n See also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :CampingPitch - # - # # A canal, like the Panama Canal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Canal - # - # # The act of asserting that a future event/action is no longer going to happen.\n\nRelated actions:\n\n* [[ConfirmAction]]: The antonym of CancelAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CancelAction - # - # # A car is a wheeled, self-powered motor vehicle used for transportation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Car - # - # # A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CarUsageType - # - # # A casino. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Casino - # - # # A Category Code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CategoryCode - # - # # A set of Category Code values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CategoryCodeSet - # - # # A Catholic church. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CatholicChurch - # - # # A graveyard. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cemetery - # - # # One of the sections into which a book is divided. A chapter usually has a section number or a name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Chapter - # - # # An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheckAction - # - # # The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\n\nRelated actions:\n\n* [[CheckOutAction]]: The antonym of CheckInAction.\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheckInAction - # - # # The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check in) or place (e.g. hotel).\n\nRelated actions:\n\n* [[CheckInAction]]: The antonym of CheckOutAction.\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheckOutAction - # - # # Web page type: Checkout page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CheckoutPage - # - # # A Childcare center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChildCare - # - # # Event type: Children's event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChildrensEvent - # - # # The act of expressing a preference from a set of options or a large or unbounded set of choices/options. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChooseAction - # - # # A church. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Church - # - # # A city or town. - # # @return [RDF::Vocabulary::Term] - # attr_reader :City - # - # # A city hall. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CityHall - # - # # A public structure, such as a town hall or concert hall. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CivicStructure - # - # # A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews. 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Claim - # - # # A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClaimReview - # - # # A class, also often called a 'Type'; equivalent to rdfs:Class. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Class - # - # # A short TV or radio program or a segment/part of a program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Clip - # - # # A clothing store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClothingStore - # - # # Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Code - # - # # A collection of items e.g. creative works or products. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # Web page type: Collection page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollectionPage - # - # # A college, university, or other third-level educational institution. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CollegeOrUniversity - # - # # A comedy club. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComedyClub - # - # # Event type: Comedy event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComedyEvent - # - # # The artwork on the cover of a comic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicCoverArt - # - # # Individual comic issues are serially published as part of a larger series. For the sake of consistency, even one-shot issues belong to a series comprised of a single issue. All comic issues can be uniquely identified by: the combination of the name and volume number of the series to which the issue belongs; the issue number; and the variant description of the issue (if any). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicIssue - # - # # A sequential publication of comic stories under a unifying title, for example "The Amazing Spider-Man" or "Groo the Wanderer". - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicSeries - # - # # The term "story" is any indivisible, re-printable unit of a comic, including the interior stories, covers, and backmatter. Most comics have at least two stories: a cover (ComicCoverArt) and an interior story. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComicStory - # - # # A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Comment - # - # # The act of generating a comment about a subject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommentAction - # - # # The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommunicateAction - # - # # 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](https://tools.ietf.org/html/rfc5005), 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CompleteDataFeed - # - # # 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"). - # # @return [RDF::Vocabulary::Term] - # attr_reader :CompoundPriceSpecification - # - # # This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [[Language]] type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComputerLanguage - # - # # A computer store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ComputerStore - # - # # The act of notifying someone that a future event/action is going to happen as expected.\n\nRelated actions:\n\n* [[CancelAction]]: The antonym of ConfirmAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConfirmAction - # - # # A Consortium is a membership [[Organization]] whose members are typically Organizations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Consortium - # - # # The act of ingesting information/resources/food. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConsumeAction - # - # # Web page type: Contact page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContactPage - # - # # A contact point—for example, a Customer Complaints department. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContactPoint - # - # # Enumerated options related to a ContactPoint. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContactPointOption - # - # # One of the continents (for example, Europe or Africa). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Continent - # - # # An agent controls a device or application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ControlAction - # - # # A convenience store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConvenienceStore - # - # # One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Conversation - # - # # The act of producing/preparing food. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CookAction - # - # # Organization: A business corporation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Corporation - # - # # A [[comment]] that corrects [[CreativeWork]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CorrectionComment - # - # # A country. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Country - # - # # A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Course - # - # # An instance of a [[Course]] which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CourseInstance - # - # # A courthouse. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Courthouse - # - # # The artwork on the outer surface of a CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CoverArt - # - # # A CovidTestingFacility is a [[MedicalClinic]] where testing for the COVID-19 Coronavirus 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CovidTestingFacility - # - # # The act of deliberately creating/producing/generating/building a result out of the agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreateAction - # - # # The most generic kind of creative work, including books, movies, photographs, software programs, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreativeWork - # - # # A media season e.g. tv, radio, video game etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreativeWorkSeason - # - # # A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreativeWorkSeries - # - # # A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#AmericanExpress\n* http://purl.org/goodrelations/v1#DinersClub\n* http://purl.org/goodrelations/v1#Discover\n* http://purl.org/goodrelations/v1#JCB\n* http://purl.org/goodrelations/v1#MasterCard\n* http://purl.org/goodrelations/v1#VISA - # # @return [RDF::Vocabulary::Term] - # attr_reader :CreditCard - # - # # A crematorium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Crematorium - # - # # 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. [[CriticReview]]s 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CriticReview - # - # # Text representing a CSS selector. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CssSelectorType - # - # # A service to convert funds from one currency to another currency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CurrencyConversionService - # - # # An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DDxElement - # - # # Event type: A social dance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DanceEvent - # - # # A dance group—for example, the Alvin Ailey Dance Theater or Riverdance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DanceGroup - # - # # A collection of datasets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataCatalog - # - # # A dataset in downloadable form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataDownload - # - # # A single feed providing structured information about one or more entities or topics. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataFeed - # - # # A single item within a larger data feed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataFeedItem - # - # # The basic data types such as Integers, Strings, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DataType - # - # # A body of structured information describing some topic(s) of interest. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dataset - # - # # A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Date - # - # # A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :DateTime - # - # # A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time. __Note:__ This type has been superseded by [[MonetaryAmount]] use of that type is recommended - # # @return [RDF::Vocabulary::Term] - # attr_reader :DatedMoneySpecification - # - # # The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer. Originally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DayOfWeek - # - # # A day spa. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DaySpa - # - # # The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight). - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeactivateAction - # - # # A defence establishment, such as an army or navy base. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DefenceEstablishment - # - # # 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 - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DefinedTerm - # - # # A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DefinedTermSet - # - # # The act of editing a recipient by removing one of its objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeleteAction - # - # # The price for the delivery of an offer using a particular delivery method. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryChargeSpecification - # - # # An event involving the delivery of an item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DeliveryEvent - # - # # A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\n* http://purl.org/goodrelations/v1#DeliveryModeMail\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\n* http://purl.org/goodrelations/v1#DHL\n* http://purl.org/goodrelations/v1#FederalExpress\n* http://purl.org/goodrelations/v1#UPS - # # @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 [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]]. - # # @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 - # - # # A dentist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dentist - # - # # The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DepartAction - # - # # A department store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DepartmentStore - # - # # A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DepositAccount - # - # # A medical laboratory that offers on-site or off-site diagnostic services. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiagnosticLab - # - # # A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiagnosticProcedure - # - # # A strategy of regulating the intake of food to achieve or maintain a specific health-related goal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Diet - # - # # A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DietarySupplement - # - # # An electronic file or document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalDocument - # - # # A permission for a particular person or group to access a particular file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalDocumentPermission - # - # # A type of permission which can be granted for accessing a digital document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalDocumentPermissionType - # - # # The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DisagreeAction - # - # # The act of discovering/finding an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiscoverAction - # - # # A posting to a discussion forum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiscussionForumPosting - # - # # The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DislikeAction - # - # # Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Distance - # - # # A distillery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Distillery - # - # # The act of providing goods, services, or money without compensation, often for philanthropic reasons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DonateAction - # - # # A specific dosing schedule for a drug or supplement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DoseSchedule - # - # # The act of downloading an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DownloadAction - # - # # The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrawAction - # - # # A picture or diagram made with a pencil, pen, or crayon rather than paint. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Drawing - # - # # The act of swallowing liquids. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrinkAction - # - # # A value indicating which roadwheels will receive torque. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DriveWheelConfigurationValue - # - # # A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge make a clear difference between them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Drug - # - # # A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugClass - # - # # The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugCost - # - # # Enumerated categories of medical drug costs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugCostCategory - # - # # The legal availability status of a medical drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugLegalStatus - # - # # Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugPregnancyCategory - # - # # Indicates whether this drug is available by prescription or over-the-counter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugPrescriptionStatus - # - # # A specific strength in which a medical drug is available in a specific country. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrugStrength - # - # # A dry-cleaning business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DryCleaningOrLaundry - # - # # Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Duration - # - # # Enumerates the EU energy efficiency classes A-G as well as A+, A++, and A+++ as defined in EU directive 2017/1369 - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyEnumeration - # - # # The act of swallowing solid objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EatAction - # - # # Event type: Education event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationEvent - # - # # An EducationalAudience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationalAudience - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationalOccupationalCredential - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationalOccupationalProgram - # - # # An educational organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EducationalOrganization - # - # # An electrician. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Electrician - # - # # An electronics store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ElectronicsStore - # - # # An elementary school. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ElementarySchool - # - # # An email message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmailMessage - # - # # An embassy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Embassy - # - # # An emergency service, such as a fire station or ER. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmergencyService - # - # # A subclass of OrganizationRole used to describe employee relationships. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmployeeRole - # - # # An aggregate rating of an Organization related to its role as an employer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmployerAggregateRating - # - # # An [[EmployerReview]] is a review of an [[Organization]] regarding its role as an employer, written by a current or former employee of that organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmployerReview - # - # # An employment agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmploymentAgency - # - # # An agent approves/certifies/likes/supports/sanction an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EndorseAction - # - # # An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a "critic's pick" blog, a "Like" or "+1" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by some [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]]. 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EndorsementRating - # - # # Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Energy - # - # # EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnergyConsumptionDetails - # - # # Enumerates energy efficiency levels (also known as "classes" or "ratings") and certifications that are part of several international energy efficiency standards. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnergyEfficiencyEnumeration - # - # # Used to indicate whether a product is EnergyStar certified - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnergyStarEnergyEfficiencyEnumeration - # - # # Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EngineSpecification - # - # # A business providing entertainment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EntertainmentBusiness - # - # # An entry point, within some Web-based protocol. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EntryPoint - # - # # Lists or enumerations—for example, a list of cuisines or music genres, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Enumeration - # - # # A media episode (e.g. TV, radio, video game) which can be part of a series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Episode - # - # # An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Event - # - # # An EventAttendanceModeEnumeration value is one of potentially several modes of organising an event, relating to whether it is online or offline. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventAttendanceModeEnumeration - # - # # A reservation for an event like a concert, sporting event, or lecture.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventReservation - # - # # A series of [[Event]]s. Included events can relate with the series using the [[superEvent]] property. An EventSeries is a collection of events that share some unifying characteristic. For example, "The Olympic Games" is a series, which is repeated regularly. The "2012 London Olympics" can be presented both as an [[Event]] in the series "Olympic Games", and as an [[EventSeries]] that included a number of sporting competitions as Events. The nature of the association between the events in an [[EventSeries]] can vary, but typical examples could include a thematic event series (e.g. topical meetups or classes), or a series of regular events that share a location, attendee group and/or organizers. EventSeries has been defined as a kind of Event to make it easy for publishers to use it in an Event context without 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventSeries - # - # # EventStatusType is an enumeration type whose instances represent several states that an Event may be in. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventStatusType - # - # # An event venue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventVenue - # - # # A structured value representing exchange rate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExchangeRateSpecification - # - # # The act of participating in exertive activity for the purposes of improving health and fitness. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExerciseAction - # - # # A gym. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExerciseGym - # - # # Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExercisePlan - # - # # Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExhibitionEvent - # - # # A [[FAQPage]] is a [[WebPage]] presenting one or more "[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)" (see also [[QAPage]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :FAQPage - # - # # A radio channel that uses FM. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FMRadioChannel - # - # # A fast-food restaurant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FastFoodRestaurant - # - # # Event type: Festival. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Festival - # - # # The act of capturing sound and moving images on film, video, or digitally. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FilmAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FinancialProduct - # - # # Financial services business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FinancialService - # - # # The act of finding an object.\n\nRelated actions:\n\n* [[SearchAction]]: FindAction is generally lead by a SearchAction, but not necessarily. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FindAction - # - # # A fire station. With firemen. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FireStation - # - # # An airline flight. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Flight - # - # # A reservation for air travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FlightReservation - # - # # Data type: Floating number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Float - # - # # 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](https://en.wikipedia.org/wiki/Floor_plan)) can be indicated using [[image]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FloorPlan - # - # # A florist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Florist - # - # # The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\n\nRelated actions:\n\n* [[BefriendAction]]: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.\n* [[SubscribeAction]]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\n* [[RegisterAction]]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\n* [[JoinAction]]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\n* [[TrackAction]]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it). - # # @return [RDF::Vocabulary::Term] - # attr_reader :FollowAction - # - # # A food-related business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodEstablishment - # - # # A reservation to dine at a food-related business.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodEstablishmentReservation - # - # # Event type: Food event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodEvent - # - # # A food service, like breakfast, lunch, or dinner. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FoodService - # - # # A FundingAgency is an organization that implements one or more [[FundingScheme]]s and manages the granting process (via [[Grant]]s, typically [[MonetaryGrant]]s). A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc. Examples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation... - # # @return [RDF::Vocabulary::Term] - # attr_reader :FundingAgency - # - # # 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 - [[FundingAgency]]s such as ERC, REA, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :FundingScheme - # - # # Pathogenic fungus. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fungus - # - # # A furniture store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FurnitureStore - # - # # The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Game - # - # # Indicates whether this game is multi-player, co-op or single-player. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GamePlayMode - # - # # Server that provides game interaction in a multiplayer game. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GameServer - # - # # Status of a game server. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GameServerStatus - # - # # A garden store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GardenStore - # - # # A gas station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GasStation - # - # # Residence type: Gated community. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GatedResidenceCommunity - # - # # An enumeration of genders. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GenderType - # - # # A general contractor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeneralContractor - # - # # A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius. The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeoCircle - # - # # The geographic coordinates of a place or event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeoCoordinates - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeoShape - # - # # (Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GeospatialGeometry - # - # # The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\n\nRelated actions:\n\n* [[TakeAction]]: Reciprocal of GiveAction.\n* [[SendAction]]: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you). - # # @return [RDF::Vocabulary::Term] - # attr_reader :GiveAction - # - # # A golf course. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GolfCourse - # - # # GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentBenefitsType - # - # # A government building. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentBuilding - # - # # A government office—for example, an IRS or DMV office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentOffice - # - # # A governmental organization or agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentOrganization - # - # # A permit issued by a government agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentPermit - # - # # A service provided by a government organization, e.g. food stamps, veterans benefits, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GovernmentService - # - # # A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]], sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space). Grants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Grant - # - # # A grocery store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GroceryStore - # - # # [[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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Guide - # - # # A business that provide Heating, Ventilation and Air Conditioning services. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HVACBusiness - # - # # A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hackathon - # - # # A hair salon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HairSalon - # - # # A hardware store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HardwareStore - # - # # Health and beauty. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthAndBeautyBusiness - # - # # HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using [[hasHealthAspect]] and [[HealthTopicContent]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthAspectEnumeration - # - # # A health club. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthClub - # - # # A US-style health insurance plan, including PPOs, EPOs, and HMOs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthInsurancePlan - # - # # A description of costs to the patient under a given network or formulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthPlanCostSharingSpecification - # - # # For a given health insurance plan, the specification for costs and coverage of prescription drugs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthPlanFormulary - # - # # A US-style health insurance plan network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthPlanNetwork - # - # # [[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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthTopicContent - # - # # A high school. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HighSchool - # - # # A Hindu temple. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HinduTemple - # - # # A store that sells materials useful or necessary for various hobbies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HobbyShop - # - # # A construction business.\n\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :HomeAndConstructionBusiness - # - # # A home goods store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HomeGoodsStore - # - # # A hospital. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hospital - # - # # A hostel - cheap accommodation, often in shared dormitories.

See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hostel - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hotel - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HotelRoom - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :House - # - # # A house painting service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HousePainter - # - # # Instructions that explain how to achieve a result by performing a sequence of steps. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowTo - # - # # A direction indicating a single action to do in the instructions for how to achieve a result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToDirection - # - # # An item used as either a tool or supply when performing the instructions for how to to achieve a result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToItem - # - # # A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe). - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToSection - # - # # A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToStep - # - # # A supply consumed when performing the instructions for how to achieve a result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToSupply - # - # # An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection). - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToTip - # - # # A tool used (but not consumed) when performing instructions for how to achieve a result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowToTool - # - # # A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HyperToc - # - # # A HyperToEntry is an item within a [[HyperToc]], which represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. The media object itself is indicated using [[associatedMedia]]. Each section of interest within that content can be described with a [[HyperTocEntry]], with associated [[startOffset]] and [[endOffset]]. When several entries are all from the same file, [[associatedMedia]] is used on the overarching [[HyperTocEntry]]; if the content has been split into multiple files, they can be referenced using [[associatedMedia]] on each [[HyperTocEntry]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HyperTocEntry - # - # # An ice cream shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IceCreamShop - # - # # The act of intentionally disregarding the object. An agent ignores an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IgnoreAction - # - # # Web page type: Image gallery page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImageGallery - # - # # An image file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImageObject - # - # # Any medical imaging modality typically used for diagnostic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImagingTest - # - # # A single, identifiable product instance (e.g. a laptop with a particular serial number). - # # @return [RDF::Vocabulary::Term] - # attr_reader :IndividualProduct - # - # # Classes of agents or pathogens that transmit infectious diseases. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InfectiousAgentClass - # - # # An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InfectiousDisease - # - # # The act of notifying someone of information pertinent to them, with no expectation of a response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InformAction - # - # # The act of adding at a specific location in an ordered collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InsertAction - # - # # The act of installing an application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InstallAction - # - # # An Insurance agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InsuranceAgency - # - # # A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Intangible - # - # # Data type: Integer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Integer - # - # # The act of interacting with another person or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InteractAction - # - # # A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InteractionCounter - # - # # An internet cafe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InternetCafe - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InvestmentFund - # - # # A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InvestmentOrDeposit - # - # # The act of asking someone to attend an event. Reciprocal of RsvpAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InviteAction - # - # # A statement of the money due for goods or services; a bill. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Invoice - # - # # A list of possible product availability options. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemAvailability - # - # # A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemList - # - # # Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemListOrderType - # - # # A page devoted to a single item, such as a particular product or hotel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemPage - # - # # A jewelry store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JewelryStore - # - # # A listing that describes a job opening in a certain organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JobPosting - # - # # An agent joins an event/group with participants/friends at a location.\n\nRelated actions:\n\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JoinAction - # - # # The anatomical location at which two or more bones make contact. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Joint - # - # # A lake (for example, Lake Pontrachain). - # # @return [RDF::Vocabulary::Term] - # attr_reader :LakeBodyOfWater - # - # # A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Landform - # - # # An historical landmark or building. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LandmarksOrHistoricalBuildings - # - # # Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in [BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Language - # - # # The LearningResource type can be used to indicate [[CreativeWork]]s (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes. [[LearningResource]] is expected to be used as an addition to a primary type such as [[Book]], [[Video]], [[Product]] etc. [[EducationEvent]] serves a similar purpose for event-like things (e.g. a [[Trip]]). A [[LearningResource]] may be created as a result of an [[EducationEvent]], for example by recording one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LearningResource - # - # # An agent leaves an event / group with participants/friends at a location.\n\nRelated actions:\n\n* [[JoinAction]]: The antonym of LeaveAction.\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LeaveAction - # - # # A list of possible statuses for the legal force of a legislation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalForceStatus - # - # # A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalService - # - # # A list of possible levels for the legal validity of a legislation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegalValueLevel - # - # # A legal document such as an act, decree, bill, etc. (enforceable or not) or a component of a legal act (like an article). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Legislation - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegislationObject - # - # # A legislative building—for example, the state capitol. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LegislativeBuilding - # - # # The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\n\nRelated actions:\n\n* [[BorrowAction]]: Reciprocal of LendAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LendAction - # - # # A library. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Library - # - # # A [[LibrarySystem]] is a collaborative system amongst several libraries. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LibrarySystem - # - # # A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LifestyleModification - # - # # A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ligament - # - # # The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LikeAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LinkRole - # - # # A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LiquorStore - # - # # An list item, e.g. a step in a checklist or how-to description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ListItem - # - # # The act of consuming audio content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ListenAction - # - # # Event type: Literary event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LiteraryEvent - # - # # A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LiveBlogPosting - # - # # A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LoanOrCredit - # - # # A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LocalBusiness - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LocationFeatureSpecification - # - # # A locksmith. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Locksmith - # - # # A lodging business, such as a motel, hotel, or inn. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LodgingBusiness - # - # # A reservation for lodging at a hotel, motel, inn, etc.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LodgingReservation - # - # # The act of being defeated in a competitive activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LoseAction - # - # # A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LymphaticVessel - # - # # A book, document, or piece of music written by hand rather than typed or printed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Manuscript - # - # # A map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Map - # - # # An enumeration of several kinds of Map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MapCategoryType - # - # # The act of marrying a person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MarryAction - # - # # Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mass - # - # # A math solver which is capable of solving a subset of mathematical problems. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MathSolver - # - # # The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MaximumDoseSchedule - # - # # Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaGallery - # - # # (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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaManipulationRatingEnumeration - # - # # A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaObject - # - # # (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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaReview - # - # # A subscription which allows a user to access media including audio, video, books, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MediaSubscription - # - # # Target audiences for medical web pages. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalAudience - # - # # Target audiences types for medical web pages. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalAudienceType - # - # # A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include differents business run by health professionals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalBusiness - # - # # The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalCause - # - # # A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalClinic - # - # # A code for a medical entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalCode - # - # # Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalCondition - # - # # A stage of a medical condition, such as 'Stage IIIa'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalConditionStage - # - # # A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalContraindication - # - # # Any object used in a medical capacity, such as to diagnose or treat a patient. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalDevice - # - # # Categories of medical devices, organized by the purpose or intended use of the device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalDevicePurpose - # - # # The most generic type of entity related to health and the practice of medicine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalEntity - # - # # Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalEnumeration - # - # # Level of evidence for a medical guideline. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalEvidenceLevel - # - # # Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalGuideline - # - # # A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalGuidelineContraindication - # - # # A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalGuidelineRecommendation - # - # # Any medical imaging modality typically used for diagnostic purposes. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalImagingTechnique - # - # # A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalIndication - # - # # A utility class that serves as the umbrella for a number of 'intangible' things in the medical space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalIntangible - # - # # An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalObservationalStudy - # - # # Design models for observational medical studies. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalObservationalStudyDesign - # - # # A medical organization (physical or not), such as hospital, institution or clinic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalOrganization - # - # # A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalProcedure - # - # # An enumeration that describes different types of medical procedures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalProcedureType - # - # # A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalRiskCalculator - # - # # Any rule set or interactive tool for estimating the risk of developing a complication or condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalRiskEstimator - # - # # A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalRiskFactor - # - # # A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalRiskScore - # - # # A scholarly article in the medical domain. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalScholarlyArticle - # - # # Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalSign - # - # # Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalSignOrSymptom - # - # # Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalSpecialty - # - # # A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalStudy - # - # # The status of a medical study. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalStudyStatus - # - # # Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalSymptom - # - # # Any medical test, typically performed for diagnostic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTest - # - # # Any collection of tests commonly ordered together. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTestPanel - # - # # Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTherapy - # - # # A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTrial - # - # # Design models for medical trials. Enumerated type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalTrialDesign - # - # # A web page that provides medical information. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalWebPage - # - # # Systems of medical practice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicineSystem - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MeetingRoom - # - # # A men's clothing store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MensClothingStore - # - # # A structured representation of food or drink items available from a FoodEstablishment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Menu - # - # # A food or drink item listed in a menu or menu section. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MenuItem - # - # # A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MenuSection - # - # # MerchantReturnEnumeration enumerates several kinds of product return policy. Note that this structure may not capture all aspects of the policy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnEnumeration - # - # # A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]] or [[Product]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnPolicy - # - # # A single message from a sender to one or more organizations or people. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Message - # - # # A middle school (typically for children aged around 11-14, although this varies somewhat). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MiddleSchool - # - # # A software application designed specifically to work well on a mobile device such as a telephone. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MobileApplication - # - # # A store that sells mobile phones and related accessories. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MobilePhoneStore - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MonetaryAmount - # - # # A statistical distribution of monetary amounts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MonetaryAmountDistribution - # - # # A monetary grant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MonetaryGrant - # - # # The act of transferring money from one place to another place. This may occur electronically or physically. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MoneyTransfer - # - # # A loan in which property or real estate is used as collateral. (A loan securitized against some real estate.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :MortgageLoan - # - # # A mosque. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mosque - # - # # A motel.

See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Motel - # - # # A motorcycle or motorbike is a single-track, two-wheeled motor vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Motorcycle - # - # # A motorcycle dealer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorcycleDealer - # - # # A motorcycle repair shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorcycleRepair - # - # # A motorized bicycle is a bicycle with an attached motor used to power the vehicle, or to assist with pedaling. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MotorizedBicycle - # - # # A mountain, like Mount Whitney or Mount Everest. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Mountain - # - # # The act of an agent relocating to a place.\n\nRelated actions:\n\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MoveAction - # - # # A movie. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Movie - # - # # A short segment/part of a movie. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieClip - # - # # A movie rental store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieRentalStore - # - # # A series of movies. Included movies can be indicated with the hasPart property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieSeries - # - # # A movie theater. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovieTheater - # - # # A moving company. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MovingCompany - # - # # Multicellular parasite that causes an infection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MulticellularParasite - # - # # A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Muscle - # - # # A museum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Museum - # - # # A collection of music tracks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicAlbum - # - # # Classification of the album by it's type of content: soundtrack, live album, studio album, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicAlbumProductionType - # - # # The kind of release which this album is: single, EP or album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicAlbumReleaseType - # - # # A musical composition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicComposition - # - # # Event type: Music event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicEvent - # - # # A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicGroup - # - # # A collection of music tracks in playlist form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicPlaylist - # - # # A music recording (track), usually a single song. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicRecording - # - # # A MusicRelease is a specific release of a music album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicRelease - # - # # Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicReleaseFormatType - # - # # A music store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicStore - # - # # A music venue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicVenue - # - # # A music video file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusicVideoObject - # - # # Organization: Non-governmental Organization. - # # @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 - # - # # A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Nerve - # - # # 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](/docs/news.html) is also available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NewsArticle - # - # # A News/Media organization such as a newspaper or TV station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NewsMediaOrganization - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Newspaper - # - # # A nightclub or discotheque. - # # @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 - # - # # A file containing a note, primarily for the author. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NoteDigitalDocument - # - # # Data type: Number.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Number - # - # # Nutritional information about the recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NutritionInformation - # - # # 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](https://www.w3.org/TR/vocab-data-cube/#dsd-example)). See also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Observation - # - # # A profession, may involve prolonged training and/or a formal qualification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Occupation - # - # # A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OccupationalTherapy - # - # # An ocean (for example, the Pacific). - # # @return [RDF::Vocabulary::Term] - # attr_reader :OceanBodyOfWater - # - # # An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\n\nNote: 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.\n\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Offer - # - # # An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferCatalog - # - # # An [[OfferForLease]] in Schema.org represents an [[Offer]] to lease out something, i.e. an [[Offer]] whose [[businessFunction]] is [lease out](http://purl.org/goodrelations/v1#LeaseOut.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for background on the underlying concepts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferForLease - # - # # An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for background on the underlying concepts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferForPurchase - # - # # A list of possible conditions for the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferItemCondition - # - # # OfferShippingDetails represents information about shipping destinations. Multiple of these entities can be used to represent different shipping rates for different destinations: One entity for Alaska/Hawaii. A different one for continental US.A different one for all France. Multiple of these entities can be used to represent different shipping costs and delivery times. Two entities that are identical but differ in rate and time: e.g. Cheaper and slower: $5 in 5-7days or Fast and expensive: $15 in 1-2 days - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferShippingDetails - # - # # An office equipment store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfficeEquipmentStore - # - # # A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnDemandEvent - # - # # A structured value providing information about the opening hours of a place or a certain service inside a place.\n\n The place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\n\nIf 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OpeningHoursSpecification - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OpinionNewsArticle - # - # # A store that sells reading glasses and similar devices for improving vision. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Optician - # - # # An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Order - # - # # An agent orders an object/product/service to be delivered/sent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderAction - # - # # An order item is a line of an order. It includes the quantity and shipping details of a bought offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderItem - # - # # Enumerated status values for Order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderStatus - # - # # An organization such as a school, NGO, corporation, club, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # A subclass of Role used to describe roles within organizations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganizationRole - # - # # The act of manipulating/administering/supervising/controlling one or more objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrganizeAction - # - # # An outlet store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OutletStore - # - # # A structured value providing information about when a certain organization or person owned a certain product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OwnershipInfo - # - # # The act of producing a painting, typically with paint and canvas as instruments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaintAction - # - # # A painting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Painting - # - # # A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PalliativeProcedure - # - # # The delivery of a parcel either via the postal service or a commercial service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParcelDelivery - # - # # A set of characteristics describing parents, who can be interested in viewing some content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParentAudience - # - # # A park. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Park - # - # # A parking lot or other parking facility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParkingFacility - # - # # A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PathologyTest - # - # # A patient is any person recipient of health care services. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Patient - # - # # A shop that will buy, or lend money against the security of, personal possessions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PawnShop - # - # # An agent pays a price to a participant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PayAction - # - # # A payment method using a credit, debit, store or other card to associate the payment with an account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentCard - # - # # The costs of settling the payment using a particular payment method. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentChargeSpecification - # - # # A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\n* http://purl.org/goodrelations/v1#ByInvoice\n* http://purl.org/goodrelations/v1#Cash\n* http://purl.org/goodrelations/v1#CheckInAdvance\n* http://purl.org/goodrelations/v1#COD\n* http://purl.org/goodrelations/v1#DirectDebit\n* http://purl.org/goodrelations/v1#GoogleCheckout\n* http://purl.org/goodrelations/v1#PayPal\n* http://purl.org/goodrelations/v1#PaySwarm - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentMethod - # - # # A Service to transfer funds from a person or organization to a beneficiary person or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentService - # - # # A specific payment status. For example, PaymentDue, PaymentComplete, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentStatusType - # - # # A set of characteristics belonging to people, e.g. who compose an item's target audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PeopleAudience - # - # # The act of participating in performance arts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PerformAction - # - # # A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PerformanceRole - # - # # A theater or other performing art center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PerformingArtsTheater - # - # # A performance group, such as a band, an orchestra, or a circus. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PerformingGroup - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Periodical - # - # # A permit issued by an organization, e.g. a parking pass. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Permit - # - # # A person (alive, dead, undead, or fictional). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # A pet store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PetStore - # - # # A pharmacy or drugstore. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pharmacy - # - # # A photograph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Photograph - # - # # The act of capturing still images of objects using a camera. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhotographAction - # - # # Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalActivity - # - # # Categories of physical activity, organized by physiologic classification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalActivityCategory - # - # # A type of physical examination of a patient performed by a physician. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalExam - # - # # A process of progressive physical care and rehabilitation aimed at improving a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PhysicalTherapy - # - # # A doctor's office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Physician - # - # # Entities that have a somewhat fixed, physical extension. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Place - # - # # Place of worship, such as a church, synagogue, or mosque. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlaceOfWorship - # - # # The act of planning the execution of an event/task/action/reservation/plan to a future date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlanAction - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Play - # - # # The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\n\nRelated actions:\n\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlayAction - # - # # A playground. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Playground - # - # # A plumbing service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Plumber - # - # # A single episode of a podcast series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PodcastEpisode - # - # # A single season of a podcast. Many podcasts do not break down into separate seasons. In that case, PodcastSeries should be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PodcastSeason - # - # # A podcast is an episodic series of digital audio or video files which a user can download and listen to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PodcastSeries - # - # # A police station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PoliceStation - # - # # A pond. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pond - # - # # A post office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PostOffice - # - # # The mailing address. - # # @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 - # - # # An agent orders a (not yet released) object/product/service to be delivered/sent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreOrderAction - # - # # The act of inserting at the beginning if an ordered collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrependAction - # - # # A preschool. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Preschool - # - # # A file containing slides or used for a presentation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PresentationDigitalDocument - # - # # An indication for preventing an underlying condition, symptom, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreventionIndication - # - # # Enumerates different price components that together make up the total price for an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PriceComponentTypeEnumeration - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PriceSpecification - # - # # Enumerates different price types, for example list price, invoice price, and sale price. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PriceTypeEnumeration - # - # # A prion is an infectious agent composed of protein in a misfolded form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Prion - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Product - # - # # A set of products (either [[ProductGroup]]s or specific variants) that are listed together e.g. in an [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductCollection - # - # # A ProductGroup represents a group of [[Product]]s that vary only in certain well-described ways, such as by [[size]], [[color]], [[material]] etc. While a ProductGroup itself is not directly offered for sale, the various varying products that it represents can be. The ProductGroup serves as a prototype or template, standing in for all of the products who have an [[isVariantOf]] relationship to it. As such, properties (including additional types) can be applied to the ProductGroup to represent characteristics shared by each of the (possibly very many) variants. Properties that reference a ProductGroup are not included in this mechanism; neither are the following specific properties [[variesBy]], [[hasVariant]], [[url]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductGroup - # - # # A datasheet or vendor specification of a product (in the sense of a prototypical description). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductModel - # - # # ProductReturnEnumeration enumerates several kinds of product return policy. Note that this structure may not capture all aspects of the policy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnEnumeration - # - # # A ProductReturnPolicy provides information about product return policies associated with an [[Organization]] or [[Product]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnPolicy - # - # # Original definition: "provider of professional services."\n\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]], [[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]], [[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProfessionalService - # - # # Web page type: Profile page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProfilePage - # - # # Used to describe membership in a loyalty programs (e.g. "StarAliance"), traveler clubs (e.g. "AAA"), purchase clubs ("Safeway Club"), etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProgramMembership - # - # # An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim. Use properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Project - # - # # Data type: PronounceableText. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PronounceableText - # - # # A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Property - # - # # 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.\n\n 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PropertyValue - # - # # A Property value specification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PropertyValueSpecification - # - # # Single-celled organism that causes an infection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Protozoa - # - # # A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PsychologicalTreatment - # - # # A public swimming pool. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicSwimmingPool - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicToilet - # - # # A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationEvent - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationIssue - # - # # 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.\n\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicationVolume - # - # # A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs). - # # @return [RDF::Vocabulary::Term] - # attr_reader :QAPage - # - # # A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QualitativeValue - # - # # A point value or interval for product characteristics and other purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuantitativeValue - # - # # A statistical distribution of values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuantitativeValueDistribution - # - # # Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Quantity - # - # # A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Question - # - # # Quiz: A test of knowledge, skills and abilities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Quiz - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Quotation - # - # # An agent quotes/estimates/appraises an object/product/service with a price at a location/store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QuoteAction - # - # # A place offering space for "Recreational Vehicles", Caravans, mobile homes and the like. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RVPark - # - # # A process of care using radiation aimed at improving a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadiationTherapy - # - # # A delivery service through which radio content is provided via broadcast over the air or online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioBroadcastService - # - # # A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioChannel - # - # # A short radio program or a segment/part of a radio program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioClip - # - # # A radio episode which can be part of a series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioEpisode - # - # # Season dedicated to radio broadcast and associated online delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioSeason - # - # # CreativeWorkSeries dedicated to radio broadcast and associated online delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioSeries - # - # # A radio station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RadioStation - # - # # A rating is an evaluation on a numeric scale, such as 1 to 5 stars. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rating - # - # # The act of responding instinctively and emotionally to an object, expressing a sentiment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReactAction - # - # # The act of consuming written content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReadAction - # - # # A real-estate agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RealEstateAgent - # - # # A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out, or to sell). The [[RealEstateListing]] type itself represents the overall listing, as manifested in some [[WebPage]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RealEstateListing - # - # # The act of physically/electronically taking delivery of an object that has been transferred from an origin to a destination. Reciprocal of SendAction.\n\nRelated actions:\n\n* [[SendAction]]: The reciprocal of ReceiveAction.\n* [[TakeAction]]: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered (e.g. I can receive a package, but it does not mean the package is now mine). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReceiveAction - # - # # A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via [[suitableForDiet]]. The [[keywords]] property can also be used to add more detail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Recipe - # - # # [[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 [[Recommendation]]s. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Recommendation - # - # # A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecommendedDoseSchedule - # - # # A recycling center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecyclingCenter - # - # # RefundTypeEnumeration enumerates several kinds of product return refund types. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RefundTypeEnumeration - # - # # The act of registering to be a user of a service, product or web page.\n\nRelated actions:\n\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\n* [FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RegisterAction - # - # # The act of rejecting to/adopting an object.\n\nRelated actions:\n\n* [[AcceptAction]]: The antonym of RejectAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RejectAction - # - # # The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RentAction - # - # # A reservation for a rental car.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RentalCarReservation - # - # # A structured value representing repayment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RepaymentSpecification - # - # # The act of editing a recipient by replacing an old object with a new object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReplaceAction - # - # # The act of responding to a question/message asked/sent by the object. Related to [[AskAction]]\n\nRelated actions:\n\n* [[AskAction]]: Appears generally as an origin of a ReplyAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReplyAction - # - # # A Report generated by governmental or non-governmental organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Report - # - # # The [[ReportageNewsArticle]] type is a subtype of [[NewsArticle]] representing news articles which are the result of journalistic news reporting conventions. In practice many news publishers produce a wide variety of article types, many of which might be considered a [[NewsArticle]] but not a [[ReportageNewsArticle]]. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements. 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReportageNewsArticle - # - # # A patient-reported or observed dosing schedule for a drug or supplement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReportedDoseSchedule - # - # # A Research project. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResearchProject - # - # # Researchers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Researcher - # - # # Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Reservation - # - # # A group of multiple reservations with common values for all sub-reservations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationPackage - # - # # Enumerated status values for Reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationStatusType - # - # # Reserving a concrete object.\n\nRelated actions:\n\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReserveAction - # - # # A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Reservoir - # - # # The place where a person lives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Residence - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Resort - # - # # A restaurant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Restaurant - # - # # A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RestrictedDiet - # - # # The act of resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResumeAction - # - # # The act of returning to the origin that which was previously received (concrete objects) or taken (ownership). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReturnAction - # - # # ReturnFeesEnumeration expresses policies for return fees. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReturnFeesEnumeration - # - # # A review of an item - for example, of a restaurant, movie, or store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Review - # - # # The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReviewAction - # - # # A [[NewsArticle]] and [[CriticReview]] providing a professional critic's assessment of a service, product, performance, or artistic or literary work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReviewNewsArticle - # - # # A river (for example, the broad majestic Shannon). - # # @return [RDF::Vocabulary::Term] - # attr_reader :RiverBodyOfWater - # - # # Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Role - # - # # A roofing contractor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RoofingContractor - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Room - # - # # The act of notifying an event organizer as to whether you expect to attend the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpAction - # - # # RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpResponseType - # - # # Event type: Sales event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SaleEvent - # - # # An [[Article]] whose content is primarily [[satirical]](https://en.wikipedia.org/wiki/Satire) in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a [[NewsArticle]]. [[ScholarlyArticle]]s are also sometimes satirized. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SatiricalArticle - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Schedule - # - # # Scheduling future actions, events, or tasks.\n\nRelated actions:\n\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScheduleAction - # - # # A scholarly article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScholarlyArticle - # - # # A school. - # # @return [RDF::Vocabulary::Term] - # attr_reader :School - # - # # A School District is an administrative area for the administration of schools. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SchoolDistrict - # - # # A screening of a movie or other video. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScreeningEvent - # - # # A piece of sculpture. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sculpture - # - # # A sea (for example, the Caspian sea). - # # @return [RDF::Vocabulary::Term] - # attr_reader :SeaBodyOfWater - # - # # The act of searching for an object.\n\nRelated actions:\n\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SearchAction - # - # # Web page type: Search results page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SearchResultsPage - # - # # A media season e.g. tv, radio, video game etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Season - # - # # Used to describe a seat, such as a reserved seat in an event reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Seat - # - # # This is the [[Action]] of navigating to a specific [[startOffset]] timestamp within a [[VideoObject]], typically represented with a URL template structure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SeekToAction - # - # # A self-storage facility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SelfStorage - # - # # The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SellAction - # - # # The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\n\n* [[ReceiveAction]]: The reciprocal of SendAction.\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you). - # # @return [RDF::Vocabulary::Term] - # attr_reader :SendAction - # - # # A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Series - # - # # A service provided by an organization, e.g. delivery service, print services, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Service - # - # # A means for accessing a service, e.g. a government office location, web site, or phone number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ServiceChannel - # - # # The act of distributing content to people for their amusement or edification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShareAction - # - # # Printed music, as opposed to performed or recorded music. - # # @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 - # - # # A shopping center or mall. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShoppingCenter - # - # # Short story or tale. A brief work of literature, usually written in narrative prose. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ShortStory - # - # # Residence type: Single-family home. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SingleFamilyResidence - # - # # A navigation element of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SiteNavigationElement - # - # # A ski resort. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SkiResort - # - # # Event type: Social event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SocialEvent - # - # # A post to a social media platform, including blog posts, tweets, Facebook posts, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SocialMediaPosting - # - # # A software application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoftwareApplication - # - # # Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoftwareSourceCode - # - # # The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SolveMathAction - # - # # A placeholder for multiple similar products of the same kind. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SomeProducts - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpeakableSpecification - # - # # A SpecialAnnouncement combines a simple date-stamped textual information update with contextualized Web links and other structured data. It represents an information update made by a locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police, local government. For work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#). The motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.org expect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to our usual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#). While this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to cover the kinds of everyday practical information being posted to existing websites during an emergency situation. Several kinds of information can be provided: We encourage the provision of "name", "text", "datePosted", "expires" (if appropriate), "category" and "url" as a simple baseline. It is important to provide a value for "category" where possible, most ideally as a well known URL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be "https://en.wikipedia.org/w/index.php?title=2019-20\_coronavirus\_pandemic" or "https://www.wikidata.org/wiki/Q81068910". For many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple "[[text]]" summary of the page. It is unlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously. We expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]]. Many [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructures]]. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]]. The [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] only for representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of /about for locations too. The basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting [[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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpecialAnnouncement - # - # # Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Specialty - # - # # A sporting goods store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportingGoodsStore - # - # # A sports location, such as a playing field. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsActivityLocation - # - # # A sports club. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsClub - # - # # Event type: Sports event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsEvent - # - # # Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsOrganization - # - # # Organization: Sports team. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SportsTeam - # - # # A spreadsheet file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpreadsheetDigitalDocument - # - # # A stadium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StadiumOrArena - # - # # A state or province of a country. - # # @return [RDF::Vocabulary::Term] - # attr_reader :State - # - # # 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 [[Person]]s 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](/docs/data-and-datasets.html) overview for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StatisticalPopulation - # - # # Lists or enumerations dealing with status types. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StatusEnumeration - # - # # A value indicating a steering position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SteeringPositionValue - # - # # A retail good store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Store - # - # # Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StructuredValue - # - # # A StupidType for testing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StupidType - # - # # The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.\n\nRelated actions:\n\n* [[FollowAction]]: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.\n* [[RegisterAction]]: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.\n* [[JoinAction]]: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SubscribeAction - # - # # Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Substance - # - # # A subway station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SubwayStation - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Suite - # - # # Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure). - # # @return [RDF::Vocabulary::Term] - # attr_reader :SuperficialAnatomy - # - # # A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SurgicalProcedure - # - # # The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer). - # # @return [RDF::Vocabulary::Term] - # attr_reader :SuspendAction - # - # # A synagogue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Synagogue - # - # # A short TV program or a segment/part of a TV program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TVClip - # - # # A TV episode which can be part of a series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TVEpisode - # - # # Season dedicated to TV broadcast and associated online delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TVSeason - # - # # CreativeWorkSeries dedicated to TV broadcast and associated online delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TVSeries - # - # # A table on a Web page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Table - # - # # The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\n\nRelated actions:\n\n* [[GiveAction]]: The reciprocal of TakeAction.\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transfered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TakeAction - # - # # A tattoo parlor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TattooParlor - # - # # A taxi. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Taxi - # - # # A reservation for a taxi.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TaxiReservation - # - # # A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TaxiService - # - # # A taxi stand. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TaxiStand - # - # # A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TechArticle - # - # # A unique instance of a television BroadcastService on a CableOrSatelliteService lineup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionChannel - # - # # A television station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelevisionStation - # - # # A tennis complex. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TennisComplex - # - # # Data type: Text. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Text - # - # # A file composed primarily of text. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextDigitalDocument - # - # # Event type: Theater performance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TheaterEvent - # - # # A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TheaterGroup - # - # # A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TherapeuticProcedure - # - # # A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thesis - # - # # The most generic type of item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thing - # - # # Used to describe a ticket to an event, a flight, a bus ride, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ticket - # - # # The act of reaching a draw in a competitive activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TieAction - # - # # A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :Time - # - # # The act of giving money voluntarily to a beneficiary in recognition of services rendered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TipAction - # - # # A tire shop. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TireShop - # - # # 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) - # # @return [RDF::Vocabulary::Term] - # attr_reader :TouristAttraction - # - # # 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 [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :TouristDestination - # - # # A tourist information center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TouristInformationCenter - # - # # 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](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors. (See examples below). - # # @return [RDF::Vocabulary::Term] - # attr_reader :TouristTrip - # - # # A toy store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ToyStore - # - # # An agent tracks an object for updates.\n\nRelated actions:\n\n* [[FollowAction]]: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\n* [[SubscribeAction]]: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrackAction - # - # # The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TradeAction - # - # # A reservation for train travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrainReservation - # - # # A train station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrainStation - # - # # A trip on a commercial train line. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TrainTrip - # - # # The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TransferAction - # - # # The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TravelAction - # - # # A travel agency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TravelAgency - # - # # An indication for treating an underlying condition, symptom, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TreatmentIndication - # - # # A trip or journey. An itinerary of visits to one or more places. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Trip - # - # # A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer. - # # @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.\n\nRelated actions:\n\n* [[RegisterAction]]: antonym of UnRegisterAction.\n* [[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 - # - # # The price asked for a given offer by the respective organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UnitPriceSpecification - # - # # The act of managing by changing/editing the state of the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UpdateAction - # - # # The act of applying an object to its intended purpose. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UseAction - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserBlocks - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserCheckins - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserComments - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserDownloads - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserInteraction - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserLikes - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserPageVisits - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserPlays - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserPlusOnes - # - # # A review created by an end-user (e.g. consumer, purchaser, attendee etc.), in contrast with [[CriticReview]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserReview - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserTweets - # - # # A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vehicle - # - # # A type of blood vessel that specifically carries blood to the heart. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vein - # - # # A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Vessel - # - # # A vet's office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VeterinaryCare - # - # # Web page type: Video gallery page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoGallery - # - # # A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoGame - # - # # A short segment/part of a video game. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoGameClip - # - # # A video game series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoGameSeries - # - # # A video file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoObject - # - # # The act of consuming static visual content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ViewAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VirtualLocation - # - # # Pathogenic virus that causes viral infection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Virus - # - # # Event type: Visual arts event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VisualArtsEvent - # - # # A work of art that is primarily visual in character. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VisualArtwork - # - # # Vital signs are measures of various physiological functions in order to assess the most basic body functions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VitalSign - # - # # A volcano, like Fuji san. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Volcano - # - # # The act of expressing a preference from a fixed/finite/structured set of choices/options. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VoteAction - # - # # An advertising section of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WPAdBlock - # - # # The footer section of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WPFooter - # - # # The header section of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WPHeader - # - # # A sidebar section of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WPSideBar - # - # # The act of expressing a desire about the object. An agent wants an object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WantAction - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WarrantyPromise - # - # # A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#Labor-BringIn\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp - # # @return [RDF::Vocabulary::Term] - # attr_reader :WarrantyScope - # - # # The act of consuming dynamic/moving visual content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WatchAction - # - # # A waterfall, like Niagara. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Waterfall - # - # # The act of dressing oneself in clothing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WearAction - # - # # An application programming interface accessible over Web/Internet technologies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebAPI - # - # # Web applications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebApplication - # - # # 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]].) - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebContent - # - # # A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebPage - # - # # A web page element, like a table or an image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebPageElement - # - # # A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WebSite - # - # # A wholesale store. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WholesaleStore - # - # # The act of achieving victory in a competitive activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WinAction - # - # # A winery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Winery - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WorkBasedProgram - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WorkersUnion - # - # # The act of authoring written creative content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WriteAction - # - # # Text representing an XPath (typically but not necessarily version 1.0). - # # @return [RDF::Vocabulary::Term] - # attr_reader :XPathType - # - # # A zoo. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Zoo - # - # # The subject matter of the content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :about - # - # # Indicates whether the book is an abridged edition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :abridged - # - # # An abstract is a short description that summarizes a [[CreativeWork]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :abstract - # - # # The time needed to accelerate the vehicle from a given start velocity to a given target velocity.\n\nTypical unit code(s): SEC for seconds\n\n* 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accelerationTime - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedAnswer - # - # # The offer(s) -- e.g., product, quantity and price combinations -- included in the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedOffer - # - # # The payment method(s) accepted by seller for this offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptedPaymentMethod - # - # # 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```. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acceptsReservations - # - # # Password, PIN, or access code needed for delivery (e.g. from a locker). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessCode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessMode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessModeSufficient - # - # # Indicates that the resource is compatible with the referenced accessibility API ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilityAPI - # - # # Identifies input methods that are sufficient to fully control the described resource ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilityControl - # - # # Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilityFeature - # - # # A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilityHazard - # - # # 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." - # # @return [RDF::Vocabulary::Term] - # attr_reader :accessibilitySummary - # - # # Category of an [[Accommodation]], following real estate conventions e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values). - # # @return [RDF::Vocabulary::Term] - # attr_reader :accommodationCategory - # - # # A floorplan of some [[Accommodation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accommodationFloorPlan - # - # # The identifier for the account the payment will be applied to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountId - # - # # A minimum amount that has to be paid in every month. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountMinimumInflow - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountOverdraftLimit - # - # # Specifies the Person that is legally accountable for the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :accountablePerson - # - # # Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquireLicensePage - # - # # The organization or person from which the product was acquired. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquiredFrom - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :acrissCode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionAccessibilityRequirement - # - # # An application that can complete the request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionApplication - # - # # A sub property of object. The options subject to this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionOption - # - # # The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionPlatform - # - # # Indicates the current disposition of the Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionStatus - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actionableFeedbackPolicy - # - # # An active ingredient, typically chemical compounds and/or biologic substances. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activeIngredient - # - # # Length of time to engage in the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activityDuration - # - # # How often one should engage in the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :activityFrequency - # - # # An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actor - # - # # An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :actors - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :addOn - # - # # An additional name for a Person, can be used for a middle name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalName - # - # # If responding yes, the number of guests who will attend in addition to the invitee. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalNumberOfGuests - # - # # A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalProperty - # - # # An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalType - # - # # Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalVariable - # - # # Physical address of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :address - # - # # The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressCountry - # - # # The locality in which the street address is, and which is in the region. For example, Mountain View. - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressLocality - # - # # The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country) - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressRegion - # - # # A route by which this drug may be administered, e.g. 'oral'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :administrationRoute - # - # # The amount of time that is required between accepting the offer and the actual usage of the resource or service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :advanceBookingRequirement - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :adverseOutcome - # - # # Drugs that affect the test's results. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affectedBy - # - # # An organization that this person is affiliated with. For example, a school/university, a club, or a team. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliation - # - # # A media object representing the circumstances after performing this direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :afterMedia - # - # # The direct performer or driver of the action (animate or inanimate). e.g. *John* wrote a book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :agent - # - # # The overall rating, based on a collection of reviews or ratings, of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :aggregateRating - # - # # The kind of aircraft (e.g., "Boeing 747"). - # # @return [RDF::Vocabulary::Term] - # attr_reader :aircraft - # - # # A music album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :album - # - # # Classification of the album by it's type of content: soundtrack, live album, studio album, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :albumProductionType - # - # # A release of this album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :albumRelease - # - # # The kind of release which this album is: single, EP or album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :albumReleaseType - # - # # A collection of music albums. - # # @return [RDF::Vocabulary::Term] - # attr_reader :albums - # - # # Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alcoholWarning - # - # # The algorithm or rules to follow to compute the score. - # # @return [RDF::Vocabulary::Term] - # attr_reader :algorithm - # - # # 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 - # - # # An alias for the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternateName - # - # # A secondary title of the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternativeHeadline - # - # # Alumni of an organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alumni - # - # # An organization that the person is an alumni of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alumniOf - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :amenityFeature - # - # # The amount of money. - # # @return [RDF::Vocabulary::Term] - # attr_reader :amount - # - # # The quantity of the goods included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :amountOfThisGood - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :announcementLocation - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annualPercentageRate - # - # # The number of answers this question has received. - # # @return [RDF::Vocabulary::Term] - # attr_reader :answerCount - # - # # A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :answerExplanation - # - # # The muscle whose action counteracts the specified muscle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :antagonist - # - # # Indicates an occurence of a [[Claim]] in some [[CreativeWork]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appearance - # - # # The location in which the status applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicableLocation - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicantLocationRequirements - # - # # An application that can complete the request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :application - # - # # Type of software application, e.g. 'Game, Multimedia'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationCategory - # - # # Contact details for further information relevant to this job posting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationContact - # - # # The date at which the program stops collecting applications for the next enrollment cycle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationDeadline - # - # # The date at which the program begins collecting applications for the next enrollment cycle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationStartDate - # - # # Subcategory of the application, e.g. 'Arcade Game'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationSubCategory - # - # # The name of the application suite to which the application belongs (e.g. Excel belongs to Office). - # # @return [RDF::Vocabulary::Term] - # attr_reader :applicationSuite - # - # # The delivery method(s) to which the delivery charge or payment charge specification applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appliesToDeliveryMethod - # - # # The payment method(s) to which the payment charge specification applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appliesToPaymentMethod - # - # # Collection, [fonds](https://en.wikipedia.org/wiki/Fonds), or item held, kept or maintained by an [[ArchiveOrganization]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :archiveHeld - # - # # The area within which users can expect to reach the broadcast service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :area - # - # # The geographic area where a service or offered item is provided. - # # @return [RDF::Vocabulary::Term] - # attr_reader :areaServed - # - # # The airport where the flight terminates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalAirport - # - # # The terminal or port from which the boat arrives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalBoatTerminal - # - # # The stop or station from which the bus arrives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalBusStop - # - # # Identifier of the flight's arrival gate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalGate - # - # # The platform where the train arrives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalPlatform - # - # # The station where the train trip ends. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalStation - # - # # Identifier of the flight's arrival terminal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalTerminal - # - # # The expected arrival time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arrivalTime - # - # # The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example "20"). - # # @return [RDF::Vocabulary::Term] - # attr_reader :artEdition - # - # # The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :artMedium - # - # # The branches that comprise the arterial structure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :arterialBranch - # - # # e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artform - # - # # The actual body of the article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :articleBody - # - # # Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :articleSection - # - # # The primary artist for a work in a medium other than pencils or digital line art--for example, if the primary artwork is done in watercolors or digital paints. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artist - # - # # The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :artworkSurface - # - # # An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :aspect - # - # # Library file name e.g., mscorlib.dll, system.web.dll. - # # @return [RDF::Vocabulary::Term] - # attr_reader :assembly - # - # # Associated product/technology version. e.g., .NET Framework 4.5. - # # @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 - # - # # A NewsArticle associated with the Media Object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedArticle - # - # # A media object that encodes this CreativeWork. This property is a synonym for encoding. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedMedia - # - # # If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :associatedPathophysiology - # - # # A person that acts as performing member of a sports team; a player as opposed to a coach. - # # @return [RDF::Vocabulary::Term] - # attr_reader :athlete - # - # # A person or organization attending the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :attendee - # - # # A person attending the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :attendees - # - # # An intended audience, i.e. a group for whom something was created. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audience - # - # # The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :audienceType - # - # # An embedded audio object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :audio - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :authenticator - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :author - # - # # The availability of this item—for example In stock, Out of stock, Pre-order, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availability - # - # # The end of the availability of the product or service included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availabilityEnds - # - # # The beginning of the availability of the product or service included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availabilityStarts - # - # # The place(s) from which the offer can be obtained (e.g. store locations). - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableAtOrFrom - # - # # A means of accessing the service (e.g. a phone bank, a web site, a location, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableChannel - # - # # The delivery method(s) available for this offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableDeliveryMethod - # - # # When the item is available for pickup from the store, locker, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableFrom - # - # # The location in which the strength is available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableIn - # - # # A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]] - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableLanguage - # - # # Device required to run the application. Used in cases where a specific make/model is required to run the application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableOnDevice - # - # # A medical service available from this provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableService - # - # # An available dosage strength for the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableStrength - # - # # A diagnostic test or procedure offered by this lab. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableTest - # - # # After this date, the item will no longer be available for pickup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableThrough - # - # # An award won by or for this item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :award - # - # # Awards won by or for this item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awards - # - # # The away team in a sports event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :awayTeam - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :backstory - # - # # The type of a bank account. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bankAccountType - # - # # The base salary of the job or of an employee in an EmployeeRole. - # # @return [RDF::Vocabulary::Term] - # attr_reader :baseSalary - # - # # A sub property of recipient. The recipient blind copied on a message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bccRecipient - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bed - # - # # A media object representing the circumstances before performing this direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :beforeMedia - # - # # A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary - # # @return [RDF::Vocabulary::Term] - # attr_reader :beneficiaryBank - # - # # Description of benefits associated with the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :benefits - # - # # The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :benefitsSummaryUrl - # - # # The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bestRating - # - # # The billing address for the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingAddress - # - # # Specifies for how long this price (or price component) will be billed. Can be used, for example, to model the contractual duration of a subscription or payment plan. Type can be either a Duration or a Number (in which case the unit of measurement, for example month, is specified by the unitCode property) - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingDuration - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingIncrement - # - # # The time interval used to compute the invoice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingPeriod - # - # # Specifies after how much time this price (or price component) becomes valid and billing starts. Can be used, for example, to model a price increase after the first year of a subscription. The unit of measurement is specified by the unitCode property - # # @return [RDF::Vocabulary::Term] - # attr_reader :billingStart - # - # # The biomechanical properties of the bone. - # # @return [RDF::Vocabulary::Term] - # attr_reader :biomechnicalClass - # - # # Date of birth. - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthDate - # - # # The place where the person was born. - # # @return [RDF::Vocabulary::Term] - # attr_reader :birthPlace - # - # # The bitrate of the media object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bitrate - # - # # A posting that is part of this blog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :blogPost - # - # # The postings that are part of this blog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :blogPosts - # - # # The blood vessel that carries blood from the heart to the muscle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bloodSupply - # - # # The airline-specific indicator of boarding order / preference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :boardingGroup - # - # # The type of boarding policy used by the airline (e.g. zone-based or group-based). - # # @return [RDF::Vocabulary::Term] - # attr_reader :boardingPolicy - # - # # Location in the body of the anatomical structure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bodyLocation - # - # # Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :bodyType - # - # # The edition of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookEdition - # - # # The format of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookFormat - # - # # 'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookingAgent - # - # # The date and time the reservation was booked. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookingTime - # - # # A sub property of participant. The person that borrows the object being lent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :borrower - # - # # A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character. - # # @return [RDF::Vocabulary::Term] - # attr_reader :box - # - # # The branches that delineate from the nerve bundle. Not to be confused with [[branchOf]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :branch - # - # # A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\n\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047" is a branchCode for a particular branch. - # # @return [RDF::Vocabulary::Term] - # attr_reader :branchCode - # - # # The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)[[branch]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :branchOf - # - # # The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :brand - # - # # A set of links that can help a user understand and navigate a website hierarchy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :breadcrumb - # - # # Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :breastfeedingWarning - # - # # The media network(s) whose content is broadcast on this station. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastAffiliateOf - # - # # The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastChannelId - # - # # The name displayed in the channel guide. For many US affiliates, it is the network name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastDisplayName - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastFrequency - # - # # The frequency in MHz for a particular broadcast. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastFrequencyValue - # - # # The event being broadcast such as a sporting event or awards ceremony. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastOfEvent - # - # # The type of service required to have access to the channel (e.g. Standard or Premium). - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastServiceTier - # - # # The modulation (e.g. FM, AM, etc) used by a particular broadcast service - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastSignalModulation - # - # # The subchannel used for the broadcast. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastSubChannel - # - # # The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcastTimezone - # - # # The organization owning or operating the broadcast service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadcaster - # - # # An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :broker - # - # # Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :browserRequirements - # - # # The name of the bus (e.g. Bolt Express). - # # @return [RDF::Vocabulary::Term] - # attr_reader :busName - # - # # The unique identifier for the bus. - # # @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 - # - # # A sub property of participant. The participant/person/organization that bought the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :buyer - # - # # The artist that performed this album or recording. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byArtist - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :byDay - # - # # Defines the month(s) of the year on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-12. January is 1. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byMonth - # - # # Defines the day(s) of the month on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-31. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byMonthDay - # - # # Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month. - # # @return [RDF::Vocabulary::Term] - # attr_reader :byMonthWeek - # - # # A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :callSign - # - # # The number of calories. - # # @return [RDF::Vocabulary::Term] - # attr_reader :calories - # - # # A sub property of object. The candidate subject of this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :candidate - # - # # The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :caption - # - # # The number of grams of carbohydrates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :carbohydrateContent - # - # # The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\n\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\n\nNote: You can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cargoVolume - # - # # 'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights. - # # @return [RDF::Vocabulary::Term] - # attr_reader :carrier - # - # # Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network). - # # @return [RDF::Vocabulary::Term] - # attr_reader :carrierRequirements - # - # # A cardholder benefit that pays the cardholder a small percentage of their net expenditures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cashBack - # - # # A data catalog which contains this dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :catalog - # - # # The catalog number for the release. - # # @return [RDF::Vocabulary::Term] - # attr_reader :catalogNumber - # - # # A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :category - # - # # The condition, complication, symptom, sign, etc. caused. - # # @return [RDF::Vocabulary::Term] - # attr_reader :causeOf - # - # # A sub property of recipient. The recipient copied on a message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ccRecipient - # - # # Fictional person connected with a creative work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :character - # - # # A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage). - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterAttribute - # - # # The name of a character played in some acting or performing role, i.e. in a PerformanceRole. - # # @return [RDF::Vocabulary::Term] - # attr_reader :characterName - # - # # Cheat codes to the game. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cheatCode - # - # # The earliest someone may check into a lodging establishment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :checkinTime - # - # # The latest someone may check out of a lodging establishment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :checkoutTime - # - # # Maximal age of the child. - # # @return [RDF::Vocabulary::Term] - # attr_reader :childMaxAge - # - # # Minimal age of the child. - # # @return [RDF::Vocabulary::Term] - # attr_reader :childMinAge - # - # # A child of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :children - # - # # The number of milligrams of cholesterol. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cholesterolContent - # - # # A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :circle - # - # # A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :citation - # - # # A short summary of the specific claims reviewed in a ClaimReview. - # # @return [RDF::Vocabulary::Term] - # attr_reader :claimReviewed - # - # # Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD). - # # @return [RDF::Vocabulary::Term] - # attr_reader :clincalPharmacology - # - # # Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD). - # # @return [RDF::Vocabulary::Term] - # attr_reader :clinicalPharmacology - # - # # Position of the clip within an ordered group of clips. - # # @return [RDF::Vocabulary::Term] - # attr_reader :clipNumber - # - # # The closing hour of the place or service on the given day(s) of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :closes - # - # # A person that acts in a coaching role for a sports team. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coach - # - # # A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :code - # - # # Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex). - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeRepository - # - # # What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeSampleType - # - # # A short textual code that uniquely identifies the value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codeValue - # - # # The coding system, e.g. 'ICD-10'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :codingSystem - # - # # A colleague of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colleague - # - # # A colleague of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colleagues - # - # # A sub property of object. The collection target of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collection - # - # # The number of items in the [[Collection]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :collectionSize - # - # # The color of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :color - # - # # The individual who adds color to inked drawings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :colorist - # - # # Comments, typically from users. - # # @return [RDF::Vocabulary::Term] - # attr_reader :comment - # - # # The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere. - # # @return [RDF::Vocabulary::Term] - # attr_reader :commentCount - # - # # The text of the UserComment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :commentText - # - # # The time at which the UserComment was made. - # # @return [RDF::Vocabulary::Term] - # attr_reader :commentTime - # - # # Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :competencyRequired - # - # # A competitor in a sports event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :competitor - # - # # The person or organization who wrote a composition, or who is the composer of a work performed at some event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :composer - # - # # Specifying something physically contained by something else. Typically used here for the underlying anatomical structures, such as organs, that comprise the anatomical system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :comprisedOf - # - # # 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.\n\nFor example "Available by appointment from the Reading Room" or "Accessible only from logged-in accounts ". - # # @return [RDF::Vocabulary::Term] - # attr_reader :conditionsOfAccess - # - # # A number that confirms the given order or payment has been received. - # # @return [RDF::Vocabulary::Term] - # attr_reader :confirmationNumber - # - # # Other anatomical structures to which this structure is connected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :connectedTo - # - # # 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]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :constrainingProperty - # - # # An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers). - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactOption - # - # # A contact point for a person or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactPoint - # - # # A contact point for a person or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactPoints - # - # # A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactType - # - # # A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contactlessPayment - # - # # The basic containment relation between a place and one that contains it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :containedIn - # - # # The basic containment relation between a place and one that contains it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :containedInPlace - # - # # The basic containment relation between a place and another that it contains. - # # @return [RDF::Vocabulary::Term] - # attr_reader :containsPlace - # - # # A season that is part of the media series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :containsSeason - # - # # The location depicted or described in the content. For example, the location in a photograph or painting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentLocation - # - # # Official rating of a piece of content—for example,'MPAA PG-13'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentRating - # - # # The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentReferenceTime - # - # # File size in (mega/kilo) bytes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentSize - # - # # The supported content type(s) for an EntryPoint response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentType - # - # # Actual bytes of the media object, for example the image file or video file. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentUrl - # - # # A contraindication for this therapy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contraindication - # - # # A secondary contributor to the CreativeWork or Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contributor - # - # # The time it takes to actually cook the dish, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :cookTime - # - # # The method of cooking, such as Frying, Steaming, ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :cookingMethod - # - # # The party holding the legal copyright to the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightHolder - # - # # Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightNotice - # - # # The year during which the claimed copyright for the CreativeWork was first asserted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyrightYear - # - # # Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :correction - # - # # For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. - # # @return [RDF::Vocabulary::Term] - # attr_reader :correctionsPolicy - # - # # The category of cost, such as wholesale, retail, reimbursement cap, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :costCategory - # - # # The currency (in 3-letter of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217 - # # @return [RDF::Vocabulary::Term] - # attr_reader :costCurrency - # - # # Additional details to capture the origin of the cost data. For example, 'Medicare Part B'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :costOrigin - # - # # The cost per unit of the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :costPerUnit - # - # # Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countriesNotSupported - # - # # Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countriesSupported - # - # # The country of the principal offices of the production company or individual responsible for the movie or program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :countryOfOrigin - # - # # A sub property of location. The course where this action was taken. - # # @return [RDF::Vocabulary::Term] - # attr_reader :course - # - # # The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001). - # # @return [RDF::Vocabulary::Term] - # attr_reader :courseCode - # - # # The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. "online", "onsite" or "blended"; "synchronous" or "asynchronous"; "full-time" or "part-time") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ). - # # @return [RDF::Vocabulary::Term] - # attr_reader :courseMode - # - # # Requirements for taking the Course. May be completion of another [[Course]] or a textual description like "permission of instructor". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coursePrerequisites - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :courseWorkload - # - # # The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coverageEndTime - # - # # The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins. - # # @return [RDF::Vocabulary::Term] - # attr_reader :coverageStartTime - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creativeWorkStatus - # - # # The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creator - # - # # The category or type of credential being described, for example "degree”, “certificate”, “badge”, or more specific term. - # # @return [RDF::Vocabulary::Term] - # attr_reader :credentialCategory - # - # # Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creditText - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creditedTo - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :cssSelector - # - # # The currency accepted.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR". - # # @return [RDF::Vocabulary::Term] - # attr_reader :currenciesAccepted - # - # # The currency in which the monetary amount is expressed.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR". - # # @return [RDF::Vocabulary::Term] - # attr_reader :currency - # - # # The current price of a currency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :currentExchangeRate - # - # # Party placing the order or paying the invoice. - # # @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 ISO-8601 Time format, e.g. "23:30:00-05:00" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC). - # # @return [RDF::Vocabulary::Term] - # attr_reader :cutoffTime - # - # # collectiondate - Date for which patient counts are reported. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdCollectionDate - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdFacilityCounty - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdFacilityId - # - # # numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumBeds - # - # # numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumBedsOcc - # - # # numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19Died - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19HOPats - # - # # numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19HospPats - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19MechVentPats - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19OFMechVentPats - # - # # numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumC19OverflowPats - # - # # numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumICUBeds - # - # # numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumICUBedsOcc - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumTotBeds - # - # # numvent - MECHANICAL VENTILATORS: Total number of ventilators available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumVent - # - # # numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cvdNumVentUse - # - # # An item within in a data feed. Data feeds may have many elements. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataFeedElement - # - # # A dataset contained in this catalog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataset - # - # # The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format). - # # @return [RDF::Vocabulary::Term] - # attr_reader :datasetTimeInterval - # - # # The date on which the CreativeWork was created or the item was added to a DataFeed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateCreated - # - # # The datetime the item was removed from the DataFeed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateDeleted - # - # # The date the ticket was issued. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateIssued - # - # # The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateModified - # - # # Publication date of an online listing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datePosted - # - # # Date of first broadcast/publication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datePublished - # - # # The date/time at which the message has been read by the recipient if a single recipient exists. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateRead - # - # # The date/time the message was received if a single recipient exists. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateReceived - # - # # The date/time at which the message was sent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateSent - # - # # The date of the first registration of the vehicle with the respective public authorities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateVehicleFirstRegistered - # - # # A [dateline](https://en.wikipedia.org/wiki/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. Structured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]]. Dateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: "BEIRUT, Lebanon, June 2.", "Paris, France", "December 19, 2017 11:43AM Reporting from Washington", "Beijing/Moscow", "QUEZON CITY, Philippines". - # # @return [RDF::Vocabulary::Term] - # attr_reader :dateline - # - # # The day of the week for which these opening hours are valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dayOfWeek - # - # # Date of death. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathDate - # - # # The place where the person died. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deathPlace - # - # # The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :defaultValue - # - # # Destination address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deliveryAddress - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deliveryLeadTime - # - # # A sub property of instrument. The method of delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deliveryMethod - # - # # New entry added as the package passes through each leg of its journey (from shipment to final delivery). - # # @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 - # - # # The airport where the flight originates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureAirport - # - # # The terminal or port from which the boat departs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureBoatTerminal - # - # # The stop or station from which the bus departs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureBusStop - # - # # Identifier of the flight's departure gate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureGate - # - # # The platform from which the train departs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departurePlatform - # - # # The station from which the train departs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureStation - # - # # Identifier of the flight's departure terminal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureTerminal - # - # # The expected departure time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :departureTime - # - # # Prerequisites needed to fulfill steps in article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dependencies - # - # # The depth of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :depth - # - # # A description of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # Device required to run the application. Used in cases where a specific make/model is required to run the application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :device - # - # # One or more alternative conditions considered in the differential diagnosis process as output of a diagnosis process. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diagnosis - # - # # An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diagram - # - # # A sub property of instrument. The diet used in this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diet - # - # # Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dietFeatures - # - # # One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient. - # # @return [RDF::Vocabulary::Term] - # attr_reader :differentialDiagnosis - # - # # A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :director - # - # # A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :directors - # - # # A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :disambiguatingDescription - # - # # Any discount applied (to an Order). - # # @return [RDF::Vocabulary::Term] - # attr_reader :discount - # - # # Code used to redeem a discount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :discountCode - # - # # The currency of the discount.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR". - # # @return [RDF::Vocabulary::Term] - # attr_reader :discountCurrency - # - # # Specifies the CreativeWork associated with the UserComment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :discusses - # - # # A link to the page containing the comments of the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :discussionUrl - # - # # Information about disease prevention. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diseasePreventionInfo - # - # # Statistical information about the spread of a disease, either as [[WebContent]], or described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is provided, the page indicated might also contain more such markup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diseaseSpreadStatistics - # - # # The date that this organization was dissolved. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dissolutionDate - # - # # The distance travelled, e.g. exercising or travelling. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distance - # - # # One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distinguishingSign - # - # # A downloadable form of this dataset, at a specific location, in a specific format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distribution - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diversityPolicy - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :diversityStaffingReport - # - # # Further documentation describing the Web API in more detail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :documentation - # - # # Indicates 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 - # - # # Whether borrower is a resident of the jurisdiction where the property is located. - # # @return [RDF::Vocabulary::Term] - # attr_reader :domiciledMortgage - # - # # The time admission will commence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :doorTime - # - # # A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dosageForm - # - # # A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :doseSchedule - # - # # The unit of the dose, e.g. 'mg'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :doseUnit - # - # # The value of the dose, e.g. 500. - # # @return [RDF::Vocabulary::Term] - # attr_reader :doseValue - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :downPayment - # - # # If the file can be downloaded, URL to download the binary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :downloadUrl - # - # # The number of downvotes this question, answer or comment has received from the community. - # # @return [RDF::Vocabulary::Term] - # attr_reader :downvoteCount - # - # # The vasculature that the vein drains into. - # # @return [RDF::Vocabulary::Term] - # attr_reader :drainsTo - # - # # The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain. - # # @return [RDF::Vocabulary::Term] - # attr_reader :driveWheelConfiguration - # - # # Where a rental car can be dropped off. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dropoffLocation - # - # # When a rental car can be dropped off. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dropoffTime - # - # # Specifying a drug or medicine used in a medication procedure - # # @return [RDF::Vocabulary::Term] - # attr_reader :drug - # - # # The class of drug this belongs to (e.g., statins). - # # @return [RDF::Vocabulary::Term] - # attr_reader :drugClass - # - # # The unit in which the drug is measured, e.g. '5 mg tablet'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :drugUnit - # - # # The Dun & Bradstreet DUNS number for identifying an organization or business person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duns - # - # # A therapy that duplicates or overlaps this one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duplicateTherapy - # - # # The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days. - # # @return [RDF::Vocabulary::Term] - # attr_reader :durationOfWarranty - # - # # A media object representing the circumstances while performing this direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :duringMedia - # - # # The amount to be paid as a penalty in the event of early payment of the loan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :earlyPrepaymentPenalty - # - # # An [EIDR](https://eidr.org/) (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 - # - # # For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: "Multiple choice", "Open ended", "Flashcard". - # # @return [RDF::Vocabulary::Term] - # attr_reader :eduQuestionType - # - # # Educational background needed for the position or Occupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationRequirements - # - # # 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 - # - # # A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalCredentialAwarded - # - # # The framework to which the resource being described is aligned. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalFramework - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalLevel - # - # # 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 ). - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalProgramMode - # - # # An educationalRole of an EducationalAudience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalRole - # - # # The purpose of a work in the context of education; for example, 'assignment', 'group work'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :educationalUse - # - # # The elevation of a location ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). Values may be of the form 'NUMBER UNIT_OF_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters. - # # @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 - # - # # The duration for which the given offer is valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleDuration - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleQuantity - # - # # 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.\n\nSee also [[ineligibleRegion]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleRegion - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eligibleTransactionVolume - # - # # Email address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :email - # - # # A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :embedUrl - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :emissionsCO2 - # - # # Someone working for this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :employee - # - # # People working for this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :employees - # - # # A description of the employer, career opportunities and work environment for this position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :employerOverview - # - # # Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship). - # # @return [RDF::Vocabulary::Term] - # attr_reader :employmentType - # - # # Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :employmentUnit - # - # # The CreativeWork encoded by this media object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodesCreativeWork - # - # # A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encoding - # - # # Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.). In cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information. Unregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodingFormat - # - # # The supported encoding type(s) for an EntryPoint request. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodingType - # - # # A media object that encodes this CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encodings - # - # # The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :endDate - # - # # The end time of the clip expressed as the number of seconds from the beginning of the work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endOffset - # - # # 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.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endTime - # - # # A sub property of participant. The person/organization being supported. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endorsee - # - # # People or organizations that endorse the plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endorsers - # - # # Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++. - # # @return [RDF::Vocabulary::Term] - # attr_reader :energyEfficiencyScaleMax - # - # # Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++. - # # @return [RDF::Vocabulary::Term] - # attr_reader :energyEfficiencyScaleMin - # - # # The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement. \n\nTypical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches\n* Note 1: You can link to information about how the given value has been determined using the [[valueReference]] property.\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :engineDisplacement - # - # # The power of the vehicle's engine. Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)\n\n* Note 1: There are many different ways of measuring an engine's power. For an overview, see [http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes](http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes).\n* Note 2: You can link to information about how the given value has been determined using the [[valueReference]] property.\n* Note 3: You can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :enginePower - # - # # The type of engine or engines powering the vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :engineType - # - # # A sub property of location. The entertainment business where the action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :entertainmentBusiness - # - # # The characteristics of associated patients, such as age, gender, race etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :epidemiology - # - # # An episode of a tv, radio or game media within a series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :episode - # - # # Position of the episode within an ordered group of episodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :episodeNumber - # - # # An episode of a TV/radio series or season. - # # @return [RDF::Vocabulary::Term] - # attr_reader :episodes - # - # # This ordering relation for qualitative values indicates that the subject is equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :equal - # - # # For failed actions, more information on the cause of the failure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :error - # - # # The estimated cost of the supply or supplies consumed when performing instructions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :estimatedCost - # - # # The estimated time the flight will take. - # # @return [RDF::Vocabulary::Term] - # attr_reader :estimatedFlightDuration - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :estimatedSalary - # - # # The condition, complication, or symptom whose risk is being estimated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :estimatesRiskOf - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ethicsPolicy - # - # # Upcoming or past event associated with this place, organization, or action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :event - # - # # The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventAttendanceMode - # - # # Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventSchedule - # - # # An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :eventStatus - # - # # Upcoming or past events associated with this place or organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :events - # - # # Strength of evidence of the data used to formulate the guideline (enumerated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :evidenceLevel - # - # # Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :evidenceOrigin - # - # # A creative work that this work is an example/instance/realization/derivation of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exampleOfWork - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exceptDate - # - # # The difference between the price at which a broker or other intermediary buys and sells foreign currency. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exchangeRateSpread - # - # # Library file name e.g., mscorlib.dll, system.web.dll. - # # @return [RDF::Vocabulary::Term] - # attr_reader :executableLibraryName - # - # # A sub property of location. The course where this action was taken. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exerciseCourse - # - # # A sub property of instrument. The exercise plan used on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exercisePlan - # - # # A sub property of instrument. The diet used in this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exerciseRelatedDiet - # - # # Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exerciseType - # - # # exif data for this object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exifData - # - # # The earliest date the package may arrive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expectedArrivalFrom - # - # # The latest date the package may arrive. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expectedArrivalUntil - # - # # The likely outcome in either the short term or long term of the medical condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expectedPrognosis - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expectsAcceptanceOf - # - # # Description of skills and experience needed for the position or Occupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :experienceRequirements - # - # # Medical expert advice related to the plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expertConsiderations - # - # # Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expires - # - # # Family name. In the U.S., the last name of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :familyName - # - # # The number of grams of fat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fatContent - # - # # The fax number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :faxNumber - # - # # Features or modules provided by this application (and possibly required by other applications). - # # @return [RDF::Vocabulary::Term] - # attr_reader :featureList - # - # # Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :feesAndCommissionsSpecification - # - # # The number of grams of fiber. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fiberContent - # - # # Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileFormat - # - # # Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fileSize - # - # # A financial aid type or program which students may use to pay for tuition or fees associated with the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :financialAidEligible - # - # # Indicates the first known occurence of a [[Claim]] in some [[CreativeWork]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstAppearance - # - # # The date and place the work was first performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :firstPerformance - # - # # The distance of the flight. - # # @return [RDF::Vocabulary::Term] - # attr_reader :flightDistance - # - # # The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :flightNumber - # - # # The floor level for an [[Accommodation]] in a multi-storey building. Since counting systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible. - # # @return [RDF::Vocabulary::Term] - # attr_reader :floorLevel - # - # # A floor limit is the amount of money above which credit card transactions must be authorized. - # # @return [RDF::Vocabulary::Term] - # attr_reader :floorLimit - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :floorSize - # - # # A sub property of object. The person or organization being followed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :followee - # - # # The most generic uni-directional social relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :follows - # - # # Typical or recommended followup care after the procedure is performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :followup - # - # # A sub property of location. The specific food establishment where the action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodEstablishment - # - # # A sub property of location. The specific food event where the action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodEvent - # - # # Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foodWarning - # - # # A person who founded this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :founder - # - # # A person who founded this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :founders - # - # # The date that this organization was founded. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foundingDate - # - # # The place where the Organization was founded. - # # @return [RDF::Vocabulary::Term] - # attr_reader :foundingLocation - # - # # A flag to signal that the item, event, or place is accessible for free. - # # @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 [[OfferShippingDetails]] with [[shippingSettingsLink]] matching this [[ShippingRateSettings]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :freeShippingThreshold - # - # # How often the dose is taken, e.g. 'daily'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :frequency - # - # # A sub property of location. The original location of the object or the agent before the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fromLocation - # - # # 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.\n\nTypical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles). - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelCapacity - # - # # The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).\n\n* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\n* 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelConsumption - # - # # The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).\n\n* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\n* 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelEfficiency - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fuelType - # - # # The degree of mobility the joint allows. - # # @return [RDF::Vocabulary::Term] - # attr_reader :functionalClass - # - # # Indicates an item funded or sponsored through a [[Grant]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :fundedItem - # - # # A person or organization that supports (sponsors) something through some kind of financial contribution. - # # @return [RDF::Vocabulary::Term] - # attr_reader :funder - # - # # Video game which is played on this server. - # # @return [RDF::Vocabulary::Term] - # attr_reader :game - # - # # An item is an object within the game world that can be collected by a player or, occasionally, a non-player character. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameItem - # - # # Real or fictional location of the game (or part of game). - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameLocation - # - # # The electronic systems used to play video games. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gamePlatform - # - # # The server on which it is possible to play the game. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameServer - # - # # Links to tips, tactics, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gameTip - # - # # Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While https://schema.org/Male and https://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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :gender - # - # # Genre of the creative work, broadcast channel or group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :genre - # - # # The geo coordinates of the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geo - # - # # Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. "a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoContains - # - # # Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoCoveredBy - # - # # Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. "Every point of b is a point of (the interior or boundary of) a". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoCovers - # - # # Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: "a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoCrosses - # - # # Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: they have no point in common. They form a set of disconnected geometries." (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)) - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoDisjoint - # - # # Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship) - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoEquals - # - # # Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoIntersects - # - # # Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoMidpoint - # - # # Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoOverlaps - # - # # Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoRadius - # - # # Represents spatial relations in which two geometries (or the places they represent) touch: they have at least one boundary point in common, but no interior points." (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) ) - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoTouches - # - # # Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). - # # @return [RDF::Vocabulary::Term] - # attr_reader :geoWithin - # - # # The geographic area associated with the audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :geographicArea - # - # # Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gettingTestedInfo - # - # # Given name. In the U.S., the first name of a Person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :givenName - # - # # The [Global Location Number](http://www.gs1.org/gln) (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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :globalLocationNumber - # - # # governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :governmentBenefitsInfo - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gracePeriod - # - # # The person, organization, contact point, or audience that has been granted this permission. - # # @return [RDF::Vocabulary::Term] - # attr_reader :grantee - # - # # This ordering relation for qualitative values indicates that the subject is greater than the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :greater - # - # # This ordering relation for qualitative values indicates that the subject is greater than or equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :greaterOrEqual - # - # # A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/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](https://www.gs1.org/standards/Digital-Link/) 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](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin - # - # # The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin12 - # - # # 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 preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin13 - # - # # The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin14 - # - # # The [GTIN-8](http://apps.gs1.org/GDD/glossary/Pages/GTIN-8.aspx) 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](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gtin8 - # - # # A medical guideline related to this entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :guideline - # - # # Date on which this guideline's recommendation was made. - # # @return [RDF::Vocabulary::Term] - # attr_reader :guidelineDate - # - # # The medical conditions, treatments, etc. that are the subject of the guideline. - # # @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 - # - # # A Category code contained in this code set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCategoryCode - # - # # A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCourse - # - # # An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCourseInstance - # - # # A credential awarded to the Person or Organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCredential - # - # # A Defined Term contained in this term set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDefinedTerm - # - # # Method used for delivery or shipping. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDeliveryMethod - # - # # A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to "public". - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDigitalDocumentPermission - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasDriveThroughService - # - # # Defines the energy efficiency Category (also known as "class" or "rating") for a product according to an international energy efficiency standard - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEnergyConsumptionDetails - # - # # Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEnergyEfficiencyCategory - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasHealthAspect - # - # # A URL to a map of the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMap - # - # # Either the actual menu as a structured representation, as text, or a URL of the menu. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMenu - # - # # A food or drink item contained in a menu or menu section. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMenuItem - # - # # A subgrouping of the menu (by dishes, course, serving time period, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMenuSection - # - # # Indicates a MerchantReturnPolicy that may be applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMerchantReturnPolicy - # - # # The Person's occupation. For past professions, use Role for expressing dates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOccupation - # - # # Indicates an OfferCatalog listing for this Organization, Person, or Service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOfferCatalog - # - # # Points-of-Sales operated by the organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPOS - # - # # Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPart - # - # # Indicates a ProductReturnPolicy that may be applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasProductReturnPolicy - # - # # Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasVariant - # - # # Headline of the article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :headline - # - # # Specifying the health condition(s) of a patient, medical study, or other target audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthCondition - # - # # Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set? - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCoinsuranceOption - # - # # Whether The rate of coinsurance expressed as a number between 0.0 and 1.0. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCoinsuranceRate - # - # # Whether The copay amount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCopay - # - # # Whether the copay is before or after deductible, etc. TODO: Is this a closed set? - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCopayOption - # - # # Whether The costs to the patient for services under this network or formulary. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanCostSharing - # - # # TODO. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanDrugOption - # - # # The tier(s) of drugs offered by this formulary or insurance plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanDrugTier - # - # # The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanId - # - # # The URL that goes directly to the plan brochure for the specific standard plan or plan variation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanMarketingUrl - # - # # Name or unique ID of network. (Networks are often reused across different insurance plans). - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanNetworkId - # - # # The tier(s) for this network. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanNetworkTier - # - # # The category or type of pharmacy associated with this cost sharing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthPlanPharmacyCategory - # - # # Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :healthcareReportingData - # - # # The height of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :height - # - # # The highest price of all offers available.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :highPrice - # - # # Organization offering the job position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hiringOrganization - # - # # [[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :holdingArchive - # - # # A contact location for a person's residence. - # # @return [RDF::Vocabulary::Term] - # attr_reader :homeLocation - # - # # The home team in a sports event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :homeTeam - # - # # An honorific prefix preceding a Person's name such as Dr/Mrs/Mr. - # # @return [RDF::Vocabulary::Term] - # attr_reader :honorificPrefix - # - # # An honorific suffix following a Person's name such as M.D. /PhD/MSCSW. - # # @return [RDF::Vocabulary::Term] - # attr_reader :honorificSuffix - # - # # A hospital with which the physician or office is affiliated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hospitalAffiliation - # - # # The organization (airline, travelers' club, etc.) the membership is made with. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hostingOrganization - # - # # The hours during which this service or contact is available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hoursAvailable - # - # # How the procedure is performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :howPerformed - # - # # An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP. - # # @return [RDF::Vocabulary::Term] - # attr_reader :httpMethod - # - # # IATA identifier for an airline or airport. - # # @return [RDF::Vocabulary::Term] - # attr_reader :iataCode - # - # # ICAO identifier for an airport. - # # @return [RDF::Vocabulary::Term] - # attr_reader :icaoCode - # - # # The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifier - # - # # A physical examination that can identify this sign. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifyingExam - # - # # A diagnostic test that can identify this sign. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifyingTest - # - # # The illustrator of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :illustrator - # - # # An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :image - # - # # Imaging technique used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :imagingTechnique - # - # # The album to which this recording belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inAlbum - # - # # The CableOrSatelliteService offering the channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inBroadcastLineup - # - # # A [[CategoryCodeSet]] that contains this category code. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inCodeSet - # - # # A [[DefinedTermSet]] that contains this term. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inDefinedTermSet - # - # # 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](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inLanguage - # - # # The playlist to which this recording belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inPlaylist - # - # # Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inProductGroupWithID - # - # # Are in-store returns offered? - # # @return [RDF::Vocabulary::Term] - # attr_reader :inStoreReturnsOffered - # - # # Qualification, candidature, degree, application that Thesis supports. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inSupportOf - # - # # Description of bonus and commission compensation aspects of the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :incentiveCompensation - # - # # Description of bonus and commission compensation aspects of the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :incentives - # - # # Smaller compositions included in this work (e.g. a movement in a symphony). - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedComposition - # - # # A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedDataCatalog - # - # # A data catalog which contains this dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedInDataCatalog - # - # # The insurance plans that cover this drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedInHealthInsurancePlan - # - # # A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includedRiskFactor - # - # # Attraction located at destination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includesAttraction - # - # # Formularies covered by this plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includesHealthPlanFormulary - # - # # Networks covered by this plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includesHealthPlanNetwork - # - # # This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :includesObject - # - # # The condition, complication, etc. influenced by this factor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :increasesRiskOf - # - # # The industry associated with the job position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :industry - # - # # 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.\n\nSee also [[eligibleRegion]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ineligibleRegion - # - # # The actual infectious agent, such as a specific bacterium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :infectiousAgent - # - # # The class of infectious agent (bacteria, prion, etc.) that causes the disease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :infectiousAgentClass - # - # # A single ingredient used in the recipe, e.g. sugar, flour or garlic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredients - # - # # The individual who traces over the pencil drawings in ink after pencils are complete. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inker - # - # # The place of attachment of a muscle, or what the muscle moves. - # # @return [RDF::Vocabulary::Term] - # attr_reader :insertion - # - # # URL at which the app may be installed, if different from the URL of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :installUrl - # - # # A person assigned to instruct or provide instructional assistance for the [[CourseInstance]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :instructor - # - # # The object that helped the agent perform the action. e.g. John wrote a book with *a pen*. - # # @return [RDF::Vocabulary::Term] - # attr_reader :instrument - # - # # Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :intensity - # - # # Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactingDrug - # - # # This property is deprecated, alongside the UserInteraction types on which it depended. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactionCount - # - # # The WebSite or SoftwareApplication where the interactions took place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactionService - # - # # The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactionStatistic - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactionType - # - # # The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interactivityType - # - # # The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :interestRate - # - # # The current approximate inventory level for the item or items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inventoryLevel - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inverseOf - # - # # Whether the provider is accepting new patients. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAcceptingNewPatients - # - # # A flag to signal that the item, event, or place is accessible for free. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAccessibleForFree - # - # # A pointer to another product (or multiple products) for which this product is an accessory or spare part. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAccessoryOrSparePartFor - # - # # True if the drug is available in a generic form (regardless of name). - # # @return [RDF::Vocabulary::Term] - # attr_reader :isAvailableGenerically - # - # # A resource from which this work is derived or from which it is a modification or adaption. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isBasedOn - # - # # A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isBasedOnUrl - # - # # A pointer to another product (or multiple products) for which this product is a consumable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isConsumableFor - # - # # Indicates whether this content is family friendly. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isFamilyFriendly - # - # # Was the offer accepted as a gift for someone other than the buyer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isGift - # - # # True is the broadcast is of a live event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isLiveBroadcast - # - # # Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPartOf - # - # # Indicates some accommodation that this floor plan describes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPlanForApartment - # - # # True if this item's name is a proprietary/brand name (vs. generic name). - # # @return [RDF::Vocabulary::Term] - # attr_reader :isProprietary - # - # # A pointer to another, somehow related product (or multiple products). - # # @return [RDF::Vocabulary::Term] - # attr_reader :isRelatedTo - # - # # Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isResizable - # - # # A pointer to another, functionally similar product (or multiple products). - # # @return [RDF::Vocabulary::Term] - # attr_reader :isSimilarTo - # - # # This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[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 transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isUnlabelledFallback - # - # # Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) 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. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isVariantOf - # - # # The ISBN of the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isbn - # - # # The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isicV4 - # - # # The International Standard Recording Code for the recording. - # # @return [RDF::Vocabulary::Term] - # attr_reader :isrcCode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :issn - # - # # Identifies the issue of publication; for example, "iii" or "2". - # # @return [RDF::Vocabulary::Term] - # attr_reader :issueNumber - # - # # The organization issuing the ticket or permit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuedBy - # - # # The service through with the permit was granted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuedThrough - # - # # The International Standard Musical Work Code for the composition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :iswcCode - # - # # An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')’. - # # @return [RDF::Vocabulary::Term] - # attr_reader :item - # - # # A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemCondition - # - # # For itemListElement values, you can use simple strings (e.g. "Peter", "Paul", "Mary"), existing entities, or use ListItem.\n\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\n\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemListElement - # - # # Type of ordering (e.g. Ascending, Descending, Unordered). - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemListOrder - # - # # Current location of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemLocation - # - # # An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemOffered - # - # # The item that is being reviewed/rated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemReviewed - # - # # Item(s) being shipped. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemShipped - # - # # Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples). - # # @return [RDF::Vocabulary::Term] - # attr_reader :itinerary - # - # # Description of benefits associated with the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobBenefits - # - # # An indicator as to whether a position is available for an immediate start. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobImmediateStart - # - # # A (typically single) geographic location associated with the job position. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobLocation - # - # # A description of the job location (e.g TELECOMMUTE for telecommute jobs). - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobLocationType - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobStartDate - # - # # The job title of the person (for example, Financial Manager). - # # @return [RDF::Vocabulary::Term] - # attr_reader :jobTitle - # - # # Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jurisdiction - # - # # Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas. - # # @return [RDF::Vocabulary::Term] - # attr_reader :keywords - # - # # A textual description of known damages, both repaired and unrepaired. - # # @return [RDF::Vocabulary::Term] - # attr_reader :knownVehicleDamages - # - # # The most generic bi-directional social/work relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :knows - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :knowsAbout - # - # # 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](http://tools.ietf.org/html/bcp47). - # # @return [RDF::Vocabulary::Term] - # attr_reader :knowsLanguage - # - # # Link to the drug's label details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :labelDetails - # - # # A sub property of participant. The owner of the real estate property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :landlord - # - # # A sub property of instrument. The language used on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # Date on which the content on this web page was last reviewed for accuracy and/or completeness. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lastReviewed - # - # # The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :latitude - # - # # A schematic image showing the floorplan layout. - # # @return [RDF::Vocabulary::Term] - # attr_reader :layoutImage - # - # # The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :learningResourceType - # - # # Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :leaseLength - # - # # The official name of the organization, e.g. the registered company name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalName - # - # # The drug or supplement's legal status, including any controlled substance schedules that apply. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legalStatus - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationApplies - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationChanges - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationConsolidates - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationDate - # - # # 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") - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationDateVersion - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationIdentifier - # - # # The jurisdiction from which the legislation originates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationJurisdiction - # - # # Whether the legislation is currently in force, not in force, or partially in force. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationLegalForce - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationLegalValue - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationPassedBy - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationResponsible - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationTransposes - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :legislationType - # - # # An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. - # # @return [RDF::Vocabulary::Term] - # attr_reader :leiCode - # - # # A sub property of participant. The person that lends the object being borrowed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lender - # - # # This ordering relation for qualitative values indicates that the subject is lesser than the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lesser - # - # # This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lesserOrEqual - # - # # The individual who adds lettering, including speech balloons and sound effects, to artwork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :letterer - # - # # A license document that applies to this content, typically indicated by URL. - # # @return [RDF::Vocabulary::Term] - # attr_reader :license - # - # # A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :line - # - # # Indicates the relationship type of a Web link. - # # @return [RDF::Vocabulary::Term] - # attr_reader :linkRelationship - # - # # An update to the LiveBlog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :liveBlogUpdate - # - # # Amount of mortgage mandate that can be converted into a proper mortgage at a later stage. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanMortgageMandateAmount - # - # # The amount of money to pay in a single payment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanPaymentAmount - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanPaymentFrequency - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanRepaymentForm - # - # # The duration of the loan or credit agreement. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanTerm - # - # # The type of a loan or credit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loanType - # - # # The location of, for example, where an event is happening, where an organization is located, or where an action takes place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :location - # - # # The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :locationCreated - # - # # A full description of the lodging unit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lodgingUnitDescription - # - # # Textual description of the unit type (including suite vs. room, size of bed, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :lodgingUnitType - # - # # An associated logo. - # # @return [RDF::Vocabulary::Term] - # attr_reader :logo - # - # # The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :longitude - # - # # A sub property of participant. The loser of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :loser - # - # # The lowest price of all offers available.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowPrice - # - # # The person who wrote the words. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lyricist - # - # # The words in the song. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lyrics - # - # # Indicates if this web page element is the main subject of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainContentOfPage - # - # # Indicates the primary entity described in some page or other CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainEntity - # - # # Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mainEntityOfPage - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maintainer - # - # # A pointer to products or services offered by the organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :makesOffer - # - # # The manufacturer of the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :manufacturer - # - # # A URL to a map of the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :map - # - # # Indicates the kind of Map, from the MapCategoryType Enumeration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mapType - # - # # A URL to a map of the place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maps - # - # # A marginOfError for an [[Observation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :marginOfError - # - # # For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management. - # # @return [RDF::Vocabulary::Term] - # attr_reader :masthead - # - # # A material that something is made from, e.g. leather, wool, cotton, paper. - # # @return [RDF::Vocabulary::Term] - # attr_reader :material - # - # # The quantity of the materials being described or an expression of the physical space they occupy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :materialExtent - # - # # A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mathExpression - # - # # The highest price if the price is a range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxPrice - # - # # The upper value of some characteristic or property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxValue - # - # # The total number of individuals that may attend an event or venue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumAttendeeCapacity - # - # # The maximum number of students who may be enrolled in the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumEnrollment - # - # # Recommended intake of this supplement for a given population as defined by a specific recommending authority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumIntake - # - # # The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumPhysicalAttendeeCapacity - # - # # The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). - # # @return [RDF::Vocabulary::Term] - # attr_reader :maximumVirtualAttendeeCapacity - # - # # Description of the meals that will be provided or available for purchase. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mealService - # - # # 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](https://www.gs1.org/voc/?show=properties). - # # @return [RDF::Vocabulary::Term] - # attr_reader :measuredProperty - # - # # The measuredValue of an [[Observation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measuredValue - # - # # A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]), corresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery. For example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: "mass spectrometry" or "nmr spectroscopy" or "colorimetry" or "immunofluorescence". 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :measurementTechnique - # - # # The specific biochemical interaction through which this drug or supplement produces its pharmacological effect. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mechanismOfAction - # - # # Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared). - # # @return [RDF::Vocabulary::Term] - # attr_reader :mediaAuthenticityCategory - # - # # The median value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :median - # - # # Medical audience for page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :medicalAudience - # - # # A medical specialty of the provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :medicalSpecialty - # - # # The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :medicineSystem - # - # # Indicates that the vehicle meets the respective emission standard. - # # @return [RDF::Vocabulary::Term] - # attr_reader :meetsEmissionStandard - # - # # A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # An Organization (or ProgramMembership) to which this Person or Organization belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memberOf - # - # # A member of this organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :members - # - # # A unique identifier for the membership. - # # @return [RDF::Vocabulary::Term] - # attr_reader :membershipNumber - # - # # 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.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :membershipPointsEarned - # - # # Minimum memory requirements. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memoryRequirements - # - # # Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mentions - # - # # Either the actual menu as a structured representation, as text, or a URL of the menu. - # # @return [RDF::Vocabulary::Term] - # attr_reader :menu - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :menuAddOn - # - # # 'merchant' is an out-dated term for 'seller'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :merchant - # - # # The merchantReturnDays property indicates the number of days (from purchase) within which relevant merchant return policy is applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :merchantReturnDays - # - # # Indicates a Web page or service by URL, for product return. - # # @return [RDF::Vocabulary::Term] - # attr_reader :merchantReturnLink - # - # # A CreativeWork attached to the message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :messageAttachment - # - # # The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\n\nTypical unit code(s): KMT for kilometers, SMI for statute miles - # # @return [RDF::Vocabulary::Term] - # attr_reader :mileageFromOdometer - # - # # The lowest price if the price is a range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minPrice - # - # # The lower value of some characteristic or property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minValue - # - # # The minimum payment required at this time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minimumPaymentDue - # - # # For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues. - # # @return [RDF::Vocabulary::Term] - # attr_reader :missionCoveragePrioritiesPolicy - # - # # The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :model - # - # # The release date of a vehicle model (often used to differentiate versions of the same make and model). - # # @return [RDF::Vocabulary::Term] - # attr_reader :modelDate - # - # # The date and time the reservation was modified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :modifiedTime - # - # # The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month. - # # @return [RDF::Vocabulary::Term] - # attr_reader :monthlyMinimumRepaymentAmount - # - # # The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mpn - # - # # Whether multiple values are allowed for the property. Default is false. - # # @return [RDF::Vocabulary::Term] - # attr_reader :multipleValues - # - # # The movement the muscle generates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :muscleAction - # - # # An arrangement derived from the composition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicArrangement - # - # # The composer of the soundtrack. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicBy - # - # # The type of composition (e.g. overture, sonata, symphony, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicCompositionForm - # - # # A member of a music group—for example, John, Paul, George, or Ringo. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicGroupMember - # - # # Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicReleaseFormat - # - # # The key, mode, or scale this composition uses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :musicalKey - # - # # The North American Industry Classification System (NAICS) code for a particular organization or business person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :naics - # - # # The name of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namedPosition - # - # # Nationality of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nationality - # - # # The expected progression of the condition if it is not treated and allowed to progress naturally. - # # @return [RDF::Vocabulary::Term] - # attr_reader :naturalProgression - # - # # The underlying innervation associated with the muscle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nerve - # - # # The neurological pathway extension that involves muscle control. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nerveMotor - # - # # The total financial value of the person as calculated by subtracting assets from liabilities. - # # @return [RDF::Vocabulary::Term] - # attr_reader :netWorth - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :newsUpdatesAndGuidelines - # - # # A link to the ListItem that follows the current one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nextItem - # - # # For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines. - # # @return [RDF::Vocabulary::Term] - # attr_reader :noBylinesPolicy - # - # # This ordering relation for qualitative values indicates that the subject is not equal to the object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nonEqual - # - # # The generic name of this drug or supplement. - # # @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 - # - # # Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nsn - # - # # The number of adults staying in the unit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numAdults - # - # # The number of children staying in the unit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numChildren - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numConstraints - # - # # The number of tracks in this album or playlist. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numTracks - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAccommodationUnits - # - # # The number or type of airbags in the vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAirbags - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAvailableAccommodationUnits - # - # # The number of axles.\n\nTypical unit code(s): C62 - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfAxles - # - # # The total integer number of bathrooms in a some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): "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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfBathroomsTotal - # - # # The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfBedrooms - # - # # The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfBeds - # - # # The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfCredits - # - # # The number of doors.\n\nTypical unit code(s): C62 - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfDoors - # - # # The number of employees in an organization e.g. business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfEmployees - # - # # The number of episodes in this season or series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfEpisodes - # - # # The total number of forward gears available for the transmission system of the vehicle.\n\nTypical unit code(s): C62 - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfForwardGears - # - # # Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsFull field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field). - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfFullBathrooms - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfItems - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLoanPayments - # - # # The number of pages in the book. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPages - # - # # Number of partial bathrooms - The total number of half and ¼ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsPartial field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPartialBathrooms - # - # # Indicate how many people can play this game (minimum, maximum, or range). - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPlayers - # - # # The number of owners of the vehicle, including the current one.\n\nTypical unit code(s): C62 - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfPreviousOwners - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfRooms - # - # # The number of seasons in this series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfSeasons - # - # # A number associated with a role in an organization, for example, the number on an athlete's jersey. - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberedPosition - # - # # Nutrition information about the recipe or menu item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutrition - # - # # The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read *a book*. - # # @return [RDF::Vocabulary::Term] - # attr_reader :object - # - # # The observationDate of an [[Observation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :observationDate - # - # # The observedNode of an [[Observation]], often a [[StatisticalPopulation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :observedNode - # - # # 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 - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupancy - # - # # The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupationLocation - # - # # A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) 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.\n Note: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupationalCategory - # - # # A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :occupationalCredentialAwarded - # - # # The number of offers for the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offerCount - # - # # A pointer to the organization or person making the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offeredBy - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offers - # - # # Whether prescriptions can be delivered by mail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :offersPrescriptionByMail - # - # # 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 '-'.\n\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \n* Here is an example: <time itemprop="openingHours" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>.\n* If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>. - # # @return [RDF::Vocabulary::Term] - # attr_reader :openingHours - # - # # The opening hours of a certain place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :openingHoursSpecification - # - # # The opening hour of the place or service on the given day(s) of the week. - # # @return [RDF::Vocabulary::Term] - # attr_reader :opens - # - # # Operating systems supported (Windows 7, OSX 10.6, Android 1.6). - # # @return [RDF::Vocabulary::Term] - # attr_reader :operatingSystem - # - # # A sub property of participant. The opponent on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :opponent - # - # # A sub property of object. The options subject to this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :option - # - # # Date order was placed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderDate - # - # # The delivery of the parcel related to this order or order item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderDelivery - # - # # The identifier of the order item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderItemNumber - # - # # The current status of the order item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderItemStatus - # - # # The identifier of the transaction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderNumber - # - # # The number of the item ordered. If the property is not set, assume the quantity is one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderQuantity - # - # # The current status of the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderStatus - # - # # The item ordered. - # # @return [RDF::Vocabulary::Term] - # attr_reader :orderedItem - # - # # An organizer of an Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :organizer - # - # # Shipper's address. - # # @return [RDF::Vocabulary::Term] - # attr_reader :originAddress - # - # # The vasculature the lymphatic structure originates, or afferents, from. - # # @return [RDF::Vocabulary::Term] - # attr_reader :originatesFrom - # - # # Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response. - # # @return [RDF::Vocabulary::Term] - # attr_reader :overdosage - # - # # The date and time of obtaining the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ownedFrom - # - # # The date and time of giving up ownership on the product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ownedThrough - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ownershipFundingInfo - # - # # Products owned by the organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :owns - # - # # The page on which the work ends; for example "138" or "xvi". - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageEnd - # - # # The page on which the work starts; for example "135" or "xiii". - # # @return [RDF::Vocabulary::Term] - # attr_reader :pageStart - # - # # Any description of pages that is not separated into pageStart and pageEnd; for example, "1-6, 9, 55" or "10-12, 46-49". - # # @return [RDF::Vocabulary::Term] - # attr_reader :pagination - # - # # A parent of this person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parent - # - # # The parent of a question, answer or item in general. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentItem - # - # # The larger organization that this organization is a [[subOrganization]] of, if any. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentOrganization - # - # # A broadcast service to which the broadcast service may belong to such as regional variations of a national channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parentService - # - # # A parents of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parents - # - # # The episode to which this clip belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfEpisode - # - # # The order is being paid as part of the referenced Invoice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfInvoice - # - # # The overall order the items in this delivery were included in. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfOrder - # - # # The season to which this episode belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfSeason - # - # # The series to which this episode or season belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfSeries - # - # # The anatomical or organ system that this structure is part of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfSystem - # - # # The TV series to which this episode or season belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfTVSeries - # - # # Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partOfTrip - # - # # Other co-agents that participated in the action indirectly. e.g. John wrote a book with *Steve*. - # # @return [RDF::Vocabulary::Term] - # attr_reader :participant - # - # # Number of people the reservation should accommodate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :partySize - # - # # The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority). - # # @return [RDF::Vocabulary::Term] - # attr_reader :passengerPriorityStatus - # - # # The passenger's sequence number as assigned by the airline. - # # @return [RDF::Vocabulary::Term] - # attr_reader :passengerSequenceNumber - # - # # Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pathophysiology - # - # # A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pattern - # - # # The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n\n* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]\n* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :payload - # - # # Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentAccepted - # - # # The date that payment is due. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentDue - # - # # The date that payment is due. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentDueDate - # - # # The name of the credit card or other method of payment for the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentMethod - # - # # An identifier for the method of payment used (e.g. the last 4 digits of the credit card). - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentMethodId - # - # # The status of payment; whether the invoice has been paid or not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentStatus - # - # # The URL for sending a payment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :paymentUrl - # - # # The individual who draws the primary narrative artwork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :penciler - # - # # The 10th percentile value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentile10 - # - # # The 25th percentile value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentile25 - # - # # The 75th percentile value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentile75 - # - # # The 90th percentile value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :percentile90 - # - # # The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :performTime - # - # # A performer at the event—for example, a presenter, musician, musical group or actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :performer - # - # # Event that this person is a performer or participant in. - # # @return [RDF::Vocabulary::Term] - # attr_reader :performerIn - # - # # The main performer or performers of the event—for example, a presenter, musician, or actor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :performers - # - # # The type of permission granted the person, organization, or audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :permissionType - # - # # Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi). - # # @return [RDF::Vocabulary::Term] - # attr_reader :permissions - # - # # The target audience for this permit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :permitAudience - # - # # Indications regarding the permitted usage of the accommodation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :permittedUsage - # - # # Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :petsAllowed - # - # # Representation of a text [[textValue]] using the specified [[speechToTextMarkup]]. For example the city name of Houston in IPA: /ˈhjuːstən/. - # # @return [RDF::Vocabulary::Term] - # attr_reader :phoneticText - # - # # A photograph of this place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :photo - # - # # Photographs of this place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :photos - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :physicalRequirement - # - # # Specific physiologic benefits associated to the plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :physiologicalBenefits - # - # # Where a taxi will pick up a passenger or a rental car can be picked up. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pickupLocation - # - # # When a taxi will pickup a passenger or a rental car can be picked up. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pickupTime - # - # # Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :playMode - # - # # Player type required—for example, Flash or Silverlight. - # # @return [RDF::Vocabulary::Term] - # attr_reader :playerType - # - # # Number of players on the server. - # # @return [RDF::Vocabulary::Term] - # attr_reader :playersOnline - # - # # A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical. - # # @return [RDF::Vocabulary::Term] - # attr_reader :polygon - # - # # Indicates the populationType common to all members of a [[StatisticalPopulation]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :populationType - # - # # The position of an item in a series or sequence of items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :position - # - # # A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :possibleComplication - # - # # A possible treatment to address this condition, sign or symptom. - # # @return [RDF::Vocabulary::Term] - # attr_reader :possibleTreatment - # - # # The post office box number for PO box addresses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :postOfficeBoxNumber - # - # # A description of the postoperative procedures, care, and/or followups for this device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :postOp - # - # # The postal code. For example, 94043. - # # @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 - # - # # A description of the workup, testing, and other preparations required before implanting this device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preOp - # - # # A pointer from a previous, often discontinued variant of the product to its newer variant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :predecessorOf - # - # # Pregnancy category of this drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pregnancyCategory - # - # # Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pregnancyWarning - # - # # The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :prepTime - # - # # Typical preparation that a patient must undergo before having the procedure performed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :preparation - # - # # Link to prescribing information for the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prescribingInfo - # - # # Indicates the status of drug prescription eg. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prescriptionStatus - # - # # A link to the ListItem that preceeds the current one. - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousItem - # - # # Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :previousStartDate - # - # # The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\n\nUsage guidelines:\n\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a "content=" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols. - # # @return [RDF::Vocabulary::Term] - # attr_reader :price - # - # # This property links to all [[UnitPriceSpecification]] nodes that apply in parallel for the [[CompoundPriceSpecification]] node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceComponent - # - # # Identifies a price component (for example, a line item on an invoice), part of the total price for an offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceComponentType - # - # # The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR". - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceCurrency - # - # # The price range of the business, for example ```$$$```. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceRange - # - # # One or more detailed price specifications, indicating the unit price and delivery or payment charges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceSpecification - # - # # Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceType - # - # # The date after which the price is no longer available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :priceValidUntil - # - # # Indicates the main image on the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :primaryImageOfPage - # - # # A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :primaryPrevention - # - # # The number of the column in which the NewsArticle appears in the print edition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :printColumn - # - # # The edition of the print product in which the NewsArticle appears. - # # @return [RDF::Vocabulary::Term] - # attr_reader :printEdition - # - # # If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18). - # # @return [RDF::Vocabulary::Term] - # attr_reader :printPage - # - # # If this NewsArticle appears in print, this field indicates the print section in which the article appeared. - # # @return [RDF::Vocabulary::Term] - # attr_reader :printSection - # - # # A description of the procedure involved in setting up, using, and/or installing the device. - # # @return [RDF::Vocabulary::Term] - # attr_reader :procedure - # - # # The type of procedure, for example Surgical, Noninvasive, or Percutaneous. - # # @return [RDF::Vocabulary::Term] - # attr_reader :procedureType - # - # # Estimated processing time for the service using this channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :processingTime - # - # # Processor architecture required to run the application (e.g. IA64). - # # @return [RDF::Vocabulary::Term] - # attr_reader :processorRequirements - # - # # The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :producer - # - # # The tangible thing generated by the service, e.g. a passport, permit, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :produces - # - # # Indicates a textual identifier for a ProductGroup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productGroupID - # - # # The product identifier, such as ISBN. For example: ``` meta itemprop="productID" content="isbn:123-456-789" ```. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productID - # - # # The productReturnDays property indicates the number of days (from purchase) within which relevant product return policy is applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productReturnDays - # - # # Indicates a Web page or service by URL, for product return. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productReturnLink - # - # # The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. "iPhone") or a general category of products or services (e.g. "smartphones"). - # # @return [RDF::Vocabulary::Term] - # attr_reader :productSupported - # - # # The production company or studio responsible for the item e.g. series, video game, episode etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionCompany - # - # # The date of production of the item, e.g. vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :productionDate - # - # # Proficiency needed for this content; expected values: 'Beginner', 'Expert'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proficiencyLevel - # - # # Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programMembershipUsed - # - # # The program providing the membership. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programName - # - # # Prerequisites for enrolling in the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programPrerequisites - # - # # The type of educational or occupational program. For example, classroom, internship, alternance, etc.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programType - # - # # The computer programming language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programmingLanguage - # - # # Indicates whether API is managed or unmanaged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :programmingModel - # - # # A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be (1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3) a URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry). Standards bodies should promote a standard prefix for the identifiers of properties from their standards. - # # @return [RDF::Vocabulary::Term] - # attr_reader :propertyID - # - # # Proprietary name given to the diet plan, typically by its originator or creator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proprietaryName - # - # # The number of grams of protein. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proteinContent - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :provider - # - # # Indicates the mobility of a provided service (e.g. 'static', 'dynamic'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :providerMobility - # - # # The BroadcastService offered on this channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :providesBroadcastService - # - # # The service provided by this channel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :providesService - # - # # A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicAccess - # - # # Information about public transport closures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicTransportClosuresInfo - # - # # A publication event associated with the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publication - # - # # The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html). - # # @return [RDF::Vocabulary::Term] - # attr_reader :publicationType - # - # # An agent associated with the publication event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishedBy - # - # # A broadcast service associated with the publication event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishedOn - # - # # The publisher of the creative work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publisher - # - # # The publishing division which published the comic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publisherImprint - # - # # The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]]. While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology. - # # @return [RDF::Vocabulary::Term] - # attr_reader :publishingPrinciples - # - # # The date the item e.g. vehicle was purchased by the current owner. - # # @return [RDF::Vocabulary::Term] - # attr_reader :purchaseDate - # - # # Specific qualifications required for this role or Occupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifications - # - # # Guidelines about quarantine rules, e.g. in the context of a pandemic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :quarantineGuidelines - # - # # A sub property of instrument. The query used on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :query - # - # # The task that a player-controlled character, or group of characters may complete in order to gain a reward. - # # @return [RDF::Vocabulary::Term] - # attr_reader :quest - # - # # A sub property of object. A question. - # # @return [RDF::Vocabulary::Term] - # attr_reader :question - # - # # Relates a property to a class that constitutes (one of) the expected type(s) for values of the property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rangeIncludes - # - # # The count of total number of ratings. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingCount - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingExplanation - # - # # The rating for the content.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ratingValue - # - # # A person who reads (performs) the audiobook. - # # @return [RDF::Vocabulary::Term] - # attr_reader :readBy - # - # # Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a "hidden" input in an HTML form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :readonlyValue - # - # # A sub property of participant. The real estate agent involved in the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :realEstateAgent - # - # # A sub property of instrument. The recipe/instructions used to perform the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipe - # - # # The category of the recipe—for example, appetizer, entree, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeCategory - # - # # The cuisine of the recipe (for example, French or Ethiopian). - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeCuisine - # - # # A single ingredient used in the recipe, e.g. sugar, flour or garlic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeIngredient - # - # # A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeInstructions - # - # # The quantity produced by the recipe (for example, number of people served, number of servings, etc). - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeYield - # - # # A sub property of participant. The participant who is at the receiving end of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipient - # - # # An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recognizedBy - # - # # If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recognizingAuthority - # - # # Strength of the guideline's recommendation (e.g. 'class I'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :recommendationStrength - # - # # Recommended intake of this supplement for a given population as defined by a specific recommending authority. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recommendedIntake - # - # # The label that issued the release. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordLabel - # - # # An audio recording of the work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordedAs - # - # # The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordedAt - # - # # The CreativeWork that captured all or part of this Event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordedIn - # - # # The composition this track is a recording of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recordingOf - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :recourseLoan - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referenceQuantity - # - # # The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :referencesOrder - # - # # A refundType, from an enumerated list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :refundType - # - # # The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ. - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionDrained - # - # # The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166). - # # @return [RDF::Vocabulary::Term] - # attr_reader :regionsAllowed - # - # # Anatomical systems or structures that relate to the superficial anatomy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedAnatomy - # - # # A medical condition associated with this anatomy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedCondition - # - # # Any other drug related to this one, for example commonly-prescribed alternatives. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedDrug - # - # # A link related to this web page, for example to other related web pages. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedLink - # - # # Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedStructure - # - # # A medical therapy related to this anatomy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedTherapy - # - # # The most generic familial relation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedTo - # - # # The release date of a product or product model. This can be used to distinguish the exact variant of a product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseDate - # - # # Description of what changed in this version. - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseNotes - # - # # The album this is a release of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :releaseOf - # - # # The place and time the release was issued, expressed as a PublicationEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :releasedEvent - # - # # The Occupation for the JobPosting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relevantOccupation - # - # # If applicable, a medical specialty in which this entity is relevant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :relevantSpecialty - # - # # The number of attendee places for an event that remain unallocated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :remainingAttendeeCapacity - # - # # Whether the terms for payment of interest can be renegotiated during the life of the loan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :renegotiableLoan - # - # # Defines the number of times a recurring [[Event]] will take place - # # @return [RDF::Vocabulary::Term] - # attr_reader :repeatCount - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :repeatFrequency - # - # # Number of times one should repeat the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :repetitions - # - # # A sub property of object. The object that is being replaced. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacee - # - # # A sub property of object. The object that replaces. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replacer - # - # # The URL at which a reply may be posted to the specified UserComment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :replyToUrl - # - # # The number or other unique designator assigned to a Report by the publishing organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reportNumber - # - # # Indicates whether this image is representative of the content of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :representativeOfPage - # - # # Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.) - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredCollateral - # - # # Audiences defined by a person's gender. - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredGender - # - # # Audiences defined by a person's maximum age. - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredMaxAge - # - # # Audiences defined by a person's minimum age. - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredMinAge - # - # # The required quantity of the item(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiredQuantity - # - # # Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime). - # # @return [RDF::Vocabulary::Term] - # attr_reader :requirements - # - # # 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'). - # # @return [RDF::Vocabulary::Term] - # attr_reader :requiresSubscription - # - # # The thing -- flight, event, restaurant,etc. being reserved. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reservationFor - # - # # A unique identifier for the reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reservationId - # - # # The current status of the reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reservationStatus - # - # # A ticket associated with the reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reservedTicket - # - # # Responsibilities associated with this role or Occupation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :responsibilities - # - # # How often one should break from the activity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :restPeriods - # - # # The result produced in the action. e.g. John wrote *a book*. - # # @return [RDF::Vocabulary::Term] - # attr_reader :result - # - # # A sub property of result. The Comment created or sent as a result of this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultComment - # - # # A sub property of result. The review that resulted in the performing of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultReview - # - # # Indicates (via enumerated options) the return fees policy for a MerchantReturnPolicy - # # @return [RDF::Vocabulary::Term] - # attr_reader :returnFees - # - # # A returnPolicyCategory expresses at most one of several enumerated kinds of return. - # # @return [RDF::Vocabulary::Term] - # attr_reader :returnPolicyCategory - # - # # A review of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :review - # - # # This Review or Rating is relevant to this part or facet of the itemReviewed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewAspect - # - # # The actual body of the review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewBody - # - # # The count of total number of reviews. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewCount - # - # # The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewRating - # - # # People or organizations that have reviewed the content on this web page for accuracy and/or completeness. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewedBy - # - # # Review of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviews - # - # # A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :riskFactor - # - # # Specific physiologic risks associated to the diet plan. - # # @return [RDF::Vocabulary::Term] - # attr_reader :risks - # - # # A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :roleName - # - # # The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :roofLoad - # - # # The response (yes, no, maybe) to the RSVP. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rsvpResponse - # - # # The vasculature the lymphatic structure runs, or efferents, to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :runsTo - # - # # Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0). - # # @return [RDF::Vocabulary::Term] - # attr_reader :runtime - # - # # Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0). - # # @return [RDF::Vocabulary::Term] - # attr_reader :runtimePlatform - # - # # The RxCUI drug identifier from RXNORM. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rxcui - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :safetyConsideration - # - # # The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) ) used for the main salary information in this job posting or for this employee. - # # @return [RDF::Vocabulary::Term] - # attr_reader :salaryCurrency - # - # # The expected salary upon completing the training. - # # @return [RDF::Vocabulary::Term] - # attr_reader :salaryUponCompletion - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sameAs - # - # # What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sampleType - # - # # The number of grams of saturated fat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :saturatedFatContent - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scheduleTimezone - # - # # The date the invoice is scheduled to be paid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scheduledPaymentDate - # - # # The time the object is scheduled to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scheduledTime - # - # # Indicates (by URL or string) a particular version of a schema used in some CreativeWork. For example, a document could declare a schemaVersion using an URL such as https://schema.org/version/2.0/ if precise indication of schema version was required by some application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :schemaVersion - # - # # Information about school closures. - # # @return [RDF::Vocabulary::Term] - # attr_reader :schoolClosuresInfo - # - # # The number of screens in the movie theater. - # # @return [RDF::Vocabulary::Term] - # attr_reader :screenCount - # - # # A link to a screenshot image of the app. - # # @return [RDF::Vocabulary::Term] - # attr_reader :screenshot - # - # # Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] - # # @return [RDF::Vocabulary::Term] - # attr_reader :sdDatePublished - # - # # A license document that applies to this structured data, typically indicated by URL. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sdLicense - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sdPublisher - # - # # A season in a media series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :season - # - # # Position of the season within an ordered group of seasons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasonNumber - # - # # A season in a media series. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seasons - # - # # The location of the reserved seat (e.g., 27). - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatNumber - # - # # The row location of the reserved seat (e.g., B). - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatRow - # - # # The section location of the reserved seat (e.g. Orchestra). - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatSection - # - # # 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.\n\nTypical unit code(s): C62 for persons - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatingCapacity - # - # # The type/class of the seat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seatingType - # - # # A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :secondaryPrevention - # - # # A description of any security clearance requirements of the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :securityClearanceRequirement - # - # # The type of security screening the passenger is subject to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :securityScreening - # - # # A pointer to products or services sought by the organization or person (demand). - # # @return [RDF::Vocabulary::Term] - # attr_reader :seeks - # - # # An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seller - # - # # A sub property of participant. The participant who is at the sending end of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sender - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sensoryRequirement - # - # # The neurological pathway extension that inputs and sends information to the brain or spinal cord. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sensoryUnit - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serialNumber - # - # # A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :seriousAdverseOutcome - # - # # Status of a game server. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serverStatus - # - # # The cuisine of the restaurant. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servesCuisine - # - # # The geographic area where the service is provided. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceArea - # - # # The audience eligible for this service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceAudience - # - # # The location (e.g. civic structure, local business, etc.) where a person can go to access the service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceLocation - # - # # The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceOperator - # - # # The tangible thing generated by the service, e.g. a passport, permit, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceOutput - # - # # The phone number to use to access the service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servicePhone - # - # # The address for accessing the service by mail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servicePostalAddress - # - # # The number to access the service by text message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceSmsNumber - # - # # The type of service being offered, e.g. veterans' benefits, emergency relief, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceType - # - # # The website to access the service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :serviceUrl - # - # # The serving size, in terms of the number of volume or mass. - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingSize - # - # # A CreativeWork such as an image, video, or audio clip shared as part of this posting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sharedContent - # - # # 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 - # - # # A sibling of the person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :siblings - # - # # A sign detected by the test. - # # @return [RDF::Vocabulary::Term] - # attr_reader :signDetected - # - # # A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :signOrSymptom - # - # # The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :significance - # - # # One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. - # # @return [RDF::Vocabulary::Term] - # attr_reader :significantLink - # - # # The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. - # # @return [RDF::Vocabulary::Term] - # attr_reader :significantLinks - # - # # A standardized size of a product or creative work, often simplifying richer information into a simple textual string, either through referring to named sizes or (in the case of product markup), by adopting conventional simplifications. Use of QuantitativeValue with a unitCode or unitText can add more structure; in other cases, the /width, /height, /depth and /weight properties may be more applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :size - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :skills - # - # # The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sku - # - # # A slogan or motto associated with the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :slogan - # - # # Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. - # # @return [RDF::Vocabulary::Term] - # attr_reader :smokingAllowed - # - # # The number of milligrams of sodium. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sodiumContent - # - # # Additional content for a software application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :softwareAddOn - # - # # Software application help. - # # @return [RDF::Vocabulary::Term] - # attr_reader :softwareHelp - # - # # Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime). - # # @return [RDF::Vocabulary::Term] - # attr_reader :softwareRequirements - # - # # Version of the software instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :softwareVersion - # - # # The Organization on whose behalf the creator was working. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceOrganization - # - # # The neurological pathway that originates the neurons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourcedFrom - # - # # The "spatial" property can be used in cases when more specific properties (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spatial - # - # # The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spatialCoverage - # - # # Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech. The *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values: 1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned. 2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the [[cssSelector]] property. 3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property. 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :speakable - # - # # Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :specialCommitments - # - # # The special opening hours of a certain place.\n\nUse this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :specialOpeningHoursSpecification - # - # # One of the domain specialities to which this web page's content applies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :specialty - # - # # Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898). - # # @return [RDF::Vocabulary::Term] - # attr_reader :speechToTextMarkup - # - # # 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.\n\nTypical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot\n\n*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.\n* 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :speed - # - # # The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spokenByCharacter - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sponsor - # - # # A type of sport (e.g. Baseball). - # # @return [RDF::Vocabulary::Term] - # attr_reader :sport - # - # # A sub property of location. The sports activity location where this action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportsActivityLocation - # - # # A sub property of location. The sports event where this action occurred. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportsEvent - # - # # A sub property of participant. The sports team that participated on this action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sportsTeam - # - # # The person's spouse. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spouse - # - # # The stage of the condition, if applicable. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stage - # - # # The stage represented as a number, e.g. 3. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stageAsNumber - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :starRating - # - # # The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). - # # @return [RDF::Vocabulary::Term] - # attr_reader :startDate - # - # # The start time of the clip expressed as the number of seconds from the beginning of the work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startOffset - # - # # 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.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :startTime - # - # # The status of the study (enumerated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :status - # - # # The position of the steering wheel or similar device (mostly for cars). - # # @return [RDF::Vocabulary::Term] - # attr_reader :steeringPosition - # - # # A single step item (as HowToStep, text, document, video, etc.) or a HowToSection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :step - # - # # The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stepValue - # - # # A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred). - # # @return [RDF::Vocabulary::Term] - # attr_reader :steps - # - # # Storage requirements (free space required). - # # @return [RDF::Vocabulary::Term] - # attr_reader :storageRequirements - # - # # The street address. For example, 1600 Amphitheatre Pkwy. - # # @return [RDF::Vocabulary::Term] - # attr_reader :streetAddress - # - # # The units of an active ingredient's strength, e.g. mg. - # # @return [RDF::Vocabulary::Term] - # attr_reader :strengthUnit - # - # # The value of an active ingredient's strength, e.g. 325. - # # @return [RDF::Vocabulary::Term] - # attr_reader :strengthValue - # - # # The name given to how bone physically connects to each other. - # # @return [RDF::Vocabulary::Term] - # attr_reader :structuralClass - # - # # A medical study or trial related to this entity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :study - # - # # Specifics about the observational study design (enumerated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :studyDesign - # - # # The location in which the study is taking/took place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :studyLocation - # - # # A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study. - # # @return [RDF::Vocabulary::Term] - # attr_reader :studySubject - # - # # This is a StupidProperty! - for testing only - # # @return [RDF::Vocabulary::Term] - # attr_reader :stupidProperty - # - # # An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subEvent - # - # # Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subEvents - # - # # A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subOrganization - # - # # The individual reservations included in the package. Typically a repeated property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subReservation - # - # # The substage, e.g. 'a' for Stage IIIa. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subStageSuffix - # - # # Component (sub-)structure(s) that comprise this anatomical structure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subStructure - # - # # A component test of the panel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subTest - # - # # Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subTrip - # - # # A CreativeWork or Event about this Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectOf - # - # # Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47). - # # @return [RDF::Vocabulary::Term] - # attr_reader :subtitleLanguage - # - # # A pointer from a newer variant of a product to its previous, often discontinued predecessor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :successorOf - # - # # The number of grams of sugar. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sugarContent - # - # # An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suggestedAnswer - # - # # The gender of the person or audience. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suggestedGender - # - # # Maximal age recommended for viewing content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suggestedMaxAge - # - # # Minimal age recommended for viewing content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suggestedMinAge - # - # # Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suitableForDiet - # - # # An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :superEvent - # - # # Relates a term (i.e. a property, class or enumeration) to one that supersedes it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supersededBy - # - # # A sub-property of instrument. A supply consumed when performing instructions or a direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supply - # - # # The area to which the artery supplies blood. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supplyTo - # - # # Supporting data for a SoftwareApplication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supportingData - # - # # A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :surface - # - # # Indicates a target EntryPoint for an Action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :target - # - # # A sub property of object. The collection target of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetCollection - # - # # 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 - # - # # Type of app development: phone, Metro style, desktop, XBox, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetPlatform - # - # # Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetPopulation - # - # # Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetProduct - # - # # The URL of a node in an established educational framework. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetUrl - # - # # The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. - # # @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 - # - # # The "temporal" property can be used in cases where more specific properties (e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :temporal - # - # # The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written "2011/2012"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL. Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via "1939/1945". Open-ended date ranges can be written with ".." in place of the end date. For example, "2015-11/.." indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :temporalCoverage - # - # # A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]] - # # @return [RDF::Vocabulary::Term] - # attr_reader :termCode - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :termDuration - # - # # Human-readable terms of service documentation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :termsOfService - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :termsPerYear - # - # # The textual content of this CreativeWork. - # # @return [RDF::Vocabulary::Term] - # attr_reader :text - # - # # Text value being annotated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textValue - # - # # Thumbnail image for an image or video. - # # @return [RDF::Vocabulary::Term] - # attr_reader :thumbnail - # - # # A thumbnail image relevant to the Thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :thumbnailUrl - # - # # The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tickerSymbol - # - # # The unique identifier for the ticket. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ticketNumber - # - # # Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ticketToken - # - # # The seat associated with the ticket. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ticketedSeat - # - # # The time of day the program normally runs. For example, "evenings". - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeOfDay - # - # # Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeRequired - # - # # The expected length of time to complete the program if attending full-time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeToComplete - # - # # The type of tissue sample required for the test. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tissueSample - # - # # The title of the job. - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # An [EIDR](https://eidr.org/) (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 - # - # # A sub property of recipient. The recipient who was directly sent the message. - # # @return [RDF::Vocabulary::Term] - # attr_reader :toRecipient - # - # # A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tocContinuation - # - # # Indicates a [[HyperTocEntry]] in a [[HyperToc]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tocEntry - # - # # The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR)\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tongueWeight - # - # # A sub property of instrument. An object used (but not consumed) when performing instructions or a direction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tool - # - # # The torque (turning force) of the vehicle's engine.\n\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\n\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :torque - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalJobOpenings - # - # # The total amount due. - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalPaymentDue - # - # # The total price for the reservation or ticket, including applicable taxes, shipping, etc.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalPrice - # - # # The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601). - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalTime - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tourBookingPage - # - # # Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :touristType - # - # # A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording. - # # @return [RDF::Vocabulary::Term] - # attr_reader :track - # - # # Shipper tracking number. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackingNumber - # - # # Tracking url for the parcel delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trackingUrl - # - # # A music recording (track)—usually a single song. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tracks - # - # # The trailer of a movie or tv/radio series, season, episode, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trailer - # - # # The permitted weight of a trailer attached to the vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trailerWeight - # - # # The name of the train (e.g. The Orient Express). - # # @return [RDF::Vocabulary::Term] - # attr_reader :trainName - # - # # The unique identifier for the train. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trainNumber - # - # # The estimated salary earned while in the program. - # # @return [RDF::Vocabulary::Term] - # attr_reader :trainingSalary - # - # # The number of grams of trans fat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :transFatContent - # - # # If this MediaObject is an AudioObject or VideoObject, the transcript of that object. - # # @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 - # - # # Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :translator - # - # # How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :transmissionMethod - # - # # Information about travel bans, e.g. in the context of a pandemic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :travelBans - # - # # Specifics about the trial design (enumerated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :trialDesign - # - # # The anatomical or organ system that the vein flows into; a larger structure that the vein connects to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tributary - # - # # The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeOfBed - # - # # The product that this structured value is referring to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typeOfGood - # - # # The typical expected age range, e.g. '7-9', '11-'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typicalAgeRange - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typicalCreditsPerTerm - # - # # A medical test typically performed given this condition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :typicalTest - # - # # The person or organization the reservation or ticket is for. - # # @return [RDF::Vocabulary::Term] - # attr_reader :underName - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unitCode - # - # # A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for unitCode. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unitText - # - # # For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unnamedSourcesPolicy - # - # # The number of grams of unsaturated fat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :unsaturatedFatContent - # - # # Date when this media object was uploaded to this site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :uploadDate - # - # # The number of upvotes this question, answer or comment has received from the community. - # # @return [RDF::Vocabulary::Term] - # attr_reader :upvoteCount - # - # # URL of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :url - # - # # An url template (RFC6570) that will be used to construct the target of the execution of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :urlTemplate - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :usageInfo - # - # # A condition the test is used to diagnose. - # # @return [RDF::Vocabulary::Term] - # attr_reader :usedToDiagnose - # - # # The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. - # # @return [RDF::Vocabulary::Term] - # attr_reader :userInteractionCount - # - # # Device used to perform the test. - # # @return [RDF::Vocabulary::Term] - # attr_reader :usesDevice - # - # # The standard for interpreting thePlan ID. The preferred is "HIOS". See the Centers for Medicare & Medicaid Services for more details. - # # @return [RDF::Vocabulary::Term] - # attr_reader :usesHealthPlanIdStandard - # - # # Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :utterances - # - # # The duration of validity of a permit or similar thing. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validFor - # - # # The date when the item becomes valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validFrom - # - # # The geographic area where a permit or similar thing is valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validIn - # - # # The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validThrough - # - # # The date when the item is no longer valid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validUntil - # - # # The value of the quantitative value or property value node.\n\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\n* For [[PropertyValue]], it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. - # # @return [RDF::Vocabulary::Term] - # attr_reader :value - # - # # Specifies whether the applicable value-added tax (VAT) is included in the price specification or not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueAddedTaxIncluded - # - # # Specifies the allowed range for number of characters in a literal value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueMaxLength - # - # # Specifies the minimum allowed range for number of characters in a literal value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueMinLength - # - # # Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueName - # - # # Specifies a regular expression for testing literal values according to the HTML spec. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valuePattern - # - # # A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueReference - # - # # Whether the property must be filled in to complete the action. Default is false. - # # @return [RDF::Vocabulary::Term] - # attr_reader :valueRequired - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variableMeasured - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variablesMeasured - # - # # A description of the variant cover for the issue, if the issue is a variant printing. For example, "Bryan Hitch Variant Cover" or "2nd Printing Variant". - # # @return [RDF::Vocabulary::Term] - # attr_reader :variantCover - # - # # Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. "color"; terms defined elsewhere can be referenced with their URIs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :variesBy - # - # # The Value-added Tax ID of the organization or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vatID - # - # # A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleConfiguration - # - # # Information about the engine or engines of the vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleEngine - # - # # The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleIdentificationNumber - # - # # The color or color combination of the interior of the vehicle. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleInteriorColor - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleInteriorType - # - # # The release date of a vehicle model (often used to differentiate versions of the same make and model). - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleModelDate - # - # # 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.\n\nTypical unit code(s): C62 for persons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleSeatingCapacity - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleSpecialUsage - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :vehicleTransmission - # - # # 'vendor' is an earlier term for 'seller'. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vendor - # - # # Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :verificationFactCheckingPolicy - # - # # The version of the CreativeWork embodied by a specified resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :version - # - # # An embedded video object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :video - # - # # The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoFormat - # - # # The frame size of the video. - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoFrameSize - # - # # The quality of the video. - # # @return [RDF::Vocabulary::Term] - # attr_reader :videoQuality - # - # # Identifies the volume of publication or multi-part work; for example, "iii" or "2". - # # @return [RDF::Vocabulary::Term] - # attr_reader :volumeNumber - # - # # Any FDA or other warnings about the drug (text or URL). - # # @return [RDF::Vocabulary::Term] - # attr_reader :warning - # - # # The warranty promise(s) included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :warranty - # - # # The warranty promise(s) included in the offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :warrantyPromise - # - # # The scope of the warranty promise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :warrantyScope - # - # # The time when a passenger can check into the flight online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :webCheckinTime - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :webFeed - # - # # The weight of the product or person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :weight - # - # # The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\n\nTypical unit code(s): KGM for kilogram, LBR for pound\n\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. - # # @return [RDF::Vocabulary::Term] - # attr_reader :weightTotal - # - # # The distance between the centers of the front and rear wheels.\n\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet - # # @return [RDF::Vocabulary::Term] - # attr_reader :wheelbase - # - # # The width of the item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :width - # - # # A sub property of participant. The winner of the action. - # # @return [RDF::Vocabulary::Term] - # attr_reader :winner - # - # # The number of words in the text of the Article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :wordCount - # - # # Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workExample - # - # # A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent). - # # @return [RDF::Vocabulary::Term] - # attr_reader :workFeatured - # - # # The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm). - # # @return [RDF::Vocabulary::Term] - # attr_reader :workHours - # - # # A contact location for a person's place of work. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workLocation - # - # # A work performed in some event, for example a play performed in a TheaterEvent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workPerformed - # - # # The movie presented during this event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workPresented - # - # # A work that is a translation of the content of this work. e.g. 西遊記 has an English workTranslation “Journey to the West”,a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workTranslation - # - # # Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :workload - # - # # Organizations that the person works for. - # # @return [RDF::Vocabulary::Term] - # attr_reader :worksFor - # - # # The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :worstRating - # - # # 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". - # # @return [RDF::Vocabulary::Term] - # attr_reader :xpath - # - # # The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). - # # @return [RDF::Vocabulary::Term] - # attr_reader :yearBuilt - # - # # The size of the business in annual revenue. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yearlyRevenue - # - # # The age of the business. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yearsInOperation - # - # # The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :yield - # - # # Abdomen clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Abdomen - # - # # Represents the activation fee part of the total price for an offered product, for example a cellphone contract - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActivationFee - # - # # An in-progress action (e.g, while watching the movie, or driving to a location). - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActiveActionStatus - # - # # Active, but not recruiting new participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ActiveNotRecruiting - # - # # Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AerobicActivity - # - # # AlbumRelease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AlbumRelease - # - # # All-wheel Drive is a transmission layout where the engine drives all four wheels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AllWheelDriveConfiguration - # - # # Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnaerobicActivity - # - # # A specific branch of medical science that pertains to study of anesthetics and their application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Anesthesia - # - # # Appearance assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Appearance - # - # # Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudiobookFormat - # - # # AuthenticMediaObject: An unaltered image that is presented in an accurate way. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AuthenticContent - # - # # 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]]". - # # @return [RDF::Vocabulary::Term] - # attr_reader :AuthoritativeLegalValue - # - # # A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ayurvedic - # - # # Physical activity that is engaged to help maintain posture and balance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Balance - # - # # BasicIncome: this is a benefit for basic income. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BasicIncome - # - # # Content about the benefits and advantages of usage or utilization of topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BenefitsHealthAspect - # - # # BroadcastRelease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BroadcastRelease - # - # # BusinessSupport: this is a benefit for supporting businesses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BusinessSupport - # - # # CDFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CDFormat - # - # # X-ray computed tomography imaging. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CT - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cardiovascular - # - # # Cardiovascular system assessment withclinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CardiovascularExam - # - # # A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CaseSeries - # - # # CassetteFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CassetteFormat - # - # # Information about the causes and main actions that gave rise to the topic. - # # @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 - # - # # Represents the cleaning fee part of the total price for an offered product, for example a vacation rental - # # @return [RDF::Vocabulary::Term] - # attr_reader :CleaningFee - # - # # Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Clinician - # - # # Play mode: CoOp. Co-operative games, where you play on the same team with friends. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CoOp - # - # # Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CohortStudy - # - # # Permission to add comments to the document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommentPermission - # - # # A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas - # # @return [RDF::Vocabulary::Term] - # attr_reader :CommunityHealth - # - # # CompilationAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CompilationAlbum - # - # # Completed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Completed - # - # # An action that has already taken place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CompletedActionStatus - # - # # Content about contagion mechanisms and contagiousness information over the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ContagiousnessHealthAspect - # - # # Studies carried out on pre-existing data (usually from 'snapshot' surveys), such as that collected by the Census Bureau. Sometimes called Prevalence Studies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :CrossSectional - # - # # DJMixAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DJMixAlbum - # - # # DVDFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DVDFormat - # - # # Indicates that the item is damaged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DamagedCondition - # - # # 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]]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DefinitiveLegalValue - # - # # DemoAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DemoAlbum - # - # # A branch of medicine that is involved in the dental care. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dentistry - # - # # Something relating to or practicing dermatology - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dermatologic - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dermatology - # - # # A diet appropriate for people with diabetes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DiabeticDiet - # - # # A medical device used for diagnostic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Diagnostic - # - # # Dietetic and nutrition as a medical speciality. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DietNutrition - # - # # DigitalAudioTapeFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalAudioTapeFormat - # - # # DigitalFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DigitalFormat - # - # # DisabilitySupport: this is a benefit for disability support. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DisabilitySupport - # - # # Indicates that the item has been discontinued. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Discontinued - # - # # Represents the distance fee (e.g., price per km or mile) part of the total price for an offered product, for example a car rental - # # @return [RDF::Vocabulary::Term] - # attr_reader :DistanceFee - # - # # A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DoubleBlindedTrial - # - # # Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments - # # @return [RDF::Vocabulary::Term] - # attr_reader :Downpayment - # - # # Indicates the usage of the vehicle for driving school. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DrivingSchoolVehicleUsage - # - # # Book format: Ebook. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EBook - # - # # EPRelease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EPRelease - # - # # Represents EU Energy Efficiency Class A as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryA - # - # # Represents EU Energy Efficiency Class A+ as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryA1Plus - # - # # Represents EU Energy Efficiency Class A++ as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryA2Plus - # - # # Represents EU Energy Efficiency Class A+++ as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryA3Plus - # - # # Represents EU Energy Efficiency Class B as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryB - # - # # Represents EU Energy Efficiency Class C as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryC - # - # # Represents EU Energy Efficiency Class D as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryD - # - # # Represents EU Energy Efficiency Class E as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryE - # - # # Represents EU Energy Efficiency Class F as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryF - # - # # Represents EU Energy Efficiency Class G as defined in EU energy labeling regulations - # # @return [RDF::Vocabulary::Term] - # attr_reader :EUEnergyEfficiencyCategoryG - # - # # Ear function assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Ear - # - # # A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Emergency - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Endocrine - # - # # Represents EnergyStar certification - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnergyStarCertified - # - # # Enrolling participants by invitation only. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EnrollingByInvitation - # - # # The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s). - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventCancelled - # - # # Indicates that the event was changed to allow online participation. See [[eventAttendanceMode]] for specifics of whether it is now fully or partially online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventMovedOnline - # - # # The event has been postponed and no new date has been set. The event's previousStartDate should be set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventPostponed - # - # # The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated). - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventRescheduled - # - # # The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventScheduled - # - # # Data derived from multiple randomized clinical trials or meta-analyses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EvidenceLevelA - # - # # Data derived from a single randomized trial, or nonrandomized studies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EvidenceLevelB - # - # # Only consensus opinion of experts, case studies, or standard-of-care. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EvidenceLevelC - # - # # A ExchangeRefund ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExchangeRefund - # - # # Eye or ophtalmological function assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Eye - # - # # A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters). - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryA - # - # # A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryB - # - # # A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryC - # - # # A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryD - # - # # A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAcategoryX - # - # # A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FDAnotEvaluated - # - # # An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FailedActionStatus - # - # # The boolean value false. - # # @return [RDF::Vocabulary::Term] - # attr_reader :False - # - # # The female gender. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Female - # - # # Physical activity that is engaged in to improve joint and muscle flexibility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Flexibility - # - # # Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FourWheelDriveConfiguration - # - # # The day of the week between Thursday and Saturday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Friday - # - # # Front-wheel drive is a transmission layout where the engine drives the front wheels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FrontWheelDriveConfiguration - # - # # A FullRefund ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :FullRefund - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gastroenterologic - # - # # A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Genetic - # - # # Genitourinary system function assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Genitourinary - # - # # A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Geriatric - # - # # A diet exclusive of gluten. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GlutenFreeDiet - # - # # Book format: GraphicNovel. May represent a bound collection of ComicIssue instances. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GraphicNovel - # - # # The airline boards by groups based on check-in time, priority, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GroupBoardingPolicy - # - # # A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gynecologic - # - # # A diet conforming to Islamic dietary practices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HalalDiet - # - # # Book format: Hardcover. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hardcover - # - # # Head assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Head - # - # # HealthCare: this is a benefit for health care. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HealthCare - # - # # Uses devices to support users with hearing impairments. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HearingImpairedSupported - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Hematologic - # - # # A diet conforming to Hindu dietary practices, in particular, beef-free. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HinduDiet - # - # # A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Homeopathic - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HowOrWhereHealthAspect - # - # # Indicates that a legislation is in force. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InForce - # - # # Indicates that the item is in stock. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InStock - # - # # Indicates that the item is available only at physical locations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InStoreOnly - # - # # Something in medical science that pertains to infectious diseases i.e caused by bacterial, viral, fungal or parasitic infections. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Infectious - # - # # Represents the installment pricing component of the total price for an offered product - # # @return [RDF::Vocabulary::Term] - # attr_reader :Installment - # - # # An international trial. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InternationalTrial - # - # # Represents the invoice price of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InvoicePrice - # - # # An ItemList ordered with lower values listed first. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemListOrderAscending - # - # # An ItemList ordered with higher values listed first. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemListOrderDescending - # - # # An ItemList ordered with no explicit order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ItemListUnordered - # - # # A diet conforming to Jewish dietary practices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :KosherDiet - # - # # A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research - # # @return [RDF::Vocabulary::Term] - # attr_reader :LaboratoryScience - # - # # LaserDiscFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LaserDiscFormat - # - # # The steering position is on the left side of the vehicle (viewed from the main direction of driving). - # # @return [RDF::Vocabulary::Term] - # attr_reader :LeftHandDriving - # - # # Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LeisureTimeActivity - # - # # Indicates that the item has limited availability. - # # @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 - # - # # Represents the list price (the price a product is actually advertised for) of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ListPrice - # - # # LiveAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LiveAlbum - # - # # Information about coping or life related to the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LivingWithHealthAspect - # - # # A DeliveryMethod in which an item is made available via locker. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LockerDelivery - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Longitudinal - # - # # A diet focused on reduced calorie intake. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LowCalorieDiet - # - # # A diet focused on reduced fat and cholesterol intake. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LowFatDiet - # - # # A diet appropriate for people with lactose intolerance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LowLactoseDiet - # - # # A diet focused on reduced sodium intake. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LowSaltDiet - # - # # Lung and respiratory system clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Lung - # - # # Magnetic resonance imaging. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MRI - # - # # Represents the manufacturer suggested retail price ("MSRP") of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MSRP - # - # # The male gender. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Male - # - # # Related topics may be treated by a Topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MayTreatHealthAspect - # - # # Medical researchers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MedicalResearcher - # - # # MerchantReturnFiniteReturnWindow: there is a finite window for product returns. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnFiniteReturnWindow - # - # # MerchantReturnNotPermitted: product returns are not permitted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnNotPermitted - # - # # MerchantReturnUnlimitedWindow: there is an unlimited window for product returns. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnUnlimitedWindow - # - # # MerchantReturnUnspecified: a product return policy is not specified here. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MerchantReturnUnspecified - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Midwifery - # - # # Represents the minimum advertised price ("MAP") (as dictated by the manufacturer) of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MinimumAdvertisedPrice - # - # # Content about common misconceptions and myths that are related to a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MisconceptionsHealthAspect - # - # # MissingContext: ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :MissingContext - # - # # MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MixedEventAttendanceMode - # - # # MixtapeAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MixtapeAlbum - # - # # The day of the week between Sunday and Tuesday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Monday - # - # # A trial that takes place at multiple centers. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MultiCenterTrial - # - # # Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MultiPlayer - # - # # A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Musculoskeletal - # - # # Musculoskeletal system clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MusculoskeletalExam - # - # # Neck assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Neck - # - # # Neurological system clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Neuro - # - # # A specific branch of medical science that studies the nerves and nervous system and its respective disease states. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Neurologic - # - # # Indicates that the item is new. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NewCondition - # - # # A type of medical procedure that involves noninvasive techniques. - # # @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 - # - # # Indicates that a legislation is currently not in force. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotInForce - # - # # Not yet recruiting. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotYetRecruiting - # - # # A health profession of a person formally educated and trained in the care of the sick or infirm person. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Nursing - # - # # The character of a medical substance, typically a medicine, of being available over the counter or not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OTC - # - # # An observational study design. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Observational - # - # # A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Obstetric - # - # # Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OccupationalActivity - # - # # 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). - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfficialLegalValue - # - # # OfflineEventAttendanceMode - an event that is primarily conducted offline. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfflineEventAttendanceMode - # - # # Game server status: OfflinePermanently. Server is offline and not available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfflinePermanently - # - # # Game server status: OfflineTemporarily. Server is offline now but it can be online soon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfflineTemporarily - # - # # A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnSitePickup - # - # # A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Oncologic - # - # # OneTimePayments: this is a benefit for one-time payments for individuals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OneTimePayments - # - # # Game server status: Online. Server is available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Online - # - # # OnlineEventAttendanceMode - an event that is primarily conducted online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineEventAttendanceMode - # - # # Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineFull - # - # # Indicates that the item is available only online. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OnlineOnly - # - # # A trial design in which the researcher knows the full details of the treatment, and so does the patient. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OpenTrial - # - # # The science or practice of testing visual acuity and prescribing corrective lenses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Optometric - # - # # OrderStatus representing cancellation of an order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderCancelled - # - # # OrderStatus representing successful delivery of an order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderDelivered - # - # # OrderStatus representing that an order is in transit. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderInTransit - # - # # OrderStatus representing that payment is due on an order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderPaymentDue - # - # # OrderStatus representing availability of an order for pickup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderPickupAvailable - # - # # OrderStatus representing that there is a problem with the order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderProblem - # - # # OrderStatus representing that an order is being processed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderProcessing - # - # # OrderStatus representing that an order has been returned. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrderReturned - # - # # OriginalShippingFees ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :OriginalShippingFees - # - # # A system of medicine focused on promoting the body's innate ability to heal itself. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Osteopathic - # - # # A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Otolaryngologic - # - # # Indicates that the item is out of stock. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OutOfStock - # - # # Overview of the content. Contains a summarized view of the topic with the most relevant information for an introduction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OverviewHealthAspect - # - # # Positron emission tomography imaging. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PET - # - # # PaidLeave: this is a benefit for paid leave. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaidLeave - # - # # Book format: Paperback. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Paperback - # - # # A private parcel service as the delivery mode available for a certain offer.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#DHL\n* http://purl.org/goodrelations/v1#FederalExpress\n* http://purl.org/goodrelations/v1#UPS - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParcelService - # - # # ParentalSupport: this is a benefit for parental support. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParentalSupport - # - # # A parking map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ParkingMap - # - # # Indicates that parts of the legislation are in force, and parts are not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PartiallyInForce - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pathology - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PatientExperienceHealthAspect - # - # # An automatic payment system is in place and will be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentAutomaticallyApplied - # - # # The payment has been received and processed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentComplete - # - # # The payee received the payment, but it was declined for some reason. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentDeclined - # - # # The payment is due, but still within an acceptable time to be received. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentDue - # - # # The payment is due and considered late. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PaymentPastDue - # - # # A specific branch of medical science that specializes in the care of infants, children and adolescents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pediatric - # - # # A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PercutaneousProcedure - # - # # The practice or art and science of preparing and dispensing drugs and medicines. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PharmacySpecialty - # - # # The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery.. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Physiotherapy - # - # # A placebo-controlled trial design. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlaceboControlledTrial - # - # # A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PlasticSurgery - # - # # Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Podiatric - # - # # A description of an action that is supported. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PotentialActionStatus - # - # # Indicates that the item is available for pre-order. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreOrder - # - # # Indicates that the item is available for ordering and delivery before general availability. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreSale - # - # # Available by prescription only. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrescriptionOnly - # - # # Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PreventionHealthAspect - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrimaryCare - # - # # ProductReturnFiniteReturnWindow: there is a finite window for product returns. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnFiniteReturnWindow - # - # # ProductReturnNotPermitted: product returns are not permitted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnNotPermitted - # - # # ProductReturnUnlimitedWindow: there is an unlimited window for product returns. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnUnlimitedWindow - # - # # ProductReturnUnspecified: a product return policy is not specified here. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProductReturnUnspecified - # - # # Typical progression and happenings of life course of the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrognosisHealthAspect - # - # # A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Psychiatric - # - # # Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicHealth - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PublicHolidays - # - # # A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pulmonary - # - # # Radiography is an imaging technique that uses electromagnetic radiation other than visible light, especially X-rays, to view the internal structure of a non-uniformly composed and opaque object such as the human body. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Radiography - # - # # A randomized trial design. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RandomizedTrial - # - # # Permission to read or view the document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReadPermission - # - # # Real-wheel drive is a transmission layout where the engine drives the rear wheels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RearWheelDriveConfiguration - # - # # Recruiting participants. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Recruiting - # - # # Indicates that the item is refurbished. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RefurbishedCondition - # - # # A registry-based study design. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Registry - # - # # The drug's cost represents the maximum reimbursement paid by an insurer for the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReimbursementCap - # - # # Other prominent or relevant topics tied to the main topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RelatedTopicsHealthAspect - # - # # RemixAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RemixAlbum - # - # # A specific branch of medical science that pertains to the study of the kidneys and its respective disease states. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Renal - # - # # Indicates the usage of the vehicle as a rental car. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RentalVehicleUsage - # - # # The status for a previously confirmed reservation that is now cancelled. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationCancelled - # - # # The status of a confirmed reservation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationConfirmed - # - # # The status of a reservation on hold pending an update like credit card number or flight changes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationHold - # - # # The status of a reservation when a request has been sent, but not confirmed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReservationPending - # - # # The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease). - # # @return [RDF::Vocabulary::Term] - # attr_reader :RespiratoryTherapy - # - # # RestockingFees ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :RestockingFees - # - # # Results are available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResultsAvailable - # - # # Results are not available. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResultsNotAvailable - # - # # The drug's cost represents the retail cost of the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Retail - # - # # ReturnShippingFees ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReturnShippingFees - # - # # A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rheumatologic - # - # # The steering position is on the right side of the vehicle (viewed from the main direction of driving). - # # @return [RDF::Vocabulary::Term] - # attr_reader :RightHandDriving - # - # # Information about the risk factors and possible complications that may follow a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RisksOrComplicationsHealthAspect - # - # # The invitee may or may not attend. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpResponseMaybe - # - # # The invitee will not attend. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpResponseNo - # - # # The invitee will attend. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RsvpResponseYes - # - # # Represents the suggested retail price ("SRP") of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SRP - # - # # Represents a sale price (usually active for a limited period) of an offered product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SalePrice - # - # # The day of the week between Friday and Sunday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Saturday - # - # # Content about how to screen or further filter a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ScreeningHealthAspect - # - # # A seating map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SeatingMap - # - # # Information about questions that may be asked, when to see a professional, measures before seeing a doctor or content about the first consultation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SeeDoctorHealthAspect - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SelfCareHealthAspect - # - # # Side effects that can be observed from the usage of the topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SideEffectsHealthAspect - # - # # A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SingleBlindedTrial - # - # # A trial that takes place at a single center. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SingleCenterTrial - # - # # Play mode: SinglePlayer. Which is played by a lone player. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SinglePlayer - # - # # SingleRelease. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SingleRelease - # - # # Skin assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Skin - # - # # Indicates that the item has sold out. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoldOut - # - # # SoundtrackAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SoundtrackAlbum - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpeechPathology - # - # # SpokenWordAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SpokenWordAlbum - # - # # Stages that can be observed from a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StagesHealthAspect - # - # # A StoreCreditRefund ... - # # @return [RDF::Vocabulary::Term] - # attr_reader :StoreCreditRefund - # - # # Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StrengthTraining - # - # # StudioAlbum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :StudioAlbum - # - # # Represents the subscription pricing component of the total price for an offered product - # # @return [RDF::Vocabulary::Term] - # attr_reader :Subscription - # - # # The day of the week between Saturday and Monday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sunday - # - # # A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Surgical - # - # # Suspended. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Suspended - # - # # Symptoms or related symptoms of a Topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SymptomsHealthAspect - # - # # Indicates the usage of the car as a taxi. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TaxiVehicleUsage - # - # # Terminated. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Terminated - # - # # A medical device used for therapeutic purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Therapeutic - # - # # Throat assessment with clinical examination. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Throat - # - # # The day of the week between Wednesday and Friday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thursday - # - # # The associated telephone number is toll free. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TollFree - # - # # A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Toxicologic - # - # # A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TraditionalChinese - # - # # A transit map. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TransitMap - # - # # Treatments or related therapies for a Topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TreatmentsHealthAspect - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TripleBlindedTrial - # - # # The boolean value true. - # # @return [RDF::Vocabulary::Term] - # attr_reader :True - # - # # The day of the week between Monday and Wednesday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tuesday - # - # # Categorization and other types related to a topic. - # # @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 - # - # # UnemploymentSupport: this is a benefit for unemployment support. - # # @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 - # - # # 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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Urologic - # - # # Content about how, when, frequency and dosage of a topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsageOrScheduleHealthAspect - # - # # Indicates that the item is used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UsedCondition - # - # # A diet exclusive of all animal products. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VeganDiet - # - # # A diet exclusive of animal meat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VegetarianDiet - # - # # A venue map (e.g. for malls, auditoriums, museums, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :VenueMap - # - # # VinylFormat. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VinylFormat - # - # # The day of the week between Tuesday and Thursday. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Wednesday - # - # # The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WesternConventional - # - # # The drug's cost represents the wholesale acquisition cost of the drug. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Wholesale - # - # # Withdrawn. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Withdrawn - # - # # Permission to write or edit the document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WritePermission - # - # # X-ray imaging. - # # @return [RDF::Vocabulary::Term] - # attr_reader :XRay - # - # # The airline boards by zones of the plane. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ZoneBoardingPolicy - # - # end SCHEMAS = Class.new(RDF::StrictVocabulary("https://schema.org/")) do # Class definitions term :"3DModel", comment: "A 3D model represents some kind of 3D content, which may have [[encoding]]s in one or more [[MediaObject]]s. Many 3D formats are available (e.g. see [Wikipedia](https://en.wikipedia.org/wiki/Category:3D_graphics_file_formats)); specific encoding formats can be represented using the [[encodingFormat]] property applied to the relevant [[MediaObject]]. For the\ncase 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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2140".freeze, label: "3DModel".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2140".freeze, - subClassOf: "schemas:MediaObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AMRadioChannel, comment: "A radio channel that uses AM.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "AMRadioChannel".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - subClassOf: "schemas:RadioChannel".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/RadioChannel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :APIReference, comment: "Reference documentation for application programming interfaces (APIs).".freeze, label: "APIReference".freeze, - subClassOf: "schemas:TechArticle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TechArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AboutPage, comment: "Web page type: About page.".freeze, label: "AboutPage".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AcceptAction, comment: "The act of committing to/adopting an object.\\n\\nRelated actions:\\n\\n* [[RejectAction]]: The antonym of AcceptAction.".freeze, label: "AcceptAction".freeze, - subClassOf: "schemas:AllocateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AllocateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Accommodation, comment: "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Accommodation".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AccountingService, comment: "Accountancy business.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).\n ".freeze, label: "AccountingService".freeze, - subClassOf: "schemas:FinancialService".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FinancialService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AchieveAction, comment: "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.".freeze, label: "AchieveAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Action, 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.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, label: "Action".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ActionAccessSpecification, comment: "A set of requirements that a must be fulfilled in order to perform an Action.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "ActionAccessSpecification".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ActionStatusType, comment: "The status of an Action.".freeze, label: "ActionStatusType".freeze, - subClassOf: "schemas:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ActivateAction, comment: "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).".freeze, label: "ActivateAction".freeze, - subClassOf: "schemas:ControlAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ControlAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AddAction, comment: "The act of editing by adding an object to a collection.".freeze, label: "AddAction".freeze, - subClassOf: "schemas:UpdateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UpdateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AdministrativeArea, comment: "A geographical region, typically under the jurisdiction of a particular government.".freeze, label: "AdministrativeArea".freeze, - subClassOf: "schemas:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AdultEntertainment, comment: "An adult entertainment establishment.".freeze, label: "AdultEntertainment".freeze, - subClassOf: "schemas:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AdvertiserContentArticle, comment: "An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "AdvertiserContentArticle".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subClassOf: "schemas:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AggregateOffer, comment: "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\\n\\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined.".freeze, label: "AggregateOffer".freeze, - subClassOf: "schemas:Offer".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Offer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AggregateRating, comment: "The average rating based on multiple ratings or reviews.".freeze, label: "AggregateRating".freeze, - subClassOf: "schemas:Rating".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Rating".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AgreeAction, comment: "The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants.".freeze, label: "AgreeAction".freeze, - subClassOf: "schemas:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Airline, comment: "An organization that provides flights for passengers.".freeze, label: "Airline".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Airport, comment: "An airport.".freeze, label: "Airport".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AlignmentObject, comment: "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould 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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, label: "AlignmentObject".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AllocateAction, comment: "The act of organizing tasks/objects/events by associating resources to it.".freeze, label: "AllocateAction".freeze, - subClassOf: "schemas:OrganizeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/OrganizeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AmpStory, comment: "A creative work with a visual storytelling format intended to be viewed online, particularly on mobile devices.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2646".freeze, label: "AmpStory".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2646".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AmusementPark, comment: "An amusement park.".freeze, label: "AmusementPark".freeze, - subClassOf: "schemas:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "AnalysisNewsArticle".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subClassOf: "schemas:NewsArticle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AnatomicalStructure, comment: "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "AnatomicalStructure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AnatomicalSystem, comment: "An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "AnatomicalSystem".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AnimalShelter, comment: "Animal shelter.".freeze, label: "AnimalShelter".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Answer, comment: "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange".freeze, label: "Answer".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange".freeze, - subClassOf: "schemas:Comment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Comment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Apartment".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Accommodation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ApartmentComplex, comment: "Residence type: Apartment complex.".freeze, label: "ApartmentComplex".freeze, - subClassOf: "schemas:Residence".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Residence".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AppendAction, comment: "The act of inserting at the end if an ordered collection.".freeze, label: "AppendAction".freeze, - subClassOf: "schemas:InsertAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InsertAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ApplyAction, comment: "The act of registering to an organization/service without the guarantee to receive it.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.".freeze, label: "ApplyAction".freeze, - subClassOf: "schemas:OrganizeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/OrganizeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ApprovedIndication, comment: "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "ApprovedIndication".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalIndication".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalIndication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Aquarium, comment: "Aquarium.".freeze, label: "Aquarium".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "ArchiveComponent".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "ArchiveOrganization".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ArriveAction, comment: "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.".freeze, label: "ArriveAction".freeze, - subClassOf: "schemas:MoveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MoveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ArtGallery, comment: "An art gallery.".freeze, label: "ArtGallery".freeze, - subClassOf: "schemas:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Artery, comment: "A type of blood vessel that specifically carries blood away from the heart.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/51114001".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Artery".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:Vessel".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Vessel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Article, 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.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "Article".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AskAction, comment: "The act of posing a question / favor to someone.\\n\\nRelated actions:\\n\\n* [[ReplyAction]]: Appears generally as a response to AskAction.".freeze, label: "AskAction".freeze, - subClassOf: "schemas:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "AskPublicNewsArticle".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subClassOf: "schemas:NewsArticle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AssessAction, comment: "The act of forming one's opinion, reaction or sentiment.".freeze, label: "AssessAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AssignAction, comment: "The act of allocating an action/event/task to some destination (someone or something).".freeze, label: "AssignAction".freeze, - subClassOf: "schemas:AllocateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AllocateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/source": "http://www.productontology.org/id/Atlas".freeze, label: "Atlas".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:source": "http://www.productontology.org/id/Atlas".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Attorney, comment: "Professional service: Attorney. \\n\\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous.".freeze, label: "Attorney".freeze, - subClassOf: "schemas:LegalService".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LegalService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Audience, comment: "Intended audience for an item, i.e. the group for whom the item was created.".freeze, label: "Audience".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AudioObject, comment: "An audio file.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "AudioObject".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, - subClassOf: "schemas:MediaObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Audiobook, comment: "An audiobook.".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, label: "Audiobook".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - subClassOf: ["schemas:AudioObject".freeze, "schemas:Book".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/AudioObject".freeze, "https://schema.org/Book".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AuthorizeAction, comment: "The act of granting permission to an object.".freeze, label: "AuthorizeAction".freeze, - subClassOf: "schemas:AllocateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AllocateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoBodyShop, comment: "Auto body shop.".freeze, label: "AutoBodyShop".freeze, - subClassOf: "schemas:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoDealer, comment: "An car dealership.".freeze, label: "AutoDealer".freeze, - subClassOf: "schemas:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoPartsStore, comment: "An auto parts store.".freeze, label: "AutoPartsStore".freeze, - subClassOf: ["schemas:AutomotiveBusiness".freeze, "schemas:Store".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/AutomotiveBusiness".freeze, "https://schema.org/Store".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoRental, comment: "A car rental business.".freeze, label: "AutoRental".freeze, - subClassOf: "schemas:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoRepair, comment: "Car repair business.".freeze, label: "AutoRepair".freeze, - subClassOf: "schemas:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoWash, comment: "A car wash business.".freeze, label: "AutoWash".freeze, - subClassOf: "schemas:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutomatedTeller, comment: "ATM/cash machine.".freeze, label: "AutomatedTeller".freeze, - subClassOf: "schemas:FinancialService".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FinancialService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutomotiveBusiness, comment: "Car repair, sales, or parts.".freeze, label: "AutomotiveBusiness".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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](https://en.wikipedia.org/wiki/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "BackgroundNewsArticle".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subClassOf: "schemas:NewsArticle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Bacteria, comment: "Pathogenic bacteria that cause bacterial infection.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Bacteria".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:InfectiousAgentClass".freeze + type: "https://schema.org/InfectiousAgentClass".freeze term :Bakery, comment: "A bakery.".freeze, label: "Bakery".freeze, - subClassOf: "schemas:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "BankAccount".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subClassOf: "schemas:FinancialProduct".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BankOrCreditUnion, comment: "Bank or credit union.".freeze, label: "BankOrCreditUnion".freeze, - subClassOf: "schemas:FinancialService".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FinancialService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BarOrPub, comment: "A bar or pub.".freeze, label: "BarOrPub".freeze, - subClassOf: "schemas:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Barcode, comment: "An image of a visual machine-readable code such as a barcode or QR code.".freeze, label: "Barcode".freeze, - subClassOf: "schemas:ImageObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ImageObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Beach, comment: "Beach.".freeze, label: "Beach".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BeautySalon, comment: "Beauty salon.".freeze, label: "BeautySalon".freeze, - subClassOf: "schemas:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BedAndBreakfast, comment: "Bed and breakfast.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, label: "BedAndBreakfast".freeze, - subClassOf: "schemas:LodgingBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "BedDetails".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BedType, comment: "A type of bed. This is used for indicating the bed or beds available in an accommodation.".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1262".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze], label: "BedType".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1262".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze], - subClassOf: "schemas:QualitativeValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BefriendAction, comment: "The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, BefriendAction implies that the connection is reciprocal.".freeze, label: "BefriendAction".freeze, - subClassOf: "schemas:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BikeStore, comment: "A bike store.".freeze, label: "BikeStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Blog, comment: "A blog.".freeze, label: "Blog".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BlogPosting, comment: "A blog post.".freeze, label: "BlogPosting".freeze, - subClassOf: "schemas:SocialMediaPosting".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SocialMediaPosting".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BloodTest, comment: "A medical test performed on a sample of a patient's blood.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "BloodTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalTest".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BoardingPolicyType, comment: "A type of boarding policy used by an airline.".freeze, label: "BoardingPolicyType".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BoatReservation, comment: "A reservation for boat travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "BoatReservation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BoatTerminal, comment: "A terminal for boats, ships, and other water vessels.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "BoatTerminal".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BoatTrip, comment: "A trip on a commercial ferry line.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "BoatTrip".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - subClassOf: "schemas:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BodyOfWater, comment: "A body of water, such as a sea, ocean, or lake.".freeze, label: "BodyOfWater".freeze, - subClassOf: "schemas:Landform".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Landform".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Bone, comment: "Rigid connective tissue that comprises up the skeletal structure of the human body.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Bone".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Book, comment: "A book.".freeze, label: "Book".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BookFormatType, comment: "The publication format of the book.".freeze, label: "BookFormatType".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BookSeries, comment: "A series of books. Included books can be indicated with the hasPart property.".freeze, label: "BookSeries".freeze, - subClassOf: "schemas:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BookStore, comment: "A bookstore.".freeze, label: "BookStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BookmarkAction, comment: "An agent bookmarks/flags/labels/tags/marks an object.".freeze, label: "BookmarkAction".freeze, - subClassOf: "schemas:OrganizeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/OrganizeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Boolean, comment: "Boolean: True or False.".freeze, label: "Boolean".freeze, - type: ["rdfs:Class".freeze, "schemas:DataType".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "https://schema.org/DataType".freeze] term :BorrowAction, comment: "The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\\n\\nRelated actions:\\n\\n* [[LendAction]]: Reciprocal of BorrowAction.".freeze, label: "BorrowAction".freeze, - subClassOf: "schemas:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BowlingAlley, comment: "A bowling alley.".freeze, label: "BowlingAlley".freeze, - subClassOf: "schemas:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BrainStructure, comment: "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "BrainStructure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "Brand".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BreadcrumbList, comment: "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\\n\\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.\n ".freeze, label: "BreadcrumbList".freeze, - subClassOf: "schemas:ItemList".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ItemList".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Brewery, comment: "Brewery.".freeze, label: "Brewery".freeze, - subClassOf: "schemas:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Bridge, comment: "A bridge.".freeze, label: "Bridge".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BroadcastChannel, comment: "A unique instance of a BroadcastService on a CableOrSatelliteService lineup.".freeze, label: "BroadcastChannel".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BroadcastEvent, comment: "An over the air or online broadcast event.".freeze, label: "BroadcastEvent".freeze, - subClassOf: "schemas:PublicationEvent".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PublicationEvent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BroadcastFrequencySpecification, comment: "The frequency in MHz and the modulation used for a particular BroadcastService.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "BroadcastFrequencySpecification".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BroadcastService, comment: "A delivery service through which content is provided via broadcast over the air or online.".freeze, label: "BroadcastService".freeze, - subClassOf: "schemas:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "BrokerageAccount".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - subClassOf: "schemas:InvestmentOrDeposit".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InvestmentOrDeposit".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BuddhistTemple, comment: "A Buddhist temple.".freeze, label: "BuddhistTemple".freeze, - subClassOf: "schemas:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "BusOrCoach".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - subClassOf: "schemas:Vehicle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Vehicle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusReservation, comment: "A reservation for bus travel. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "BusReservation".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusStation, comment: "A bus station.".freeze, label: "BusStation".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusStop, comment: "A bus stop.".freeze, label: "BusStop".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusTrip, comment: "A trip on a commercial bus line.".freeze, label: "BusTrip".freeze, - subClassOf: "schemas:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessAudience, comment: "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.".freeze, label: "BusinessAudience".freeze, - subClassOf: "schemas:Audience".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Audience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessEntityType, comment: "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Business\\n* http://purl.org/goodrelations/v1#Enduser\\n* http://purl.org/goodrelations/v1#PublicInstitution\\n* http://purl.org/goodrelations/v1#Reseller\n\t ".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "BusinessEntityType".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessEvent, comment: "Event type: Business event.".freeze, label: "BusinessEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BusinessFunction, comment: "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ConstructionInstallation\\n* http://purl.org/goodrelations/v1#Dispose\\n* http://purl.org/goodrelations/v1#LeaseOut\\n* http://purl.org/goodrelations/v1#Maintain\\n* http://purl.org/goodrelations/v1#ProvideService\\n* http://purl.org/goodrelations/v1#Repair\\n* http://purl.org/goodrelations/v1#Sell\\n* http://purl.org/goodrelations/v1#Buy\n ".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "BusinessFunction".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :BuyAction, comment: "The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.".freeze, label: "BuyAction".freeze, - subClassOf: "schemas:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CDCPMDRecord, comment: "A CDCPMDRecord is a data structure representing a record in a CDC tabular data format\n used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative\n definitions used as the source here.\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CableOrSatelliteService, comment: "A service which provides access to media programming like TV or radio. Access may be via cable or satellite.".freeze, label: "CableOrSatelliteService".freeze, - subClassOf: "schemas:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CafeOrCoffeeShop, comment: "A cafe or coffee shop.".freeze, label: "CafeOrCoffeeShop".freeze, - subClassOf: "schemas:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Campground, comment: "A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \\n\\n\nIn 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](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Campground".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: ["schemas:CivicStructure".freeze, "schemas:LodgingBusiness".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CivicStructure".freeze, "https://schema.org/LodgingBusiness".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CampingPitch, comment: "A [[CampingPitch]] is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or [[Campground]].\\n\\n\nIn British English a campsite, or campground, 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.\n(Source: Wikipedia see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "CampingPitch".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Accommodation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Canal, comment: "A canal, like the Panama Canal.".freeze, label: "Canal".freeze, - subClassOf: "schemas:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CancelAction, comment: "The act of asserting that a future event/action is no longer going to happen.\\n\\nRelated actions:\\n\\n* [[ConfirmAction]]: The antonym of CancelAction.".freeze, label: "CancelAction".freeze, - subClassOf: "schemas:PlanAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlanAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Car, comment: "A car is a wheeled, self-powered motor vehicle used for transportation.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "Car".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - subClassOf: "schemas:Vehicle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Vehicle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "CarUsageType".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Casino, comment: "A casino.".freeze, label: "Casino".freeze, - subClassOf: "schemas:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CategoryCode, comment: "A Category Code.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "CategoryCode".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - subClassOf: "schemas:DefinedTerm".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DefinedTerm".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CategoryCodeSet, comment: "A set of Category Code values.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "CategoryCodeSet".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - subClassOf: "schemas:DefinedTermSet".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DefinedTermSet".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CatholicChurch, comment: "A Catholic church.".freeze, label: "CatholicChurch".freeze, - subClassOf: "schemas:Church".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Church".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Cemetery, comment: "A graveyard.".freeze, label: "Cemetery".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Chapter, comment: "One of the sections into which a book is divided. A chapter usually has a section number or a name.".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, label: "Chapter".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CheckAction, comment: "An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state.".freeze, label: "CheckAction".freeze, - subClassOf: "schemas:FindAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FindAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CheckInAction, comment: "The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\\n\\nRelated actions:\\n\\n* [[CheckOutAction]]: The antonym of CheckInAction.\\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence.".freeze, label: "CheckInAction".freeze, - subClassOf: "schemas:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CheckOutAction, comment: "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check in) or place (e.g. hotel).\\n\\nRelated actions:\\n\\n* [[CheckInAction]]: The antonym of CheckOutAction.\\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.".freeze, label: "CheckOutAction".freeze, - subClassOf: "schemas:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CheckoutPage, comment: "Web page type: Checkout page.".freeze, label: "CheckoutPage".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ChildCare, comment: "A Childcare center.".freeze, label: "ChildCare".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ChildrensEvent, comment: "Event type: Children's event.".freeze, label: "ChildrensEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ChooseAction, comment: "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.".freeze, label: "ChooseAction".freeze, - subClassOf: "schemas:AssessAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AssessAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Church, comment: "A church.".freeze, label: "Church".freeze, - subClassOf: "schemas:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :City, comment: "A city or town.".freeze, label: "City".freeze, - subClassOf: "schemas:AdministrativeArea".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CityHall, comment: "A city hall.".freeze, label: "CityHall".freeze, - subClassOf: "schemas:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CivicStructure, comment: "A public structure, such as a town hall or concert hall.".freeze, label: "CivicStructure".freeze, - subClassOf: "schemas:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Claim, comment: "A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.\n\n Beyond [[ClaimReview]], the Claim type can be associated with related creative works - for example a [[ScholaryArticle]] or [[Question]] might be [[about]] some [[Claim]].\n\n At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration.\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, label: "Claim".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ClaimReview, comment: "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, label: "ClaimReview".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, - subClassOf: "schemas:Review".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Class, comment: "A class, also often called a 'Type'; equivalent to rdfs:Class.".freeze, - equivalentClass: "rdfs:Class".freeze, + equivalentClass: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + "https://schema.org/isPartOf": "https://meta.schema.org".freeze, label: "Class".freeze, - "schemas:isPartOf": "https://meta.schema.org".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Clip, comment: "A short TV or radio program or a segment/part of a program.".freeze, label: "Clip".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ClothingStore, comment: "A clothing store.".freeze, label: "ClothingStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Code, comment: "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.".freeze, + "https://schema.org/supersededBy": "https://schema.org/SoftwareSourceCode".freeze, label: "Code".freeze, - "schemas:supersededBy": "schemas:SoftwareSourceCode".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Collection, comment: "A collection of items e.g. creative works or products.".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, label: "Collection".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CollectionPage, comment: "Web page type: Collection page.".freeze, label: "CollectionPage".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CollegeOrUniversity, comment: "A college, university, or other third-level educational institution.".freeze, label: "CollegeOrUniversity".freeze, - subClassOf: "schemas:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComedyClub, comment: "A comedy club.".freeze, label: "ComedyClub".freeze, - subClassOf: "schemas:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComedyEvent, comment: "Event type: Comedy event.".freeze, label: "ComedyEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComicCoverArt, comment: "The artwork on the cover of a comic.".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, label: "ComicCoverArt".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - subClassOf: ["schemas:ComicStory".freeze, "schemas:CoverArt".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/ComicStory".freeze, "https://schema.org/CoverArt".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComicIssue, comment: "Individual comic issues are serially published as\n \tpart of a larger series. For the sake of consistency, even one-shot issues\n \tbelong to a series comprised of a single issue. All comic issues can be\n \tuniquely identified by: the combination of the name and volume number of the\n \tseries to which the issue belongs; the issue number; and the variant\n \tdescription of the issue (if any).".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, label: "ComicIssue".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - subClassOf: "schemas:PublicationIssue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PublicationIssue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComicSeries, comment: "A sequential publication of comic stories under a\n \tunifying title, for example \"The Amazing Spider-Man\" or \"Groo the\n \tWanderer\".".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, label: "ComicSeries".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - subClassOf: "schemas:Periodical".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Periodical".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComicStory, comment: "The term \"story\" is any indivisible, re-printable\n \tunit of a comic, including the interior stories, covers, and backmatter. Most\n \tcomics have at least two stories: a cover (ComicCoverArt) and an interior story.".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, label: "ComicStory".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Comment, comment: "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks.".freeze, label: "Comment".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CommentAction, comment: "The act of generating a comment about a subject.".freeze, label: "CommentAction".freeze, - subClassOf: "schemas:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CommunicateAction, comment: "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.".freeze, label: "CommunicateAction".freeze, - subClassOf: "schemas:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CompleteDataFeed, comment: "A [[CompleteDataFeed]] is a [[DataFeed]] whose standard representation includes content for every item currently in the feed.\n\nThis is the equivalent of Atom's element as defined in Feed Paging and Archiving [RFC 5005](https://tools.ietf.org/html/rfc5005), 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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1397".freeze, label: "CompleteDataFeed".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1397".freeze, - subClassOf: "schemas:DataFeed".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DataFeed".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "CompoundPriceSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:PriceSpecification".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComputerLanguage, comment: "This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [[Language]] type.".freeze, label: "ComputerLanguage".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ComputerStore, comment: "A computer store.".freeze, label: "ComputerStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ConfirmAction, comment: "The act of notifying someone that a future event/action is going to happen as expected.\\n\\nRelated actions:\\n\\n* [[CancelAction]]: The antonym of ConfirmAction.".freeze, label: "ConfirmAction".freeze, - subClassOf: "schemas:InformAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InformAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Consortium, comment: "A Consortium is a membership [[Organization]] whose members are typically Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1559".freeze, label: "Consortium".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1559".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ConsumeAction, comment: "The act of ingesting information/resources/food.".freeze, label: "ConsumeAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContactPage, comment: "Web page type: Contact page.".freeze, label: "ContactPage".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContactPoint, comment: "A contact point—for example, a Customer Complaints department.".freeze, label: "ContactPoint".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ContactPointOption, comment: "Enumerated options related to a ContactPoint.".freeze, label: "ContactPointOption".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Continent, comment: "One of the continents (for example, Europe or Africa).".freeze, label: "Continent".freeze, - subClassOf: "schemas:Landform".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Landform".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ControlAction, comment: "An agent controls a device or application.".freeze, label: "ControlAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ConvenienceStore, comment: "A convenience store.".freeze, label: "ConvenienceStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Conversation, comment: "One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties.".freeze, label: "Conversation".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CookAction, comment: "The act of producing/preparing food.".freeze, label: "CookAction".freeze, - subClassOf: "schemas:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Corporation, comment: "Organization: A business corporation.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "Corporation".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CorrectionComment, comment: "A [[comment]] that corrects [[CreativeWork]].".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1950".freeze, label: "CorrectionComment".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1950".freeze, - subClassOf: "schemas:Comment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Comment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Country, comment: "A country.".freeze, label: "Country".freeze, - subClassOf: "schemas:AdministrativeArea".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Course, comment: "A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.".freeze, label: "Course".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:LearningResource".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/LearningResource".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CourseInstance, comment: "An instance of a [[Course]] which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.".freeze, label: "CourseInstance".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Courthouse, comment: "A courthouse.".freeze, label: "Courthouse".freeze, - subClassOf: "schemas:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CoverArt, comment: "The artwork on the outer surface of a CreativeWork.".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, label: "CoverArt".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - subClassOf: "schemas:VisualArtwork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/VisualArtwork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CovidTestingFacility, comment: "A CovidTestingFacility is a [[MedicalClinic]] where testing for the COVID-19 Coronavirus\n disease is available. If the facility is being made available from an established [[Pharmacy]], [[Hotel]], or other\n non-medical organization, multiple types can be listed. This makes it easier to re-use existing schema.org information\n about that place e.g. contact info, address, opening hours. Note that in an emergency, such information may not always be reliable.\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "CovidTestingFacility".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - subClassOf: "schemas:MedicalClinic".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalClinic".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreateAction, comment: "The act of deliberately creating/producing/generating/building a result out of the agent.".freeze, label: "CreateAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreativeWork, comment: "The most generic kind of creative work, including books, movies, photographs, software programs, etc.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "CreativeWork".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreativeWorkSeason, comment: "A media season e.g. tv, radio, video game etc.".freeze, label: "CreativeWorkSeason".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreativeWorkSeries, comment: "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\\n\\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\\n\\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate.\n\t ".freeze, label: "CreativeWorkSeries".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:Series".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/Series".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CreditCard, comment: "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#AmericanExpress\\n* http://purl.org/goodrelations/v1#DinersClub\\n* http://purl.org/goodrelations/v1#Discover\\n* http://purl.org/goodrelations/v1#JCB\\n* http://purl.org/goodrelations/v1#MasterCard\\n* http://purl.org/goodrelations/v1#VISA\n ".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze], label: "CreditCard".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze], - subClassOf: ["schemas:LoanOrCredit".freeze, "schemas:PaymentCard".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/LoanOrCredit".freeze, "https://schema.org/PaymentCard".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Crematorium, comment: "A crematorium.".freeze, label: "Crematorium".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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. [[CriticReview]]s 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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, label: "CriticReview".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, - subClassOf: "schemas:Review".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CssSelectorType, comment: "Text representing a CSS selector.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, label: "CssSelectorType".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, - subClassOf: "schemas:Text".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Text".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :CurrencyConversionService, comment: "A service to convert funds from one currency to another currency.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "CurrencyConversionService".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subClassOf: "schemas:FinancialProduct".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DDxElement, comment: "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DDxElement".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DanceEvent, comment: "Event type: A social dance.".freeze, label: "DanceEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DanceGroup, comment: "A dance group—for example, the Alvin Ailey Dance Theater or Riverdance.".freeze, label: "DanceGroup".freeze, - subClassOf: "schemas:PerformingGroup".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PerformingGroup".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataCatalog, comment: "A collection of datasets.".freeze, - equivalentClass: "dcat:Catalog".freeze, + equivalentClass: "http://www.w3.org/ns/dcat#Catalog".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, label: "DataCatalog".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataDownload, comment: "A dataset in downloadable form.".freeze, - equivalentClass: "dcat:Distribution".freeze, + equivalentClass: "http://www.w3.org/ns/dcat#Distribution".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, label: "DataDownload".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, - subClassOf: "schemas:MediaObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataFeed, comment: "A single feed providing structured information about one or more entities or topics.".freeze, label: "DataFeed".freeze, - subClassOf: "schemas:Dataset".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Dataset".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataFeedItem, comment: "A single item within a larger data feed.".freeze, label: "DataFeedItem".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DataType, comment: "The basic data types such as Integers, Strings, etc.".freeze, label: "DataType".freeze, - subClassOf: "rdfs:Class".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Dataset, comment: "A body of structured information describing some topic(s) of interest.".freeze, - equivalentClass: ["dcat:Dataset".freeze, "dcmitype:Dataset".freeze, "void:Dataset".freeze], + equivalentClass: ["http://purl.org/dc/dcmitype/Dataset".freeze, "http://rdfs.org/ns/void#Dataset".freeze, "http://www.w3.org/ns/dcat#Dataset".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, label: "Dataset".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Date, comment: "A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).".freeze, label: "Date".freeze, - type: ["rdfs:Class".freeze, "schemas:DataType".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "https://schema.org/DataType".freeze] term :DateTime, comment: "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).".freeze, label: "DateTime".freeze, - type: ["rdfs:Class".freeze, "schemas:DataType".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "https://schema.org/DataType".freeze] term :DatedMoneySpecification, comment: "A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time. __Note:__ This type has been superseded by [[MonetaryAmount]] use of that type is recommended".freeze, + "https://schema.org/supersededBy": "https://schema.org/MonetaryAmount".freeze, label: "DatedMoneySpecification".freeze, - "schemas:supersededBy": "schemas:MonetaryAmount".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DayOfWeek, comment: "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nOriginally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) 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.\n ".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "DayOfWeek".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DaySpa, comment: "A day spa.".freeze, label: "DaySpa".freeze, - subClassOf: "schemas:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeactivateAction, comment: "The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight).".freeze, label: "DeactivateAction".freeze, - subClassOf: "schemas:ControlAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ControlAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DefenceEstablishment, comment: "A defence establishment, such as an army or navy base.".freeze, label: "DefenceEstablishment".freeze, - subClassOf: "schemas:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DefinedRegion, 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.\n\nExamples: a delivery destination when shopping. Region where regional pricing is configured.\n\nRequirement 1:\nCountry: US\nStates: \"NY\", \"CA\"\n\nRequirement 2:\nCountry: US\nPostalCode Set: { [94000-94585], [97000, 97999], [13000, 13599]}\n{ [12345, 12345], [78945, 78945], }\nRegion = state, canton, prefecture, autonomous community...\n".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "DefinedRegion".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "DefinedTerm".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "DefinedTermSet".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeleteAction, comment: "The act of editing a recipient by removing one of its objects.".freeze, label: "DeleteAction".freeze, - subClassOf: "schemas:UpdateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UpdateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeliveryChargeSpecification, comment: "The price for the delivery of an offer using a particular delivery method.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "DeliveryChargeSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:PriceSpecification".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeliveryEvent, comment: "An event involving the delivery of an item.".freeze, label: "DeliveryEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DeliveryMethod, comment: "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\\n* http://purl.org/goodrelations/v1#DeliveryModeMail\\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "DeliveryMethod".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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 [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]].".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "DeliveryTimeSettings".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "Demand".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Dentist, comment: "A dentist.".freeze, label: "Dentist".freeze, - subClassOf: ["schemas:LocalBusiness".freeze, "schemas:MedicalBusiness".freeze, "schemas:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/LocalBusiness".freeze, "https://schema.org/MedicalBusiness".freeze, "https://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DepartAction, comment: "The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.".freeze, label: "DepartAction".freeze, - subClassOf: "schemas:MoveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MoveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DepartmentStore, comment: "A department store.".freeze, label: "DepartmentStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DepositAccount, comment: "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "DepositAccount".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subClassOf: ["schemas:BankAccount".freeze, "schemas:InvestmentOrDeposit".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/BankAccount".freeze, "https://schema.org/InvestmentOrDeposit".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DiagnosticLab, comment: "A medical laboratory that offers on-site or off-site diagnostic services.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DiagnosticLab".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DiagnosticProcedure, comment: "A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DiagnosticProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Diet, comment: "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Diet".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:LifestyleModification".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/LifestyleModification".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DietarySupplement, comment: "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DietarySupplement".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:Substance".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Substance".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DigitalDocument, comment: "An electronic file or document.".freeze, label: "DigitalDocument".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DigitalDocumentPermission, comment: "A permission for a particular person or group to access a particular file.".freeze, label: "DigitalDocumentPermission".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DigitalDocumentPermissionType, comment: "A type of permission which can be granted for accessing a digital document.".freeze, label: "DigitalDocumentPermissionType".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DisagreeAction, comment: "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.".freeze, label: "DisagreeAction".freeze, - subClassOf: "schemas:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DiscoverAction, comment: "The act of discovering/finding an object.".freeze, label: "DiscoverAction".freeze, - subClassOf: "schemas:FindAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FindAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DiscussionForumPosting, comment: "A posting to a discussion forum.".freeze, label: "DiscussionForumPosting".freeze, - subClassOf: "schemas:SocialMediaPosting".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SocialMediaPosting".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DislikeAction, comment: "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.".freeze, label: "DislikeAction".freeze, - subClassOf: "schemas:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Distance, comment: "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.".freeze, label: "Distance".freeze, - subClassOf: "schemas:Quantity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Quantity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Distillery, comment: "A distillery.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/743".freeze, label: "Distillery".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/743".freeze, - subClassOf: "schemas:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DonateAction, comment: "The act of providing goods, services, or money without compensation, often for philanthropic reasons.".freeze, label: "DonateAction".freeze, - subClassOf: "schemas:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DoseSchedule, comment: "A specific dosing schedule for a drug or supplement.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DoseSchedule".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DownloadAction, comment: "The act of downloading an object.".freeze, label: "DownloadAction".freeze, - subClassOf: "schemas:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrawAction, comment: "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.".freeze, label: "DrawAction".freeze, - subClassOf: "schemas:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Drawing, comment: "A picture or diagram made with a pencil, pen, or crayon rather than paint.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "Drawing".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrinkAction, comment: "The act of swallowing liquids.".freeze, label: "DrinkAction".freeze, - subClassOf: "schemas:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DriveWheelConfigurationValue, comment: "A value indicating which roadwheels will receive torque.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "DriveWheelConfigurationValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - subClassOf: "schemas:QualitativeValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Drug, comment: "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge make a clear difference between them.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/410942007".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:Substance".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Substance".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugClass, comment: "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DrugClass".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugCost, comment: "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DrugCost".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugCostCategory, comment: "Enumerated categories of medical drug costs.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DrugCostCategory".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugLegalStatus, comment: "The legal availability status of a medical drug.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DrugLegalStatus".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugPregnancyCategory, comment: "Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DrugPregnancyCategory".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugPrescriptionStatus, comment: "Indicates whether this drug is available by prescription or over-the-counter.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DrugPrescriptionStatus".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DrugStrength, comment: "A specific strength in which a medical drug is available in a specific country.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DrugStrength".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :DryCleaningOrLaundry, comment: "A dry-cleaning business.".freeze, label: "DryCleaningOrLaundry".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Duration, comment: "Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)).".freeze, label: "Duration".freeze, - subClassOf: "schemas:Quantity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Quantity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EUEnergyEfficiencyEnumeration, comment: "Enumerates the EU energy efficiency classes A-G as well as A+, A++, and A+++ as defined in EU directive 2017/1369".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - subClassOf: "schemas:EnergyEfficiencyEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EnergyEfficiencyEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EatAction, comment: "The act of swallowing solid objects.".freeze, label: "EatAction".freeze, - subClassOf: "schemas:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EducationEvent, comment: "Event type: Education event.".freeze, label: "EducationEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EducationalAudience, comment: "An EducationalAudience.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, label: "EducationalAudience".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, - subClassOf: "schemas:Audience".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Audience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "EducationalOccupationalCredential".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EducationalOrganization, comment: "An educational organization.".freeze, label: "EducationalOrganization".freeze, - subClassOf: ["schemas:CivicStructure".freeze, "schemas:Organization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CivicStructure".freeze, "https://schema.org/Organization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Electrician, comment: "An electrician.".freeze, label: "Electrician".freeze, - subClassOf: "schemas:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ElectronicsStore, comment: "An electronics store.".freeze, label: "ElectronicsStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ElementarySchool, comment: "An elementary school.".freeze, label: "ElementarySchool".freeze, - subClassOf: "schemas:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmailMessage, comment: "An email message.".freeze, label: "EmailMessage".freeze, - subClassOf: "schemas:Message".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Message".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Embassy, comment: "An embassy.".freeze, label: "Embassy".freeze, - subClassOf: "schemas:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmergencyService, comment: "An emergency service, such as a fire station or ER.".freeze, label: "EmergencyService".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmployeeRole, comment: "A subclass of OrganizationRole used to describe employee relationships.".freeze, label: "EmployeeRole".freeze, - subClassOf: "schemas:OrganizationRole".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/OrganizationRole".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmployerAggregateRating, comment: "An aggregate rating of an Organization related to its role as an employer.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, label: "EmployerAggregateRating".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, - subClassOf: "schemas:AggregateRating".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AggregateRating".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, label: "EmployerReview".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, - subClassOf: "schemas:Review".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EmploymentAgency, comment: "An employment agency.".freeze, label: "EmploymentAgency".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EndorseAction, comment: "An agent approves/certifies/likes/supports/sanction an object.".freeze, label: "EndorseAction".freeze, - subClassOf: "schemas:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EndorsementRating, comment: "An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a \"critic's pick\" blog, a\n\"Like\" or \"+1\" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by\nsome [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]].\n\nAn [[EndorsementRating]] may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive,\nendorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive.\n".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1293".freeze, label: "EndorsementRating".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1293".freeze, - subClassOf: "schemas:Rating".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Rating".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Energy, comment: "Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.".freeze, label: "Energy".freeze, - subClassOf: "schemas:Quantity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Quantity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EnergyConsumptionDetails, comment: "EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EnergyConsumptionDetails".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EnergyEfficiencyEnumeration, comment: "Enumerates energy efficiency levels (also known as \"classes\" or \"ratings\") and certifications that are part of several international energy efficiency standards.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EnergyEfficiencyEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EnergyStarEnergyEfficiencyEnumeration, comment: "Used to indicate whether a product is EnergyStar certified".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EnergyStarEnergyEfficiencyEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - subClassOf: "schemas:EnergyEfficiencyEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EnergyEfficiencyEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "EngineSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EntertainmentBusiness, comment: "A business providing entertainment.".freeze, label: "EntertainmentBusiness".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EntryPoint, comment: "An entry point, within some Web-based protocol.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, label: "EntryPoint".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Enumeration, comment: "Lists or enumerations—for example, a list of cuisines or music genres, etc.".freeze, label: "Enumeration".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Episode, comment: "A media episode (e.g. TV, radio, video game) which can be part of a series or season.".freeze, label: "Episode".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Event, comment: "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects.".freeze, - equivalentClass: "dcmitype:Event".freeze, + equivalentClass: "http://purl.org/dc/dcmitype/Event".freeze, label: "Event".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "EventAttendanceModeEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EventReservation, comment: "A reservation for an event like a concert, sporting event, or lecture.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "EventReservation".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EventSeries, comment: "A series of [[Event]]s. Included events can relate with the series using the [[superEvent]] property.\n\nAn EventSeries is a collection of events that share some unifying characteristic. For example, \"The Olympic Games\" is a series, which\nis repeated regularly. The \"2012 London Olympics\" can be presented both as an [[Event]] in the series \"Olympic Games\", and as an\n[[EventSeries]] that included a number of sporting competitions as Events.\n\nThe nature of the association between the events in an [[EventSeries]] can vary, but typical examples could\ninclude a thematic event series (e.g. topical meetups or classes), or a series of regular events that share a location, attendee group and/or organizers.\n\nEventSeries has been defined as a kind of Event to make it easy for publishers to use it in an Event context without\nworrying about which kinds of series are really event-like enough to call an Event. In general an EventSeries\nmay seem more Event-like when the period of time is compact and when aspects such as location are fixed, but\nit may also sometimes prove useful to describe a longer-term series as an Event.\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/447".freeze, label: "EventSeries".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/447".freeze, - subClassOf: ["schemas:Event".freeze, "schemas:Series".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/Event".freeze, "https://schema.org/Series".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EventStatusType, comment: "EventStatusType is an enumeration type whose instances represent several states that an Event may be in.".freeze, label: "EventStatusType".freeze, - subClassOf: "schemas:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EventVenue, comment: "An event venue.".freeze, label: "EventVenue".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExchangeRateSpecification, comment: "A structured value representing exchange rate.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "ExchangeRateSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExerciseAction, comment: "The act of participating in exertive activity for the purposes of improving health and fitness.".freeze, label: "ExerciseAction".freeze, - subClassOf: "schemas:PlayAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlayAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExerciseGym, comment: "A gym.".freeze, label: "ExerciseGym".freeze, - subClassOf: "schemas:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExercisePlan, comment: "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "ExercisePlan".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:PhysicalActivity".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/PhysicalActivity".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ExhibitionEvent, comment: "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...".freeze, label: "ExhibitionEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FAQPage, comment: "A [[FAQPage]] is a [[WebPage]] presenting one or more \"[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)\" (see also [[QAPage]]).".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1723".freeze, label: "FAQPage".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1723".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FMRadioChannel, comment: "A radio channel that uses FM.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "FMRadioChannel".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - subClassOf: "schemas:RadioChannel".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/RadioChannel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FastFoodRestaurant, comment: "A fast-food restaurant.".freeze, label: "FastFoodRestaurant".freeze, - subClassOf: "schemas:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Festival, comment: "Event type: Festival.".freeze, label: "Festival".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FilmAction, comment: "The act of capturing sound and moving images on film, video, or digitally.".freeze, label: "FilmAction".freeze, - subClassOf: "schemas:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "FinancialProduct".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subClassOf: "schemas:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FinancialService, comment: "Financial services business.".freeze, label: "FinancialService".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FindAction, comment: "The act of finding an object.\\n\\nRelated actions:\\n\\n* [[SearchAction]]: FindAction is generally lead by a SearchAction, but not necessarily.".freeze, label: "FindAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FireStation, comment: "A fire station. With firemen.".freeze, label: "FireStation".freeze, - subClassOf: ["schemas:CivicStructure".freeze, "schemas:EmergencyService".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CivicStructure".freeze, "https://schema.org/EmergencyService".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Flight, comment: "An airline flight.".freeze, label: "Flight".freeze, - subClassOf: "schemas:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FlightReservation, comment: "A reservation for air travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "FlightReservation".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Float, comment: "Data type: Floating number.".freeze, label: "Float".freeze, - subClassOf: "schemas:Number".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Number".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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](https://en.wikipedia.org/wiki/Floor_plan)) can be indicated using [[image]]. ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "FloorPlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Florist, comment: "A florist.".freeze, label: "Florist".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FollowAction, comment: "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\\n\\nRelated actions:\\n\\n* [[BefriendAction]]: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.\\n* [[SubscribeAction]]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\\n* [[TrackAction]]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it).".freeze, label: "FollowAction".freeze, - subClassOf: "schemas:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FoodEstablishment, comment: "A food-related business.".freeze, label: "FoodEstablishment".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FoodEstablishmentReservation, comment: "A reservation to dine at a food-related business.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.".freeze, label: "FoodEstablishmentReservation".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FoodEvent, comment: "Event type: Food event.".freeze, label: "FoodEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FoodService, comment: "A food service, like breakfast, lunch, or dinner.".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "FoodService".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FundingAgency, comment: "A FundingAgency is an organization that implements one or more [[FundingScheme]]s and manages\n the granting process (via [[Grant]]s, typically [[MonetaryGrant]]s).\n A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc.\n \nExamples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation...\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "FundingAgency".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schemas:Project".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Project".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :FundingScheme, comment: "A FundingScheme combines organizational, project and policy aspects of grant-based funding\n that sets guidelines, principles and mechanisms to support other kinds of projects and activities.\n 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 - [[FundingAgency]]s such as ERC, REA, ...".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "FundingScheme".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Fungus, comment: "Pathogenic fungus.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Fungus".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:InfectiousAgentClass".freeze + type: "https://schema.org/InfectiousAgentClass".freeze term :FurnitureStore, comment: "A furniture store.".freeze, label: "FurnitureStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Game, comment: "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.".freeze, label: "Game".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GamePlayMode, comment: "Indicates whether this game is multi-player, co-op or single-player.".freeze, label: "GamePlayMode".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GameServer, comment: "Server that provides game interaction in a multiplayer game.".freeze, label: "GameServer".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GameServerStatus, comment: "Status of a game server.".freeze, label: "GameServerStatus".freeze, - subClassOf: "schemas:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GardenStore, comment: "A garden store.".freeze, label: "GardenStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GasStation, comment: "A gas station.".freeze, label: "GasStation".freeze, - subClassOf: "schemas:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GatedResidenceCommunity, comment: "Residence type: Gated community.".freeze, label: "GatedResidenceCommunity".freeze, - subClassOf: "schemas:Residence".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Residence".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GenderType, comment: "An enumeration of genders.".freeze, label: "GenderType".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeneralContractor, comment: "A general contractor.".freeze, label: "GeneralContractor".freeze, - subClassOf: "schemas:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeoCircle, comment: "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.\n ".freeze, label: "GeoCircle".freeze, - subClassOf: "schemas:GeoShape".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/GeoShape".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeoCoordinates, comment: "The geographic coordinates of a place or event.".freeze, label: "GeoCoordinates".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "GeoShape".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GeospatialGeometry, comment: "(Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1375".freeze, label: "GeospatialGeometry".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1375".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GiveAction, comment: "The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\\n\\nRelated actions:\\n\\n* [[TakeAction]]: Reciprocal of GiveAction.\\n* [[SendAction]]: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you).".freeze, label: "GiveAction".freeze, - subClassOf: "schemas:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GolfCourse, comment: "A golf course.".freeze, label: "GolfCourse".freeze, - subClassOf: "schemas:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "GovernmentBenefitsType".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentBuilding, comment: "A government building.".freeze, label: "GovernmentBuilding".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentOffice, comment: "A government office—for example, an IRS or DMV office.".freeze, label: "GovernmentOffice".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentOrganization, comment: "A governmental organization or agency.".freeze, label: "GovernmentOrganization".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentPermit, comment: "A permit issued by a government agency.".freeze, label: "GovernmentPermit".freeze, - subClassOf: "schemas:Permit".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Permit".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GovernmentService, comment: "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.".freeze, label: "GovernmentService".freeze, - subClassOf: "schemas:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Grant, comment: "A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]],\n sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space).\n\nGrants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. 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.\n\nThe amount of a [[Grant]] is represented using [[amount]] as a [[MonetaryAmount]].\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "Grant".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GroceryStore, comment: "A grocery store.".freeze, label: "GroceryStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, label: "Guide".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HVACBusiness, comment: "A business that provide Heating, Ventilation and Air Conditioning services.".freeze, label: "HVACBusiness".freeze, - subClassOf: "schemas:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Hackathon, comment: "A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2526".freeze, label: "Hackathon".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2526".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HairSalon, comment: "A hair salon.".freeze, label: "HairSalon".freeze, - subClassOf: "schemas:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HardwareStore, comment: "A hardware store.".freeze, label: "HardwareStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthAndBeautyBusiness, comment: "Health and beauty.".freeze, label: "HealthAndBeautyBusiness".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthAspectEnumeration, comment: "HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using [[hasHealthAspect]] and [[HealthTopicContent]].".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "HealthAspectEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthClub, comment: "A health club.".freeze, label: "HealthClub".freeze, - subClassOf: ["schemas:HealthAndBeautyBusiness".freeze, "schemas:SportsActivityLocation".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/HealthAndBeautyBusiness".freeze, "https://schema.org/SportsActivityLocation".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthInsurancePlan, comment: "A US-style health insurance plan, including PPOs, EPOs, and HMOs. ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthInsurancePlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthPlanCostSharingSpecification, comment: "A description of costs to the patient under a given network or formulary.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthPlanCostSharingSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthPlanFormulary, comment: "For a given health insurance plan, the specification for costs and coverage of prescription drugs. ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthPlanFormulary".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HealthPlanNetwork, comment: "A US-style health insurance plan network. ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthPlanNetwork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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.\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "HealthTopicContent".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - subClassOf: "schemas:WebContent".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebContent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HighSchool, comment: "A high school.".freeze, label: "HighSchool".freeze, - subClassOf: "schemas:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HinduTemple, comment: "A Hindu temple.".freeze, label: "HinduTemple".freeze, - subClassOf: "schemas:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HobbyShop, comment: "A store that sells materials useful or necessary for various hobbies.".freeze, label: "HobbyShop".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HomeAndConstructionBusiness, comment: "A construction business.\\n\\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).".freeze, label: "HomeAndConstructionBusiness".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HomeGoodsStore, comment: "A home goods store.".freeze, label: "HomeGoodsStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Hospital, comment: "A hospital.".freeze, label: "Hospital".freeze, - subClassOf: ["schemas:CivicStructure".freeze, "schemas:EmergencyService".freeze, "schemas:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CivicStructure".freeze, "https://schema.org/EmergencyService".freeze, "https://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Hostel, comment: "A hostel - cheap accommodation, often in shared dormitories.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, label: "Hostel".freeze, - subClassOf: "schemas:LodgingBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Hotel, 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).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Hotel".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:LodgingBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HotelRoom, comment: "A hotel room is a single room in a hotel.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "HotelRoom".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Room".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Room".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "House".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Accommodation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HousePainter, comment: "A house painting service.".freeze, label: "HousePainter".freeze, - subClassOf: "schemas:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowTo, comment: "Instructions that explain how to achieve a result by performing a sequence of steps.".freeze, label: "HowTo".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToDirection, comment: "A direction indicating a single action to do in the instructions for how to achieve a result.".freeze, label: "HowToDirection".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:ListItem".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/ListItem".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToItem, comment: "An item used as either a tool or supply when performing the instructions for how to to achieve a result.".freeze, label: "HowToItem".freeze, - subClassOf: "schemas:ListItem".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ListItem".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToSection, comment: "A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).".freeze, label: "HowToSection".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:ItemList".freeze, "schemas:ListItem".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/ItemList".freeze, "https://schema.org/ListItem".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToStep, comment: "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.".freeze, label: "HowToStep".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:ItemList".freeze, "schemas:ListItem".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/ItemList".freeze, "https://schema.org/ListItem".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToSupply, comment: "A supply consumed when performing the instructions for how to achieve a result.".freeze, label: "HowToSupply".freeze, - subClassOf: "schemas:HowToItem".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HowToItem".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToTip, comment: "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).".freeze, label: "HowToTip".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:ListItem".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/ListItem".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HowToTool, comment: "A tool used (but not consumed) when performing instructions for how to achieve a result.".freeze, label: "HowToTool".freeze, - subClassOf: "schemas:HowToItem".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HowToItem".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HyperToc, comment: "A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "HyperToc".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :HyperTocEntry, comment: "A HyperToEntry is an item within a [[HyperToc]], which represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. The media object itself is indicated using [[associatedMedia]]. Each section of interest within that content can be described with a [[HyperTocEntry]], with associated [[startOffset]] and [[endOffset]]. When several entries are all from the same file, [[associatedMedia]] is used on the overarching [[HyperTocEntry]]; if the content has been split into multiple files, they can be referenced using [[associatedMedia]] on each [[HyperTocEntry]].".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "HyperTocEntry".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IceCreamShop, comment: "An ice cream shop.".freeze, label: "IceCreamShop".freeze, - subClassOf: "schemas:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IgnoreAction, comment: "The act of intentionally disregarding the object. An agent ignores an object.".freeze, label: "IgnoreAction".freeze, - subClassOf: "schemas:AssessAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AssessAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ImageGallery, comment: "Web page type: Image gallery page.".freeze, label: "ImageGallery".freeze, - subClassOf: "schemas:MediaGallery".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MediaGallery".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ImageObject, comment: "An image file.".freeze, - equivalentClass: "dcmitype:Image".freeze, + equivalentClass: "http://purl.org/dc/dcmitype/Image".freeze, label: "ImageObject".freeze, - subClassOf: "schemas:MediaObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ImagingTest, comment: "Any medical imaging modality typically used for diagnostic purposes.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "ImagingTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalTest".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :IndividualProduct, comment: "A single, identifiable product instance (e.g. a laptop with a particular serial number).".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "IndividualProduct".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Product".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InfectiousAgentClass, comment: "Classes of agents or pathogens that transmit infectious diseases. Enumerated type.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "InfectiousAgentClass".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InfectiousDisease, comment: "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "InfectiousDisease".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalCondition".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalCondition".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InformAction, comment: "The act of notifying someone of information pertinent to them, with no expectation of a response.".freeze, label: "InformAction".freeze, - subClassOf: "schemas:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InsertAction, comment: "The act of adding at a specific location in an ordered collection.".freeze, label: "InsertAction".freeze, - subClassOf: "schemas:AddAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AddAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InstallAction, comment: "The act of installing an application.".freeze, label: "InstallAction".freeze, - subClassOf: "schemas:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InsuranceAgency, comment: "An Insurance agency.".freeze, label: "InsuranceAgency".freeze, - subClassOf: "schemas:FinancialService".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FinancialService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Intangible, comment: "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.".freeze, label: "Intangible".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Integer, comment: "Data type: Integer.".freeze, label: "Integer".freeze, - subClassOf: "schemas:Number".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Number".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InteractAction, comment: "The act of interacting with another person or organization.".freeze, label: "InteractAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InteractionCounter, comment: "A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction.".freeze, label: "InteractionCounter".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InternetCafe, comment: "An internet cafe.".freeze, label: "InternetCafe".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "InvestmentFund".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - subClassOf: "schemas:InvestmentOrDeposit".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InvestmentOrDeposit".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "InvestmentOrDeposit".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subClassOf: "schemas:FinancialProduct".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :InviteAction, comment: "The act of asking someone to attend an event. Reciprocal of RsvpAction.".freeze, label: "InviteAction".freeze, - subClassOf: "schemas:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Invoice, comment: "A statement of the money due for goods or services; a bill.".freeze, label: "Invoice".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ItemAvailability, comment: "A list of possible product availability options.".freeze, label: "ItemAvailability".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ItemList, comment: "A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.".freeze, label: "ItemList".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ItemListOrderType, comment: "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.".freeze, label: "ItemListOrderType".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ItemPage, comment: "A page devoted to a single item, such as a particular product or hotel.".freeze, label: "ItemPage".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JewelryStore, comment: "A jewelry store.".freeze, label: "JewelryStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JobPosting, comment: "A listing that describes a job opening in a certain organization.".freeze, label: "JobPosting".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JoinAction, comment: "An agent joins an event/group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.".freeze, label: "JoinAction".freeze, - subClassOf: "schemas:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Joint, comment: "The anatomical location at which two or more bones make contact.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Joint".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LakeBodyOfWater, comment: "A lake (for example, Lake Pontrachain).".freeze, label: "LakeBodyOfWater".freeze, - subClassOf: "schemas:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Landform, comment: "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.".freeze, label: "Landform".freeze, - subClassOf: "schemas:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LandmarksOrHistoricalBuildings, comment: "An historical landmark or building.".freeze, label: "LandmarksOrHistoricalBuildings".freeze, - subClassOf: "schemas:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Language, comment: "Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in [BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]].".freeze, label: "Language".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LearningResource, comment: "The LearningResource type can be used to indicate [[CreativeWork]]s (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes.\n\n[[LearningResource]] is expected to be used as an addition to a primary type such as [[Book]], [[Video]], [[Product]] etc.\n\n[[EducationEvent]] serves a similar purpose for event-like things (e.g. a [[Trip]]). A [[LearningResource]] may be created as a result of an [[EducationEvent]], for example by recording one.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1401".freeze, label: "LearningResource".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1401".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LeaveAction, comment: "An agent leaves an event / group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: The antonym of LeaveAction.\\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.".freeze, label: "LeaveAction".freeze, - subClassOf: "schemas:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LegalForceStatus, comment: "A list of possible statuses for the legal force of a legislation.".freeze, exactMatch: "http://data.europa.eu/eli/ontology#InForce".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "LegalForceStatus".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - subClassOf: "schemas:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LegalService, comment: "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).".freeze, label: "LegalService".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LegalValueLevel, comment: "A list of possible levels for the legal validity of a legislation.".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://data.europa.eu/eli/ontology#LegalValue".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "LegalValueLevel".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas: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: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://www.w3.org/2004/02/skos/core#closeMatch": ["http://data.europa.eu/eli/ontology#LegalExpression".freeze, "http://data.europa.eu/eli/ontology#LegalResource".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas: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: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://data.europa.eu/eli/ontology#Format".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "LegislationObject".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas: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: ["schemas:Legislation".freeze, "schemas:MediaObject".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/Legislation".freeze, "https://schema.org/MediaObject".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LegislativeBuilding, comment: "A legislative building—for example, the state capitol.".freeze, label: "LegislativeBuilding".freeze, - subClassOf: "schemas:GovernmentBuilding".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/GovernmentBuilding".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LendAction, comment: "The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\\n\\nRelated actions:\\n\\n* [[BorrowAction]]: Reciprocal of LendAction.".freeze, label: "LendAction".freeze, - subClassOf: "schemas:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Library, comment: "A library.".freeze, label: "Library".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LibrarySystem, comment: "A [[LibrarySystem]] is a collaborative system amongst several libraries.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1495".freeze, label: "LibrarySystem".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1495".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LifestyleModification, comment: "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "LifestyleModification".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Ligament, comment: "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Ligament".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LikeAction, comment: "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.".freeze, label: "LikeAction".freeze, - subClassOf: "schemas:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, label: "LinkRole".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, - subClassOf: "schemas:Role".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Role".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LiquorStore, comment: "A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits.".freeze, label: "LiquorStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ListItem, comment: "An list item, e.g. a step in a checklist or how-to description.".freeze, label: "ListItem".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ListenAction, comment: "The act of consuming audio content.".freeze, label: "ListenAction".freeze, - subClassOf: "schemas:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LiteraryEvent, comment: "Event type: Literary event.".freeze, label: "LiteraryEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LiveBlogPosting, comment: "A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates.".freeze, label: "LiveBlogPosting".freeze, - subClassOf: "schemas:BlogPosting".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BlogPosting".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LoanOrCredit, comment: "A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "LoanOrCredit".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subClassOf: "schemas:FinancialProduct".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LocalBusiness, comment: "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.".freeze, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://www.w3.org/ns/regorg#RegisteredOrganization".freeze, label: "LocalBusiness".freeze, - "skos:closeMatch": "http://www.w3.org/ns/regorg#RegisteredOrganization".freeze, - subClassOf: ["schemas:Organization".freeze, "schemas:Place".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/Organization".freeze, "https://schema.org/Place".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "LocationFeatureSpecification".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:PropertyValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PropertyValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Locksmith, comment: "A locksmith.".freeze, label: "Locksmith".freeze, - subClassOf: "schemas:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LodgingBusiness, comment: "A lodging business, such as a motel, hotel, or inn.".freeze, label: "LodgingBusiness".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LodgingReservation, comment: "A reservation for lodging at a hotel, motel, inn, etc.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.".freeze, label: "LodgingReservation".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LoseAction, comment: "The act of being defeated in a competitive activity.".freeze, label: "LoseAction".freeze, - subClassOf: "schemas:AchieveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AchieveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :LymphaticVessel, comment: "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "LymphaticVessel".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:Vessel".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Vessel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Manuscript, comment: "A book, document, or piece of music written by hand rather than typed or printed.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "Manuscript".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Map, comment: "A map.".freeze, label: "Map".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MapCategoryType, comment: "An enumeration of several kinds of Map.".freeze, label: "MapCategoryType".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MarryAction, comment: "The act of marrying a person.".freeze, label: "MarryAction".freeze, - subClassOf: "schemas:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Mass, comment: "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.".freeze, label: "Mass".freeze, - subClassOf: "schemas:Quantity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Quantity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MathSolver, comment: "A math solver which is capable of solving a subset of mathematical problems.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, label: "MathSolver".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MaximumDoseSchedule, comment: "The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MaximumDoseSchedule".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:DoseSchedule".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DoseSchedule".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaGallery, comment: "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia.".freeze, label: "MediaGallery".freeze, - subClassOf: "schemas:CollectionPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CollectionPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "MediaManipulationRatingEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaObject, comment: "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's).".freeze, label: "MediaObject".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaReview, comment: "(editorial work in progress, this definition is incomplete and unreviewed)\n 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.\n For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "MediaReview".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, - subClassOf: "schemas:Review".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MediaSubscription, comment: "A subscription which allows a user to access media including audio, video, books, etc.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "MediaSubscription".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalAudience, comment: "Target audiences for medical web pages.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalAudience".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: ["schemas:Audience".freeze, "schemas:PeopleAudience".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/Audience".freeze, "https://schema.org/PeopleAudience".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalAudienceType, comment: "Target audiences types for medical web pages. Enumerated type.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalAudienceType".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalBusiness, comment: "A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include differents business run by health professionals.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalBusiness".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalCause, comment: "The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalCause".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalClinic, comment: "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalClinic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: ["schemas:MedicalBusiness".freeze, "schemas:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/MedicalBusiness".freeze, "https://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalCode, comment: "A code for a medical entity.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalCode".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: ["schemas:CategoryCode".freeze, "schemas:MedicalIntangible".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CategoryCode".freeze, "https://schema.org/MedicalIntangible".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalCondition, comment: "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalConditionStage, comment: "A stage of a medical condition, such as 'Stage IIIa'.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalConditionStage".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalIntangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalIntangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalContraindication, comment: "A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures).".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalContraindication".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalDevice, comment: "Any object used in a medical capacity, such as to diagnose or treat a patient.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/63653004".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalDevice".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalDevicePurpose, comment: "Categories of medical devices, organized by the purpose or intended use of the device.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalDevicePurpose".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalEntity, comment: "The most generic type of entity related to health and the practice of medicine.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalEntity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalEnumeration, comment: "Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalEnumeration".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalEvidenceLevel, comment: "Level of evidence for a medical guideline. Enumerated type.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalEvidenceLevel".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalGuideline, comment: "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalGuideline".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalGuidelineContraindication, comment: "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalGuidelineContraindication".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalGuideline".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalGuideline".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalGuidelineRecommendation, comment: "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalGuidelineRecommendation".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalGuideline".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalGuideline".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalImagingTechnique, comment: "Any medical imaging modality typically used for diagnostic purposes. Enumerated type.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalImagingTechnique".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalIndication, comment: "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalIndication".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalIntangible, comment: "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalIntangible".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalObservationalStudy, comment: "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalObservationalStudy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalStudy".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalStudy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalObservationalStudyDesign, comment: "Design models for observational medical studies. Enumerated type.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalObservationalStudyDesign".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalOrganization, comment: "A medical organization (physical or not), such as hospital, institution or clinic.".freeze, label: "MedicalOrganization".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalProcedure, comment: "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/50731006".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalProcedureType, comment: "An enumeration that describes different types of medical procedures.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalProcedureType".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalRiskCalculator, comment: "A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalRiskCalculator".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalRiskEstimator".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalRiskEstimator".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalRiskEstimator, comment: "Any rule set or interactive tool for estimating the risk of developing a complication or condition.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalRiskEstimator".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalRiskFactor, comment: "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalRiskFactor".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalRiskScore, comment: "A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalRiskScore".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalRiskEstimator".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalRiskEstimator".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalScholarlyArticle, comment: "A scholarly article in the medical domain.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalScholarlyArticle".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:ScholarlyArticle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ScholarlyArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalSign, comment: "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalSign".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalSignOrSymptom".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalSignOrSymptom".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalSignOrSymptom, comment: "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalSignOrSymptom".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalCondition".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalCondition".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalSpecialty, comment: "Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalSpecialty".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: ["schemas:MedicalEnumeration".freeze, "schemas:Specialty".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/MedicalEnumeration".freeze, "https://schema.org/Specialty".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalStudy, comment: "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalStudy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalStudyStatus, comment: "The status of a medical study. Enumerated type.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalStudyStatus".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalSymptom, comment: "Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalSymptom".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalSignOrSymptom".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalSignOrSymptom".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTest, comment: "Any medical test, typically performed for diagnostic purposes.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTestPanel, comment: "Any collection of tests commonly ordered together.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalTestPanel".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalTest".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTherapy, comment: "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalTherapy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:TherapeuticProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TherapeuticProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTrial, comment: "A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalStudy".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalStudy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalTrialDesign, comment: "Design models for medical trials. Enumerated type.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc".freeze, label: "MedicalTrialDesign".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicalWebPage, comment: "A web page that provides medical information.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalWebPage".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MedicineSystem, comment: "Systems of medical practice.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicineSystem".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MeetingRoom, 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).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "MeetingRoom".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Room".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Room".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MensClothingStore, comment: "A men's clothing store.".freeze, label: "MensClothingStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Menu, comment: "A structured representation of food or drink items available from a FoodEstablishment.".freeze, label: "Menu".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MenuItem, comment: "A food or drink item listed in a menu or menu section.".freeze, label: "MenuItem".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MenuSection, comment: "A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider.".freeze, label: "MenuSection".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MerchantReturnPolicy, comment: "A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]] or [[Product]].".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnPolicy".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Message, comment: "A single message from a sender to one or more organizations or people.".freeze, label: "Message".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MiddleSchool, comment: "A middle school (typically for children aged around 11-14, although this varies somewhat).".freeze, label: "MiddleSchool".freeze, - subClassOf: "schemas:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MobileApplication, comment: "A software application designed specifically to work well on a mobile device such as a telephone.".freeze, label: "MobileApplication".freeze, - subClassOf: "schemas:SoftwareApplication".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SoftwareApplication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MobilePhoneStore, comment: "A store that sells mobile phones and related accessories.".freeze, label: "MobilePhoneStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "MonetaryAmount".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MonetaryAmountDistribution, comment: "A statistical distribution of monetary amounts.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "MonetaryAmountDistribution".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - subClassOf: "schemas:QuantitativeValueDistribution".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/QuantitativeValueDistribution".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MonetaryGrant, comment: "A monetary grant.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "MonetaryGrant".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schemas:Grant".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Grant".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MoneyTransfer, comment: "The act of transferring money from one place to another place. This may occur electronically or physically.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "MoneyTransfer".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - subClassOf: "schemas:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "MortgageLoan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - subClassOf: "schemas:LoanOrCredit".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LoanOrCredit".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Mosque, comment: "A mosque.".freeze, label: "Mosque".freeze, - subClassOf: "schemas:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Motel, comment: "A motel.\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, label: "Motel".freeze, - subClassOf: "schemas:LodgingBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Motorcycle, comment: "A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "Motorcycle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - subClassOf: "schemas:Vehicle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Vehicle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MotorcycleDealer, comment: "A motorcycle dealer.".freeze, label: "MotorcycleDealer".freeze, - subClassOf: "schemas:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MotorcycleRepair, comment: "A motorcycle repair shop.".freeze, label: "MotorcycleRepair".freeze, - subClassOf: "schemas:AutomotiveBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AutomotiveBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "MotorizedBicycle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - subClassOf: "schemas:Vehicle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Vehicle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Mountain, comment: "A mountain, like Mount Whitney or Mount Everest.".freeze, label: "Mountain".freeze, - subClassOf: "schemas:Landform".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Landform".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MoveAction, comment: "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.".freeze, label: "MoveAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Movie, comment: "A movie.".freeze, label: "Movie".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovieClip, comment: "A short segment/part of a movie.".freeze, label: "MovieClip".freeze, - subClassOf: "schemas:Clip".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Clip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovieRentalStore, comment: "A movie rental store.".freeze, label: "MovieRentalStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovieSeries, comment: "A series of movies. Included movies can be indicated with the hasPart property.".freeze, label: "MovieSeries".freeze, - subClassOf: "schemas:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovieTheater, comment: "A movie theater.".freeze, label: "MovieTheater".freeze, - subClassOf: ["schemas:CivicStructure".freeze, "schemas:EntertainmentBusiness".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CivicStructure".freeze, "https://schema.org/EntertainmentBusiness".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MovingCompany, comment: "A moving company.".freeze, label: "MovingCompany".freeze, - subClassOf: "schemas:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MulticellularParasite, comment: "Multicellular parasite that causes an infection.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MulticellularParasite".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:InfectiousAgentClass".freeze + type: "https://schema.org/InfectiousAgentClass".freeze term :Muscle, comment: "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Muscle".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Museum, comment: "A museum.".freeze, label: "Museum".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicAlbum, comment: "A collection of music tracks.".freeze, label: "MusicAlbum".freeze, - subClassOf: "schemas:MusicPlaylist".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MusicPlaylist".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicAlbumProductionType, comment: "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicAlbumProductionType".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicAlbumReleaseType, comment: "The kind of release which this album is: single, EP or album.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicAlbumReleaseType".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicComposition, comment: "A musical composition.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicComposition".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicEvent, comment: "Event type: Music event.".freeze, label: "MusicEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicGroup, comment: "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.".freeze, label: "MusicGroup".freeze, - subClassOf: "schemas:PerformingGroup".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PerformingGroup".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicPlaylist, comment: "A collection of music tracks in playlist form.".freeze, label: "MusicPlaylist".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicRecording, comment: "A music recording (track), usually a single song.".freeze, label: "MusicRecording".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicRelease, comment: "A MusicRelease is a specific release of a music album.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicRelease".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - subClassOf: "schemas:MusicPlaylist".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MusicPlaylist".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicReleaseFormatType, comment: "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicReleaseFormatType".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicStore, comment: "A music store.".freeze, label: "MusicStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicVenue, comment: "A music venue.".freeze, label: "MusicVenue".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :MusicVideoObject, comment: "A music video file.".freeze, label: "MusicVideoObject".freeze, - subClassOf: "schemas:MediaObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NGO, comment: "Organization: Non-governmental Organization.".freeze, label: "NGO".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NLNonprofitType, comment: "NLNonprofitType: Non-profit organization type originating from the Netherlands.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "NLNonprofitType".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - subClassOf: "schemas:NonprofitType".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/NonprofitType".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NailSalon, comment: "A nail salon.".freeze, label: "NailSalon".freeze, - subClassOf: "schemas:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Nerve, comment: "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Nerve".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NewsArticle, comment: "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.\n\nA more detailed overview of [schema.org News markup](/docs/news.html) is also available.\n".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws".freeze], label: "NewsArticle".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws".freeze], - subClassOf: "schemas:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NewsMediaOrganization, comment: "A News/Media organization such as a newspaper or TV station.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "NewsMediaOrganization".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/source": "http://www.productontology.org/id/Newspaper".freeze, label: "Newspaper".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:source": "http://www.productontology.org/id/Newspaper".freeze, - subClassOf: "schemas:Periodical".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Periodical".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NightClub, comment: "A nightclub or discotheque.".freeze, label: "NightClub".freeze, - subClassOf: "schemas:EntertainmentBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EntertainmentBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NonprofitType, comment: "NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "NonprofitType".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Notary, comment: "A notary.".freeze, label: "Notary".freeze, - subClassOf: "schemas:LegalService".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LegalService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NoteDigitalDocument, comment: "A file containing a note, primarily for the author.".freeze, label: "NoteDigitalDocument".freeze, - subClassOf: "schemas:DigitalDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DigitalDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Number, comment: "Data type: Number.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, label: "Number".freeze, - type: ["rdfs:Class".freeze, "schemas:DataType".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "https://schema.org/DataType".freeze] term :NutritionInformation, comment: "Nutritional information about the recipe.".freeze, label: "NutritionInformation".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze 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](https://www.w3.org/TR/vocab-data-cube/#dsd-example)).\nSee also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "Observation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Occupation, comment: "A profession, may involve prolonged training and/or a formal qualification.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "Occupation".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OccupationalTherapy, comment: "A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "OccupationalTherapy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalTherapy".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OceanBodyOfWater, comment: "An ocean (for example, the Pacific).".freeze, label: "OceanBodyOfWater".freeze, - subClassOf: "schemas:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Offer, comment: "An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\\n\\nNote: 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.\\n\\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/).".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "Offer".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferCatalog, comment: "An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.".freeze, label: "OfferCatalog".freeze, - subClassOf: "schemas:ItemList".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ItemList".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferForLease, comment: "An [[OfferForLease]] in Schema.org represents an [[Offer]] to lease out something, i.e. an [[Offer]] whose\n [[businessFunction]] is [lease out](http://purl.org/goodrelations/v1#LeaseOut.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, label: "OfferForLease".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, - subClassOf: "schemas:Offer".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Offer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferForPurchase, comment: "An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose\n [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, label: "OfferForPurchase".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, - subClassOf: "schemas:Offer".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Offer".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferItemCondition, comment: "A list of possible conditions for the item.".freeze, label: "OfferItemCondition".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfferShippingDetails, comment: "OfferShippingDetails represents information about shipping destinations.\n\nMultiple of these entities can be used to represent different shipping rates for different destinations:\n\nOne entity for Alaska/Hawaii. A different one for continental US.A different one for all France.\n\nMultiple of these entities can be used to represent different shipping costs and delivery times.\n\nTwo entities that are identical but differ in rate and time:\n\ne.g. Cheaper and slower: $5 in 5-7days\nor Fast and expensive: $15 in 1-2 days\n".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "OfferShippingDetails".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OfficeEquipmentStore, comment: "An office equipment store.".freeze, label: "OfficeEquipmentStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OnDemandEvent, comment: "A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand.".freeze, label: "OnDemandEvent".freeze, - subClassOf: "schemas:PublicationEvent".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PublicationEvent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OpeningHoursSpecification, comment: "A structured value providing information about the opening hours of a place or a certain service inside a place.\\n\\n\nThe place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\\n\\nIf 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.\n ".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "OpeningHoursSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "OpinionNewsArticle".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subClassOf: "schemas:NewsArticle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Optician, comment: "A store that sells reading glasses and similar devices for improving vision.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Optician".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Order, comment: "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.".freeze, label: "Order".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrderAction, comment: "An agent orders an object/product/service to be delivered/sent.".freeze, label: "OrderAction".freeze, - subClassOf: "schemas:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrderItem, comment: "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.".freeze, label: "OrderItem".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrderStatus, comment: "Enumerated status values for Order.".freeze, label: "OrderStatus".freeze, - subClassOf: "schemas:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Organization, comment: "An organization such as a school, NGO, corporation, club, etc.".freeze, label: "Organization".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrganizationRole, comment: "A subclass of Role used to describe roles within organizations.".freeze, label: "OrganizationRole".freeze, - subClassOf: "schemas:Role".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Role".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OrganizeAction, comment: "The act of manipulating/administering/supervising/controlling one or more objects.".freeze, label: "OrganizeAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OutletStore, comment: "An outlet store.".freeze, label: "OutletStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :OwnershipInfo, comment: "A structured value providing information about when a certain organization or person owned a certain product.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "OwnershipInfo".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaintAction, comment: "The act of producing a painting, typically with paint and canvas as instruments.".freeze, label: "PaintAction".freeze, - subClassOf: "schemas:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Painting, comment: "A painting.".freeze, label: "Painting".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PalliativeProcedure, comment: "A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PalliativeProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: ["schemas:MedicalProcedure".freeze, "schemas:MedicalTherapy".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/MedicalProcedure".freeze, "https://schema.org/MedicalTherapy".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ParcelDelivery, comment: "The delivery of a parcel either via the postal service or a commercial service.".freeze, label: "ParcelDelivery".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ParentAudience, comment: "A set of characteristics describing parents, who can be interested in viewing some content.".freeze, label: "ParentAudience".freeze, - subClassOf: "schemas:PeopleAudience".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PeopleAudience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Park, comment: "A park.".freeze, label: "Park".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ParkingFacility, comment: "A parking lot or other parking facility.".freeze, label: "ParkingFacility".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PathologyTest, comment: "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PathologyTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalTest".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalTest".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Patient, comment: "A patient is any person recipient of health care services.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/116154003".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Patient".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: ["schemas:MedicalAudience".freeze, "schemas:Person".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/MedicalAudience".freeze, "https://schema.org/Person".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PawnShop, comment: "A shop that will buy, or lend money against the security of, personal possessions.".freeze, label: "PawnShop".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PayAction, comment: "An agent pays a price to a participant.".freeze, label: "PayAction".freeze, - subClassOf: "schemas:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentCard, comment: "A payment method using a credit, debit, store or other card to associate the payment with an account.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "PaymentCard".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subClassOf: ["schemas:FinancialProduct".freeze, "schemas:PaymentMethod".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/FinancialProduct".freeze, "https://schema.org/PaymentMethod".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentChargeSpecification, comment: "The costs of settling the payment using a particular payment method.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PaymentChargeSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:PriceSpecification".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentMethod, comment: "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n* http://purl.org/goodrelations/v1#ByInvoice\\n* http://purl.org/goodrelations/v1#Cash\\n* http://purl.org/goodrelations/v1#CheckInAdvance\\n* http://purl.org/goodrelations/v1#COD\\n* http://purl.org/goodrelations/v1#DirectDebit\\n* http://purl.org/goodrelations/v1#GoogleCheckout\\n* http://purl.org/goodrelations/v1#PayPal\\n* http://purl.org/goodrelations/v1#PaySwarm\n ".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PaymentMethod".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentService, comment: "A Service to transfer funds from a person or organization to a beneficiary person or organization.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "PaymentService".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subClassOf: "schemas:FinancialProduct".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FinancialProduct".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PaymentStatusType, comment: "A specific payment status. For example, PaymentDue, PaymentComplete, etc.".freeze, label: "PaymentStatusType".freeze, - subClassOf: "schemas:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PeopleAudience, comment: "A set of characteristics belonging to people, e.g. who compose an item's target audience.".freeze, label: "PeopleAudience".freeze, - subClassOf: "schemas:Audience".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Audience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PerformAction, comment: "The act of participating in performance arts.".freeze, label: "PerformAction".freeze, - subClassOf: "schemas:PlayAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlayAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PerformanceRole, comment: "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.".freeze, label: "PerformanceRole".freeze, - subClassOf: "schemas:Role".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Role".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PerformingArtsTheater, comment: "A theater or other performing art center.".freeze, label: "PerformingArtsTheater".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PerformingGroup, comment: "A performance group, such as a band, an orchestra, or a circus.".freeze, label: "PerformingGroup".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Periodical, 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.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).".freeze, - equivalentClass: "bibo:Periodical".freeze, + equivalentClass: "http://purl.org/ontology/bibo/Periodical".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "Periodical".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - subClassOf: "schemas:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Permit, comment: "A permit issued by an organization, e.g. a parking pass.".freeze, label: "Permit".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Person, comment: "A person (alive, dead, undead, or fictional).".freeze, - equivalentClass: "foaf:Person".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Person".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "Person".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PetStore, comment: "A pet store.".freeze, label: "PetStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Pharmacy, comment: "A pharmacy or drugstore.".freeze, label: "Pharmacy".freeze, - subClassOf: ["schemas:MedicalBusiness".freeze, "schemas:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/MedicalBusiness".freeze, "https://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Photograph, comment: "A photograph.".freeze, label: "Photograph".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhotographAction, comment: "The act of capturing still images of objects using a camera.".freeze, label: "PhotographAction".freeze, - subClassOf: "schemas:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalActivity, comment: "Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PhysicalActivity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:LifestyleModification".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LifestyleModification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalActivityCategory, comment: "Categories of physical activity, organized by physiologic classification.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PhysicalActivityCategory".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalExam, comment: "A type of physical examination of a patient performed by a physician. ".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PhysicalExam".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: ["schemas:MedicalEnumeration".freeze, "schemas:MedicalProcedure".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/MedicalEnumeration".freeze, "https://schema.org/MedicalProcedure".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PhysicalTherapy, comment: "A process of progressive physical care and rehabilitation aimed at improving a health condition.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PhysicalTherapy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalTherapy".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Physician, comment: "A doctor's office.".freeze, label: "Physician".freeze, - subClassOf: ["schemas:MedicalBusiness".freeze, "schemas:MedicalOrganization".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/MedicalBusiness".freeze, "https://schema.org/MedicalOrganization".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Place, comment: "Entities that have a somewhat fixed, physical extension.".freeze, label: "Place".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PlaceOfWorship, comment: "Place of worship, such as a church, synagogue, or mosque.".freeze, label: "PlaceOfWorship".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PlanAction, comment: "The act of planning the execution of an event/task/action/reservation/plan to a future date.".freeze, label: "PlanAction".freeze, - subClassOf: "schemas:OrganizeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/OrganizeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1816".freeze, label: "Play".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1816".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PlayAction, comment: "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\\n\\nRelated actions:\\n\\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.".freeze, label: "PlayAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Playground, comment: "A playground.".freeze, label: "Playground".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Plumber, comment: "A plumbing service.".freeze, label: "Plumber".freeze, - subClassOf: "schemas:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PodcastEpisode, comment: "A single episode of a podcast series.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "PodcastEpisode".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, - subClassOf: "schemas:Episode".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Episode".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "PodcastSeason".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, - subClassOf: "schemas:CreativeWorkSeason".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWorkSeason".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "PodcastSeries".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, - subClassOf: "schemas:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PoliceStation, comment: "A police station.".freeze, label: "PoliceStation".freeze, - subClassOf: ["schemas:CivicStructure".freeze, "schemas:EmergencyService".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CivicStructure".freeze, "https://schema.org/EmergencyService".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Pond, comment: "A pond.".freeze, label: "Pond".freeze, - subClassOf: "schemas:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PostOffice, comment: "A post office.".freeze, label: "PostOffice".freeze, - subClassOf: "schemas:GovernmentOffice".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/GovernmentOffice".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PostalAddress, comment: "The mailing address.".freeze, label: "PostalAddress".freeze, - subClassOf: "schemas:ContactPoint".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ContactPoint".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PostalCodeRangeSpecification, comment: "Indicates a range of postalcodes, usually defined as the set of valid codes between [[postalCodeBegin]] and [[postalCodeEnd]], inclusively.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "PostalCodeRangeSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Poster, comment: "A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "Poster".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PreOrderAction, comment: "An agent orders a (not yet released) object/product/service to be delivered/sent.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1125".freeze, label: "PreOrderAction".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1125".freeze, - subClassOf: "schemas:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PrependAction, comment: "The act of inserting at the beginning if an ordered collection.".freeze, label: "PrependAction".freeze, - subClassOf: "schemas:InsertAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InsertAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Preschool, comment: "A preschool.".freeze, label: "Preschool".freeze, - subClassOf: "schemas:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PresentationDigitalDocument, comment: "A file containing slides or used for a presentation.".freeze, label: "PresentationDigitalDocument".freeze, - subClassOf: "schemas:DigitalDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DigitalDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PreventionIndication, comment: "An indication for preventing an underlying condition, symptom, etc.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PreventionIndication".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalIndication".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalIndication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PriceComponentTypeEnumeration, comment: "Enumerates different price components that together make up the total price for an offered product.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "PriceComponentTypeEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PriceSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PriceTypeEnumeration, comment: "Enumerates different price types, for example list price, invoice price, and sale price.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "PriceTypeEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Prion, comment: "A prion is an infectious agent composed of protein in a misfolded form.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Prion".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:InfectiousAgentClass".freeze + type: "https://schema.org/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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "Product".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProductCollection, comment: "A set of products (either [[ProductGroup]]s or specific variants) that are listed together e.g. in an [[Offer]].".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2597".freeze, label: "ProductCollection".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2597".freeze, - subClassOf: ["schemas:Collection".freeze, "schemas:Product".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/Collection".freeze, "https://schema.org/Product".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProductGroup, comment: "A ProductGroup represents a group of [[Product]]s that vary only in certain well-described ways, such as by [[size]], [[color]], [[material]] etc.\n\nWhile a ProductGroup itself is not directly offered for sale, the various varying products that it represents can be. The ProductGroup serves as a prototype or template, standing in for all of the products who have an [[isVariantOf]] relationship to it. As such, properties (including additional types) can be applied to the ProductGroup to represent characteristics shared by each of the (possibly very many) variants. Properties that reference a ProductGroup are not included in this mechanism; neither are the following specific properties [[variesBy]], [[hasVariant]], [[url]]. ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2597".freeze, label: "ProductGroup".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2597".freeze, - subClassOf: "schemas:Product".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProductModel, comment: "A datasheet or vendor specification of a product (in the sense of a prototypical description).".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "ProductModel".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Product".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "https://schema.org/supersededBy": "https://schema.org/MerchantReturnEnumeration".freeze, label: "ProductReturnEnumeration".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - "schemas:supersededBy": "schemas:MerchantReturnEnumeration".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProductReturnPolicy, comment: "A ProductReturnPolicy provides information about product return policies associated with an [[Organization]] or [[Product]].".freeze, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "https://schema.org/supersededBy": "https://schema.org/MerchantReturnPolicy".freeze, label: "ProductReturnPolicy".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - "schemas:supersededBy": "schemas:MerchantReturnPolicy".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProfessionalService, comment: "Original definition: \"provider of professional services.\"\\n\\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]],\n [[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]],\n [[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]].".freeze, label: "ProfessionalService".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProfilePage, comment: "Web page type: Profile page.".freeze, label: "ProfilePage".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ProgramMembership, comment: "Used to describe membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.".freeze, label: "ProgramMembership".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Project, comment: "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim.\nUse properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. \n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "Project".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PronounceableText, comment: "Data type: PronounceableText.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, label: "PronounceableText".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, - subClassOf: "schemas:Text".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Text".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Property, comment: "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.".freeze, - equivalentClass: "rdf:Property".freeze, + equivalentClass: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + "https://schema.org/isPartOf": "https://meta.schema.org".freeze, label: "Property".freeze, - "schemas:isPartOf": "https://meta.schema.org".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PropertyValue, 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.\\n\\n 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.\n ".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PropertyValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PropertyValueSpecification, comment: "A Property value specification.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, label: "PropertyValueSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Protozoa, comment: "Single-celled organism that causes an infection.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Protozoa".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:InfectiousAgentClass".freeze + type: "https://schema.org/InfectiousAgentClass".freeze term :PsychologicalTreatment, comment: "A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PsychologicalTreatment".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:TherapeuticProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TherapeuticProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicSwimmingPool, comment: "A public swimming pool.".freeze, label: "PublicSwimmingPool".freeze, - subClassOf: "schemas:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1624".freeze, label: "PublicToilet".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1624".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationEvent, comment: "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.".freeze, label: "PublicationEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PublicationIssue, 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.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).".freeze, - equivalentClass: "bibo:Issue".freeze, + equivalentClass: "http://purl.org/ontology/bibo/Issue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "PublicationIssue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "PublicationVolume".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :QAPage, comment: "A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).".freeze, label: "QAPage".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "QualitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :QuantitativeValue, comment: " A point value or interval for product characteristics and other purposes.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :QuantitativeValueDistribution, comment: "A statistical distribution of values.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "QuantitativeValueDistribution".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Quantity, comment: "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.".freeze, label: "Quantity".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange".freeze, label: "Question".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange".freeze, - subClassOf: "schemas:Comment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Comment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Quiz, comment: "Quiz: A test of knowledge, skills and abilities.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2611".freeze, label: "Quiz".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2611".freeze, - subClassOf: "schemas:LearningResource".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LearningResource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, label: "Quotation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :QuoteAction, comment: "An agent quotes/estimates/appraises an object/product/service with a price at a location/store.".freeze, label: "QuoteAction".freeze, - subClassOf: "schemas:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RVPark, comment: "A place offering space for \"Recreational Vehicles\", Caravans, mobile homes and the like.".freeze, label: "RVPark".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadiationTherapy, comment: "A process of care using radiation aimed at improving a health condition.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "RadiationTherapy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalTherapy".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalTherapy".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioBroadcastService, comment: "A delivery service through which radio content is provided via broadcast over the air or online.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, label: "RadioBroadcastService".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, - subClassOf: "schemas:BroadcastService".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BroadcastService".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioChannel, comment: "A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup.".freeze, label: "RadioChannel".freeze, - subClassOf: "schemas:BroadcastChannel".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BroadcastChannel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioClip, comment: "A short radio program or a segment/part of a radio program.".freeze, label: "RadioClip".freeze, - subClassOf: "schemas:Clip".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Clip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioEpisode, comment: "A radio episode which can be part of a series or season.".freeze, label: "RadioEpisode".freeze, - subClassOf: "schemas:Episode".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Episode".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioSeason, comment: "Season dedicated to radio broadcast and associated online delivery.".freeze, label: "RadioSeason".freeze, - subClassOf: "schemas:CreativeWorkSeason".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWorkSeason".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioSeries, comment: "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.".freeze, label: "RadioSeries".freeze, - subClassOf: "schemas:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RadioStation, comment: "A radio station.".freeze, label: "RadioStation".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Rating, comment: "A rating is an evaluation on a numeric scale, such as 1 to 5 stars.".freeze, label: "Rating".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReactAction, comment: "The act of responding instinctively and emotionally to an object, expressing a sentiment.".freeze, label: "ReactAction".freeze, - subClassOf: "schemas:AssessAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AssessAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReadAction, comment: "The act of consuming written content.".freeze, label: "ReadAction".freeze, - subClassOf: "schemas:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RealEstateAgent, comment: "A real-estate agent.".freeze, label: "RealEstateAgent".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RealEstateListing, comment: "A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out, or to sell).\n The [[RealEstateListing]] type itself represents the overall listing, as manifested in some [[WebPage]].\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, label: "RealEstateListing".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReceiveAction, comment: "The act of physically/electronically taking delivery of an object that has been transferred from an origin to a destination. Reciprocal of SendAction.\\n\\nRelated actions:\\n\\n* [[SendAction]]: The reciprocal of ReceiveAction.\\n* [[TakeAction]]: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered (e.g. I can receive a package, but it does not mean the package is now mine).".freeze, label: "ReceiveAction".freeze, - subClassOf: "schemas:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Recipe, comment: "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via [[suitableForDiet]]. The [[keywords]] property can also be used to add more detail.".freeze, label: "Recipe".freeze, - subClassOf: "schemas:HowTo".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HowTo".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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 [[Recommendation]]s.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, label: "Recommendation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, - subClassOf: "schemas:Review".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RecommendedDoseSchedule, comment: "A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "RecommendedDoseSchedule".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:DoseSchedule".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DoseSchedule".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RecyclingCenter, comment: "A recycling center.".freeze, label: "RecyclingCenter".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RefundTypeEnumeration, comment: "RefundTypeEnumeration enumerates several kinds of product return refund types.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "RefundTypeEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RegisterAction, comment: "The act of registering to be a user of a service, product or web page.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\\n* [FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object.".freeze, label: "RegisterAction".freeze, - subClassOf: "schemas:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RejectAction, comment: "The act of rejecting to/adopting an object.\\n\\nRelated actions:\\n\\n* [[AcceptAction]]: The antonym of RejectAction.".freeze, label: "RejectAction".freeze, - subClassOf: "schemas:AllocateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AllocateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RentAction, comment: "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.".freeze, label: "RentAction".freeze, - subClassOf: "schemas:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RentalCarReservation, comment: "A reservation for a rental car.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.".freeze, label: "RentalCarReservation".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RepaymentSpecification, comment: "A structured value representing repayment.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "RepaymentSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReplaceAction, comment: "The act of editing a recipient by replacing an old object with a new object.".freeze, label: "ReplaceAction".freeze, - subClassOf: "schemas:UpdateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UpdateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReplyAction, comment: "The act of responding to a question/message asked/sent by the object. Related to [[AskAction]]\\n\\nRelated actions:\\n\\n* [[AskAction]]: Appears generally as an origin of a ReplyAction.".freeze, label: "ReplyAction".freeze, - subClassOf: "schemas:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Report, comment: "A Report generated by governmental or non-governmental organization.".freeze, label: "Report".freeze, - subClassOf: "schemas:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReportageNewsArticle, comment: "The [[ReportageNewsArticle]] type is a subtype of [[NewsArticle]] representing\n news articles which are the result of journalistic news reporting conventions.\n\nIn practice many news publishers produce a wide variety of article types, many of which might be considered a [[NewsArticle]] but not a [[ReportageNewsArticle]]. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements.\n\nThe [[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.\n\nA [[ReportageNewsArticle]] which goes deeper into analysis can also be marked with an additional type of [[AnalysisNewsArticle]].\n".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "ReportageNewsArticle".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subClassOf: "schemas:NewsArticle".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/NewsArticle".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReportedDoseSchedule, comment: "A patient-reported or observed dosing schedule for a drug or supplement.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "ReportedDoseSchedule".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:DoseSchedule".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DoseSchedule".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ResearchProject, comment: "A Research project.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], label: "ResearchProject".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze], - subClassOf: "schemas:Project".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Project".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Researcher, comment: "Researchers.".freeze, label: "Researcher".freeze, - subClassOf: "schemas:Audience".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Audience".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Reservation, comment: "Describes a reservation for travel, dining or an event. Some reservations require tickets. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]].".freeze, label: "Reservation".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReservationPackage, comment: "A group of multiple reservations with common values for all sub-reservations.".freeze, label: "ReservationPackage".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReservationStatusType, comment: "Enumerated status values for Reservation.".freeze, label: "ReservationStatusType".freeze, - subClassOf: "schemas:StatusEnumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StatusEnumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReserveAction, - comment: "Reserving a concrete object.\\n\\nRelated actions:\\n\\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.".freeze, + comment: "Reserving a concrete object.\\n\\nRelated actions:\\n\\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.".freeze, label: "ReserveAction".freeze, - subClassOf: "schemas:PlanAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlanAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Reservoir, comment: "A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir.".freeze, label: "Reservoir".freeze, - subClassOf: "schemas:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Residence, comment: "The place where a person lives.".freeze, label: "Residence".freeze, - subClassOf: "schemas:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Resort, 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).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n ".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Resort".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:LodgingBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LodgingBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Restaurant, comment: "A restaurant.".freeze, label: "Restaurant".freeze, - subClassOf: "schemas:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RestrictedDiet, comment: "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. ".freeze, label: "RestrictedDiet".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ResumeAction, comment: "The act of resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer).".freeze, label: "ResumeAction".freeze, - subClassOf: "schemas:ControlAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ControlAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReturnAction, comment: "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).".freeze, label: "ReturnAction".freeze, - subClassOf: "schemas:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReturnFeesEnumeration, comment: "ReturnFeesEnumeration expresses policies for return fees.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ReturnFeesEnumeration".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Review, comment: "A review of an item - for example, of a restaurant, movie, or store.".freeze, label: "Review".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReviewAction, comment: "The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.".freeze, label: "ReviewAction".freeze, - subClassOf: "schemas:AssessAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AssessAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "ReviewNewsArticle".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subClassOf: ["schemas:CriticReview".freeze, "schemas:NewsArticle".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CriticReview".freeze, "https://schema.org/NewsArticle".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RiverBodyOfWater, comment: "A river (for example, the broad majestic Shannon).".freeze, label: "RiverBodyOfWater".freeze, - subClassOf: "schemas:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Role, comment: "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\\n\\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html).".freeze, label: "Role".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RoofingContractor, comment: "A roofing contractor.".freeze, label: "RoofingContractor".freeze, - subClassOf: "schemas:HomeAndConstructionBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HomeAndConstructionBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Room, 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).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Room".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Accommodation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RsvpAction, comment: "The act of notifying an event organizer as to whether you expect to attend the event.".freeze, label: "RsvpAction".freeze, - subClassOf: "schemas:InformAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InformAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :RsvpResponseType, comment: "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.".freeze, label: "RsvpResponseType".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SaleEvent, comment: "Event type: Sales event.".freeze, label: "SaleEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SatiricalArticle, comment: "An [[Article]] whose content is primarily [[satirical]](https://en.wikipedia.org/wiki/Satire) in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a [[NewsArticle]]. [[ScholarlyArticle]]s are also sometimes satirized.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "SatiricalArticle".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subClassOf: "schemas:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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.\n 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\n have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "Schedule".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ScheduleAction, comment: "Scheduling future actions, events, or tasks.\\n\\nRelated actions:\\n\\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.".freeze, label: "ScheduleAction".freeze, - subClassOf: "schemas:PlanAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlanAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ScholarlyArticle, comment: "A scholarly article.".freeze, label: "ScholarlyArticle".freeze, - subClassOf: "schemas:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :School, comment: "A school.".freeze, label: "School".freeze, - subClassOf: "schemas:EducationalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EducationalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SchoolDistrict, comment: "A School District is an administrative area for the administration of schools.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2500".freeze, label: "SchoolDistrict".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2500".freeze, - subClassOf: "schemas:AdministrativeArea".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ScreeningEvent, comment: "A screening of a movie or other video.".freeze, label: "ScreeningEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Sculpture, comment: "A piece of sculpture.".freeze, label: "Sculpture".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SeaBodyOfWater, comment: "A sea (for example, the Caspian sea).".freeze, label: "SeaBodyOfWater".freeze, - subClassOf: "schemas:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SearchAction, comment: "The act of searching for an object.\\n\\nRelated actions:\\n\\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily.".freeze, label: "SearchAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SearchResultsPage, comment: "Web page type: Search results page.".freeze, label: "SearchResultsPage".freeze, - subClassOf: "schemas:WebPage".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPage".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Season, comment: "A media season e.g. tv, radio, video game etc.".freeze, + "https://schema.org/supersededBy": "https://schema.org/CreativeWorkSeason".freeze, label: "Season".freeze, - "schemas:supersededBy": "schemas:CreativeWorkSeason".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Seat, comment: "Used to describe a seat, such as a reserved seat in an event reservation.".freeze, label: "Seat".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SeekToAction, comment: "This is the [[Action]] of navigating to a specific [[startOffset]] timestamp within a [[VideoObject]], typically represented with a URL template structure.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2722".freeze, label: "SeekToAction".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2722".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SelfStorage, comment: "A self-storage facility.".freeze, label: "SelfStorage".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SellAction, comment: "The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction.".freeze, label: "SellAction".freeze, - subClassOf: "schemas:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SendAction, comment: "The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\\n\\n* [[ReceiveAction]]: The reciprocal of SendAction.\\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).".freeze, label: "SendAction".freeze, - subClassOf: "schemas:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Series, - comment: "\n A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]].".freeze, + comment: "A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]].".freeze, label: "Series".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Service, comment: "A service provided by an organization, e.g. delivery service, print services, etc.".freeze, label: "Service".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ServiceChannel, comment: "A means for accessing a service, e.g. a government office location, web site, or phone number.".freeze, label: "ServiceChannel".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShareAction, comment: "The act of distributing content to people for their amusement or edification.".freeze, label: "ShareAction".freeze, - subClassOf: "schemas:CommunicateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CommunicateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SheetMusic, comment: "Printed music, as opposed to performed or recorded music.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "SheetMusic".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShippingDeliveryTime, comment: "ShippingDeliveryTime provides various pieces of information about delivery times for shipping.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "ShippingDeliveryTime".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "ShippingRateSettings".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShoeStore, comment: "A shoe store.".freeze, label: "ShoeStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShoppingCenter, comment: "A shopping center or mall.".freeze, label: "ShoppingCenter".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ShortStory, comment: "Short story or tale. A brief work of literature, usually written in narrative prose.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1976".freeze, label: "ShortStory".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1976".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SingleFamilyResidence, comment: "Residence type: Single-family home.".freeze, label: "SingleFamilyResidence".freeze, - subClassOf: "schemas:House".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/House".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SiteNavigationElement, comment: "A navigation element of the page.".freeze, label: "SiteNavigationElement".freeze, - subClassOf: "schemas:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SkiResort, comment: "A ski resort.".freeze, label: "SkiResort".freeze, - subClassOf: ["schemas:Resort".freeze, "schemas:SportsActivityLocation".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/Resort".freeze, "https://schema.org/SportsActivityLocation".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SocialEvent, comment: "Event type: Social event.".freeze, label: "SocialEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SocialMediaPosting, comment: "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.".freeze, label: "SocialMediaPosting".freeze, - subClassOf: "schemas:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SoftwareApplication, comment: "A software application.".freeze, label: "SoftwareApplication".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SoftwareSourceCode, comment: "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.".freeze, label: "SoftwareSourceCode".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SolveMathAction, comment: "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, label: "SolveMathAction".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SomeProducts, comment: "A placeholder for multiple similar products of the same kind.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "SomeProducts".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Product".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, label: "SpeakableSpecification".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SpecialAnnouncement, comment: "A SpecialAnnouncement combines a simple date-stamped textual information update\n with contextualized Web links and other structured data. It represents an information update made by a\n locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police,\n local government.\n\nFor work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#).\n\nThe motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.org\nexpect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to our\nusual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#).\n\n\nWhile this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to cover\nthe kinds of everyday practical information being posted to existing websites during an emergency situation.\n\nSeveral kinds of information can be provided:\n\nWe encourage the provision of \"name\", \"text\", \"datePosted\", \"expires\" (if appropriate), \"category\" and\n\"url\" as a simple baseline. It is important to provide a value for \"category\" where possible, most ideally as a well known\nURL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be \"https://en.wikipedia.org/w/index.php?title=2019-20\\_coronavirus\\_pandemic\" or \"https://www.wikidata.org/wiki/Q81068910\".\n\nFor many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple \"[[text]]\" summary of the page. It is\nunlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously.\n\nWe expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]].\n\nMany [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructures]]. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]].\n\nThe [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] only\nfor representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of /about for locations too.\n\nThe basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting\n[[SpecialAnnouncement]] updates in a page, e.g. using JSON-LD. For sites with Atom/RSS functionality, you can point to a feed\nwith the [[webFeed]] property. This can be a simple URL, or an inline [[DataFeed]] object, with [[encodingFormat]] providing\nmedia type information e.g. \"application/rss+xml\" or \"application/atom+xml\".\n".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Specialty, comment: "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.".freeze, label: "Specialty".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportingGoodsStore, comment: "A sporting goods store.".freeze, label: "SportingGoodsStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsActivityLocation, comment: "A sports location, such as a playing field.".freeze, label: "SportsActivityLocation".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsClub, comment: "A sports club.".freeze, label: "SportsClub".freeze, - subClassOf: "schemas:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsEvent, comment: "Event type: Sports event.".freeze, label: "SportsEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsOrganization, comment: "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.".freeze, label: "SportsOrganization".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SportsTeam, comment: "Organization: Sports team.".freeze, label: "SportsTeam".freeze, - subClassOf: "schemas:SportsOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SportsOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SpreadsheetDigitalDocument, comment: "A spreadsheet file.".freeze, label: "SpreadsheetDigitalDocument".freeze, - subClassOf: "schemas:DigitalDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DigitalDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StadiumOrArena, comment: "A stadium.".freeze, label: "StadiumOrArena".freeze, - subClassOf: ["schemas:CivicStructure".freeze, "schemas:SportsActivityLocation".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CivicStructure".freeze, "https://schema.org/SportsActivityLocation".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :State, comment: "A state or province of a country.".freeze, label: "State".freeze, - subClassOf: "schemas:AdministrativeArea".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AdministrativeArea".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StatisticalPopulation, 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 [[Person]]s 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.\nThe 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\npopulation, 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](/docs/data-and-datasets.html) overview for more details.\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "StatisticalPopulation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StatusEnumeration, comment: "Lists or enumerations dealing with status types.".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2604".freeze, label: "StatusEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2604".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SteeringPositionValue, comment: "A value indicating a steering position.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "SteeringPositionValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - subClassOf: "schemas:QualitativeValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/QualitativeValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Store, comment: "A retail good store.".freeze, label: "Store".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StructuredValue, comment: "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.".freeze, label: "StructuredValue".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :StupidType, comment: "A StupidType for testing.".freeze, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, label: "StupidType".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - subClassOf: "schemas:Thing".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Thing".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SubscribeAction, comment: "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.".freeze, label: "SubscribeAction".freeze, - subClassOf: "schemas:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Substance, comment: "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/105590001".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Substance".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SubwayStation, comment: "A subway station.".freeze, label: "SubwayStation".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Suite, 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)).\n

\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Suite".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - subClassOf: "schemas:Accommodation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Accommodation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SuperficialAnatomy, comment: "Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "SuperficialAnatomy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalEntity".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalEntity".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SurgicalProcedure, comment: "A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/387713003".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "SurgicalProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SuspendAction, comment: "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).".freeze, label: "SuspendAction".freeze, - subClassOf: "schemas:ControlAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ControlAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Synagogue, comment: "A synagogue.".freeze, label: "Synagogue".freeze, - subClassOf: "schemas:PlaceOfWorship".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PlaceOfWorship".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TVClip, comment: "A short TV program or a segment/part of a TV program.".freeze, label: "TVClip".freeze, - subClassOf: "schemas:Clip".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Clip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TVEpisode, comment: "A TV episode which can be part of a series or season.".freeze, label: "TVEpisode".freeze, - subClassOf: "schemas:Episode".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Episode".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TVSeason, comment: "Season dedicated to TV broadcast and associated online delivery.".freeze, label: "TVSeason".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:CreativeWorkSeason".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/CreativeWorkSeason".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TVSeries, comment: "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.".freeze, label: "TVSeries".freeze, - subClassOf: ["schemas:CreativeWork".freeze, "schemas:CreativeWorkSeries".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/CreativeWork".freeze, "https://schema.org/CreativeWorkSeries".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Table, comment: "A table on a Web page.".freeze, label: "Table".freeze, - subClassOf: "schemas:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TakeAction, comment: "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\\n\\nRelated actions:\\n\\n* [[GiveAction]]: The reciprocal of TakeAction.\\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transfered.".freeze, label: "TakeAction".freeze, - subClassOf: "schemas:TransferAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TransferAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TattooParlor, comment: "A tattoo parlor.".freeze, label: "TattooParlor".freeze, - subClassOf: "schemas:HealthAndBeautyBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/HealthAndBeautyBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Taxi, comment: "A taxi.".freeze, + "https://schema.org/supersededBy": "https://schema.org/TaxiService".freeze, label: "Taxi".freeze, - "schemas:supersededBy": "schemas:TaxiService".freeze, - subClassOf: "schemas:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TaxiReservation, comment: "A reservation for a taxi.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "TaxiReservation".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TaxiService, comment: "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.".freeze, label: "TaxiService".freeze, - subClassOf: "schemas:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TaxiStand, comment: "A taxi stand.".freeze, label: "TaxiStand".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TechArticle, comment: "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.".freeze, label: "TechArticle".freeze, - subClassOf: "schemas:Article".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Article".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TelevisionChannel, comment: "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.".freeze, label: "TelevisionChannel".freeze, - subClassOf: "schemas:BroadcastChannel".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BroadcastChannel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TelevisionStation, comment: "A television station.".freeze, label: "TelevisionStation".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TennisComplex, comment: "A tennis complex.".freeze, label: "TennisComplex".freeze, - subClassOf: "schemas:SportsActivityLocation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SportsActivityLocation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Text, comment: "Data type: Text.".freeze, label: "Text".freeze, - type: ["rdfs:Class".freeze, "schemas:DataType".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "https://schema.org/DataType".freeze] term :TextDigitalDocument, comment: "A file composed primarily of text.".freeze, label: "TextDigitalDocument".freeze, - subClassOf: "schemas:DigitalDocument".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/DigitalDocument".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TheaterEvent, comment: "Event type: Theater performance.".freeze, label: "TheaterEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TheaterGroup, comment: "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.".freeze, label: "TheaterGroup".freeze, - subClassOf: "schemas:PerformingGroup".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PerformingGroup".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TherapeuticProcedure, comment: "A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.".freeze, equivalentClass: "http://purl.bioontology.org/ontology/SNOMEDCT/277132007".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "TherapeuticProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalProcedure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalProcedure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Thesis, comment: "A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/source": "http://www.productontology.org/id/Thesis".freeze, label: "Thesis".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:source": "http://www.productontology.org/id/Thesis".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Thing, comment: "The most generic type of item.".freeze, label: "Thing".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Ticket, comment: "Used to describe a ticket to an event, a flight, a bus ride, etc.".freeze, label: "Ticket".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TieAction, comment: "The act of reaching a draw in a competitive activity.".freeze, label: "TieAction".freeze, - subClassOf: "schemas:AchieveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AchieveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Time, comment: "A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)).".freeze, label: "Time".freeze, - type: ["rdfs:Class".freeze, "schemas:DataType".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "https://schema.org/DataType".freeze] term :TipAction, comment: "The act of giving money voluntarily to a beneficiary in recognition of services rendered.".freeze, label: "TipAction".freeze, - subClassOf: "schemas:TradeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/TradeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TireShop, comment: "A tire shop.".freeze, label: "TireShop".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], label: "TouristAttraction".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], - subClassOf: "schemas:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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 [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines Destination (main destination of a tourism trip) as the place visited that is central to the decision to take the trip.\n (See examples below).".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "TouristDestination".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - subClassOf: "schemas:Place".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Place".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TouristInformationCenter, comment: "A tourist information center.".freeze, label: "TouristInformationCenter".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze 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](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors.\n (See examples below).".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "TouristTrip".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - subClassOf: "schemas:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ToyStore, comment: "A toy store.".freeze, label: "ToyStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TrackAction, comment: "An agent tracks an object for updates.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\\n* [[SubscribeAction]]: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects.".freeze, label: "TrackAction".freeze, - subClassOf: "schemas:FindAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FindAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TradeAction, comment: "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment.".freeze, label: "TradeAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TrainReservation, comment: "A reservation for train travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].".freeze, label: "TrainReservation".freeze, - subClassOf: "schemas:Reservation".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Reservation".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TrainStation, comment: "A train station.".freeze, label: "TrainStation".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TrainTrip, comment: "A trip on a commercial train line.".freeze, label: "TrainTrip".freeze, - subClassOf: "schemas:Trip".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Trip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TransferAction, comment: "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.".freeze, label: "TransferAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TravelAction, comment: "The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.".freeze, label: "TravelAction".freeze, - subClassOf: "schemas:MoveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MoveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TravelAgency, comment: "A travel agency.".freeze, label: "TravelAgency".freeze, - subClassOf: "schemas:LocalBusiness".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/LocalBusiness".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TreatmentIndication, comment: "An indication for treating an underlying condition, symptom, etc.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "TreatmentIndication".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalIndication".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalIndication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Trip, comment: "A trip or journey. An itinerary of visits to one or more places.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, label: "Trip".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "TypeAndQuantityNode".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UKNonprofitType, comment: "UKNonprofitType: Non-profit organization type originating from the United Kingdom.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "UKNonprofitType".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - subClassOf: "schemas:NonprofitType".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/NonprofitType".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :URL, comment: "Data type: URL.".freeze, label: "URL".freeze, - subClassOf: "schemas:Text".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Text".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :USNonprofitType, comment: "USNonprofitType: Non-profit organization type originating from the United States.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "USNonprofitType".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - subClassOf: "schemas:NonprofitType".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/NonprofitType".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UnRegisterAction, comment: "The act of un-registering from a service.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: antonym of UnRegisterAction.\\n* [[LeaveAction]]: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people.".freeze, label: "UnRegisterAction".freeze, - subClassOf: "schemas:InteractAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/InteractAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UnitPriceSpecification, comment: "The price asked for a given offer by the respective organization or person.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "UnitPriceSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:PriceSpecification".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/PriceSpecification".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UpdateAction, comment: "The act of managing by changing/editing the state of the object.".freeze, label: "UpdateAction".freeze, - subClassOf: "schemas:Action".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Action".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UseAction, comment: "The act of applying an object to its intended purpose.".freeze, label: "UseAction".freeze, - subClassOf: "schemas:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserBlocks, 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, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserBlocks".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserCheckins, 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, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserCheckins".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserComments".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserDownloads, 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, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserDownloads".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserInteraction, 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, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserInteraction".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserLikes, 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, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserLikes".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserPageVisits, 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, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserPageVisits".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserPlays, 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, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserPlays".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserPlusOnes, 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, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserPlusOnes".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserReview, comment: "A review created by an end-user (e.g. consumer, purchaser, attendee etc.), in contrast with [[CriticReview]].".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, label: "UserReview".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, - subClassOf: "schemas:Review".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :UserTweets, 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, + "https://schema.org/supersededBy": "https://schema.org/InteractionCounter".freeze, label: "UserTweets".freeze, - "schemas:supersededBy": "schemas:InteractionCounter".freeze, - subClassOf: "schemas:UserInteraction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UserInteraction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Vehicle, comment: "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.".freeze, label: "Vehicle".freeze, - subClassOf: "schemas:Product".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Product".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Vein, comment: "A type of blood vessel that specifically carries blood to the heart.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Vein".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:Vessel".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Vessel".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Vessel, comment: "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Vessel".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:AnatomicalStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AnatomicalStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VeterinaryCare, comment: "A vet's office.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "VeterinaryCare".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalOrganization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalOrganization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoGallery, comment: "Web page type: Video gallery page.".freeze, label: "VideoGallery".freeze, - subClassOf: "schemas:MediaGallery".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MediaGallery".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoGame, comment: "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.".freeze, label: "VideoGame".freeze, - subClassOf: ["schemas:Game".freeze, "schemas:SoftwareApplication".freeze], - type: "rdfs:Class".freeze + subClassOf: ["https://schema.org/Game".freeze, "https://schema.org/SoftwareApplication".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoGameClip, comment: "A short segment/part of a video game.".freeze, label: "VideoGameClip".freeze, - subClassOf: "schemas:Clip".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Clip".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoGameSeries, comment: "A video game series.".freeze, label: "VideoGameSeries".freeze, - subClassOf: "schemas:CreativeWorkSeries".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWorkSeries".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VideoObject, comment: "A video file.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "VideoObject".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, - subClassOf: "schemas:MediaObject".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MediaObject".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ViewAction, comment: "The act of consuming static visual content.".freeze, label: "ViewAction".freeze, - subClassOf: "schemas:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "VirtualLocation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - subClassOf: "schemas:Intangible".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Intangible".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Virus, comment: "Pathogenic virus that causes viral infection.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Virus".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:InfectiousAgentClass".freeze + type: "https://schema.org/InfectiousAgentClass".freeze term :VisualArtsEvent, comment: "Event type: Visual arts event.".freeze, label: "VisualArtsEvent".freeze, - subClassOf: "schemas:Event".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Event".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VisualArtwork, comment: "A work of art that is primarily visual in character.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass".freeze, label: "VisualArtwork".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VitalSign, comment: "Vital signs are measures of various physiological functions in order to assess the most basic body functions.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "VitalSign".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalSign".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/MedicalSign".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Volcano, comment: "A volcano, like Fuji san.".freeze, label: "Volcano".freeze, - subClassOf: "schemas:Landform".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Landform".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :VoteAction, comment: "The act of expressing a preference from a fixed/finite/structured set of choices/options.".freeze, label: "VoteAction".freeze, - subClassOf: "schemas:ChooseAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ChooseAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WPAdBlock, comment: "An advertising section of the page.".freeze, label: "WPAdBlock".freeze, - subClassOf: "schemas:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WPFooter, comment: "The footer section of the page.".freeze, label: "WPFooter".freeze, - subClassOf: "schemas:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WPHeader, comment: "The header section of the page.".freeze, label: "WPHeader".freeze, - subClassOf: "schemas:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WPSideBar, comment: "A sidebar section of the page.".freeze, label: "WPSideBar".freeze, - subClassOf: "schemas:WebPageElement".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/WebPageElement".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WantAction, comment: "The act of expressing a desire about the object. An agent wants an object.".freeze, label: "WantAction".freeze, - subClassOf: "schemas:ReactAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ReactAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "WarrantyPromise".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:StructuredValue".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/StructuredValue".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WarrantyScope, comment: "A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Labor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n ".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "WarrantyScope".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - subClassOf: "schemas:Enumeration".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Enumeration".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WatchAction, comment: "The act of consuming dynamic/moving visual content.".freeze, label: "WatchAction".freeze, - subClassOf: "schemas:ConsumeAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/ConsumeAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Waterfall, comment: "A waterfall, like Niagara.".freeze, label: "Waterfall".freeze, - subClassOf: "schemas:BodyOfWater".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/BodyOfWater".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WearAction, comment: "The act of dressing oneself in clothing.".freeze, label: "WearAction".freeze, - subClassOf: "schemas:UseAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/UseAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebAPI, comment: "An application programming interface accessible over Web/Internet technologies.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, label: "WebAPI".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, - subClassOf: "schemas:Service".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Service".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebApplication, comment: "Web applications.".freeze, label: "WebApplication".freeze, - subClassOf: "schemas:SoftwareApplication".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/SoftwareApplication".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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]].)\n ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2358".freeze, label: "WebContent".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2358".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebPage, comment: "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.".freeze, label: "WebPage".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebPageElement, comment: "A web page element, like a table or an image.".freeze, label: "WebPageElement".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WebSite, comment: "A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.".freeze, label: "WebSite".freeze, - subClassOf: "schemas:CreativeWork".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreativeWork".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WholesaleStore, comment: "A wholesale store.".freeze, label: "WholesaleStore".freeze, - subClassOf: "schemas:Store".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Store".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WinAction, comment: "The act of achieving victory in a competitive activity.".freeze, label: "WinAction".freeze, - subClassOf: "schemas:AchieveAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/AchieveAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Winery, comment: "A winery.".freeze, label: "Winery".freeze, - subClassOf: "schemas:FoodEstablishment".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/FoodEstablishment".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "WorkBasedProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - subClassOf: "schemas:EducationalOccupationalProgram".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/EducationalOccupationalProgram".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#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, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/243".freeze, label: "WorkersUnion".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/243".freeze, - subClassOf: "schemas:Organization".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Organization".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :WriteAction, comment: "The act of authoring written creative content.".freeze, label: "WriteAction".freeze, - subClassOf: "schemas:CreateAction".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CreateAction".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :XPathType, comment: "Text representing an XPath (typically but not necessarily version 1.0).".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, label: "XPathType".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, - subClassOf: "schemas:Text".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/Text".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Zoo, comment: "A zoo.".freeze, label: "Zoo".freeze, - subClassOf: "schemas:CivicStructure".freeze, - type: "rdfs:Class".freeze + subClassOf: "https://schema.org/CivicStructure".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :about, comment: "The subject matter of the content.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CommunicateAction".freeze, "https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze], + "https://schema.org/inverseOf": "https://schema.org/subjectOf".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, label: "about".freeze, - "schemas:domainIncludes": ["schemas:CommunicateAction".freeze, "schemas:CreativeWork".freeze, "schemas:Event".freeze], - "schemas:inverseOf": "schemas:subjectOf".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :abridged, comment: "Indicates whether the book is an abridged edition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Book".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "abridged".freeze, - "schemas:domainIncludes": "schemas:Book".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :abstract, comment: "An abstract is a short description that summarizes a [[CreativeWork]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/276".freeze, label: "abstract".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/276".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accelerationTime, comment: "The time needed to accelerate the vehicle from a given start velocity to a given target velocity.\\n\\nTypical unit code(s): SEC for seconds\\n\\n* 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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "accelerationTime".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Question".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Answer".freeze, "https://schema.org/ItemList".freeze], label: "acceptedAnswer".freeze, - "schemas:domainIncludes": "schemas:Question".freeze, - "schemas:rangeIncludes": ["schemas:Answer".freeze, "schemas:ItemList".freeze], - subPropertyOf: "schemas:suggestedAnswer".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/suggestedAnswer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :acceptedOffer, comment: "The offer(s) -- e.g., product, quantity and price combinations -- included in the order.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Offer".freeze, label: "acceptedOffer".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": "schemas:Offer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :acceptedPaymentMethod, comment: "The payment method(s) accepted by seller for this offer.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/LoanOrCredit".freeze, "https://schema.org/PaymentMethod".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "acceptedPaymentMethod".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": ["schemas:LoanOrCredit".freeze, "schemas:PaymentMethod".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/FoodEstablishment".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Boolean".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "acceptsReservations".freeze, - "schemas:domainIncludes": "schemas:FoodEstablishment".freeze, - "schemas:rangeIncludes": ["schemas:Boolean".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessCode, comment: "Password, PIN, or access code needed for delivery (e.g. from a locker).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DeliveryEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "accessCode".freeze, - "schemas:domainIncludes": "schemas:DeliveryEvent".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\n ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, label: "accessMode".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\n ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ItemList".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, label: "accessModeSufficient".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:ItemList".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessibilityAPI, comment: "Indicates that the resource is compatible with the referenced accessibility API ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "accessibilityAPI".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessibilityControl, comment: "Identifies input methods that are sufficient to fully control the described resource ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "accessibilityControl".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessibilityFeature, comment: "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "accessibilityFeature".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accessibilityHazard, comment: "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "accessibilityHazard".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, label: "accessibilitySummary".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accommodationCategory, comment: "Category of an [[Accommodation]], following real estate conventions e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Accommodation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "accommodationCategory".freeze, - "schemas:domainIncludes": "schemas:Accommodation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - subPropertyOf: "schemas:category".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/category".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accommodationFloorPlan, comment: "A floorplan of some [[Accommodation]].".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/Residence".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/FloorPlan".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "accommodationFloorPlan".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:Residence".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:FloorPlan".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accountId, comment: "The identifier for the account the payment will be applied to.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Invoice".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "accountId".freeze, - "schemas:domainIncludes": "schemas:Invoice".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accountMinimumInflow, comment: "A minimum amount that has to be paid in every month.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BankAccount".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MonetaryAmount".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "accountMinimumInflow".freeze, - "schemas:domainIncludes": "schemas:BankAccount".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MonetaryAmount".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/BankAccount".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MonetaryAmount".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "accountOverdraftLimit".freeze, - "schemas:domainIncludes": "schemas:BankAccount".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MonetaryAmount".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :accountablePerson, comment: "Specifies the Person that is legally accountable for the CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "accountablePerson".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :acquireLicensePage, comment: "Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, label: "acquireLicensePage".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, - subPropertyOf: "schemas:usageInfo".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/usageInfo".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :acquiredFrom, comment: "The organization or person from which the product was acquired.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OwnershipInfo".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "acquiredFrom".freeze, - "schemas:domainIncludes": "schemas:OwnershipInfo".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/BusOrCoach".freeze, "https://schema.org/Car".freeze], + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "acrissCode".freeze, - "schemas:domainIncludes": ["schemas:BusOrCoach".freeze, "schemas:Car".freeze], - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/ConsumeAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ActionAccessSpecification".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "actionAccessibilityRequirement".freeze, - "schemas:domainIncludes": "schemas:ConsumeAction".freeze, - "schemas:rangeIncludes": "schemas:ActionAccessSpecification".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionApplication, comment: "An application that can complete the request.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EntryPoint".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/SoftwareApplication".freeze, label: "actionApplication".freeze, - "schemas:domainIncludes": "schemas:EntryPoint".freeze, - "schemas:rangeIncludes": "schemas:SoftwareApplication".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionOption, comment: "A sub property of object. The options subject to this action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ChooseAction".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/Thing".freeze], label: "actionOption".freeze, - "schemas:domainIncludes": "schemas:ChooseAction".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:Thing".freeze], - subPropertyOf: "schemas:object".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionPlatform, comment: "The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EntryPoint".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "actionPlatform".freeze, - "schemas:domainIncludes": "schemas:EntryPoint".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actionStatus, comment: "Indicates the current disposition of the Action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Action".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ActionStatusType".freeze, label: "actionStatus".freeze, - "schemas:domainIncludes": "schemas:Action".freeze, - "schemas:rangeIncludes": "schemas:ActionStatusType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/NewsMediaOrganization".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "actionableFeedbackPolicy".freeze, - "schemas:domainIncludes": ["schemas:NewsMediaOrganization".freeze, "schemas:Organization".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subPropertyOf: "schemas:publishingPrinciples".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :activeIngredient, comment: "An active ingredient, typically chemical compounds and/or biologic substances.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DietarySupplement".freeze, "https://schema.org/Drug".freeze, "https://schema.org/DrugStrength".freeze, "https://schema.org/Substance".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "activeIngredient".freeze, - "schemas:domainIncludes": ["schemas:DietarySupplement".freeze, "schemas:Drug".freeze, "schemas:DrugStrength".freeze, "schemas:Substance".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :activityDuration, comment: "Length of time to engage in the activity.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExercisePlan".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Duration".freeze, "https://schema.org/QuantitativeValue".freeze], label: "activityDuration".freeze, - "schemas:domainIncludes": "schemas:ExercisePlan".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Duration".freeze, "schemas:QuantitativeValue".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :activityFrequency, comment: "How often one should engage in the activity.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExercisePlan".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QuantitativeValue".freeze, "https://schema.org/Text".freeze], label: "activityFrequency".freeze, - "schemas:domainIncludes": "schemas:ExercisePlan".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:QuantitativeValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actor, comment: "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Clip".freeze, "https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/Episode".freeze, "https://schema.org/Event".freeze, "https://schema.org/Movie".freeze, "https://schema.org/MovieSeries".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGame".freeze, "https://schema.org/VideoGameSeries".freeze, "https://schema.org/VideoObject".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "actor".freeze, - "schemas:domainIncludes": ["schemas:Clip".freeze, "schemas:CreativeWorkSeason".freeze, "schemas:Episode".freeze, "schemas:Event".freeze, "schemas:Movie".freeze, "schemas:MovieSeries".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGame".freeze, "schemas:VideoGameSeries".freeze, "schemas:VideoObject".freeze], - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :actors, comment: "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Clip".freeze, "https://schema.org/Episode".freeze, "https://schema.org/Movie".freeze, "https://schema.org/MovieSeries".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGame".freeze, "https://schema.org/VideoGameSeries".freeze, "https://schema.org/VideoObject".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, + "https://schema.org/supersededBy": "https://schema.org/actor".freeze, label: "actors".freeze, - "schemas:domainIncludes": ["schemas:Clip".freeze, "schemas:Episode".freeze, "schemas:Movie".freeze, "schemas:MovieSeries".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGame".freeze, "schemas:VideoGameSeries".freeze, "schemas:VideoObject".freeze], - "schemas:rangeIncludes": "schemas:Person".freeze, - "schemas:supersededBy": "schemas:actor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Offer".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Offer".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "addOn".freeze, - "schemas:domainIncludes": "schemas:Offer".freeze, - "schemas:rangeIncludes": "schemas:Offer".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalName, comment: "An additional name for a Person, can be used for a middle name.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "additionalName".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalNumberOfGuests, comment: "If responding yes, the number of guests who will attend in addition to the invitee.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/RsvpAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "additionalNumberOfGuests".freeze, - "schemas:domainIncludes": "schemas:RsvpAction".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalProperty, comment: "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\\n\\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.\n".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Place".freeze, "https://schema.org/Product".freeze, "https://schema.org/QualitativeValue".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/PropertyValue".freeze, label: "additionalProperty".freeze, - "schemas:domainIncludes": ["schemas:Place".freeze, "schemas:Product".freeze, "schemas:QualitativeValue".freeze, "schemas:QuantitativeValue".freeze], - "schemas:rangeIncludes": "schemas:PropertyValue".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalType, comment: "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "additionalType".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - subPropertyOf: "rdf:type".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#type".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :additionalVariable, comment: "Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExercisePlan".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "additionalVariable".freeze, - "schemas:domainIncludes": "schemas:ExercisePlan".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :address, comment: "Physical address of the item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeoCoordinates".freeze, "https://schema.org/GeoShape".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/PostalAddress".freeze, "https://schema.org/Text".freeze], label: "address".freeze, - "schemas:domainIncludes": ["schemas:GeoCoordinates".freeze, "schemas:GeoShape".freeze, "schemas:Organization".freeze, "schemas:Person".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:PostalAddress".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :addressCountry, comment: "The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DefinedRegion".freeze, "https://schema.org/GeoCoordinates".freeze, "https://schema.org/GeoShape".freeze, "https://schema.org/PostalAddress".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Country".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "addressCountry".freeze, - "schemas:domainIncludes": ["schemas:DefinedRegion".freeze, "schemas:GeoCoordinates".freeze, "schemas:GeoShape".freeze, "schemas:PostalAddress".freeze], - "schemas:rangeIncludes": ["schemas:Country".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :addressLocality, comment: "The locality in which the street address is, and which is in the region. For example, Mountain View.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PostalAddress".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "addressLocality".freeze, - "schemas:domainIncludes": "schemas:PostalAddress".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country) ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DefinedRegion".freeze, "https://schema.org/PostalAddress".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "addressRegion".freeze, - "schemas:domainIncludes": ["schemas:DefinedRegion".freeze, "schemas:PostalAddress".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :administrationRoute, comment: "A route by which this drug may be administered, e.g. 'oral'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "administrationRoute".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "advanceBookingRequirement".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/MedicalDevice".freeze, "https://schema.org/TherapeuticProcedure".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalEntity".freeze, label: "adverseOutcome".freeze, - "schemas:domainIncludes": ["schemas:MedicalDevice".freeze, "schemas:TherapeuticProcedure".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalEntity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :affectedBy, comment: "Drugs that affect the test's results.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalTest".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Drug".freeze, label: "affectedBy".freeze, - "schemas:domainIncludes": "schemas:MedicalTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Drug".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :affiliation, comment: "An organization that this person is affiliated with. For example, a school/university, a club, or a team.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "affiliation".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - subPropertyOf: "schemas:memberOf".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/memberOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :afterMedia, comment: "A media object representing the circumstances after performing this direction.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HowToDirection".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MediaObject".freeze, "https://schema.org/URL".freeze], label: "afterMedia".freeze, - "schemas:domainIncludes": "schemas:HowToDirection".freeze, - "schemas:rangeIncludes": ["schemas:MediaObject".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :agent, comment: "The direct performer or driver of the action (animate or inanimate). e.g. *John* wrote a book.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Action".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "agent".freeze, - "schemas:domainIncludes": "schemas:Action".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :aggregateRating, comment: "The overall rating, based on a collection of reviews or ratings, of the item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Brand".freeze, "https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Place".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/AggregateRating".freeze, label: "aggregateRating".freeze, - "schemas:domainIncludes": ["schemas:Brand".freeze, "schemas:CreativeWork".freeze, "schemas:Event".freeze, "schemas:Offer".freeze, "schemas:Organization".freeze, "schemas:Place".freeze, "schemas:Product".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": "schemas:AggregateRating".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :aircraft, comment: "The kind of aircraft (e.g., \"Boeing 747\").".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/Vehicle".freeze], label: "aircraft".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:Vehicle".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :album, comment: "A music album.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicGroup".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicAlbum".freeze, label: "album".freeze, - "schemas:domainIncludes": "schemas:MusicGroup".freeze, - "schemas:rangeIncludes": "schemas:MusicAlbum".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :albumProductionType, comment: "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicAlbum".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicAlbumProductionType".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "albumProductionType".freeze, - "schemas:domainIncludes": "schemas:MusicAlbum".freeze, - "schemas:rangeIncludes": "schemas:MusicAlbumProductionType".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :albumRelease, comment: "A release of this album.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicAlbum".freeze, + "https://schema.org/inverseOf": "https://schema.org/releaseOf".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicRelease".freeze, label: "albumRelease".freeze, - "schemas:domainIncludes": "schemas:MusicAlbum".freeze, - "schemas:inverseOf": "schemas:releaseOf".freeze, - "schemas:rangeIncludes": "schemas:MusicRelease".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :albumReleaseType, comment: "The kind of release which this album is: single, EP or album.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicAlbum".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicAlbumReleaseType".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "albumReleaseType".freeze, - "schemas:domainIncludes": "schemas:MusicAlbum".freeze, - "schemas:rangeIncludes": "schemas:MusicAlbumReleaseType".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :albums, comment: "A collection of music albums.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicGroup".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicAlbum".freeze, + "https://schema.org/supersededBy": "https://schema.org/album".freeze, label: "albums".freeze, - "schemas:domainIncludes": "schemas:MusicGroup".freeze, - "schemas:rangeIncludes": "schemas:MusicAlbum".freeze, - "schemas:supersededBy": "schemas:album".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alcoholWarning, comment: "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "alcoholWarning".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :algorithm, comment: "The algorithm or rules to follow to compute the score.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalRiskScore".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "algorithm".freeze, - "schemas:domainIncludes": "schemas:MedicalRiskScore".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alignmentType, comment: "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AlignmentObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "alignmentType".freeze, - "schemas:domainIncludes": "schemas:AlignmentObject".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alternateName, comment: "An alias for the item.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "alternateName".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alternativeHeadline, comment: "A secondary title of the CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "alternativeHeadline".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alumni, comment: "Alumni of an organization.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/EducationalOrganization".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/inverseOf": "https://schema.org/alumniOf".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "alumni".freeze, - "schemas:domainIncludes": ["schemas:EducationalOrganization".freeze, "schemas:Organization".freeze], - "schemas:inverseOf": "schemas:alumniOf".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alumniOf, comment: "An organization that the person is an alumni of.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/inverseOf": "https://schema.org/alumni".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/EducationalOrganization".freeze, "https://schema.org/Organization".freeze], label: "alumniOf".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:inverseOf": "schemas:alumni".freeze, - "schemas:rangeIncludes": ["schemas:EducationalOrganization".freeze, "schemas:Organization".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/FloorPlan".freeze, "https://schema.org/LodgingBusiness".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/LocationFeatureSpecification".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "amenityFeature".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:FloorPlan".freeze, "schemas:LodgingBusiness".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": "schemas:LocationFeatureSpecification".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :amount, comment: "The amount of money.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DatedMoneySpecification".freeze, "https://schema.org/InvestmentOrDeposit".freeze, "https://schema.org/LoanOrCredit".freeze, "https://schema.org/MonetaryGrant".freeze, "https://schema.org/MoneyTransfer".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/Number".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1253".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], label: "amount".freeze, - "schemas:domainIncludes": ["schemas:DatedMoneySpecification".freeze, "schemas:InvestmentOrDeposit".freeze, "schemas:LoanOrCredit".freeze, "schemas:MonetaryGrant".freeze, "schemas:MoneyTransfer".freeze], - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:Number".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1253".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :amountOfThisGood, comment: "The quantity of the goods included in the offer.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TypeAndQuantityNode".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "amountOfThisGood".freeze, - "schemas:domainIncludes": "schemas:TypeAndQuantityNode".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CivicStructure".freeze, "https://schema.org/LocalBusiness".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2514".freeze, label: "announcementLocation".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CivicStructure".freeze, "schemas:LocalBusiness".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2514".freeze, - subPropertyOf: "schemas:spatialCoverage".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/spatialCoverage".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/FinancialProduct".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "annualPercentageRate".freeze, - "schemas:domainIncludes": "schemas:FinancialProduct".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :answerCount, comment: "The number of answers this question has received.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Question".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "answerCount".freeze, - "schemas:domainIncludes": "schemas:Question".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :answerExplanation, comment: "A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Answer".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Comment".freeze, "https://schema.org/WebContent".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2636".freeze, label: "answerExplanation".freeze, - "schemas:domainIncludes": "schemas:Answer".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Comment".freeze, "schemas:WebContent".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2636".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :antagonist, comment: "The muscle whose action counteracts the specified muscle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Muscle".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Muscle".freeze, label: "antagonist".freeze, - "schemas:domainIncludes": "schemas:Muscle".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Muscle".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appearance, comment: "Indicates an occurence of a [[Claim]] in some [[CreativeWork]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Claim".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, label: "appearance".freeze, - "schemas:domainIncludes": "schemas:Claim".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, - subPropertyOf: "schemas:workExample".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/workExample".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicableLocation, comment: "The location in which the status applies.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DrugCost".freeze, "https://schema.org/DrugLegalStatus".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AdministrativeArea".freeze, label: "applicableLocation".freeze, - "schemas:domainIncludes": ["schemas:DrugCost".freeze, "schemas:DrugLegalStatus".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AdministrativeArea".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AdministrativeArea".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2083".freeze, label: "applicantLocationRequirements".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AdministrativeArea".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2083".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :application, comment: "An application that can complete the request.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EntryPoint".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/supersededBy": "https://schema.org/actionApplication".freeze, label: "application".freeze, - "schemas:domainIncludes": "schemas:EntryPoint".freeze, - "schemas:rangeIncludes": "schemas:SoftwareApplication".freeze, - "schemas:supersededBy": "schemas:actionApplication".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationCategory, comment: "Type of software application, e.g. 'Game, Multimedia'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "applicationCategory".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationContact, comment: "Contact details for further information relevant to this job posting.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ContactPoint".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, label: "applicationContact".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:ContactPoint".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationDeadline, comment: "The date at which the program stops collecting applications for the next enrollment cycle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "applicationDeadline".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationStartDate, comment: "The date at which the program begins collecting applications for the next enrollment cycle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "applicationStartDate".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationSubCategory, comment: "Subcategory of the application, e.g. 'Arcade Game'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "applicationSubCategory".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :applicationSuite, comment: "The name of the application suite to which the application belongs (e.g. Excel belongs to Office).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "applicationSuite".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appliesToDeliveryMethod, comment: "The delivery method(s) to which the delivery charge or payment charge specification applies.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DeliveryChargeSpecification".freeze, "https://schema.org/PaymentChargeSpecification".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/DeliveryMethod".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "appliesToDeliveryMethod".freeze, - "schemas:domainIncludes": ["schemas:DeliveryChargeSpecification".freeze, "schemas:PaymentChargeSpecification".freeze], - "schemas:rangeIncludes": "schemas:DeliveryMethod".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appliesToPaymentMethod, comment: "The payment method(s) to which the payment charge specification applies.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PaymentChargeSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PaymentMethod".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "appliesToPaymentMethod".freeze, - "schemas:domainIncludes": "schemas:PaymentChargeSpecification".freeze, - "schemas:rangeIncludes": "schemas:PaymentMethod".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :archiveHeld, comment: "Collection, [fonds](https://en.wikipedia.org/wiki/Fonds), or item held, kept or maintained by an [[ArchiveOrganization]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ArchiveOrganization".freeze, + "https://schema.org/inverseOf": "https://schema.org/holdingArchive".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ArchiveComponent".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "archiveHeld".freeze, - "schemas:domainIncludes": "schemas:ArchiveOrganization".freeze, - "schemas:inverseOf": "schemas:holdingArchive".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:ArchiveComponent".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :area, comment: "The area within which users can expect to reach the broadcast service.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastService".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, + "https://schema.org/supersededBy": "https://schema.org/serviceArea".freeze, label: "area".freeze, - "schemas:domainIncludes": "schemas:BroadcastService".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - "schemas:supersededBy": "schemas:serviceArea".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :areaServed, comment: "The geographic area where a service or offered item is provided.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/DeliveryChargeSpecification".freeze, "https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/AdministrativeArea".freeze, "https://schema.org/GeoShape".freeze, "https://schema.org/Place".freeze, "https://schema.org/Text".freeze], label: "areaServed".freeze, - "schemas:domainIncludes": ["schemas:ContactPoint".freeze, "schemas:DeliveryChargeSpecification".freeze, "schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:Organization".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": ["schemas:AdministrativeArea".freeze, "schemas:GeoShape".freeze, "schemas:Place".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalAirport, comment: "The airport where the flight terminates.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Airport".freeze, label: "arrivalAirport".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": "schemas:Airport".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalBoatTerminal, comment: "The terminal or port from which the boat arrives.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BoatTrip".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BoatTerminal".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "arrivalBoatTerminal".freeze, - "schemas:domainIncludes": "schemas:BoatTrip".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:BoatTerminal".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalBusStop, comment: "The stop or station from which the bus arrives.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BusTrip".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/BusStation".freeze, "https://schema.org/BusStop".freeze], label: "arrivalBusStop".freeze, - "schemas:domainIncludes": "schemas:BusTrip".freeze, - "schemas:rangeIncludes": ["schemas:BusStation".freeze, "schemas:BusStop".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalGate, comment: "Identifier of the flight's arrival gate.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "arrivalGate".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalPlatform, comment: "The platform where the train arrives.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TrainTrip".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "arrivalPlatform".freeze, - "schemas:domainIncludes": "schemas:TrainTrip".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalStation, comment: "The station where the train trip ends.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TrainTrip".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/TrainStation".freeze, label: "arrivalStation".freeze, - "schemas:domainIncludes": "schemas:TrainTrip".freeze, - "schemas:rangeIncludes": "schemas:TrainStation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalTerminal, comment: "Identifier of the flight's arrival terminal.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "arrivalTerminal".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arrivalTime, comment: "The expected arrival time.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Trip".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Time".freeze], label: "arrivalTime".freeze, - "schemas:domainIncludes": "schemas:Trip".freeze, - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Time".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artEdition, comment: "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\").".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VisualArtwork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/Text".freeze], label: "artEdition".freeze, - "schemas:domainIncludes": "schemas:VisualArtwork".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artMedium, comment: "The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VisualArtwork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "artMedium".freeze, - "schemas:domainIncludes": "schemas:VisualArtwork".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - subPropertyOf: "schemas:material".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/material".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :arterialBranch, comment: "The branches that comprise the arterial structure.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Artery".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AnatomicalStructure".freeze, label: "arterialBranch".freeze, - "schemas:domainIncludes": "schemas:Artery".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AnatomicalStructure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artform, comment: "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VisualArtwork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "artform".freeze, - "schemas:domainIncludes": "schemas:VisualArtwork".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :articleBody, comment: "The actual body of the article.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Article".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "articleBody".freeze, - "schemas:domainIncludes": "schemas:Article".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :articleSection, comment: "Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Article".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "articleSection".freeze, - "schemas:domainIncludes": "schemas:Article".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artist, comment: "The primary artist for a work\n \tin a medium other than pencils or digital line art--for example, if the\n \tprimary artwork is done in watercolors or digital paints.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ComicIssue".freeze, "https://schema.org/ComicStory".freeze, "https://schema.org/VisualArtwork".freeze], + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "artist".freeze, - "schemas:domainIncludes": ["schemas:ComicIssue".freeze, "schemas:ComicStory".freeze, "schemas:VisualArtwork".freeze], - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :artworkSurface, comment: "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VisualArtwork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "artworkSurface".freeze, - "schemas:domainIncludes": "schemas:VisualArtwork".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :aspect, comment: "An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalWebPage".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/mainContentOfPage".freeze, label: "aspect".freeze, - "schemas:domainIncludes": "schemas:MedicalWebPage".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:mainContentOfPage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assembly, comment: "Library file name e.g., mscorlib.dll, system.web.dll.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/APIReference".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/executableLibraryName".freeze, label: "assembly".freeze, - "schemas:domainIncludes": "schemas:APIReference".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:executableLibraryName".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assemblyVersion, comment: "Associated product/technology version. e.g., .NET Framework 4.5.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/APIReference".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "assemblyVersion".freeze, - "schemas:domainIncludes": "schemas:APIReference".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :assesses, comment: "The item being described is intended to assess the competency or learning outcome defined by the referenced term.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/EducationEvent".freeze, "https://schema.org/LearningResource".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, label: "assesses".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:EducationEvent".freeze, "schemas:LearningResource".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedAnatomy, comment: "The anatomy of the underlying organ system or structures associated with this entity.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MedicalCondition".freeze, "https://schema.org/PhysicalActivity".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AnatomicalStructure".freeze, "https://schema.org/AnatomicalSystem".freeze, "https://schema.org/SuperficialAnatomy".freeze], label: "associatedAnatomy".freeze, - "schemas:domainIncludes": ["schemas:MedicalCondition".freeze, "schemas:PhysicalActivity".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:AnatomicalStructure".freeze, "schemas:AnatomicalSystem".freeze, "schemas:SuperficialAnatomy".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedArticle, comment: "A NewsArticle associated with the Media Object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/NewsArticle".freeze, label: "associatedArticle".freeze, - "schemas:domainIncludes": "schemas:MediaObject".freeze, - "schemas:rangeIncludes": "schemas:NewsArticle".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedMedia, comment: "A media object that encodes this CreativeWork. This property is a synonym for encoding.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/HyperToc".freeze, "https://schema.org/HyperTocEntry".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/MediaObject".freeze, label: "associatedMedia".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:HyperToc".freeze, "schemas:HyperTocEntry".freeze], - "schemas:rangeIncludes": "schemas:MediaObject".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :associatedPathophysiology, comment: "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/AnatomicalStructure".freeze, "https://schema.org/AnatomicalSystem".freeze, "https://schema.org/SuperficialAnatomy".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "associatedPathophysiology".freeze, - "schemas:domainIncludes": ["schemas:AnatomicalStructure".freeze, "schemas:AnatomicalSystem".freeze, "schemas:SuperficialAnatomy".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :athlete, comment: "A person that acts as performing member of a sports team; a player as opposed to a coach.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SportsTeam".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "athlete".freeze, - "schemas:domainIncludes": "schemas:SportsTeam".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :attendee, comment: "A person or organization attending the event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "attendee".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :attendees, comment: "A person attending the event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/supersededBy": "https://schema.org/attendee".freeze, label: "attendees".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:supersededBy": "schemas:attendee".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audience, comment: "An intended audience, i.e. a group for whom something was created.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze, "https://schema.org/LodgingBusiness".freeze, "https://schema.org/PlayAction".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Audience".freeze, label: "audience".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Event".freeze, "schemas:LodgingBusiness".freeze, "schemas:PlayAction".freeze, "schemas:Product".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": "schemas:Audience".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audienceType, comment: "The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Audience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "audienceType".freeze, - "schemas:domainIncludes": "schemas:Audience".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :audio, comment: "An embedded audio object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AudioObject".freeze, "https://schema.org/Clip".freeze, "https://schema.org/MusicRecording".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2420".freeze, label: "audio".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:AudioObject".freeze, "schemas:Clip".freeze, "schemas:MusicRecording".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2420".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/MediaSubscription".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "authenticator".freeze, - "schemas:domainIncludes": "schemas:MediaSubscription".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Rating".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "author".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Rating".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availability, comment: "The availability of this item—for example In stock, Out of stock, Pre-order, etc.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/ItemAvailability".freeze, label: "availability".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": "schemas:ItemAvailability".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availabilityEnds, comment: "The end of the availability of the product or service included in the offer.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ActionAccessSpecification".freeze, "https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze, "https://schema.org/Time".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], label: "availabilityEnds".freeze, - "schemas:domainIncludes": ["schemas:ActionAccessSpecification".freeze, "schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze, "schemas:Time".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availabilityStarts, comment: "The beginning of the availability of the product or service included in the offer.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ActionAccessSpecification".freeze, "https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze, "https://schema.org/Time".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], label: "availabilityStarts".freeze, - "schemas:domainIncludes": ["schemas:ActionAccessSpecification".freeze, "schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze, "schemas:Time".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableAtOrFrom, comment: "The place(s) from which the offer can be obtained (e.g. store locations).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "availableAtOrFrom".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": "schemas:Place".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: "schemas:areaServed".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/areaServed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableChannel, comment: "A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Service".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ServiceChannel".freeze, label: "availableChannel".freeze, - "schemas:domainIncludes": "schemas:Service".freeze, - "schemas:rangeIncludes": "schemas:ServiceChannel".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableDeliveryMethod, comment: "The delivery method(s) available for this offer.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/DeliveryMethod".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "availableDeliveryMethod".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": "schemas:DeliveryMethod".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableFrom, comment: "When the item is available for pickup from the store, locker, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DeliveryEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "availableFrom".freeze, - "schemas:domainIncludes": "schemas:DeliveryEvent".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableIn, comment: "The location in which the strength is available.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DrugStrength".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AdministrativeArea".freeze, label: "availableIn".freeze, - "schemas:domainIncludes": "schemas:DrugStrength".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AdministrativeArea".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableLanguage, comment: "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/LodgingBusiness".freeze, "https://schema.org/ServiceChannel".freeze, "https://schema.org/TouristAttraction".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Language".freeze, "https://schema.org/Text".freeze], label: "availableLanguage".freeze, - "schemas:domainIncludes": ["schemas:ContactPoint".freeze, "schemas:LodgingBusiness".freeze, "schemas:ServiceChannel".freeze, "schemas:TouristAttraction".freeze], - "schemas:rangeIncludes": ["schemas:Language".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableOnDevice, comment: "Device required to run the application. Used in cases where a specific make/model is required to run the application.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "availableOnDevice".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableService, comment: "A medical service available from this provider.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Hospital".freeze, "https://schema.org/MedicalClinic".freeze, "https://schema.org/Physician".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MedicalProcedure".freeze, "https://schema.org/MedicalTest".freeze, "https://schema.org/MedicalTherapy".freeze], label: "availableService".freeze, - "schemas:domainIncludes": ["schemas:Hospital".freeze, "schemas:MedicalClinic".freeze, "schemas:Physician".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:MedicalProcedure".freeze, "schemas:MedicalTest".freeze, "schemas:MedicalTherapy".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableStrength, comment: "An available dosage strength for the drug.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DrugStrength".freeze, label: "availableStrength".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DrugStrength".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableTest, comment: "A diagnostic test or procedure offered by this lab.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DiagnosticLab".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTest".freeze, label: "availableTest".freeze, - "schemas:domainIncludes": "schemas:DiagnosticLab".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTest".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableThrough, comment: "After this date, the item will no longer be available for pickup.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DeliveryEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "availableThrough".freeze, - "schemas:domainIncludes": "schemas:DeliveryEvent".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :award, comment: "An award won by or for this item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "award".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Organization".freeze, "schemas:Person".freeze, "schemas:Product".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awards, comment: "Awards won by or for this item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/award".freeze, label: "awards".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Organization".freeze, "schemas:Person".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:award".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :awayTeam, comment: "The away team in a sports event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SportsEvent".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Person".freeze, "https://schema.org/SportsTeam".freeze], label: "awayTeam".freeze, - "schemas:domainIncludes": "schemas:SportsEvent".freeze, - "schemas:rangeIncludes": ["schemas:Person".freeze, "schemas:SportsTeam".freeze], - subPropertyOf: "schemas:competitor".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/competitor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Article".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "backstory".freeze, - "schemas:domainIncludes": "schemas:Article".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:Text".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bankAccountType, comment: "The type of a bank account.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BankAccount".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "bankAccountType".freeze, - "schemas:domainIncludes": "schemas:BankAccount".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :baseSalary, comment: "The base salary of the job or of an employee in an EmployeeRole.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/EmployeeRole".freeze, "https://schema.org/JobPosting".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/Number".freeze, "https://schema.org/PriceSpecification".freeze], label: "baseSalary".freeze, - "schemas:domainIncludes": ["schemas:EmployeeRole".freeze, "schemas:JobPosting".freeze], - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:Number".freeze, "schemas:PriceSpecification".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bccRecipient, comment: "A sub property of recipient. The recipient blind copied on a message.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Message".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "bccRecipient".freeze, - "schemas:domainIncludes": "schemas:Message".freeze, - "schemas:rangeIncludes": ["schemas:ContactPoint".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:recipient".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/recipient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze 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.\n 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, + "https://schema.org/domainIncludes": ["https://schema.org/HotelRoom".freeze, "https://schema.org/Suite".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/BedDetails".freeze, "https://schema.org/BedType".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "bed".freeze, - "schemas:domainIncludes": ["schemas:HotelRoom".freeze, "schemas:Suite".freeze], - "schemas:rangeIncludes": ["schemas:BedDetails".freeze, "schemas:BedType".freeze, "schemas:Text".freeze], - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :beforeMedia, comment: "A media object representing the circumstances before performing this direction.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HowToDirection".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MediaObject".freeze, "https://schema.org/URL".freeze], label: "beforeMedia".freeze, - "schemas:domainIncludes": "schemas:HowToDirection".freeze, - "schemas:rangeIncludes": ["schemas:MediaObject".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/MoneyTransfer".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/BankOrCreditUnion".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "beneficiaryBank".freeze, - "schemas:domainIncludes": "schemas:MoneyTransfer".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:BankOrCreditUnion".freeze, "schemas:Text".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :benefits, comment: "Description of benefits associated with the job.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/jobBenefits".freeze, label: "benefits".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:jobBenefits".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/HealthInsurancePlan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "benefitsSummaryUrl".freeze, - "schemas:domainIncludes": "schemas:HealthInsurancePlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bestRating, comment: "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Rating".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "bestRating".freeze, - "schemas:domainIncludes": "schemas:Rating".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :billingAddress, comment: "The billing address for the order.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PostalAddress".freeze, label: "billingAddress".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": "schemas:PostalAddress".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :billingDuration, comment: "Specifies for how long this price (or price component) will be billed. Can be used, for example, to model the contractual duration of a subscription or payment plan. Type can be either a Duration or a Number (in which case the unit of measurement, for example month, is specified by the unitCode property)".freeze, + "https://schema.org/domainIncludes": "https://schema.org/UnitPriceSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Duration".freeze, "https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "billingDuration".freeze, - "schemas:domainIncludes": "schemas:UnitPriceSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Duration".freeze, "schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/UnitPriceSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "billingIncrement".freeze, - "schemas:domainIncludes": "schemas:UnitPriceSpecification".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :billingPeriod, comment: "The time interval used to compute the invoice.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Invoice".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, label: "billingPeriod".freeze, - "schemas:domainIncludes": "schemas:Invoice".freeze, - "schemas:rangeIncludes": "schemas:Duration".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :billingStart, comment: "Specifies after how much time this price (or price component) becomes valid and billing starts. Can be used, for example, to model a price increase after the first year of a subscription. The unit of measurement is specified by the unitCode property".freeze, + "https://schema.org/domainIncludes": "https://schema.org/UnitPriceSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "billingStart".freeze, - "schemas:domainIncludes": "schemas:UnitPriceSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :biomechnicalClass, comment: "The biomechanical properties of the bone.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Joint".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "biomechnicalClass".freeze, - "schemas:domainIncludes": "schemas:Joint".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :birthDate, comment: "Date of birth.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "birthDate".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :birthPlace, comment: "The place where the person was born.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "birthPlace".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bitrate, comment: "The bitrate of the media object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "bitrate".freeze, - "schemas:domainIncludes": "schemas:MediaObject".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :blogPost, comment: "A posting that is part of this blog.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Blog".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BlogPosting".freeze, label: "blogPost".freeze, - "schemas:domainIncludes": "schemas:Blog".freeze, - "schemas:rangeIncludes": "schemas:BlogPosting".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :blogPosts, comment: "The postings that are part of this blog.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Blog".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BlogPosting".freeze, + "https://schema.org/supersededBy": "https://schema.org/blogPost".freeze, label: "blogPosts".freeze, - "schemas:domainIncludes": "schemas:Blog".freeze, - "schemas:rangeIncludes": "schemas:BlogPosting".freeze, - "schemas:supersededBy": "schemas:blogPost".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bloodSupply, comment: "The blood vessel that carries blood from the heart to the muscle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Muscle".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Vessel".freeze, label: "bloodSupply".freeze, - "schemas:domainIncludes": "schemas:Muscle".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Vessel".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :boardingGroup, comment: "The airline-specific indicator of boarding order / preference.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FlightReservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "boardingGroup".freeze, - "schemas:domainIncludes": "schemas:FlightReservation".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :boardingPolicy, comment: "The type of boarding policy used by the airline (e.g. zone-based or group-based).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Airline".freeze, "https://schema.org/Flight".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/BoardingPolicyType".freeze, label: "boardingPolicy".freeze, - "schemas:domainIncludes": ["schemas:Airline".freeze, "schemas:Flight".freeze], - "schemas:rangeIncludes": "schemas:BoardingPolicyType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bodyLocation, comment: "Location in the body of the anatomical structure.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/AnatomicalStructure".freeze, "https://schema.org/MedicalProcedure".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "bodyLocation".freeze, - "schemas:domainIncludes": ["schemas:AnatomicalStructure".freeze, "schemas:MedicalProcedure".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bodyType, comment: "Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "bodyType".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:QualitativeValue".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookEdition, comment: "The edition of the book.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Book".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "bookEdition".freeze, - "schemas:domainIncludes": "schemas:Book".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookFormat, comment: "The format of the book.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Book".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BookFormatType".freeze, label: "bookFormat".freeze, - "schemas:domainIncludes": "schemas:Book".freeze, - "schemas:rangeIncludes": "schemas:BookFormatType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookingAgent, comment: "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Reservation".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/supersededBy": "https://schema.org/broker".freeze, label: "bookingAgent".freeze, - "schemas:domainIncludes": "schemas:Reservation".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:supersededBy": "schemas:broker".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookingTime, comment: "The date and time the reservation was booked.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Reservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "bookingTime".freeze, - "schemas:domainIncludes": "schemas:Reservation".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :borrower, comment: "A sub property of participant. The person that borrows the object being lent.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LendAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "borrower".freeze, - "schemas:domainIncludes": "schemas:LendAction".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :box, comment: "A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GeoShape".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "box".freeze, - "schemas:domainIncludes": "schemas:GeoShape".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :branch, comment: "The branches that delineate from the nerve bundle. Not to be confused with [[branchOf]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Nerve".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AnatomicalStructure".freeze, + "https://schema.org/supersededBy": ["https://schema.org/arterialBranch".freeze, "https://schema.org/nerveBranch".freeze, "https://schema.org/veinBranch".freeze], label: "branch".freeze, - "schemas:domainIncludes": "schemas:Nerve".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AnatomicalStructure".freeze, - "schemas:supersededBy": ["schemas:arterialBranch".freeze, "schemas:nerveBranch".freeze, "schemas:veinBranch".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :branchCode, comment: "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\\n\\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.\n ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "branchCode".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :branchOf, comment: "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)[[branch]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LocalBusiness".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/supersededBy": "https://schema.org/parentOrganization".freeze, label: "branchOf".freeze, - "schemas:domainIncludes": "schemas:LocalBusiness".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - "schemas:supersededBy": "schemas:parentOrganization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :brand, comment: "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Brand".freeze, "https://schema.org/Organization".freeze], label: "brand".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze, "schemas:Product".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": ["schemas:Brand".freeze, "schemas:Organization".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :breadcrumb, comment: "A set of links that can help a user understand and navigate a website hierarchy.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebPage".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/BreadcrumbList".freeze, "https://schema.org/Text".freeze], label: "breadcrumb".freeze, - "schemas:domainIncludes": "schemas:WebPage".freeze, - "schemas:rangeIncludes": ["schemas:BreadcrumbList".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :breastfeedingWarning, comment: "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "breastfeedingWarning".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastAffiliateOf, comment: "The media network(s) whose content is broadcast on this station.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastService".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "broadcastAffiliateOf".freeze, - "schemas:domainIncludes": "schemas:BroadcastService".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastChannelId, comment: "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "broadcastChannelId".freeze, - "schemas:domainIncludes": "schemas:BroadcastChannel".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastDisplayName, comment: "The name displayed in the channel guide. For many US affiliates, it is the network name.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastService".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "broadcastDisplayName".freeze, - "schemas:domainIncludes": "schemas:BroadcastService".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/BroadcastChannel".freeze, "https://schema.org/BroadcastService".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/BroadcastFrequencySpecification".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "broadcastFrequency".freeze, - "schemas:domainIncludes": ["schemas:BroadcastChannel".freeze, "schemas:BroadcastService".freeze], - "schemas:rangeIncludes": ["schemas:BroadcastFrequencySpecification".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastFrequencyValue, comment: "The frequency in MHz for a particular broadcast.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastFrequencySpecification".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "broadcastFrequencyValue".freeze, - "schemas:domainIncludes": "schemas:BroadcastFrequencySpecification".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastOfEvent, comment: "The event being broadcast such as a sporting event or awards ceremony.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Event".freeze, label: "broadcastOfEvent".freeze, - "schemas:domainIncludes": "schemas:BroadcastEvent".freeze, - "schemas:rangeIncludes": "schemas:Event".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastServiceTier, comment: "The type of service required to have access to the channel (e.g. Standard or Premium).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "broadcastServiceTier".freeze, - "schemas:domainIncludes": "schemas:BroadcastChannel".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastSignalModulation, comment: "The modulation (e.g. FM, AM, etc) used by a particular broadcast service".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastFrequencySpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, label: "broadcastSignalModulation".freeze, - "schemas:domainIncludes": "schemas:BroadcastFrequencySpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:QualitativeValue".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastSubChannel, comment: "The subchannel used for the broadcast.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastFrequencySpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, label: "broadcastSubChannel".freeze, - "schemas:domainIncludes": "schemas:BroadcastFrequencySpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcastTimezone, comment: "The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastService".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "broadcastTimezone".freeze, - "schemas:domainIncludes": "schemas:BroadcastService".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broadcaster, comment: "The organization owning or operating the broadcast service.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastService".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "broadcaster".freeze, - "schemas:domainIncludes": "schemas:BroadcastService".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :broker, comment: "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Invoice".freeze, "https://schema.org/Order".freeze, "https://schema.org/Reservation".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "broker".freeze, - "schemas:domainIncludes": ["schemas:Invoice".freeze, "schemas:Order".freeze, "schemas:Reservation".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :browserRequirements, comment: "Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "browserRequirements".freeze, - "schemas:domainIncludes": "schemas:WebApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :busName, comment: "The name of the bus (e.g. Bolt Express).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BusTrip".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "busName".freeze, - "schemas:domainIncludes": "schemas:BusTrip".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :busNumber, comment: "The unique identifier for the bus.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BusTrip".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "busNumber".freeze, - "schemas:domainIncludes": "schemas:BusTrip".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :businessDays, comment: "Days of the week when the merchant typically operates, indicated via opening hours markup.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ShippingDeliveryTime".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/OpeningHoursSpecification".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "businessDays".freeze, - "schemas:domainIncludes": "schemas:ShippingDeliveryTime".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:OpeningHoursSpecification".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/TypeAndQuantityNode".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/BusinessFunction".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "businessFunction".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:TypeAndQuantityNode".freeze], - "schemas:rangeIncludes": "schemas:BusinessFunction".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :buyer, comment: "A sub property of participant. The participant/person/organization that bought the object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SellAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "buyer".freeze, - "schemas:domainIncludes": "schemas:SellAction".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :byArtist, comment: "The artist that performed this album or recording.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MusicAlbum".freeze, "https://schema.org/MusicRecording".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/MusicGroup".freeze, "https://schema.org/Person".freeze], label: "byArtist".freeze, - "schemas:domainIncludes": ["schemas:MusicAlbum".freeze, "schemas:MusicRecording".freeze], - "schemas:rangeIncludes": ["schemas:MusicGroup".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Schedule".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DayOfWeek".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "byDay".freeze, - "schemas:domainIncludes": "schemas:Schedule".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DayOfWeek".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Schedule".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "byMonth".freeze, - "schemas:domainIncludes": "schemas:Schedule".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Schedule".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "byMonthDay".freeze, - "schemas:domainIncludes": "schemas:Schedule".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :byMonthWeek, comment: "Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Schedule".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2599".freeze, label: "byMonthWeek".freeze, - "schemas:domainIncludes": "schemas:Schedule".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2599".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :callSign, comment: "A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/BroadcastService".freeze, "https://schema.org/Person".freeze, "https://schema.org/Vehicle".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, label: "callSign".freeze, - "schemas:domainIncludes": ["schemas:BroadcastService".freeze, "schemas:Person".freeze, "schemas:Vehicle".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :calories, comment: "The number of calories.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Energy".freeze, label: "calories".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Energy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :candidate, comment: "A sub property of object. The candidate subject of this action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VoteAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "candidate".freeze, - "schemas:domainIncludes": "schemas:VoteAction".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - subPropertyOf: "schemas:object".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :caption, comment: "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]].".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/AudioObject".freeze, "https://schema.org/ImageObject".freeze, "https://schema.org/VideoObject".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/MediaObject".freeze, "https://schema.org/Text".freeze], label: "caption".freeze, - "schemas:domainIncludes": ["schemas:AudioObject".freeze, "schemas:ImageObject".freeze, "schemas:VideoObject".freeze], - "schemas:rangeIncludes": ["schemas:MediaObject".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :carbohydrateContent, comment: "The number of grams of carbohydrates.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "carbohydrateContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cargoVolume, comment: "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\\n\\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\\n\\nNote: You can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "cargoVolume".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :carrier, comment: "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Flight".freeze, "https://schema.org/ParcelDelivery".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/supersededBy": "https://schema.org/provider".freeze, label: "carrier".freeze, - "schemas:domainIncludes": ["schemas:Flight".freeze, "schemas:ParcelDelivery".freeze], - "schemas:rangeIncludes": "schemas:Organization".freeze, - "schemas:supersededBy": "schemas:provider".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :carrierRequirements, comment: "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MobileApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "carrierRequirements".freeze, - "schemas:domainIncludes": "schemas:MobileApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cashBack, comment: "A cardholder benefit that pays the cardholder a small percentage of their net expenditures.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PaymentCard".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Boolean".freeze, "https://schema.org/Number".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "cashBack".freeze, - "schemas:domainIncludes": "schemas:PaymentCard".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Boolean".freeze, "schemas:Number".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :catalog, comment: "A data catalog which contains this dataset.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Dataset".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DataCatalog".freeze, + "https://schema.org/supersededBy": "https://schema.org/includedInDataCatalog".freeze, label: "catalog".freeze, - "schemas:domainIncludes": "schemas:Dataset".freeze, - "schemas:rangeIncludes": "schemas:DataCatalog".freeze, - "schemas:supersededBy": "schemas:includedInDataCatalog".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :catalogNumber, comment: "The catalog number for the release.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicRelease".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "catalogNumber".freeze, - "schemas:domainIncludes": "schemas:MusicRelease".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :category, comment: "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ActionAccessSpecification".freeze, "https://schema.org/Invoice".freeze, "https://schema.org/Offer".freeze, "https://schema.org/PhysicalActivity".freeze, "https://schema.org/Product".freeze, "https://schema.org/Recommendation".freeze, "https://schema.org/Service".freeze, "https://schema.org/SpecialAnnouncement".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/PhysicalActivityCategory".freeze, "https://schema.org/Text".freeze, "https://schema.org/Thing".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1741".freeze, "https://github.com/schemaorg/schemaorg/issues/2490".freeze], label: "category".freeze, - "schemas:domainIncludes": ["schemas:ActionAccessSpecification".freeze, "schemas:Invoice".freeze, "schemas:Offer".freeze, "schemas:PhysicalActivity".freeze, "schemas:Product".freeze, "schemas:Recommendation".freeze, "schemas:Service".freeze, "schemas:SpecialAnnouncement".freeze], - "schemas:rangeIncludes": ["schemas:PhysicalActivityCategory".freeze, "schemas:Text".freeze, "schemas:Thing".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1741".freeze, "https://github.com/schemaorg/schemaorg/issues/2490".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :causeOf, comment: "The condition, complication, symptom, sign, etc. caused.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCause".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalEntity".freeze, label: "causeOf".freeze, - "schemas:domainIncludes": "schemas:MedicalCause".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalEntity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ccRecipient, comment: "A sub property of recipient. The recipient copied on a message.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Message".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "ccRecipient".freeze, - "schemas:domainIncludes": "schemas:Message".freeze, - "schemas:rangeIncludes": ["schemas:ContactPoint".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:recipient".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/recipient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :character, comment: "Fictional person connected with a creative work.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "character".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterAttribute, comment: "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Game".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "characterAttribute".freeze, - "schemas:domainIncludes": ["schemas:Game".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :characterName, comment: "The name of a character played in some acting or performing role, i.e. in a PerformanceRole.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PerformanceRole".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "characterName".freeze, - "schemas:domainIncludes": "schemas:PerformanceRole".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cheatCode, comment: "Cheat codes to the game.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/VideoGame".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "cheatCode".freeze, - "schemas:domainIncludes": ["schemas:VideoGame".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :checkinTime, comment: "The earliest someone may check into a lodging establishment.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/LodgingBusiness".freeze, "https://schema.org/LodgingReservation".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Time".freeze], label: "checkinTime".freeze, - "schemas:domainIncludes": ["schemas:LodgingBusiness".freeze, "schemas:LodgingReservation".freeze], - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Time".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :checkoutTime, comment: "The latest someone may check out of a lodging establishment.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/LodgingBusiness".freeze, "https://schema.org/LodgingReservation".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Time".freeze], label: "checkoutTime".freeze, - "schemas:domainIncludes": ["schemas:LodgingBusiness".freeze, "schemas:LodgingReservation".freeze], - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Time".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :childMaxAge, comment: "Maximal age of the child.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParentAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "childMaxAge".freeze, - "schemas:domainIncludes": "schemas:ParentAudience".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :childMinAge, comment: "Minimal age of the child.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParentAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "childMinAge".freeze, - "schemas:domainIncludes": "schemas:ParentAudience".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :children, comment: "A child of the person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "children".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cholesterolContent, comment: "The number of milligrams of cholesterol.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "cholesterolContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :circle, comment: "A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GeoShape".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "circle".freeze, - "schemas:domainIncludes": "schemas:GeoShape".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :citation, comment: "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Text".freeze], label: "citation".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :claimReviewed, comment: "A short summary of the specific claims reviewed in a ClaimReview.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ClaimReview".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, label: "claimReviewed".freeze, - "schemas:domainIncludes": "schemas:ClaimReview".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :clincalPharmacology, comment: "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/clinicalPharmacology".freeze, label: "clincalPharmacology".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:clinicalPharmacology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :clinicalPharmacology, comment: "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "clinicalPharmacology".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :clipNumber, comment: "Position of the clip within an ordered group of clips.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Clip".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/Text".freeze], label: "clipNumber".freeze, - "schemas:domainIncludes": "schemas:Clip".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:Text".freeze], - subPropertyOf: "schemas:position".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :closes, comment: "The closing hour of the place or service on the given day(s) of the week.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OpeningHoursSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Time".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "closes".freeze, - "schemas:domainIncludes": "schemas:OpeningHoursSpecification".freeze, - "schemas:rangeIncludes": "schemas:Time".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coach, comment: "A person that acts in a coaching role for a sports team.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SportsTeam".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "coach".freeze, - "schemas:domainIncludes": "schemas:SportsTeam".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :code, comment: "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalEntity".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalCode".freeze, label: "code".freeze, - "schemas:domainIncludes": "schemas:MedicalEntity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalCode".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codeRepository, comment: "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareSourceCode".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "codeRepository".freeze, - "schemas:domainIncludes": "schemas:SoftwareSourceCode".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codeSampleType, comment: "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareSourceCode".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "codeSampleType".freeze, - "schemas:domainIncludes": "schemas:SoftwareSourceCode".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codeValue, comment: "A short textual code that uniquely identifies the value.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CategoryCode".freeze, "https://schema.org/MedicalCode".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "codeValue".freeze, - "schemas:domainIncludes": ["schemas:CategoryCode".freeze, "schemas:MedicalCode".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - subPropertyOf: "schemas:termCode".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/termCode".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :codingSystem, comment: "The coding system, e.g. 'ICD-10'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCode".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "codingSystem".freeze, - "schemas:domainIncludes": "schemas:MedicalCode".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colleague, comment: "A colleague of the person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Person".freeze, "https://schema.org/URL".freeze], label: "colleague".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": ["schemas:Person".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colleagues, comment: "A colleague of the person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, + "https://schema.org/supersededBy": "https://schema.org/colleague".freeze, label: "colleagues".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - "schemas:supersededBy": "schemas:colleague".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :collection, comment: "A sub property of object. The collection target of the action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/UpdateAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/supersededBy": "https://schema.org/targetCollection".freeze, label: "collection".freeze, - "schemas:domainIncludes": "schemas:UpdateAction".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - "schemas:supersededBy": "schemas:targetCollection".freeze, - subPropertyOf: "schemas:object".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :collectionSize, comment: "The number of items in the [[Collection]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Collection".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, label: "collectionSize".freeze, - "schemas:domainIncludes": "schemas:Collection".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :color, comment: "The color of the product.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Product".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "color".freeze, - "schemas:domainIncludes": "schemas:Product".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colorist, comment: "The individual who adds color to inked drawings.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ComicIssue".freeze, "https://schema.org/ComicStory".freeze, "https://schema.org/VisualArtwork".freeze], + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "colorist".freeze, - "schemas:domainIncludes": ["schemas:ComicIssue".freeze, "schemas:ComicStory".freeze, "schemas:VisualArtwork".freeze], - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :comment, comment: "Comments, typically from users.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/RsvpAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Comment".freeze, label: "comment".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:RsvpAction".freeze], - "schemas:rangeIncludes": "schemas:Comment".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :commentCount, comment: "The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "commentCount".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :commentText, comment: "The text of the UserComment.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/UserComments".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "commentText".freeze, - "schemas:domainIncludes": "schemas:UserComments".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :commentTime, comment: "The time at which the UserComment was made.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/UserComments".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "commentTime".freeze, - "schemas:domainIncludes": "schemas:UserComments".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :competencyRequired, comment: "Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/EducationalOccupationalCredential".freeze, "https://schema.org/LearningResource".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "competencyRequired".freeze, - "schemas:domainIncludes": ["schemas:EducationalOccupationalCredential".freeze, "schemas:LearningResource".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :competitor, comment: "A competitor in a sports event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SportsEvent".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Person".freeze, "https://schema.org/SportsTeam".freeze], label: "competitor".freeze, - "schemas:domainIncludes": "schemas:SportsEvent".freeze, - "schemas:rangeIncludes": ["schemas:Person".freeze, "schemas:SportsTeam".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Event".freeze, "https://schema.org/MusicComposition".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "composer".freeze, - "schemas:domainIncludes": ["schemas:Event".freeze, "schemas:MusicComposition".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/AnatomicalSystem".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AnatomicalStructure".freeze, "https://schema.org/AnatomicalSystem".freeze], label: "comprisedOf".freeze, - "schemas:domainIncludes": "schemas:AnatomicalSystem".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:AnatomicalStructure".freeze, "schemas:AnatomicalSystem".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :conditionsOfAccess, 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.\\n\\nFor example \"Available by appointment from the Reading Room\" or \"Accessible only from logged-in accounts \". ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2173".freeze, label: "conditionsOfAccess".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2173".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :confirmationNumber, comment: "A number that confirms the given order or payment has been received.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Invoice".freeze, "https://schema.org/Order".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "confirmationNumber".freeze, - "schemas:domainIncludes": ["schemas:Invoice".freeze, "schemas:Order".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :connectedTo, comment: "Other anatomical structures to which this structure is connected.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AnatomicalStructure".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AnatomicalStructure".freeze, label: "connectedTo".freeze, - "schemas:domainIncludes": "schemas:AnatomicalStructure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AnatomicalStructure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :constrainingProperty, comment: "Indicates a property used as a constraint to define a [[StatisticalPopulation]] with respect to the set of entities\n corresponding to an indicated type (via [[populationType]]).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/StatisticalPopulation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "constrainingProperty".freeze, - "schemas:domainIncludes": "schemas:StatisticalPopulation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/ContactPoint".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ContactPointOption".freeze, label: "contactOption".freeze, - "schemas:domainIncludes": "schemas:ContactPoint".freeze, - "schemas:rangeIncludes": "schemas:ContactPointOption".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contactPoint, comment: "A contact point for a person or organization.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HealthInsurancePlan".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/ContactPoint".freeze, label: "contactPoint".freeze, - "schemas:domainIncludes": ["schemas:HealthInsurancePlan".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:ContactPoint".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contactPoints, comment: "A contact point for a person or organization.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/ContactPoint".freeze, + "https://schema.org/supersededBy": "https://schema.org/contactPoint".freeze, label: "contactPoints".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:ContactPoint".freeze, - "schemas:supersededBy": "schemas:contactPoint".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contactType, comment: "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ContactPoint".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "contactType".freeze, - "schemas:domainIncludes": "schemas:ContactPoint".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/PaymentCard".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "contactlessPayment".freeze, - "schemas:domainIncludes": "schemas:PaymentCard".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containedIn, comment: "The basic containment relation between a place and one that contains it.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, + "https://schema.org/supersededBy": "https://schema.org/containedInPlace".freeze, label: "containedIn".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - "schemas:supersededBy": "schemas:containedInPlace".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containedInPlace, comment: "The basic containment relation between a place and one that contains it.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/inverseOf": "https://schema.org/containsPlace".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "containedInPlace".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:inverseOf": "schemas:containsPlace".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containsPlace, comment: "The basic containment relation between a place and another that it contains.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/inverseOf": "https://schema.org/containedInPlace".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "containsPlace".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:inverseOf": "schemas:containedInPlace".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :containsSeason, comment: "A season that is part of the media series.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWorkSeason".freeze, label: "containsSeason".freeze, - "schemas:domainIncludes": ["schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:CreativeWorkSeason".freeze, - subPropertyOf: "schemas:hasPart".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/hasPart".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentLocation, comment: "The location depicted or described in the content. For example, the location in a photograph or painting.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "contentLocation".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentRating, comment: "Official rating of a piece of content—for example,'MPAA PG-13'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Rating".freeze, "https://schema.org/Text".freeze], label: "contentRating".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:Rating".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1050".freeze, label: "contentReferenceTime".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1050".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentSize, comment: "File size in (mega/kilo) bytes.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "contentSize".freeze, - "schemas:domainIncludes": "schemas:MediaObject".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentType, comment: "The supported content type(s) for an EntryPoint response.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EntryPoint".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "contentType".freeze, - "schemas:domainIncludes": "schemas:EntryPoint".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentUrl, comment: "Actual bytes of the media object, for example the image file or video file.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "contentUrl".freeze, - "schemas:domainIncludes": "schemas:MediaObject".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contraindication, comment: "A contraindication for this therapy.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MedicalDevice".freeze, "https://schema.org/MedicalTherapy".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MedicalContraindication".freeze, "https://schema.org/Text".freeze], label: "contraindication".freeze, - "schemas:domainIncludes": ["schemas:MedicalDevice".freeze, "schemas:MedicalTherapy".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:MedicalContraindication".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contributor, comment: "A secondary contributor to the CreativeWork or Event.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "contributor".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Event".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cookTime, comment: "The time it takes to actually cook the dish, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Recipe".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, label: "cookTime".freeze, - "schemas:domainIncludes": "schemas:Recipe".freeze, - "schemas:rangeIncludes": "schemas:Duration".freeze, - subPropertyOf: "schemas:performTime".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/performTime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cookingMethod, comment: "The method of cooking, such as Frying, Steaming, ...".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Recipe".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "cookingMethod".freeze, - "schemas:domainIncludes": "schemas:Recipe".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :copyrightHolder, comment: "The party holding the legal copyright to the CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "copyrightHolder".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :copyrightNotice, comment: "Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2659".freeze, label: "copyrightNotice".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2659".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :copyrightYear, comment: "The year during which the claimed copyright for the CreativeWork was first asserted.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "copyrightYear".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :correction, comment: "Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CorrectionComment".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1950".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "correction".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CorrectionComment".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1950".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/NewsMediaOrganization".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "correctionsPolicy".freeze, - "schemas:domainIncludes": ["schemas:NewsMediaOrganization".freeze, "schemas:Organization".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subPropertyOf: "schemas:publishingPrinciples".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costCategory, comment: "The category of cost, such as wholesale, retail, reimbursement cap, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DrugCost".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DrugCostCategory".freeze, label: "costCategory".freeze, - "schemas:domainIncludes": "schemas:DrugCost".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DrugCostCategory".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costCurrency, comment: "The currency (in 3-letter of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217 ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DrugCost".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "costCurrency".freeze, - "schemas:domainIncludes": "schemas:DrugCost".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costOrigin, comment: "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DrugCost".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "costOrigin".freeze, - "schemas:domainIncludes": "schemas:DrugCost".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costPerUnit, comment: "The cost per unit of the drug.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DrugCost".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze], label: "costPerUnit".freeze, - "schemas:domainIncludes": "schemas:DrugCost".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QualitativeValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :countriesNotSupported, comment: "Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "countriesNotSupported".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :countriesSupported, comment: "Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "countriesSupported".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :countryOfOrigin, comment: "The country of the principal offices of the production company or individual responsible for the movie or program.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Movie".freeze, "https://schema.org/TVEpisode".freeze, "https://schema.org/TVSeason".freeze, "https://schema.org/TVSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Country".freeze, label: "countryOfOrigin".freeze, - "schemas:domainIncludes": ["schemas:Movie".freeze, "schemas:TVEpisode".freeze, "schemas:TVSeason".freeze, "schemas:TVSeries".freeze], - "schemas:rangeIncludes": "schemas:Country".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :course, comment: "A sub property of location. The course where this action was taken.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExerciseAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, + "https://schema.org/supersededBy": "https://schema.org/exerciseCourse".freeze, label: "course".freeze, - "schemas:domainIncludes": "schemas:ExerciseAction".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - "schemas:supersededBy": "schemas:exerciseCourse".freeze, - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :courseCode, comment: "The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Course".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "courseCode".freeze, - "schemas:domainIncludes": "schemas:Course".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :courseMode, comment: "The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CourseInstance".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "courseMode".freeze, - "schemas:domainIncludes": "schemas:CourseInstance".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coursePrerequisites, comment: "Requirements for taking the Course. May be completion of another [[Course]] or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Course".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AlignmentObject".freeze, "https://schema.org/Course".freeze, "https://schema.org/Text".freeze], label: "coursePrerequisites".freeze, - "schemas:domainIncludes": "schemas:Course".freeze, - "schemas:rangeIncludes": ["schemas:AlignmentObject".freeze, "schemas:Course".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CourseInstance".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1909".freeze, label: "courseWorkload".freeze, - "schemas:domainIncludes": "schemas:CourseInstance".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1909".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/LiveBlogPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "coverageEndTime".freeze, - "schemas:domainIncludes": "schemas:LiveBlogPosting".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :coverageStartTime, comment: "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LiveBlogPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "coverageStartTime".freeze, - "schemas:domainIncludes": "schemas:LiveBlogPosting".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/987".freeze, label: "creativeWorkStatus".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/987".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :creator, comment: "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/UserComments".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "creator".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:UserComments".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :credentialCategory, comment: "The category or type of credential being described, for example \"degree”, “certificate”, “badge”, or more specific term.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalCredential".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "credentialCategory".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalCredential".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :creditText, comment: "Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2659".freeze, label: "creditText".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2659".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/MusicRelease".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "creditedTo".freeze, - "schemas:domainIncludes": "schemas:MusicRelease".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/SpeakableSpecification".freeze, "https://schema.org/WebPageElement".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/CssSelectorType".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, label: "cssSelector".freeze, - "schemas:domainIncludes": ["schemas:SpeakableSpecification".freeze, "schemas:WebPageElement".freeze], - "schemas:rangeIncludes": "schemas:CssSelectorType".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :currenciesAccepted, comment: "The currency accepted.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LocalBusiness".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "currenciesAccepted".freeze, - "schemas:domainIncludes": "schemas:LocalBusiness".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :currency, comment: "The currency in which the monetary amount is expressed.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DatedMoneySpecification".freeze, "https://schema.org/ExchangeRateSpecification".freeze, "https://schema.org/LoanOrCredit".freeze, "https://schema.org/MonetaryAmount".freeze, "https://schema.org/MonetaryAmountDistribution".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1253".freeze, label: "currency".freeze, - "schemas:domainIncludes": ["schemas:DatedMoneySpecification".freeze, "schemas:ExchangeRateSpecification".freeze, "schemas:LoanOrCredit".freeze, "schemas:MonetaryAmount".freeze, "schemas:MonetaryAmountDistribution".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1253".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :currentExchangeRate, comment: "The current price of a currency.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExchangeRateSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/UnitPriceSpecification".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "currentExchangeRate".freeze, - "schemas:domainIncludes": "schemas:ExchangeRateSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:UnitPriceSpecification".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :customer, comment: "Party placing the order or paying the invoice.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Invoice".freeze, "https://schema.org/Order".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "customer".freeze, - "schemas:domainIncludes": ["schemas:Invoice".freeze, "schemas:Order".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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 ISO-8601 Time format, e.g. \"23:30:00-05:00\" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ShippingDeliveryTime".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Time".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "cutoffTime".freeze, - "schemas:domainIncludes": "schemas:ShippingDeliveryTime".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Time".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdCollectionDate, comment: "collectiondate - Date for which patient counts are reported.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdCollectionDate".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdFacilityCounty".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdFacilityId".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumBeds, comment: "numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumBeds".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumBedsOcc, comment: "numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumBedsOcc".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19Died".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19HOPats".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumC19HospPats, comment: "numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19HospPats".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19MechVentPats".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19OFMechVentPats".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumC19OverflowPats".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumICUBeds, comment: "numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumICUBeds".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumICUBedsOcc, comment: "numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumICUBedsOcc".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumTotBeds".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumVent, comment: "numvent - MECHANICAL VENTILATORS: Total number of ventilators available.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumVent".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cvdNumVentUse, comment: "numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CDCPMDRecord".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "cvdNumVentUse".freeze, - "schemas:domainIncludes": "schemas:CDCPMDRecord".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dataFeedElement, comment: "An item within in a data feed. Data feeds may have many elements.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DataFeed".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DataFeedItem".freeze, "https://schema.org/Text".freeze, "https://schema.org/Thing".freeze], label: "dataFeedElement".freeze, - "schemas:domainIncludes": "schemas:DataFeed".freeze, - "schemas:rangeIncludes": ["schemas:DataFeedItem".freeze, "schemas:Text".freeze, "schemas:Thing".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dataset, comment: "A dataset contained in this catalog.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DataCatalog".freeze, + "https://schema.org/inverseOf": "https://schema.org/includedInDataCatalog".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Dataset".freeze, label: "dataset".freeze, - "schemas:domainIncludes": "schemas:DataCatalog".freeze, - "schemas:inverseOf": "schemas:includedInDataCatalog".freeze, - "schemas:rangeIncludes": "schemas:Dataset".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datasetTimeInterval, comment: "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Dataset".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, + "https://schema.org/supersededBy": "https://schema.org/temporalCoverage".freeze, label: "datasetTimeInterval".freeze, - "schemas:domainIncludes": "schemas:Dataset".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - "schemas:supersededBy": "schemas:temporalCoverage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateCreated, comment: "The date on which the CreativeWork was created or the item was added to a DataFeed.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/DataFeedItem".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "dateCreated".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:DataFeedItem".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateDeleted, comment: "The datetime the item was removed from the DataFeed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DataFeedItem".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "dateDeleted".freeze, - "schemas:domainIncludes": "schemas:DataFeedItem".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateIssued, comment: "The date the ticket was issued.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Ticket".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "dateIssued".freeze, - "schemas:domainIncludes": "schemas:Ticket".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateModified, comment: "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/DataFeedItem".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "dateModified".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:DataFeedItem".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datePosted, comment: "Publication date of an online listing.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CDCPMDRecord".freeze, "https://schema.org/JobPosting".freeze, "https://schema.org/RealEstateListing".freeze, "https://schema.org/SpecialAnnouncement".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/2490".freeze, "https://github.com/schemaorg/schemaorg/issues/2521".freeze], label: "datePosted".freeze, - "schemas:domainIncludes": ["schemas:CDCPMDRecord".freeze, "schemas:JobPosting".freeze, "schemas:RealEstateListing".freeze, "schemas:SpecialAnnouncement".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/2490".freeze, "https://github.com/schemaorg/schemaorg/issues/2521".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datePublished, comment: "Date of first broadcast/publication.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "datePublished".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateRead, comment: "The date/time at which the message has been read by the recipient if a single recipient exists.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Message".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "dateRead".freeze, - "schemas:domainIncludes": "schemas:Message".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateReceived, comment: "The date/time the message was received if a single recipient exists.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Message".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "dateReceived".freeze, - "schemas:domainIncludes": "schemas:Message".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateSent, comment: "The date/time at which the message was sent.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Message".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "dateSent".freeze, - "schemas:domainIncludes": "schemas:Message".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateVehicleFirstRegistered, comment: "The date of the first registration of the vehicle with the respective public authorities.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "dateVehicleFirstRegistered".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dateline, comment: "A [dateline](https://en.wikipedia.org/wiki/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.\n\nStructured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]].\n\nDateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: \"BEIRUT, Lebanon, June 2.\", \"Paris, France\", \"December 19, 2017 11:43AM Reporting from Washington\", \"Beijing/Moscow\", \"QUEZON CITY, Philippines\".\n ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NewsArticle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "dateline".freeze, - "schemas:domainIncludes": "schemas:NewsArticle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dayOfWeek, comment: "The day of the week for which these opening hours are valid.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/EducationalOccupationalProgram".freeze, "https://schema.org/OpeningHoursSpecification".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/DayOfWeek".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "dayOfWeek".freeze, - "schemas:domainIncludes": ["schemas:EducationalOccupationalProgram".freeze, "schemas:OpeningHoursSpecification".freeze], - "schemas:rangeIncludes": "schemas:DayOfWeek".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deathDate, comment: "Date of death.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "deathDate".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deathPlace, comment: "The place where the person died.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "deathPlace".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :defaultValue, comment: "The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValueSpecification".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/Thing".freeze], label: "defaultValue".freeze, - "schemas:domainIncludes": "schemas:PropertyValueSpecification".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:Thing".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deliveryAddress, comment: "Destination address.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParcelDelivery".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PostalAddress".freeze, label: "deliveryAddress".freeze, - "schemas:domainIncludes": "schemas:ParcelDelivery".freeze, - "schemas:rangeIncludes": "schemas:PostalAddress".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "deliveryLeadTime".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deliveryMethod, comment: "A sub property of instrument. The method of delivery.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/OrderAction".freeze, "https://schema.org/ReceiveAction".freeze, "https://schema.org/SendAction".freeze, "https://schema.org/TrackAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/DeliveryMethod".freeze, label: "deliveryMethod".freeze, - "schemas:domainIncludes": ["schemas:OrderAction".freeze, "schemas:ReceiveAction".freeze, "schemas:SendAction".freeze, "schemas:TrackAction".freeze], - "schemas:rangeIncludes": "schemas:DeliveryMethod".freeze, - subPropertyOf: "schemas:instrument".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deliveryStatus, comment: "New entry added as the package passes through each leg of its journey (from shipment to final delivery).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParcelDelivery".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DeliveryEvent".freeze, label: "deliveryStatus".freeze, - "schemas:domainIncludes": "schemas:ParcelDelivery".freeze, - "schemas:rangeIncludes": "schemas:DeliveryEvent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deliveryTime, comment: "The total delay between the receipt of the order and the goods reaching the final customer.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DeliveryTimeSettings".freeze, "https://schema.org/OfferShippingDetails".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ShippingDeliveryTime".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "deliveryTime".freeze, - "schemas:domainIncludes": ["schemas:DeliveryTimeSettings".freeze, "schemas:OfferShippingDetails".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:ShippingDeliveryTime".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "department".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureAirport, comment: "The airport where the flight originates.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Airport".freeze, label: "departureAirport".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": "schemas:Airport".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureBoatTerminal, comment: "The terminal or port from which the boat departs.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BoatTrip".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BoatTerminal".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, label: "departureBoatTerminal".freeze, - "schemas:domainIncludes": "schemas:BoatTrip".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:BoatTerminal".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1755".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureBusStop, comment: "The stop or station from which the bus departs.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BusTrip".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/BusStation".freeze, "https://schema.org/BusStop".freeze], label: "departureBusStop".freeze, - "schemas:domainIncludes": "schemas:BusTrip".freeze, - "schemas:rangeIncludes": ["schemas:BusStation".freeze, "schemas:BusStop".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureGate, comment: "Identifier of the flight's departure gate.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "departureGate".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departurePlatform, comment: "The platform from which the train departs.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TrainTrip".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "departurePlatform".freeze, - "schemas:domainIncludes": "schemas:TrainTrip".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureStation, comment: "The station from which the train departs.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TrainTrip".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/TrainStation".freeze, label: "departureStation".freeze, - "schemas:domainIncludes": "schemas:TrainTrip".freeze, - "schemas:rangeIncludes": "schemas:TrainStation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureTerminal, comment: "Identifier of the flight's departure terminal.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "departureTerminal".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :departureTime, comment: "The expected departure time.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Trip".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Time".freeze], label: "departureTime".freeze, - "schemas:domainIncludes": "schemas:Trip".freeze, - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Time".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dependencies, comment: "Prerequisites needed to fulfill steps in article.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TechArticle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "dependencies".freeze, - "schemas:domainIncludes": "schemas:TechArticle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :depth, comment: "The depth of the item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Product".freeze, "https://schema.org/VisualArtwork".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Distance".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "depth".freeze, - "schemas:domainIncludes": ["schemas:Product".freeze, "schemas:VisualArtwork".freeze], - "schemas:rangeIncludes": ["schemas:Distance".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, comment: "A description of the item.".freeze, - equivalentProperty: "dc:description".freeze, + equivalentProperty: "http://purl.org/dc/terms/description".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "description".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :device, comment: "Device required to run the application. Used in cases where a specific make/model is required to run the application.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/availableOnDevice".freeze, label: "device".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:availableOnDevice".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diagnosis, comment: "One or more alternative conditions considered in the differential diagnosis process as output of a diagnosis process.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DDxElement".freeze, "https://schema.org/Patient".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalCondition".freeze, label: "diagnosis".freeze, - "schemas:domainIncludes": ["schemas:DDxElement".freeze, "schemas:Patient".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalCondition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diagram, comment: "An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AnatomicalStructure".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ImageObject".freeze, label: "diagram".freeze, - "schemas:domainIncludes": "schemas:AnatomicalStructure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:ImageObject".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diet, comment: "A sub property of instrument. The diet used in this action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExerciseAction".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Diet".freeze, label: "diet".freeze, - "schemas:domainIncludes": "schemas:ExerciseAction".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Diet".freeze, - subPropertyOf: "schemas:instrument".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dietFeatures, comment: "Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Diet".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "dietFeatures".freeze, - "schemas:domainIncludes": "schemas:Diet".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :differentialDiagnosis, comment: "One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DDxElement".freeze, label: "differentialDiagnosis".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DDxElement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :director, comment: "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Clip".freeze, "https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/Episode".freeze, "https://schema.org/Event".freeze, "https://schema.org/Movie".freeze, "https://schema.org/MovieSeries".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGame".freeze, "https://schema.org/VideoGameSeries".freeze, "https://schema.org/VideoObject".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "director".freeze, - "schemas:domainIncludes": ["schemas:Clip".freeze, "schemas:CreativeWorkSeason".freeze, "schemas:Episode".freeze, "schemas:Event".freeze, "schemas:Movie".freeze, "schemas:MovieSeries".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGame".freeze, "schemas:VideoGameSeries".freeze, "schemas:VideoObject".freeze], - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :directors, comment: "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Clip".freeze, "https://schema.org/Episode".freeze, "https://schema.org/Movie".freeze, "https://schema.org/MovieSeries".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGame".freeze, "https://schema.org/VideoGameSeries".freeze, "https://schema.org/VideoObject".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, + "https://schema.org/supersededBy": "https://schema.org/director".freeze, label: "directors".freeze, - "schemas:domainIncludes": ["schemas:Clip".freeze, "schemas:Episode".freeze, "schemas:Movie".freeze, "schemas:MovieSeries".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGame".freeze, "schemas:VideoGameSeries".freeze, "schemas:VideoObject".freeze], - "schemas:rangeIncludes": "schemas:Person".freeze, - "schemas:supersededBy": "schemas:director".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :disambiguatingDescription, comment: "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "disambiguatingDescription".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "schemas:description".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/description".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discount, comment: "Any discount applied (to an Order).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "discount".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discountCode, comment: "Code used to redeem a discount.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "discountCode".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discountCurrency, comment: "The currency of the discount.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "discountCurrency".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discusses, comment: "Specifies the CreativeWork associated with the UserComment.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/UserComments".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "discusses".freeze, - "schemas:domainIncludes": "schemas:UserComments".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :discussionUrl, comment: "A link to the page containing the comments of the CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "discussionUrl".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diseasePreventionInfo, comment: "Information about disease prevention.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/URL".freeze, "https://schema.org/WebContent".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "diseasePreventionInfo".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:URL".freeze, "schemas:WebContent".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :diseaseSpreadStatistics, comment: "Statistical information about the spread of a disease, either as [[WebContent]], or\n described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is\n provided, the page indicated might also contain more such markup.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Dataset".freeze, "https://schema.org/Observation".freeze, "https://schema.org/URL".freeze, "https://schema.org/WebContent".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "diseaseSpreadStatistics".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Dataset".freeze, "schemas:Observation".freeze, "schemas:URL".freeze, "schemas:WebContent".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dissolutionDate, comment: "The date that this organization was dissolved.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "dissolutionDate".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :distance, comment: "The distance travelled, e.g. exercising or travelling.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ExerciseAction".freeze, "https://schema.org/TravelAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Distance".freeze, label: "distance".freeze, - "schemas:domainIncludes": ["schemas:ExerciseAction".freeze, "schemas:TravelAction".freeze], - "schemas:rangeIncludes": "schemas:Distance".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :distinguishingSign, comment: "One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DDxElement".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalSignOrSymptom".freeze, label: "distinguishingSign".freeze, - "schemas:domainIncludes": "schemas:DDxElement".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalSignOrSymptom".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :distribution, comment: "A downloadable form of this dataset, at a specific location, in a specific format.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Dataset".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DataDownload".freeze, label: "distribution".freeze, - "schemas:domainIncludes": "schemas:Dataset".freeze, - "schemas:rangeIncludes": "schemas:DataDownload".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/NewsMediaOrganization".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "diversityPolicy".freeze, - "schemas:domainIncludes": ["schemas:NewsMediaOrganization".freeze, "schemas:Organization".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/NewsMediaOrganization".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Article".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "diversityStaffingReport".freeze, - "schemas:domainIncludes": ["schemas:NewsMediaOrganization".freeze, "schemas:Organization".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Article".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subPropertyOf: "schemas:publishingPrinciples".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :documentation, comment: "Further documentation describing the Web API in more detail.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebAPI".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, label: "documentation".freeze, - "schemas:domainIncludes": "schemas:WebAPI".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doesNotShip, comment: "Indicates when shipping to a particular [[shippingDestination]] is not available.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/OfferShippingDetails".freeze, "https://schema.org/ShippingRateSettings".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "doesNotShip".freeze, - "schemas:domainIncludes": ["schemas:OfferShippingDetails".freeze, "schemas:ShippingRateSettings".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Property".freeze, + "https://schema.org/isPartOf": "https://meta.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Class".freeze, label: "domainIncludes".freeze, - "schemas:domainIncludes": "schemas:Property".freeze, - "schemas:isPartOf": "https://meta.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Class".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :domiciledMortgage, comment: "Whether borrower is a resident of the jurisdiction where the property is located.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MortgageLoan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "domiciledMortgage".freeze, - "schemas:domainIncludes": "schemas:MortgageLoan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doorTime, comment: "The time admission will commence.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Time".freeze], label: "doorTime".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Time".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dosageForm, comment: "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "dosageForm".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doseSchedule, comment: "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Drug".freeze, "https://schema.org/TherapeuticProcedure".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DoseSchedule".freeze, label: "doseSchedule".freeze, - "schemas:domainIncludes": ["schemas:Drug".freeze, "schemas:TherapeuticProcedure".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DoseSchedule".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doseUnit, comment: "The unit of the dose, e.g. 'mg'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DoseSchedule".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "doseUnit".freeze, - "schemas:domainIncludes": "schemas:DoseSchedule".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :doseValue, comment: "The value of the dose, e.g. 500.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DoseSchedule".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QualitativeValue".freeze], label: "doseValue".freeze, - "schemas:domainIncludes": "schemas:DoseSchedule".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QualitativeValue".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/RepaymentSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/Number".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "downPayment".freeze, - "schemas:domainIncludes": "schemas:RepaymentSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:Number".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :downloadUrl, comment: "If the file can be downloaded, URL to download the binary.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "downloadUrl".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :downvoteCount, comment: "The number of downvotes this question, answer or comment has received from the community.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Comment".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "downvoteCount".freeze, - "schemas:domainIncludes": "schemas:Comment".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :drainsTo, comment: "The vasculature that the vein drains into.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vein".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Vessel".freeze, label: "drainsTo".freeze, - "schemas:domainIncludes": "schemas:Vein".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Vessel".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DriveWheelConfigurationValue".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "driveWheelConfiguration".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": ["schemas:DriveWheelConfigurationValue".freeze, "schemas:Text".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dropoffLocation, comment: "Where a rental car can be dropped off.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/RentalCarReservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "dropoffLocation".freeze, - "schemas:domainIncludes": "schemas:RentalCarReservation".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dropoffTime, comment: "When a rental car can be dropped off.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/RentalCarReservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "dropoffTime".freeze, - "schemas:domainIncludes": "schemas:RentalCarReservation".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :drug, comment: "Specifying a drug or medicine used in a medication procedure".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DrugClass".freeze, "https://schema.org/MedicalCondition".freeze, "https://schema.org/Patient".freeze, "https://schema.org/TherapeuticProcedure".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Drug".freeze, label: "drug".freeze, - "schemas:domainIncludes": ["schemas:DrugClass".freeze, "schemas:MedicalCondition".freeze, "schemas:Patient".freeze, "schemas:TherapeuticProcedure".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Drug".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :drugClass, comment: "The class of drug this belongs to (e.g., statins).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DrugClass".freeze, label: "drugClass".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DrugClass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :drugUnit, comment: "The unit in which the drug is measured, e.g. '5 mg tablet'.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Drug".freeze, "https://schema.org/DrugCost".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "drugUnit".freeze, - "schemas:domainIncludes": ["schemas:Drug".freeze, "schemas:DrugCost".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duns, comment: "The Dun & Bradstreet DUNS number for identifying an organization or business person.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "duns".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duplicateTherapy, comment: "A therapy that duplicates or overlaps this one.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalTherapy".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTherapy".freeze, label: "duplicateTherapy".freeze, - "schemas:domainIncludes": "schemas:MedicalTherapy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTherapy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duration, comment: "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Audiobook".freeze, "https://schema.org/Event".freeze, "https://schema.org/MediaObject".freeze, "https://schema.org/Movie".freeze, "https://schema.org/MusicRecording".freeze, "https://schema.org/MusicRelease".freeze, "https://schema.org/QuantitativeValueDistribution".freeze, "https://schema.org/Schedule".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1457".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], label: "duration".freeze, - "schemas:domainIncludes": ["schemas:Audiobook".freeze, "schemas:Event".freeze, "schemas:MediaObject".freeze, "schemas:Movie".freeze, "schemas:MusicRecording".freeze, "schemas:MusicRelease".freeze, "schemas:QuantitativeValueDistribution".freeze, "schemas:Schedule".freeze], - "schemas:rangeIncludes": "schemas:Duration".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1457".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/WarrantyPromise".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "durationOfWarranty".freeze, - "schemas:domainIncludes": "schemas:WarrantyPromise".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duringMedia, comment: "A media object representing the circumstances while performing this direction.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HowToDirection".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MediaObject".freeze, "https://schema.org/URL".freeze], label: "duringMedia".freeze, - "schemas:domainIncludes": "schemas:HowToDirection".freeze, - "schemas:rangeIncludes": ["schemas:MediaObject".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :earlyPrepaymentPenalty, comment: "The amount to be paid as a penalty in the event of early payment of the loan.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/RepaymentSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MonetaryAmount".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "earlyPrepaymentPenalty".freeze, - "schemas:domainIncludes": "schemas:RepaymentSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MonetaryAmount".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :editEIDR, comment: "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.\n\nFor 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\".\n\nSince 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.\n".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2469".freeze, label: "editEIDR".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2469".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :editor, comment: "Specifies the Person who edited the CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "editor".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eduQuestionType, comment: "For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: \"Multiple choice\", \"Open ended\", \"Flashcard\".".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Question".freeze, "https://schema.org/SolveMathAction".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2636".freeze, label: "eduQuestionType".freeze, - "schemas:domainIncludes": ["schemas:Question".freeze, "schemas:SolveMathAction".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2636".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationRequirements, comment: "Educational background needed for the position or Occupation.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/JobPosting".freeze, "https://schema.org/Occupation".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/EducationalOccupationalCredential".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], label: "educationRequirements".freeze, - "schemas:domainIncludes": ["schemas:JobPosting".freeze, "schemas:Occupation".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:EducationalOccupationalCredential".freeze, "schemas:Text".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalAlignment, comment: "An alignment to an established educational framework.\n\nThis 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, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/LearningResource".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/AlignmentObject".freeze, label: "educationalAlignment".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:LearningResource".freeze], - "schemas:rangeIncludes": "schemas:AlignmentObject".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Course".freeze, "https://schema.org/EducationalOccupationalProgram".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/EducationalOccupationalCredential".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "educationalCredentialAwarded".freeze, - "schemas:domainIncludes": ["schemas:Course".freeze, "schemas:EducationalOccupationalProgram".freeze], - "schemas:rangeIncludes": ["schemas:EducationalOccupationalCredential".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalFramework, comment: "The framework to which the resource being described is aligned.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AlignmentObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "educationalFramework".freeze, - "schemas:domainIncludes": "schemas:AlignmentObject".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/EducationEvent".freeze, "https://schema.org/EducationalOccupationalCredential".freeze, "https://schema.org/LearningResource".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "educationalLevel".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:EducationEvent".freeze, "schemas:EducationalOccupationalCredential".freeze, "schemas:LearningResource".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "educationalProgramMode".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalRole, comment: "An educationalRole of an EducationalAudience.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "educationalRole".freeze, - "schemas:domainIncludes": "schemas:EducationalAudience".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :educationalUse, comment: "The purpose of a work in the context of education; for example, 'assignment', 'group work'.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/LearningResource".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], label: "educationalUse".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:LearningResource".freeze], - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :elevation, comment: "The elevation of a location ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). Values may be of the form 'NUMBER UNIT_OF_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeoCoordinates".freeze, "https://schema.org/GeoShape".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "elevation".freeze, - "schemas:domainIncludes": ["schemas:GeoCoordinates".freeze, "schemas:GeoShape".freeze], - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eligibilityToWorkRequirement, comment: "The legal requirements such as citizenship, visa and other documentation required for an applicant to this job.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, label: "eligibilityToWorkRequirement".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eligibleCustomerType, comment: "The type(s) of customers for which the given offer is valid.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/BusinessEntityType".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "eligibleCustomerType".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": "schemas:BusinessEntityType".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eligibleDuration, comment: "The duration for which the given offer is valid.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "eligibleDuration".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/PriceSpecification".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "eligibleQuantity".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:PriceSpecification".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nSee also [[ineligibleRegion]].\n ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ActionAccessSpecification".freeze, "https://schema.org/DeliveryChargeSpecification".freeze, "https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeoShape".freeze, "https://schema.org/Place".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], label: "eligibleRegion".freeze, - "schemas:domainIncludes": ["schemas:ActionAccessSpecification".freeze, "schemas:DeliveryChargeSpecification".freeze, "schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": ["schemas:GeoShape".freeze, "schemas:Place".freeze, "schemas:Text".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], - subPropertyOf: "schemas:areaServed".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/areaServed".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/PriceSpecification".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/PriceSpecification".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "eligibleTransactionVolume".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:PriceSpecification".freeze], - "schemas:rangeIncludes": "schemas:PriceSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :email, comment: "Email address.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "email".freeze, - "schemas:domainIncludes": ["schemas:ContactPoint".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :embedUrl, comment: "A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "embedUrl".freeze, - "schemas:domainIncludes": "schemas:MediaObject".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "emissionsCO2".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :employee, comment: "Someone working for this organization.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "employee".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :employees, comment: "People working for this organization.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, + "https://schema.org/supersededBy": "https://schema.org/employee".freeze, label: "employees".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - "schemas:supersededBy": "schemas:employee".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :employerOverview, comment: "A description of the employer, career opportunities and work environment for this position.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, label: "employerOverview".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :employmentType, comment: "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "employmentType".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2296".freeze, label: "employmentUnit".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2296".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodesCreativeWork, comment: "The CreativeWork encoded by this media object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/inverseOf": "https://schema.org/encoding".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "encodesCreativeWork".freeze, - "schemas:domainIncludes": "schemas:MediaObject".freeze, - "schemas:inverseOf": "schemas:encoding".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encoding, comment: "A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/inverseOf": "https://schema.org/encodesCreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MediaObject".freeze, label: "encoding".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:inverseOf": "schemas:encodesCreativeWork".freeze, - "schemas:rangeIncludes": "schemas:MediaObject".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodingFormat, comment: "Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).\n\nIn cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.\n\nUnregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/MediaObject".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "encodingFormat".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:MediaObject".freeze], - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodingType, comment: "The supported encoding type(s) for an EntryPoint request.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EntryPoint".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "encodingType".freeze, - "schemas:domainIncludes": "schemas:EntryPoint".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :encodings, comment: "A media object that encodes this CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/supersededBy": "https://schema.org/encoding".freeze, label: "encodings".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:MediaObject".freeze, - "schemas:supersededBy": "schemas:encoding".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endDate, comment: "The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/CreativeWorkSeries".freeze, "https://schema.org/DatedMoneySpecification".freeze, "https://schema.org/EducationalOccupationalProgram".freeze, "https://schema.org/Event".freeze, "https://schema.org/Role".freeze, "https://schema.org/Schedule".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, label: "endDate".freeze, - "schemas:domainIncludes": ["schemas:CreativeWorkSeason".freeze, "schemas:CreativeWorkSeries".freeze, "schemas:DatedMoneySpecification".freeze, "schemas:EducationalOccupationalProgram".freeze, "schemas:Event".freeze, "schemas:Role".freeze, "schemas:Schedule".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endOffset, comment: "The end time of the clip expressed as the number of seconds from the beginning of the work.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Clip".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/HyperTocEntry".freeze, "https://schema.org/Number".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, label: "endOffset".freeze, - "schemas:domainIncludes": "schemas:Clip".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:HyperTocEntry".freeze, "schemas:Number".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Action".freeze, "https://schema.org/FoodEstablishmentReservation".freeze, "https://schema.org/MediaObject".freeze, "https://schema.org/Schedule".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Time".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, label: "endTime".freeze, - "schemas:domainIncludes": ["schemas:Action".freeze, "schemas:FoodEstablishmentReservation".freeze, "schemas:MediaObject".freeze, "schemas:Schedule".freeze], - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Time".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endorsee, comment: "A sub property of participant. The person/organization being supported.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EndorseAction".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "endorsee".freeze, - "schemas:domainIncludes": "schemas:EndorseAction".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endorsers, comment: "People or organizations that endorse the plan.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Diet".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "endorsers".freeze, - "schemas:domainIncludes": "schemas:Diet".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :energyEfficiencyScaleMax, comment: "Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EnergyConsumptionDetails".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EUEnergyEfficiencyEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "energyEfficiencyScaleMax".freeze, - "schemas:domainIncludes": "schemas:EnergyConsumptionDetails".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:EUEnergyEfficiencyEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :energyEfficiencyScaleMin, comment: "Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EnergyConsumptionDetails".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EUEnergyEfficiencyEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "energyEfficiencyScaleMin".freeze, - "schemas:domainIncludes": "schemas:EnergyConsumptionDetails".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:EUEnergyEfficiencyEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :engineDisplacement, comment: "The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement. \\n\\nTypical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches\\n* Note 1: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EngineSpecification".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "engineDisplacement".freeze, - "schemas:domainIncludes": "schemas:EngineSpecification".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :enginePower, comment: "The power of the vehicle's engine.\n Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)\\n\\n* Note 1: There are many different ways of measuring an engine's power. For an overview, see [http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes](http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes).\\n* Note 2: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 3: You can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EngineSpecification".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "enginePower".freeze, - "schemas:domainIncludes": "schemas:EngineSpecification".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :engineType, comment: "The type of engine or engines powering the vehicle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EngineSpecification".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "engineType".freeze, - "schemas:domainIncludes": "schemas:EngineSpecification".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:QualitativeValue".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :entertainmentBusiness, comment: "A sub property of location. The entertainment business where the action occurred.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PerformAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EntertainmentBusiness".freeze, label: "entertainmentBusiness".freeze, - "schemas:domainIncludes": "schemas:PerformAction".freeze, - "schemas:rangeIncludes": "schemas:EntertainmentBusiness".freeze, - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :epidemiology, comment: "The characteristics of associated patients, such as age, gender, race etc.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MedicalCondition".freeze, "https://schema.org/PhysicalActivity".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "epidemiology".freeze, - "schemas:domainIncludes": ["schemas:MedicalCondition".freeze, "schemas:PhysicalActivity".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :episode, comment: "An episode of a tv, radio or game media within a series or season.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Episode".freeze, label: "episode".freeze, - "schemas:domainIncludes": ["schemas:CreativeWorkSeason".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:Episode".freeze, - subPropertyOf: "schemas:hasPart".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/hasPart".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :episodeNumber, comment: "Position of the episode within an ordered group of episodes.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Episode".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/Text".freeze], label: "episodeNumber".freeze, - "schemas:domainIncludes": "schemas:Episode".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:Text".freeze], - subPropertyOf: "schemas:position".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :episodes, comment: "An episode of a TV/radio series or season.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Episode".freeze, + "https://schema.org/supersededBy": "https://schema.org/episode".freeze, label: "episodes".freeze, - "schemas:domainIncludes": ["schemas:CreativeWorkSeason".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:Episode".freeze, - "schemas:supersededBy": "schemas:episode".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :equal, comment: "This ordering relation for qualitative values indicates that the subject is equal to the object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "equal".freeze, - "schemas:domainIncludes": "schemas:QualitativeValue".freeze, - "schemas:rangeIncludes": "schemas:QualitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :error, comment: "For failed actions, more information on the cause of the failure.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Action".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "error".freeze, - "schemas:domainIncludes": "schemas:Action".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :estimatedCost, comment: "The estimated cost of the supply or supplies consumed when performing instructions.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HowTo".freeze, "https://schema.org/HowToSupply".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/Text".freeze], label: "estimatedCost".freeze, - "schemas:domainIncludes": ["schemas:HowTo".freeze, "schemas:HowToSupply".freeze], - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :estimatedFlightDuration, comment: "The estimated time the flight will take.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Duration".freeze, "https://schema.org/Text".freeze], label: "estimatedFlightDuration".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": ["schemas:Duration".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/JobPosting".freeze, "https://schema.org/Occupation".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/MonetaryAmountDistribution".freeze, "https://schema.org/Number".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "estimatedSalary".freeze, - "schemas:domainIncludes": ["schemas:JobPosting".freeze, "schemas:Occupation".freeze], - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:MonetaryAmountDistribution".freeze, "schemas:Number".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :estimatesRiskOf, comment: "The condition, complication, or symptom whose risk is being estimated.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalRiskEstimator".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalEntity".freeze, label: "estimatesRiskOf".freeze, - "schemas:domainIncludes": "schemas:MedicalRiskEstimator".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalEntity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/NewsMediaOrganization".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1525".freeze, label: "ethicsPolicy".freeze, - "schemas:domainIncludes": ["schemas:NewsMediaOrganization".freeze, "schemas:Organization".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1525".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :event, comment: "Upcoming or past event associated with this place, organization, or action.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/InformAction".freeze, "https://schema.org/InviteAction".freeze, "https://schema.org/JoinAction".freeze, "https://schema.org/LeaveAction".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Place".freeze, "https://schema.org/PlayAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Event".freeze, label: "event".freeze, - "schemas:domainIncludes": ["schemas:InformAction".freeze, "schemas:InviteAction".freeze, "schemas:JoinAction".freeze, "schemas:LeaveAction".freeze, "schemas:Organization".freeze, "schemas:Place".freeze, "schemas:PlayAction".freeze], - "schemas:rangeIncludes": "schemas:Event".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventAttendanceMode, comment: "The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EventAttendanceModeEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "eventAttendanceMode".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:EventAttendanceModeEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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\n repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly\n gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that\n is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated\n [[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\n or seasons.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Schedule".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "eventSchedule".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Schedule".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :eventStatus, comment: "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EventStatusType".freeze, label: "eventStatus".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": "schemas:EventStatusType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :events, comment: "Upcoming or past events associated with this place or organization.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Event".freeze, + "https://schema.org/supersededBy": "https://schema.org/event".freeze, label: "events".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": "schemas:Event".freeze, - "schemas:supersededBy": "schemas:event".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :evidenceLevel, comment: "Strength of evidence of the data used to formulate the guideline (enumerated).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalGuideline".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalEvidenceLevel".freeze, label: "evidenceLevel".freeze, - "schemas:domainIncludes": "schemas:MedicalGuideline".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalEvidenceLevel".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :evidenceOrigin, comment: "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalGuideline".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "evidenceOrigin".freeze, - "schemas:domainIncludes": "schemas:MedicalGuideline".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exampleOfWork, comment: "A creative work that this work is an example/instance/realization/derivation of.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/inverseOf": "https://schema.org/workExample".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "exampleOfWork".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:inverseOf": "schemas:workExample".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exceptDate, comment: "Defines a [[Date]] or [[DateTime]] during which a scheduled [[Event]] will not take place. The property allows exceptions to\n 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\n 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\n excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Schedule".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "exceptDate".freeze, - "schemas:domainIncludes": "schemas:Schedule".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exchangeRateSpread, comment: "The difference between the price at which a broker or other intermediary buys and sells foreign currency.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExchangeRateSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/Number".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "exchangeRateSpread".freeze, - "schemas:domainIncludes": "schemas:ExchangeRateSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:Number".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :executableLibraryName, comment: "Library file name e.g., mscorlib.dll, system.web.dll.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/APIReference".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "executableLibraryName".freeze, - "schemas:domainIncludes": "schemas:APIReference".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exerciseCourse, comment: "A sub property of location. The course where this action was taken.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExerciseAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "exerciseCourse".freeze, - "schemas:domainIncludes": "schemas:ExerciseAction".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exercisePlan, comment: "A sub property of instrument. The exercise plan used on this action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExerciseAction".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ExercisePlan".freeze, label: "exercisePlan".freeze, - "schemas:domainIncludes": "schemas:ExerciseAction".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:ExercisePlan".freeze, - subPropertyOf: "schemas:instrument".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exerciseRelatedDiet, comment: "A sub property of instrument. The diet used in this action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExerciseAction".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Diet".freeze, label: "exerciseRelatedDiet".freeze, - "schemas:domainIncludes": "schemas:ExerciseAction".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Diet".freeze, - subPropertyOf: "schemas:instrument".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exerciseType, comment: "Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ExerciseAction".freeze, "https://schema.org/ExercisePlan".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "exerciseType".freeze, - "schemas:domainIncludes": ["schemas:ExerciseAction".freeze, "schemas:ExercisePlan".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :exifData, comment: "exif data for this object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ImageObject".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/PropertyValue".freeze, "https://schema.org/Text".freeze], label: "exifData".freeze, - "schemas:domainIncludes": "schemas:ImageObject".freeze, - "schemas:rangeIncludes": ["schemas:PropertyValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expectedArrivalFrom, comment: "The earliest date the package may arrive.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParcelDelivery".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "expectedArrivalFrom".freeze, - "schemas:domainIncludes": "schemas:ParcelDelivery".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expectedArrivalUntil, comment: "The latest date the package may arrive.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParcelDelivery".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "expectedArrivalUntil".freeze, - "schemas:domainIncludes": "schemas:ParcelDelivery".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expectedPrognosis, comment: "The likely outcome in either the short term or long term of the medical condition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "expectedPrognosis".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/ActionAccessSpecification".freeze, "https://schema.org/ConsumeAction".freeze, "https://schema.org/MediaSubscription".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Offer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "expectsAcceptanceOf".freeze, - "schemas:domainIncludes": ["schemas:ActionAccessSpecification".freeze, "schemas:ConsumeAction".freeze, "schemas:MediaSubscription".freeze], - "schemas:rangeIncludes": "schemas:Offer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :experienceRequirements, comment: "Description of skills and experience needed for the position or Occupation.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/JobPosting".freeze, "https://schema.org/Occupation".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "experienceRequirements".freeze, - "schemas:domainIncludes": ["schemas:JobPosting".freeze, "schemas:Occupation".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expertConsiderations, comment: "Medical expert advice related to the plan.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Diet".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "expertConsiderations".freeze, - "schemas:domainIncludes": "schemas:Diet".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expires, comment: "Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "expires".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :familyName, comment: "Family name. In the U.S., the last name of a Person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "familyName".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fatContent, comment: "The number of grams of fat.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "fatContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :faxNumber, comment: "The fax number.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "faxNumber".freeze, - "schemas:domainIncludes": ["schemas:ContactPoint".freeze, "schemas:Organization".freeze, "schemas:Person".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :featureList, comment: "Features or modules provided by this application (and possibly required by other applications).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "featureList".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/FinancialProduct".freeze, "https://schema.org/FinancialService".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "feesAndCommissionsSpecification".freeze, - "schemas:domainIncludes": ["schemas:FinancialProduct".freeze, "schemas:FinancialService".freeze], - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fiberContent, comment: "The number of grams of fiber.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "fiberContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileFormat, comment: "Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/supersededBy": "https://schema.org/encodingFormat".freeze, label: "fileFormat".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:supersededBy": "schemas:encodingFormat".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fileSize, comment: "Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "fileSize".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2418".freeze, label: "financialAidEligible".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2418".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :firstAppearance, comment: "Indicates the first known occurence of a [[Claim]] in some [[CreativeWork]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Claim".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, label: "firstAppearance".freeze, - "schemas:domainIncludes": "schemas:Claim".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, - subPropertyOf: "schemas:workExample".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/workExample".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :firstPerformance, comment: "The date and place the work was first performed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Event".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "firstPerformance".freeze, - "schemas:domainIncludes": "schemas:MusicComposition".freeze, - "schemas:rangeIncludes": "schemas:Event".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :flightDistance, comment: "The distance of the flight.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Distance".freeze, "https://schema.org/Text".freeze], label: "flightDistance".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": ["schemas:Distance".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :flightNumber, comment: "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "flightNumber".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :floorLevel, comment: "The floor level for an [[Accommodation]] in a multi-storey building. Since counting\n systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Accommodation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "floorLevel".freeze, - "schemas:domainIncludes": "schemas:Accommodation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :floorLimit, comment: "A floor limit is the amount of money above which credit card transactions must be authorized.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PaymentCard".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MonetaryAmount".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "floorLimit".freeze, - "schemas:domainIncludes": "schemas:PaymentCard".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MonetaryAmount".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :floorSize, comment: "The size of the accommodation, e.g. in square meter or squarefoot.\nTypical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/FloorPlan".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "floorSize".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:FloorPlan".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :followee, comment: "A sub property of object. The person or organization being followed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FollowAction".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "followee".freeze, - "schemas:domainIncludes": "schemas:FollowAction".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:object".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :follows, comment: "The most generic uni-directional social relation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "follows".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :followup, comment: "Typical or recommended followup care after the procedure is performed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalProcedure".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "followup".freeze, - "schemas:domainIncludes": "schemas:MedicalProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foodEstablishment, comment: "A sub property of location. The specific food establishment where the action occurred.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CookAction".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/FoodEstablishment".freeze, "https://schema.org/Place".freeze], label: "foodEstablishment".freeze, - "schemas:domainIncludes": "schemas:CookAction".freeze, - "schemas:rangeIncludes": ["schemas:FoodEstablishment".freeze, "schemas:Place".freeze], - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foodEvent, comment: "A sub property of location. The specific food event where the action occurred.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CookAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/FoodEvent".freeze, label: "foodEvent".freeze, - "schemas:domainIncludes": "schemas:CookAction".freeze, - "schemas:rangeIncludes": "schemas:FoodEvent".freeze, - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foodWarning, comment: "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "foodWarning".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :founder, comment: "A person who founded this organization.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "founder".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :founders, comment: "A person who founded this organization.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, + "https://schema.org/supersededBy": "https://schema.org/founder".freeze, label: "founders".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - "schemas:supersededBy": "schemas:founder".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foundingDate, comment: "The date that this organization was founded.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "foundingDate".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :foundingLocation, comment: "The place where the Organization was founded.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "foundingLocation".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :free, comment: "A flag to signal that the item, event, or place is accessible for free.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PublicationEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/supersededBy": "https://schema.org/isAccessibleForFree".freeze, label: "free".freeze, - "schemas:domainIncludes": "schemas:PublicationEvent".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:supersededBy": "schemas:isAccessibleForFree".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :freeShippingThreshold, comment: "A monetary value above which (or equal to) the shipping rate becomes free. Intended to be used via an [[OfferShippingDetails]] with [[shippingSettingsLink]] matching this [[ShippingRateSettings]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ShippingRateSettings".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DeliveryChargeSpecification".freeze, "https://schema.org/MonetaryAmount".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "freeShippingThreshold".freeze, - "schemas:domainIncludes": "schemas:ShippingRateSettings".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DeliveryChargeSpecification".freeze, "schemas:MonetaryAmount".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :frequency, comment: "How often the dose is taken, e.g. 'daily'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DoseSchedule".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "frequency".freeze, - "schemas:domainIncludes": "schemas:DoseSchedule".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fromLocation, comment: "A sub property of location. The original location of the object or the agent before the action.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ExerciseAction".freeze, "https://schema.org/MoveAction".freeze, "https://schema.org/TransferAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "fromLocation".freeze, - "schemas:domainIncludes": ["schemas:ExerciseAction".freeze, "schemas:MoveAction".freeze, "schemas:TransferAction".freeze], - "schemas:rangeIncludes": "schemas:Place".freeze, - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fuelCapacity, 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.\\n\\nTypical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "fuelCapacity".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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).\\n\\n* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* 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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "fuelConsumption".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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).\\n\\n* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* 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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "fuelEfficiency".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/EngineSpecification".freeze, "https://schema.org/Vehicle".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "fuelType".freeze, - "schemas:domainIncludes": ["schemas:EngineSpecification".freeze, "schemas:Vehicle".freeze], - "schemas:rangeIncludes": ["schemas:QualitativeValue".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :functionalClass, comment: "The degree of mobility the joint allows.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Joint".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MedicalEntity".freeze, "https://schema.org/Text".freeze], label: "functionalClass".freeze, - "schemas:domainIncludes": "schemas:Joint".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:MedicalEntity".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fundedItem, comment: "Indicates an item funded or sponsored through a [[Grant]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Grant".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/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], label: "fundedItem".freeze, - "schemas:domainIncludes": "schemas:Grant".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - "schemas: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 + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :funder, comment: "A person or organization that supports (sponsors) something through some kind of financial contribution.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze, "https://schema.org/MonetaryGrant".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "funder".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Event".freeze, "schemas:MonetaryGrant".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:sponsor".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/sponsor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :game, comment: "Video game which is played on this server.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GameServer".freeze, + "https://schema.org/inverseOf": "https://schema.org/gameServer".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/VideoGame".freeze, label: "game".freeze, - "schemas:domainIncludes": "schemas:GameServer".freeze, - "schemas:inverseOf": "schemas:gameServer".freeze, - "schemas:rangeIncludes": "schemas:VideoGame".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gameItem, comment: "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Game".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "gameItem".freeze, - "schemas:domainIncludes": ["schemas:Game".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gameLocation, comment: "Real or fictional location of the game (or part of game).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Game".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Place".freeze, "https://schema.org/PostalAddress".freeze, "https://schema.org/URL".freeze], label: "gameLocation".freeze, - "schemas:domainIncludes": ["schemas:Game".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": ["schemas:Place".freeze, "schemas:PostalAddress".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gamePlatform, comment: "The electronic systems used to play video games.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/VideoGame".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/Thing".freeze, "https://schema.org/URL".freeze], label: "gamePlatform".freeze, - "schemas:domainIncludes": ["schemas:VideoGame".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:Thing".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gameServer, comment: "The server on which it is possible to play the game.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VideoGame".freeze, + "https://schema.org/inverseOf": "https://schema.org/game".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/GameServer".freeze, label: "gameServer".freeze, - "schemas:domainIncludes": "schemas:VideoGame".freeze, - "schemas:inverseOf": "schemas:game".freeze, - "schemas:rangeIncludes": "schemas:GameServer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gameTip, comment: "Links to tips, tactics, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VideoGame".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "gameTip".freeze, - "schemas:domainIncludes": "schemas:VideoGame".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gender, comment: "Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While https://schema.org/Male and https://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, + "https://schema.org/domainIncludes": ["https://schema.org/Person".freeze, "https://schema.org/SportsTeam".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/GenderType".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2341".freeze, label: "gender".freeze, - "schemas:domainIncludes": ["schemas:Person".freeze, "schemas:SportsTeam".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:GenderType".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2341".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :genre, comment: "Genre of the creative work, broadcast channel or group.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/BroadcastChannel".freeze, "https://schema.org/CreativeWork".freeze, "https://schema.org/MusicGroup".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "genre".freeze, - "schemas:domainIncludes": ["schemas:BroadcastChannel".freeze, "schemas:CreativeWork".freeze, "schemas:MusicGroup".freeze], - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geo, comment: "The geo coordinates of the place.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/GeoCoordinates".freeze, "https://schema.org/GeoShape".freeze], label: "geo".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": ["schemas:GeoCoordinates".freeze, "schemas:GeoShape".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoContains, comment: "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoContains".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoCoveredBy, comment: "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoCoveredBy".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoCovers, comment: "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoCovers".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoCrosses, comment: "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoCrosses".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoDisjoint, comment: "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: they have no point in common. They form a set of disconnected geometries.\" (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM))".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoDisjoint".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoEquals, comment: "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship)".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoEquals".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoIntersects, comment: "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoIntersects".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoMidpoint, comment: "Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GeoCircle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/GeoCoordinates".freeze, label: "geoMidpoint".freeze, - "schemas:domainIncludes": "schemas:GeoCircle".freeze, - "schemas:rangeIncludes": "schemas:GeoCoordinates".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoOverlaps, comment: "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoOverlaps".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoRadius, comment: "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GeoCircle".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Distance".freeze, "https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "geoRadius".freeze, - "schemas:domainIncludes": "schemas:GeoCircle".freeze, - "schemas:rangeIncludes": ["schemas:Distance".freeze, "schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoTouches, comment: "Represents spatial relations in which two geometries (or the places they represent) touch: they have at least one boundary point in common, but no interior points.\" (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) )".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoTouches".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geoWithin, comment: "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/GeospatialGeometry".freeze, "https://schema.org/Place".freeze], label: "geoWithin".freeze, - "schemas:domainIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:GeospatialGeometry".freeze, "schemas:Place".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :geographicArea, comment: "The geographic area associated with the audience.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Audience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AdministrativeArea".freeze, label: "geographicArea".freeze, - "schemas:domainIncludes": "schemas:Audience".freeze, - "schemas:rangeIncludes": "schemas:AdministrativeArea".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gettingTestedInfo, comment: "Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/URL".freeze, "https://schema.org/WebContent".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "gettingTestedInfo".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:URL".freeze, "schemas:WebContent".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :givenName, comment: "Given name. In the U.S., the first name of a Person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "givenName".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :globalLocationNumber, comment: "The [Global Location Number](http://www.gs1.org/gln) (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, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "globalLocationNumber".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :governmentBenefitsInfo, comment: "governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/GovernmentService".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "governmentBenefitsInfo".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:GovernmentService".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/LoanOrCredit".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "gracePeriod".freeze, - "schemas:domainIncludes": "schemas:LoanOrCredit".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Duration".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :grantee, comment: "The person, organization, contact point, or audience that has been granted this permission.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DigitalDocumentPermission".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Audience".freeze, "https://schema.org/ContactPoint".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "grantee".freeze, - "schemas:domainIncludes": "schemas:DigitalDocumentPermission".freeze, - "schemas:rangeIncludes": ["schemas:Audience".freeze, "schemas:ContactPoint".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :greater, comment: "This ordering relation for qualitative values indicates that the subject is greater than the object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "greater".freeze, - "schemas:domainIncludes": "schemas:QualitativeValue".freeze, - "schemas:rangeIncludes": "schemas:QualitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :greaterOrEqual, comment: "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "greaterOrEqual".freeze, - "schemas:domainIncludes": "schemas:QualitativeValue".freeze, - "schemas:rangeIncludes": "schemas:QualitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gtin, comment: "A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/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](https://www.gs1.org/standards/Digital-Link/) 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](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged.\n ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Product".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "gtin".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:Product".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gtin12, comment: "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "gtin12".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: ["schemas:gtin".freeze, "schemas:identifier".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["https://schema.org/gtin".freeze, "https://schema.org/identifier".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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 preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "gtin13".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: ["schemas:gtin".freeze, "schemas:identifier".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["https://schema.org/gtin".freeze, "https://schema.org/identifier".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gtin14, comment: "The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "gtin14".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: ["schemas:gtin".freeze, "schemas:identifier".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["https://schema.org/gtin".freeze, "https://schema.org/identifier".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gtin8, comment: "The [GTIN-8](http://apps.gs1.org/GDD/glossary/Pages/GTIN-8.aspx) 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](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "gtin8".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: ["schemas:gtin".freeze, "schemas:identifier".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["https://schema.org/gtin".freeze, "https://schema.org/identifier".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :guideline, comment: "A medical guideline related to this entity.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalEntity".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalGuideline".freeze, label: "guideline".freeze, - "schemas:domainIncludes": "schemas:MedicalEntity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalGuideline".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :guidelineDate, comment: "Date on which this guideline's recommendation was made.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalGuideline".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "guidelineDate".freeze, - "schemas:domainIncludes": "schemas:MedicalGuideline".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :guidelineSubject, comment: "The medical conditions, treatments, etc. that are the subject of the guideline.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalGuideline".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalEntity".freeze, label: "guidelineSubject".freeze, - "schemas:domainIncludes": "schemas:MedicalGuideline".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalEntity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/ShippingDeliveryTime".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "handlingTime".freeze, - "schemas:domainIncludes": "schemas:ShippingDeliveryTime".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasBroadcastChannel, comment: "A broadcast channel of a broadcast service.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastService".freeze, + "https://schema.org/inverseOf": "https://schema.org/providesBroadcastService".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BroadcastChannel".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "hasBroadcastChannel".freeze, - "schemas:domainIncludes": "schemas:BroadcastService".freeze, - "schemas:inverseOf": "schemas:providesBroadcastService".freeze, - "schemas:rangeIncludes": "schemas:BroadcastChannel".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCategoryCode, comment: "A Category code contained in this code set.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CategoryCodeSet".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CategoryCode".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "hasCategoryCode".freeze, - "schemas:domainIncludes": "schemas:CategoryCodeSet".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:CategoryCode".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - subPropertyOf: "schemas:hasDefinedTerm".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/hasDefinedTerm".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCourse, comment: "A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Course".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2483".freeze, label: "hasCourse".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Course".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2483".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCourseInstance, comment: "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Course".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CourseInstance".freeze, label: "hasCourseInstance".freeze, - "schemas:domainIncludes": "schemas:Course".freeze, - "schemas:rangeIncludes": "schemas:CourseInstance".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCredential, comment: "A credential awarded to the Person or Organization.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EducationalOccupationalCredential".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "hasCredential".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:EducationalOccupationalCredential".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDefinedTerm, comment: "A Defined Term contained in this term set.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DefinedTermSet".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DefinedTerm".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "hasDefinedTerm".freeze, - "schemas:domainIncludes": "schemas:DefinedTermSet".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DefinedTerm".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDeliveryMethod, comment: "Method used for delivery or shipping.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DeliveryEvent".freeze, "https://schema.org/ParcelDelivery".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/DeliveryMethod".freeze, label: "hasDeliveryMethod".freeze, - "schemas:domainIncludes": ["schemas:DeliveryEvent".freeze, "schemas:ParcelDelivery".freeze], - "schemas:rangeIncludes": "schemas:DeliveryMethod".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasDigitalDocumentPermission, comment: "A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DigitalDocument".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DigitalDocumentPermission".freeze, label: "hasDigitalDocumentPermission".freeze, - "schemas:domainIncludes": "schemas:DigitalDocument".freeze, - "schemas:rangeIncludes": "schemas:DigitalDocumentPermission".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "hasDriveThroughService".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEnergyConsumptionDetails, comment: "Defines the energy efficiency Category (also known as \"class\" or \"rating\") for a product according to an international energy efficiency standard".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Product".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EnergyConsumptionDetails".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "hasEnergyConsumptionDetails".freeze, - "schemas:domainIncludes": "schemas:Product".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:EnergyConsumptionDetails".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasEnergyEfficiencyCategory, comment: "Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EnergyConsumptionDetails".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EnergyEfficiencyEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "hasEnergyEfficiencyCategory".freeze, - "schemas:domainIncludes": "schemas:EnergyConsumptionDetails".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:EnergyEfficiencyEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/HealthTopicContent".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/HealthAspectEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "hasHealthAspect".freeze, - "schemas:domainIncludes": "schemas:HealthTopicContent".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:HealthAspectEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMap, comment: "A URL to a map of the place.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Map".freeze, "https://schema.org/URL".freeze], label: "hasMap".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": ["schemas:Map".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMenu, comment: "Either the actual menu as a structured representation, as text, or a URL of the menu.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FoodEstablishment".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Menu".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "hasMenu".freeze, - "schemas:domainIncludes": "schemas:FoodEstablishment".freeze, - "schemas:rangeIncludes": ["schemas:Menu".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMenuItem, comment: "A food or drink item contained in a menu or menu section.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Menu".freeze, "https://schema.org/MenuSection".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/MenuItem".freeze, label: "hasMenuItem".freeze, - "schemas:domainIncludes": ["schemas:Menu".freeze, "schemas:MenuSection".freeze], - "schemas:rangeIncludes": "schemas:MenuItem".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMenuSection, comment: "A subgrouping of the menu (by dishes, course, serving time period, etc.).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Menu".freeze, "https://schema.org/MenuSection".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/MenuSection".freeze, label: "hasMenuSection".freeze, - "schemas:domainIncludes": ["schemas:Menu".freeze, "schemas:MenuSection".freeze], - "schemas:rangeIncludes": "schemas:MenuSection".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasMerchantReturnPolicy, comment: "Indicates a MerchantReturnPolicy that may be applicable.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Product".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MerchantReturnPolicy".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "hasMerchantReturnPolicy".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Product".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MerchantReturnPolicy".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasOccupation, comment: "The Person's occupation. For past professions, use Role for expressing dates.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Occupation".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "hasOccupation".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Occupation".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasOfferCatalog, comment: "Indicates an OfferCatalog listing for this Organization, Person, or Service.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/OfferCatalog".freeze, label: "hasOfferCatalog".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": "schemas:OfferCatalog".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPOS, comment: "Points-of-Sales operated by the organization or person.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "hasPOS".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:Place".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasPart, comment: "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/inverseOf": "https://schema.org/isPartOf".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "hasPart".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:inverseOf": "schemas:isPartOf".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasProductReturnPolicy, comment: "Indicates a ProductReturnPolicy that may be applicable.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Product".freeze], + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ProductReturnPolicy".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "https://schema.org/supersededBy": "https://schema.org/hasMerchantReturnPolicy".freeze, label: "hasProductReturnPolicy".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Product".freeze], - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:rangeIncludes": "schemas:ProductReturnPolicy".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - "schemas:supersededBy": "schemas:hasMerchantReturnPolicy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasVariant, comment: "Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProductGroup".freeze, + "https://schema.org/inverseOf": "https://schema.org/isVariantOf".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Product".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "hasVariant".freeze, - "schemas:domainIncludes": "schemas:ProductGroup".freeze, - "schemas:inverseOf": "schemas:isVariantOf".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Product".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :headline, comment: "Headline of the article.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "headline".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthCondition, comment: "Specifying the health condition(s) of a patient, medical study, or other target audience.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MedicalStudy".freeze, "https://schema.org/Patient".freeze, "https://schema.org/PeopleAudience".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalCondition".freeze, label: "healthCondition".freeze, - "schemas:domainIncludes": ["schemas:MedicalStudy".freeze, "schemas:Patient".freeze, "schemas:PeopleAudience".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalCondition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCoinsuranceOption, comment: "Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthPlanCostSharingSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCoinsuranceOption".freeze, - "schemas:domainIncludes": "schemas:HealthPlanCostSharingSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCoinsuranceRate, comment: "Whether The rate of coinsurance expressed as a number between 0.0 and 1.0.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthPlanCostSharingSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCoinsuranceRate".freeze, - "schemas:domainIncludes": "schemas:HealthPlanCostSharingSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCopay, comment: "Whether The copay amount.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthPlanCostSharingSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PriceSpecification".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCopay".freeze, - "schemas:domainIncludes": "schemas:HealthPlanCostSharingSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:PriceSpecification".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCopayOption, comment: "Whether the copay is before or after deductible, etc. TODO: Is this a closed set?".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthPlanCostSharingSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCopayOption".freeze, - "schemas:domainIncludes": "schemas:HealthPlanCostSharingSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanCostSharing, comment: "Whether The costs to the patient for services under this network or formulary.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HealthPlanFormulary".freeze, "https://schema.org/HealthPlanNetwork".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanCostSharing".freeze, - "schemas:domainIncludes": ["schemas:HealthPlanFormulary".freeze, "schemas:HealthPlanNetwork".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanDrugOption, comment: "TODO.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthInsurancePlan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanDrugOption".freeze, - "schemas:domainIncludes": "schemas:HealthInsurancePlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanDrugTier, comment: "The tier(s) of drugs offered by this formulary or insurance plan.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HealthInsurancePlan".freeze, "https://schema.org/HealthPlanFormulary".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanDrugTier".freeze, - "schemas:domainIncludes": ["schemas:HealthInsurancePlan".freeze, "schemas:HealthPlanFormulary".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanId, comment: "The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.)".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthInsurancePlan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanId".freeze, - "schemas:domainIncludes": "schemas:HealthInsurancePlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanMarketingUrl, comment: "The URL that goes directly to the plan brochure for the specific standard plan or plan variation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthInsurancePlan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanMarketingUrl".freeze, - "schemas:domainIncludes": "schemas:HealthInsurancePlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanNetworkId, comment: "Name or unique ID of network. (Networks are often reused across different insurance plans).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HealthPlanNetwork".freeze, "https://schema.org/MedicalOrganization".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanNetworkId".freeze, - "schemas:domainIncludes": ["schemas:HealthPlanNetwork".freeze, "schemas:MedicalOrganization".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanNetworkTier, comment: "The tier(s) for this network.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthPlanNetwork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanNetworkTier".freeze, - "schemas:domainIncludes": "schemas:HealthPlanNetwork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthPlanPharmacyCategory, comment: "The category or type of pharmacy associated with this cost sharing.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthPlanCostSharingSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "healthPlanPharmacyCategory".freeze, - "schemas:domainIncludes": "schemas:HealthPlanCostSharingSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :healthcareReportingData, comment: "Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Hospital".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CDCPMDRecord".freeze, "https://schema.org/Dataset".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "healthcareReportingData".freeze, - "schemas:domainIncludes": "schemas:Hospital".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CDCPMDRecord".freeze, "schemas:Dataset".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :height, comment: "The height of the item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MediaObject".freeze, "https://schema.org/Person".freeze, "https://schema.org/Product".freeze, "https://schema.org/VisualArtwork".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Distance".freeze, "https://schema.org/QuantitativeValue".freeze], label: "height".freeze, - "schemas:domainIncludes": ["schemas:MediaObject".freeze, "schemas:Person".freeze, "schemas:Product".freeze, "schemas:VisualArtwork".freeze], - "schemas:rangeIncludes": ["schemas:Distance".freeze, "schemas:QuantitativeValue".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :highPrice, comment: "The highest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AggregateOffer".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "highPrice".freeze, - "schemas:domainIncludes": "schemas:AggregateOffer".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hiringOrganization, comment: "Organization offering the job position.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "hiringOrganization".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :holdingArchive, comment: "[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ArchiveComponent".freeze, + "https://schema.org/inverseOf": "https://schema.org/archiveHeld".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ArchiveOrganization".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "holdingArchive".freeze, - "schemas:domainIncludes": "schemas:ArchiveComponent".freeze, - "schemas:inverseOf": "schemas:archiveHeld".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:ArchiveOrganization".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :homeLocation, comment: "A contact location for a person's residence.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/Place".freeze], label: "homeLocation".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": ["schemas:ContactPoint".freeze, "schemas:Place".freeze], - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :homeTeam, comment: "The home team in a sports event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SportsEvent".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Person".freeze, "https://schema.org/SportsTeam".freeze], label: "homeTeam".freeze, - "schemas:domainIncludes": "schemas:SportsEvent".freeze, - "schemas:rangeIncludes": ["schemas:Person".freeze, "schemas:SportsTeam".freeze], - subPropertyOf: "schemas:competitor".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/competitor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :honorificPrefix, comment: "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "honorificPrefix".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :honorificSuffix, comment: "An honorific suffix following a Person's name such as M.D. /PhD/MSCSW.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "honorificSuffix".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hospitalAffiliation, comment: "A hospital with which the physician or office is affiliated.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Physician".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Hospital".freeze, label: "hospitalAffiliation".freeze, - "schemas:domainIncludes": "schemas:Physician".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Hospital".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hostingOrganization, comment: "The organization (airline, travelers' club, etc.) the membership is made with.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProgramMembership".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "hostingOrganization".freeze, - "schemas:domainIncludes": "schemas:ProgramMembership".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hoursAvailable, comment: "The hours during which this service or contact is available.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/LocationFeatureSpecification".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/OpeningHoursSpecification".freeze, label: "hoursAvailable".freeze, - "schemas:domainIncludes": ["schemas:ContactPoint".freeze, "schemas:LocationFeatureSpecification".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": "schemas:OpeningHoursSpecification".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :howPerformed, comment: "How the procedure is performed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalProcedure".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "howPerformed".freeze, - "schemas:domainIncludes": "schemas:MedicalProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :httpMethod, comment: "An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EntryPoint".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "httpMethod".freeze, - "schemas:domainIncludes": "schemas:EntryPoint".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :iataCode, comment: "IATA identifier for an airline or airport.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Airline".freeze, "https://schema.org/Airport".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "iataCode".freeze, - "schemas:domainIncludes": ["schemas:Airline".freeze, "schemas:Airport".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :icaoCode, comment: "ICAO identifier for an airport.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Airport".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "icaoCode".freeze, - "schemas:domainIncludes": "schemas:Airport".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifier, comment: "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.\n ".freeze, - equivalentProperty: "dc:identifier".freeze, + equivalentProperty: "http://purl.org/dc/terms/identifier".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/PropertyValue".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "identifier".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": ["schemas:PropertyValue".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifyingExam, comment: "A physical examination that can identify this sign.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalSign".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PhysicalExam".freeze, label: "identifyingExam".freeze, - "schemas:domainIncludes": "schemas:MedicalSign".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:PhysicalExam".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifyingTest, comment: "A diagnostic test that can identify this sign.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalSign".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTest".freeze, label: "identifyingTest".freeze, - "schemas:domainIncludes": "schemas:MedicalSign".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTest".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :illustrator, comment: "The illustrator of the book.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Book".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "illustrator".freeze, - "schemas:domainIncludes": "schemas:Book".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :image, comment: "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ImageObject".freeze, "https://schema.org/URL".freeze], label: "image".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": ["schemas:ImageObject".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :imagingTechnique, comment: "Imaging technique used.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ImagingTest".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalImagingTechnique".freeze, label: "imagingTechnique".freeze, - "schemas:domainIncludes": "schemas:ImagingTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalImagingTechnique".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inAlbum, comment: "The album to which this recording belongs.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicRecording".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicAlbum".freeze, label: "inAlbum".freeze, - "schemas:domainIncludes": "schemas:MusicRecording".freeze, - "schemas:rangeIncludes": "schemas:MusicAlbum".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inBroadcastLineup, comment: "The CableOrSatelliteService offering the channel.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CableOrSatelliteService".freeze, label: "inBroadcastLineup".freeze, - "schemas:domainIncludes": "schemas:BroadcastChannel".freeze, - "schemas:rangeIncludes": "schemas:CableOrSatelliteService".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inCodeSet, comment: "A [[CategoryCodeSet]] that contains this category code.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CategoryCode".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CategoryCodeSet".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "inCodeSet".freeze, - "schemas:domainIncludes": "schemas:CategoryCode".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CategoryCodeSet".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - subPropertyOf: "schemas:inDefinedTermSet".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/inDefinedTermSet".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inDefinedTermSet, comment: "A [[DefinedTermSet]] that contains this term.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DefinedTerm".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTermSet".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "inDefinedTermSet".freeze, - "schemas:domainIncludes": "schemas:DefinedTerm".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTermSet".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - subPropertyOf: "schemas:isPartOf".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/BroadcastService".freeze, "https://schema.org/CommunicateAction".freeze, "https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze, "https://schema.org/LinkRole".freeze, "https://schema.org/PronounceableText".freeze, "https://schema.org/WriteAction".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Language".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2382".freeze, label: "inLanguage".freeze, - "schemas:domainIncludes": ["schemas:BroadcastService".freeze, "schemas:CommunicateAction".freeze, "schemas:CreativeWork".freeze, "schemas:Event".freeze, "schemas:LinkRole".freeze, "schemas:PronounceableText".freeze, "schemas:WriteAction".freeze], - "schemas:rangeIncludes": ["schemas:Language".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2382".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inPlaylist, comment: "The playlist to which this recording belongs.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicRecording".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicPlaylist".freeze, label: "inPlaylist".freeze, - "schemas:domainIncludes": "schemas:MusicRecording".freeze, - "schemas:rangeIncludes": "schemas:MusicPlaylist".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inProductGroupWithID, comment: "Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Product".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "inProductGroupWithID".freeze, - "schemas:domainIncludes": "schemas:Product".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inStoreReturnsOffered, comment: "Are in-store returns offered?".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MerchantReturnPolicy".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "inStoreReturnsOffered".freeze, - "schemas:domainIncludes": "schemas:MerchantReturnPolicy".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inSupportOf, comment: "Qualification, candidature, degree, application that Thesis supports.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thesis".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "inSupportOf".freeze, - "schemas:domainIncludes": "schemas:Thesis".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :incentiveCompensation, comment: "Description of bonus and commission compensation aspects of the job.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "incentiveCompensation".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :incentives, comment: "Description of bonus and commission compensation aspects of the job.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/incentiveCompensation".freeze, label: "incentives".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:incentiveCompensation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedComposition, comment: "Smaller compositions included in this work (e.g. a movement in a symphony).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "includedComposition".freeze, - "schemas:domainIncludes": "schemas:MusicComposition".freeze, - "schemas:rangeIncludes": "schemas:MusicComposition".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedDataCatalog, comment: "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Dataset".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DataCatalog".freeze, + "https://schema.org/supersededBy": "https://schema.org/includedInDataCatalog".freeze, label: "includedDataCatalog".freeze, - "schemas:domainIncludes": "schemas:Dataset".freeze, - "schemas:rangeIncludes": "schemas:DataCatalog".freeze, - "schemas:supersededBy": "schemas:includedInDataCatalog".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedInDataCatalog, comment: "A data catalog which contains this dataset.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Dataset".freeze, + "https://schema.org/inverseOf": "https://schema.org/dataset".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DataCatalog".freeze, label: "includedInDataCatalog".freeze, - "schemas:domainIncludes": "schemas:Dataset".freeze, - "schemas:inverseOf": "schemas:dataset".freeze, - "schemas:rangeIncludes": "schemas:DataCatalog".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedInHealthInsurancePlan, comment: "The insurance plans that cover this drug.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/HealthInsurancePlan".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "includedInHealthInsurancePlan".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:HealthInsurancePlan".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includedRiskFactor, comment: "A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalRiskEstimator".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalRiskFactor".freeze, label: "includedRiskFactor".freeze, - "schemas:domainIncludes": "schemas:MedicalRiskEstimator".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalRiskFactor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includesAttraction, comment: "Attraction located at destination.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TouristDestination".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/TouristAttraction".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "includesAttraction".freeze, - "schemas:domainIncludes": "schemas:TouristDestination".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:TouristAttraction".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includesHealthPlanFormulary, comment: "Formularies covered by this plan.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthInsurancePlan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/HealthPlanFormulary".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "includesHealthPlanFormulary".freeze, - "schemas:domainIncludes": "schemas:HealthInsurancePlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:HealthPlanFormulary".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includesHealthPlanNetwork, comment: "Networks covered by this plan.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthInsurancePlan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/HealthPlanNetwork".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "includesHealthPlanNetwork".freeze, - "schemas:domainIncludes": "schemas:HealthInsurancePlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:HealthPlanNetwork".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :includesObject, comment: "This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]].".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/ProductCollection".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/TypeAndQuantityNode".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "includesObject".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:ProductCollection".freeze], - "schemas:rangeIncludes": "schemas:TypeAndQuantityNode".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :increasesRiskOf, comment: "The condition, complication, etc. influenced by this factor.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalRiskFactor".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalEntity".freeze, label: "increasesRiskOf".freeze, - "schemas:domainIncludes": "schemas:MedicalRiskFactor".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalEntity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :industry, comment: "The industry associated with the job position.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], label: "industry".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ineligibleRegion, 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.\\n\\nSee also [[eligibleRegion]].\n ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ActionAccessSpecification".freeze, "https://schema.org/DeliveryChargeSpecification".freeze, "https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/GeoShape".freeze, "https://schema.org/Place".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2242".freeze, label: "ineligibleRegion".freeze, - "schemas:domainIncludes": ["schemas:ActionAccessSpecification".freeze, "schemas:DeliveryChargeSpecification".freeze, "schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:GeoShape".freeze, "schemas:Place".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2242".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :infectiousAgent, comment: "The actual infectious agent, such as a specific bacterium.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/InfectiousDisease".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "infectiousAgent".freeze, - "schemas:domainIncludes": "schemas:InfectiousDisease".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :infectiousAgentClass, comment: "The class of infectious agent (bacteria, prion, etc.) that causes the disease.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/InfectiousDisease".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/InfectiousAgentClass".freeze, label: "infectiousAgentClass".freeze, - "schemas:domainIncludes": "schemas:InfectiousDisease".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:InfectiousAgentClass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ingredients, comment: "A single ingredient used in the recipe, e.g. sugar, flour or garlic.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Recipe".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/recipeIngredient".freeze, label: "ingredients".freeze, - "schemas:domainIncludes": "schemas:Recipe".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:recipeIngredient".freeze, - subPropertyOf: "schemas:supply".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/supply".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inker, comment: "The individual who traces over the pencil drawings in ink after pencils are complete.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ComicIssue".freeze, "https://schema.org/ComicStory".freeze, "https://schema.org/VisualArtwork".freeze], + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "inker".freeze, - "schemas:domainIncludes": ["schemas:ComicIssue".freeze, "schemas:ComicStory".freeze, "schemas:VisualArtwork".freeze], - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :insertion, comment: "The place of attachment of a muscle, or what the muscle moves.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Muscle".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AnatomicalStructure".freeze, label: "insertion".freeze, - "schemas:domainIncludes": "schemas:Muscle".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AnatomicalStructure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :installUrl, comment: "URL at which the app may be installed, if different from the URL of the item.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "installUrl".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instructor, comment: "A person assigned to instruct or provide instructional assistance for the [[CourseInstance]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CourseInstance".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "instructor".freeze, - "schemas:domainIncludes": "schemas:CourseInstance".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instrument, comment: "The object that helped the agent perform the action. e.g. John wrote a book with *a pen*.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Action".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "instrument".freeze, - "schemas:domainIncludes": "schemas:Action".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :intensity, comment: "Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExercisePlan".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QuantitativeValue".freeze, "https://schema.org/Text".freeze], label: "intensity".freeze, - "schemas:domainIncludes": "schemas:ExercisePlan".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:QuantitativeValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interactingDrug, comment: "Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Drug".freeze, label: "interactingDrug".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Drug".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interactionCount, comment: "This property is deprecated, alongside the UserInteraction types on which it depended.".freeze, + "https://schema.org/supersededBy": "https://schema.org/interactionStatistic".freeze, label: "interactionCount".freeze, - "schemas:supersededBy": "schemas:interactionStatistic".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interactionService, comment: "The WebSite or SoftwareApplication where the interactions took place.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/InteractionCounter".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/SoftwareApplication".freeze, "https://schema.org/WebSite".freeze], label: "interactionService".freeze, - "schemas:domainIncludes": "schemas:InteractionCounter".freeze, - "schemas:rangeIncludes": ["schemas:SoftwareApplication".freeze, "schemas:WebSite".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/InteractionCounter".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2421".freeze, label: "interactionStatistic".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:InteractionCounter".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2421".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/InteractionCounter".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Action".freeze, label: "interactionType".freeze, - "schemas:domainIncludes": "schemas:InteractionCounter".freeze, - "schemas:rangeIncludes": "schemas:Action".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :interactivityType, comment: "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "interactivityType".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/FinancialProduct".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "interestRate".freeze, - "schemas:domainIncludes": "schemas:FinancialProduct".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inventoryLevel, comment: "The current approximate inventory level for the item or items.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/SomeProducts".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "inventoryLevel".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:SomeProducts".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Property".freeze, + "https://schema.org/isPartOf": "https://meta.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Property".freeze, label: "inverseOf".freeze, - "schemas:domainIncludes": "schemas:Property".freeze, - "schemas:isPartOf": "https://meta.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Property".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAcceptingNewPatients, comment: "Whether the provider is accepting new patients.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalOrganization".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "isAcceptingNewPatients".freeze, - "schemas:domainIncludes": "schemas:MedicalOrganization".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAccessibleForFree, comment: "A flag to signal that the item, event, or place is accessible for free.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "isAccessibleForFree".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Event".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAccessoryOrSparePartFor, comment: "A pointer to another product (or multiple products) for which this product is an accessory or spare part.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Product".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Product".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isAccessoryOrSparePartFor".freeze, - "schemas:domainIncludes": "schemas:Product".freeze, - "schemas:rangeIncludes": "schemas:Product".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAvailableGenerically, comment: "True if the drug is available in a generic form (regardless of name).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "isAvailableGenerically".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isBasedOn, comment: "A resource from which this work is derived or from which it is a modification or adaption.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Product".freeze, "https://schema.org/URL".freeze], label: "isBasedOn".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:Product".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isBasedOnUrl, comment: "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Product".freeze, "https://schema.org/URL".freeze], + "https://schema.org/supersededBy": "https://schema.org/isBasedOn".freeze, label: "isBasedOnUrl".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:Product".freeze, "schemas:URL".freeze], - "schemas:supersededBy": "schemas:isBasedOn".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isConsumableFor, comment: "A pointer to another product (or multiple products) for which this product is a consumable.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Product".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Product".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isConsumableFor".freeze, - "schemas:domainIncludes": "schemas:Product".freeze, - "schemas:rangeIncludes": "schemas:Product".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isFamilyFriendly, comment: "Indicates whether this content is family friendly.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "isFamilyFriendly".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isGift, comment: "Was the offer accepted as a gift for someone other than the buyer.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "isGift".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isLiveBroadcast, comment: "True is the broadcast is of a live event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "isLiveBroadcast".freeze, - "schemas:domainIncludes": "schemas:BroadcastEvent".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isPartOf, comment: "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/inverseOf": "https://schema.org/hasPart".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], label: "isPartOf".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:inverseOf": "schemas:hasPart".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isPlanForApartment, comment: "Indicates some accommodation that this floor plan describes.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FloorPlan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Accommodation".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "isPlanForApartment".freeze, - "schemas:domainIncludes": "schemas:FloorPlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Accommodation".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isProprietary, comment: "True if this item's name is a proprietary/brand name (vs. generic name).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DietarySupplement".freeze, "https://schema.org/Drug".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "isProprietary".freeze, - "schemas:domainIncludes": ["schemas:DietarySupplement".freeze, "schemas:Drug".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isRelatedTo, comment: "A pointer to another, somehow related product (or multiple products).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isRelatedTo".freeze, - "schemas:domainIncludes": ["schemas:Product".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": ["schemas:Product".freeze, "schemas:Service".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/3DModel".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2394".freeze, label: "isResizable".freeze, - "schemas:domainIncludes": "schemas:3DModel".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2394".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isSimilarTo, comment: "A pointer to another, functionally similar product (or multiple products).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isSimilarTo".freeze, - "schemas:domainIncludes": ["schemas:Product".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": ["schemas:Product".freeze, "schemas:Service".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isUnlabelledFallback, comment: "This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[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 transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DeliveryTimeSettings".freeze, "https://schema.org/ShippingRateSettings".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "isUnlabelledFallback".freeze, - "schemas:domainIncludes": ["schemas:DeliveryTimeSettings".freeze, "schemas:ShippingRateSettings".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isVariantOf, comment: "Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) 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. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Product".freeze, "https://schema.org/ProductModel".freeze], + "https://schema.org/inverseOf": "https://schema.org/hasVariant".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ProductGroup".freeze, "https://schema.org/ProductModel".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isVariantOf".freeze, - "schemas:domainIncludes": ["schemas:Product".freeze, "schemas:ProductModel".freeze], - "schemas:inverseOf": "schemas:hasVariant".freeze, - "schemas:rangeIncludes": ["schemas:ProductGroup".freeze, "schemas:ProductModel".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isbn, comment: "The ISBN of the book.".freeze, - equivalentProperty: "bibo:isbn".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/isbn".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Book".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "isbn".freeze, - "schemas:domainIncludes": "schemas:Book".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "isicV4".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isrcCode, comment: "The International Standard Recording Code for the recording.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicRecording".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "isrcCode".freeze, - "schemas:domainIncludes": "schemas:MusicRecording".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - equivalentProperty: "bibo:issn".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/issn".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Blog".freeze, "https://schema.org/CreativeWorkSeries".freeze, "https://schema.org/Dataset".freeze, "https://schema.org/WebSite".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "issn".freeze, - "schemas:domainIncludes": ["schemas:Blog".freeze, "schemas:CreativeWorkSeries".freeze, "schemas:Dataset".freeze, "schemas:WebSite".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :issueNumber, comment: "Identifies the issue of publication; for example, \"iii\" or \"2\".".freeze, - equivalentProperty: "bibo:issue".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/issue".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PublicationIssue".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "issueNumber".freeze, - "schemas:domainIncludes": "schemas:PublicationIssue".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:Text".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - subPropertyOf: "schemas:position".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :issuedBy, comment: "The organization issuing the ticket or permit.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Permit".freeze, "https://schema.org/Ticket".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "issuedBy".freeze, - "schemas:domainIncludes": ["schemas:Permit".freeze, "schemas:Ticket".freeze], - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :issuedThrough, comment: "The service through with the permit was granted.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Permit".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Service".freeze, label: "issuedThrough".freeze, - "schemas:domainIncludes": "schemas:Permit".freeze, - "schemas:rangeIncludes": "schemas:Service".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :iswcCode, comment: "The International Standard Musical Work Code for the composition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "iswcCode".freeze, - "schemas:domainIncludes": "schemas:MusicComposition".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/DataFeedItem".freeze, "https://schema.org/ListItem".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "item".freeze, - "schemas:domainIncludes": ["schemas:DataFeedItem".freeze, "schemas:ListItem".freeze], - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemCondition, comment: "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/OfferItemCondition".freeze, label: "itemCondition".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:OfferItemCondition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemListElement, comment: "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\\n\\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\\n\\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ItemList".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ListItem".freeze, "https://schema.org/Text".freeze, "https://schema.org/Thing".freeze], label: "itemListElement".freeze, - "schemas:domainIncludes": "schemas:ItemList".freeze, - "schemas:rangeIncludes": ["schemas:ListItem".freeze, "schemas:Text".freeze, "schemas:Thing".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemListOrder, comment: "Type of ordering (e.g. Ascending, Descending, Unordered).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ItemList".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ItemListOrderType".freeze, "https://schema.org/Text".freeze], label: "itemListOrder".freeze, - "schemas:domainIncludes": "schemas:ItemList".freeze, - "schemas:rangeIncludes": ["schemas:ItemListOrderType".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemLocation, comment: "Current location of the item.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ArchiveComponent".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Place".freeze, "https://schema.org/PostalAddress".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "itemLocation".freeze, - "schemas:domainIncludes": "schemas:ArchiveComponent".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Place".freeze, "schemas:PostalAddress".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemOffered, comment: "An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/inverseOf": "https://schema.org/offers".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AggregateOffer".freeze, "https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze, "https://schema.org/MenuItem".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze, "https://schema.org/Trip".freeze], label: "itemOffered".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:inverseOf": "schemas:offers".freeze, - "schemas:rangeIncludes": ["schemas:AggregateOffer".freeze, "schemas:CreativeWork".freeze, "schemas:Event".freeze, "schemas:MenuItem".freeze, "schemas:Product".freeze, "schemas:Service".freeze, "schemas:Trip".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemReviewed, comment: "The item that is being reviewed/rated.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/AggregateRating".freeze, "https://schema.org/Review".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "itemReviewed".freeze, - "schemas:domainIncludes": ["schemas:AggregateRating".freeze, "schemas:Review".freeze], - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemShipped, comment: "Item(s) being shipped.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParcelDelivery".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Product".freeze, label: "itemShipped".freeze, - "schemas:domainIncludes": "schemas:ParcelDelivery".freeze, - "schemas:rangeIncludes": "schemas:Product".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Trip".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ItemList".freeze, "https://schema.org/Place".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "itinerary".freeze, - "schemas:domainIncludes": "schemas:Trip".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:ItemList".freeze, "schemas:Place".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobBenefits, comment: "Description of benefits associated with the job.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "jobBenefits".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobImmediateStart, comment: "An indicator as to whether a position is available for an immediate start.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, label: "jobImmediateStart".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobLocation, comment: "A (typically single) geographic location associated with the job position.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "jobLocation".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobLocationType, comment: "A description of the job location (e.g TELECOMMUTE for telecommute jobs).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1591".freeze, label: "jobLocationType".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1591".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, label: "jobStartDate".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jobTitle, comment: "The job title of the person (for example, Financial Manager).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2192".freeze, label: "jobTitle".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2192".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jurisdiction, comment: "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GovernmentService".freeze, "https://schema.org/Legislation".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AdministrativeArea".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "jurisdiction".freeze, - "schemas:domainIncludes": ["schemas:GovernmentService".freeze, "schemas:Legislation".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:AdministrativeArea".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "keywords".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :knownVehicleDamages, comment: "A textual description of known damages, both repaired and unrepaired.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "knownVehicleDamages".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :knows, comment: "The most generic bi-directional social/work relation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "knows".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/Thing".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "knowsAbout".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:Thing".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](http://tools.ietf.org/html/bcp47).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Language".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "knowsLanguage".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Language".freeze, "schemas:Text".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :labelDetails, comment: "Link to the drug's label details.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "labelDetails".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :landlord, comment: "A sub property of participant. The owner of the real estate property.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/RentAction".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "landlord".freeze, - "schemas:domainIncludes": "schemas:RentAction".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :language, comment: "A sub property of instrument. The language used on this action.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CommunicateAction".freeze, "https://schema.org/WriteAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Language".freeze, + "https://schema.org/supersededBy": "https://schema.org/inLanguage".freeze, label: "language".freeze, - "schemas:domainIncludes": ["schemas:CommunicateAction".freeze, "schemas:WriteAction".freeze], - "schemas:rangeIncludes": "schemas:Language".freeze, - "schemas:supersededBy": "schemas:inLanguage".freeze, - subPropertyOf: "schemas:instrument".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lastReviewed, comment: "Date on which the content on this web page was last reviewed for accuracy and/or completeness.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebPage".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "lastReviewed".freeze, - "schemas:domainIncludes": "schemas:WebPage".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :latitude, comment: "The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeoCoordinates".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "latitude".freeze, - "schemas:domainIncludes": ["schemas:GeoCoordinates".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :layoutImage, comment: "A schematic image showing the floorplan layout.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FloorPlan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ImageObject".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2690".freeze, label: "layoutImage".freeze, - "schemas:domainIncludes": "schemas:FloorPlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:ImageObject".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2690".freeze, - subPropertyOf: "schemas:image".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/image".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :learningResourceType, comment: "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/LearningResource".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], label: "learningResourceType".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:LearningResource".freeze], - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/Offer".freeze, "https://schema.org/RealEstateListing".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Duration".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "leaseLength".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:Offer".freeze, "schemas:RealEstateListing".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Duration".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legalName, comment: "The official name of the organization, e.g. the registered company name.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "legalName".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legalStatus, comment: "The drug or supplement's legal status, including any controlled substance schedules that apply.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DietarySupplement".freeze, "https://schema.org/Drug".freeze, "https://schema.org/MedicalEntity".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DrugLegalStatus".freeze, "https://schema.org/MedicalEnumeration".freeze, "https://schema.org/Text".freeze], label: "legalStatus".freeze, - "schemas:domainIncludes": ["schemas:DietarySupplement".freeze, "schemas:Drug".freeze, "schemas:MedicalEntity".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DrugLegalStatus".freeze, "schemas:MedicalEnumeration".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#implements".freeze, exactMatch: "http://data.europa.eu/eli/ontology#implements".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationApplies".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Legislation".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#changes".freeze, exactMatch: "http://data.europa.eu/eli/ontology#changes".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationChanges".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Legislation".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#consolidates".freeze, exactMatch: "http://data.europa.eu/eli/ontology#consolidates".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationConsolidates".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Legislation".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#date_document".freeze, exactMatch: "http://data.europa.eu/eli/ontology#date_document".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationDate".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - subPropertyOf: "schemas:dateCreated".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/dateCreated".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#version_date".freeze, exactMatch: "http://data.europa.eu/eli/ontology#version_date".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationDateVersion".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "http://www.w3.org/2004/02/skos/core#closeMatch": "http://data.europa.eu/eli/ontology#id_local".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationIdentifier".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas: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: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legislationJurisdiction, comment: "The jurisdiction from which the legislation originates.".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#jurisdiction".freeze, exactMatch: "http://data.europa.eu/eli/ontology#jurisdiction".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AdministrativeArea".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationJurisdiction".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:AdministrativeArea".freeze, "schemas:Text".freeze], - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - subPropertyOf: ["schemas:jurisdiction".freeze, "schemas:spatialCoverage".freeze], - type: "rdf:Property".freeze + subPropertyOf: ["https://schema.org/jurisdiction".freeze, "https://schema.org/spatialCoverage".freeze], + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legislationLegalForce, comment: "Whether the legislation is currently in force, not in force, or partially in force.".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#in_force".freeze, exactMatch: "http://data.europa.eu/eli/ontology#in_force".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/LegalForceStatus".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationLegalForce".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:LegalForceStatus".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#legal_value".freeze, exactMatch: "http://data.europa.eu/eli/ontology#legal_value".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LegislationObject".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/LegalValueLevel".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationLegalValue".freeze, - "schemas:domainIncludes": "schemas:LegislationObject".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:LegalValueLevel".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#passed_by".freeze, exactMatch: "http://data.europa.eu/eli/ontology#passed_by".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationPassedBy".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - subPropertyOf: "schemas:creator".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/creator".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#responsibility_of".freeze, exactMatch: "http://data.europa.eu/eli/ontology#responsibility_of".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationResponsible".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#transposes".freeze, exactMatch: "http://data.europa.eu/eli/ontology#transposes".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationTransposes".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Legislation".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - subPropertyOf: "schemas:legislationApplies".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/legislationApplies".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, equivalentProperty: "http://data.europa.eu/eli/ontology#type_document".freeze, exactMatch: "http://data.europa.eu/eli/ontology#type_document".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Legislation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CategoryCode".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "legislationType".freeze, - "schemas:domainIncludes": "schemas:Legislation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CategoryCode".freeze, "schemas:Text".freeze], - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - subPropertyOf: "schemas:genre".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/genre".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :leiCode, comment: "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF".freeze], label: "leiCode".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF".freeze], - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lender, comment: "A sub property of participant. The person that lends the object being borrowed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BorrowAction".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "lender".freeze, - "schemas:domainIncludes": "schemas:BorrowAction".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lesser, comment: "This ordering relation for qualitative values indicates that the subject is lesser than the object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "lesser".freeze, - "schemas:domainIncludes": "schemas:QualitativeValue".freeze, - "schemas:rangeIncludes": "schemas:QualitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lesserOrEqual, comment: "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "lesserOrEqual".freeze, - "schemas:domainIncludes": "schemas:QualitativeValue".freeze, - "schemas:rangeIncludes": "schemas:QualitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :letterer, comment: "The individual who adds lettering, including speech balloons and sound effects, to artwork.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ComicIssue".freeze, "https://schema.org/ComicStory".freeze, "https://schema.org/VisualArtwork".freeze], + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "letterer".freeze, - "schemas:domainIncludes": ["schemas:ComicIssue".freeze, "schemas:ComicStory".freeze, "schemas:VisualArtwork".freeze], - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :license, comment: "A license document that applies to this content, typically indicated by URL.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], label: "license".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :line, comment: "A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GeoShape".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "line".freeze, - "schemas:domainIncludes": "schemas:GeoShape".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :linkRelationship, comment: "Indicates the relationship type of a Web link. ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LinkRole".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, label: "linkRelationship".freeze, - "schemas:domainIncludes": "schemas:LinkRole".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :liveBlogUpdate, comment: "An update to the LiveBlog.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LiveBlogPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BlogPosting".freeze, label: "liveBlogUpdate".freeze, - "schemas:domainIncludes": "schemas:LiveBlogPosting".freeze, - "schemas:rangeIncludes": "schemas:BlogPosting".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loanMortgageMandateAmount, comment: "Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MortgageLoan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MonetaryAmount".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanMortgageMandateAmount".freeze, - "schemas:domainIncludes": "schemas:MortgageLoan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MonetaryAmount".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loanPaymentAmount, comment: "The amount of money to pay in a single payment.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/RepaymentSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MonetaryAmount".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanPaymentAmount".freeze, - "schemas:domainIncludes": "schemas:RepaymentSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MonetaryAmount".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/RepaymentSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanPaymentFrequency".freeze, - "schemas:domainIncludes": "schemas:RepaymentSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/LoanOrCredit".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/RepaymentSpecification".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanRepaymentForm".freeze, - "schemas:domainIncludes": "schemas:LoanOrCredit".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:RepaymentSpecification".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loanTerm, comment: "The duration of the loan or credit agreement.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LoanOrCredit".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "loanTerm".freeze, - "schemas:domainIncludes": "schemas:LoanOrCredit".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - subPropertyOf: "schemas:duration".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/duration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loanType, comment: "The type of a loan or credit.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LoanOrCredit".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "loanType".freeze, - "schemas:domainIncludes": "schemas:LoanOrCredit".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :location, comment: "The location of, for example, where an event is happening, where an organization is located, or where an action takes place.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Action".freeze, "https://schema.org/Event".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Place".freeze, "https://schema.org/PostalAddress".freeze, "https://schema.org/Text".freeze, "https://schema.org/VirtualLocation".freeze], label: "location".freeze, - "schemas:domainIncludes": ["schemas:Action".freeze, "schemas:Event".freeze, "schemas:Organization".freeze], - "schemas:rangeIncludes": ["schemas:Place".freeze, "schemas:PostalAddress".freeze, "schemas:Text".freeze, "schemas:VirtualLocation".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locationCreated, comment: "The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "locationCreated".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lodgingUnitDescription, comment: "A full description of the lodging unit.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LodgingReservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "lodgingUnitDescription".freeze, - "schemas:domainIncludes": "schemas:LodgingReservation".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lodgingUnitType, comment: "Textual description of the unit type (including suite vs. room, size of bed, etc.).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LodgingReservation".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze], label: "lodgingUnitType".freeze, - "schemas:domainIncludes": "schemas:LodgingReservation".freeze, - "schemas:rangeIncludes": ["schemas:QualitativeValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :logo, comment: "An associated logo.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Brand".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Place".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/ImageObject".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "logo".freeze, - "schemas:domainIncludes": ["schemas:Brand".freeze, "schemas:Organization".freeze, "schemas:Place".freeze, "schemas:Product".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": ["schemas:ImageObject".freeze, "schemas:URL".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: "schemas:image".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/image".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :longitude, comment: "The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/GeoCoordinates".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "longitude".freeze, - "schemas:domainIncludes": ["schemas:GeoCoordinates".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :loser, comment: "A sub property of participant. The loser of the action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WinAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "loser".freeze, - "schemas:domainIncludes": "schemas:WinAction".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lowPrice, comment: "The lowest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AggregateOffer".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "lowPrice".freeze, - "schemas:domainIncludes": "schemas:AggregateOffer".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lyricist, comment: "The person who wrote the words.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "lyricist".freeze, - "schemas:domainIncludes": "schemas:MusicComposition".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lyrics, comment: "The words in the song.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "lyrics".freeze, - "schemas:domainIncludes": "schemas:MusicComposition".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mainContentOfPage, comment: "Indicates if this web page element is the main subject of the page.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebPage".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/WebPageElement".freeze, label: "mainContentOfPage".freeze, - "schemas:domainIncludes": "schemas:WebPage".freeze, - "schemas:rangeIncludes": "schemas:WebPageElement".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mainEntity, comment: "Indicates the primary entity described in some page or other CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/inverseOf": "https://schema.org/mainEntityOfPage".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "mainEntity".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:inverseOf": "schemas:mainEntityOfPage".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - subPropertyOf: "schemas:about".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/about".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mainEntityOfPage, comment: "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/inverseOf": "https://schema.org/mainEntity".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], label: "mainEntityOfPage".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:inverseOf": "schemas:mainEntity".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\n ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2311".freeze, label: "maintainer".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2311".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :makesOffer, comment: "A pointer to products or services offered by the organization or person.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/inverseOf": "https://schema.org/offeredBy".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Offer".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "makesOffer".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:inverseOf": "schemas:offeredBy".freeze, - "schemas:rangeIncludes": "schemas:Offer".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :manufacturer, comment: "The manufacturer of the product.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DietarySupplement".freeze, "https://schema.org/Drug".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "manufacturer".freeze, - "schemas:domainIncludes": ["schemas:DietarySupplement".freeze, "schemas:Drug".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :map, comment: "A URL to a map of the place.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, + "https://schema.org/supersededBy": "https://schema.org/hasMap".freeze, label: "map".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - "schemas:supersededBy": "schemas:hasMap".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mapType, comment: "Indicates the kind of Map, from the MapCategoryType Enumeration.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Map".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MapCategoryType".freeze, label: "mapType".freeze, - "schemas:domainIncludes": "schemas:Map".freeze, - "schemas:rangeIncludes": "schemas:MapCategoryType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maps, comment: "A URL to a map of the place.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, + "https://schema.org/supersededBy": "https://schema.org/hasMap".freeze, label: "maps".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - "schemas:supersededBy": "schemas:hasMap".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :marginOfError, comment: "A marginOfError for an [[Observation]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Observation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "marginOfError".freeze, - "schemas:domainIncludes": "schemas:Observation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :masthead, comment: "For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NewsMediaOrganization".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "masthead".freeze, - "schemas:domainIncludes": "schemas:NewsMediaOrganization".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subPropertyOf: "schemas:publishingPrinciples".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :material, comment: "A material that something is made from, e.g. leather, wool, cotton, paper.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Product".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "material".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": ["schemas:Product".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :materialExtent, comment: "The quantity of the materials being described or an expression of the physical space they occupy.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QuantitativeValue".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, label: "materialExtent".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:QuantitativeValue".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mathExpression, comment: "A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MathSolver".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/SolveMathAction".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, label: "mathExpression".freeze, - "schemas:domainIncludes": "schemas:MathSolver".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:SolveMathAction".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2740".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maxPrice, comment: "The highest price if the price is a range.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PriceSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "maxPrice".freeze, - "schemas:domainIncludes": "schemas:PriceSpecification".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maxValue, comment: "The upper value of some characteristic or property.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/PropertyValue".freeze, "https://schema.org/PropertyValueSpecification".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "maxValue".freeze, - "schemas:domainIncludes": ["schemas:MonetaryAmount".freeze, "schemas:PropertyValue".freeze, "schemas:PropertyValueSpecification".freeze, "schemas:QuantitativeValue".freeze], - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maximumAttendeeCapacity, comment: "The total number of individuals that may attend an event or venue.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Event".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "maximumAttendeeCapacity".freeze, - "schemas:domainIncludes": ["schemas:Event".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maximumEnrollment, comment: "The maximum number of students who may be enrolled in the program.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "maximumEnrollment".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maximumIntake, comment: "Recommended intake of this supplement for a given population as defined by a specific recommending authority.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DietarySupplement".freeze, "https://schema.org/Drug".freeze, "https://schema.org/DrugStrength".freeze, "https://schema.org/Substance".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MaximumDoseSchedule".freeze, label: "maximumIntake".freeze, - "schemas:domainIncludes": ["schemas:DietarySupplement".freeze, "schemas:Drug".freeze, "schemas:DrugStrength".freeze, "schemas:Substance".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MaximumDoseSchedule".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "maximumPhysicalAttendeeCapacity".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "maximumVirtualAttendeeCapacity".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mealService, comment: "Description of the meals that will be provided or available for purchase.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "mealService".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](https://www.gs1.org/voc/?show=properties).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Observation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Property".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "measuredProperty".freeze, - "schemas:domainIncludes": "schemas:Observation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Property".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measuredValue, comment: "The measuredValue of an [[Observation]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Observation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DataType".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "measuredValue".freeze, - "schemas:domainIncludes": "schemas:Observation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DataType".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :measurementTechnique, comment: "A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]),\ncorresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.\n\nFor example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\".\n\nIf the [[variableMeasured]] is \"depression rating\", the [[measurementTechnique]] could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\".\n\nIf there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]].\n ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DataCatalog".freeze, "https://schema.org/DataDownload".freeze, "https://schema.org/Dataset".freeze, "https://schema.org/PropertyValue".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1425".freeze, label: "measurementTechnique".freeze, - "schemas:domainIncludes": ["schemas:DataCatalog".freeze, "schemas:DataDownload".freeze, "schemas:Dataset".freeze, "schemas:PropertyValue".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1425".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mechanismOfAction, comment: "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DietarySupplement".freeze, "https://schema.org/Drug".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "mechanismOfAction".freeze, - "schemas:domainIncludes": ["schemas:DietarySupplement".freeze, "schemas:Drug".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mediaAuthenticityCategory, comment: "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaReview".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MediaManipulationRatingEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "mediaAuthenticityCategory".freeze, - "schemas:domainIncludes": "schemas:MediaReview".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MediaManipulationRatingEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :median, comment: "The median value.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QuantitativeValueDistribution".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "median".freeze, - "schemas:domainIncludes": "schemas:QuantitativeValueDistribution".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :medicalAudience, comment: "Medical audience for page.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalWebPage".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MedicalAudience".freeze, "https://schema.org/MedicalAudienceType".freeze], label: "medicalAudience".freeze, - "schemas:domainIncludes": "schemas:MedicalWebPage".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:MedicalAudience".freeze, "schemas:MedicalAudienceType".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :medicalSpecialty, comment: "A medical specialty of the provider.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Hospital".freeze, "https://schema.org/MedicalClinic".freeze, "https://schema.org/MedicalOrganization".freeze, "https://schema.org/Physician".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalSpecialty".freeze, label: "medicalSpecialty".freeze, - "schemas:domainIncludes": ["schemas:Hospital".freeze, "schemas:MedicalClinic".freeze, "schemas:MedicalOrganization".freeze, "schemas:Physician".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalSpecialty".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :medicineSystem, comment: "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalEntity".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicineSystem".freeze, label: "medicineSystem".freeze, - "schemas:domainIncludes": "schemas:MedicalEntity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicineSystem".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :meetsEmissionStandard, comment: "Indicates that the vehicle meets the respective emission standard.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "meetsEmissionStandard".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:QualitativeValue".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/ProgramMembership".freeze], + "https://schema.org/inverseOf": "https://schema.org/memberOf".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "member".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:ProgramMembership".freeze], - "schemas:inverseOf": "schemas:memberOf".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :memberOf, comment: "An Organization (or ProgramMembership) to which this Person or Organization belongs.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/inverseOf": "https://schema.org/member".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/ProgramMembership".freeze], label: "memberOf".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:inverseOf": "schemas:member".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:ProgramMembership".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :members, comment: "A member of this organization.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/ProgramMembership".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/supersededBy": "https://schema.org/member".freeze, label: "members".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:ProgramMembership".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:supersededBy": "schemas:member".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :membershipNumber, comment: "A unique identifier for the membership.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProgramMembership".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "membershipNumber".freeze, - "schemas:domainIncludes": "schemas:ProgramMembership".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/ProgramMembership".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2085".freeze, label: "membershipPointsEarned".freeze, - "schemas:domainIncludes": "schemas:ProgramMembership".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2085".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :memoryRequirements, comment: "Minimum memory requirements.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "memoryRequirements".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mentions, comment: "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "mentions".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :menu, comment: "Either the actual menu as a structured representation, as text, or a URL of the menu.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FoodEstablishment".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Menu".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/supersededBy": "https://schema.org/hasMenu".freeze, label: "menu".freeze, - "schemas:domainIncludes": "schemas:FoodEstablishment".freeze, - "schemas:rangeIncludes": ["schemas:Menu".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:supersededBy": "schemas:hasMenu".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/MenuItem".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MenuItem".freeze, "https://schema.org/MenuSection".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1541".freeze, label: "menuAddOn".freeze, - "schemas:domainIncludes": "schemas:MenuItem".freeze, - "schemas:rangeIncludes": ["schemas:MenuItem".freeze, "schemas:MenuSection".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1541".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :merchant, comment: "'merchant' is an out-dated term for 'seller'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/supersededBy": "https://schema.org/seller".freeze, label: "merchant".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:supersededBy": "schemas:seller".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :merchantReturnDays, comment: "The merchantReturnDays property indicates the number of days (from purchase) within which relevant merchant return policy is applicable.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MerchantReturnPolicy".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "merchantReturnDays".freeze, - "schemas:domainIncludes": "schemas:MerchantReturnPolicy".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :merchantReturnLink, comment: "Indicates a Web page or service by URL, for product return.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MerchantReturnPolicy".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "merchantReturnLink".freeze, - "schemas:domainIncludes": "schemas:MerchantReturnPolicy".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :messageAttachment, comment: "A CreativeWork attached to the message.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Message".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "messageAttachment".freeze, - "schemas:domainIncludes": "schemas:Message".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mileageFromOdometer, comment: "The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\\n\\nTypical unit code(s): KMT for kilometers, SMI for statute miles".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "mileageFromOdometer".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minPrice, comment: "The lowest price if the price is a range.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PriceSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "minPrice".freeze, - "schemas:domainIncludes": "schemas:PriceSpecification".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minValue, comment: "The lower value of some characteristic or property.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/PropertyValue".freeze, "https://schema.org/PropertyValueSpecification".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "minValue".freeze, - "schemas:domainIncludes": ["schemas:MonetaryAmount".freeze, "schemas:PropertyValue".freeze, "schemas:PropertyValueSpecification".freeze, "schemas:QuantitativeValue".freeze], - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minimumPaymentDue, comment: "The minimum payment required at this time.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Invoice".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/PriceSpecification".freeze], label: "minimumPaymentDue".freeze, - "schemas:domainIncludes": "schemas:Invoice".freeze, - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:PriceSpecification".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :missionCoveragePrioritiesPolicy, comment: "For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NewsMediaOrganization".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "missionCoveragePrioritiesPolicy".freeze, - "schemas:domainIncludes": "schemas:NewsMediaOrganization".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subPropertyOf: "schemas:publishingPrinciples".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :model, comment: "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Product".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ProductModel".freeze, "https://schema.org/Text".freeze], label: "model".freeze, - "schemas:domainIncludes": "schemas:Product".freeze, - "schemas:rangeIncludes": ["schemas:ProductModel".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :modelDate, comment: "The release date of a vehicle model (often used to differentiate versions of the same make and model).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "modelDate".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :modifiedTime, comment: "The date and time the reservation was modified.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Reservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "modifiedTime".freeze, - "schemas:domainIncludes": "schemas:Reservation".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/PaymentCard".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/Number".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "monthlyMinimumRepaymentAmount".freeze, - "schemas:domainIncludes": "schemas:PaymentCard".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:Number".freeze], - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mpn, comment: "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "mpn".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :multipleValues, comment: "Whether multiple values are allowed for the property. Default is false.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValueSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "multipleValues".freeze, - "schemas:domainIncludes": "schemas:PropertyValueSpecification".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :muscleAction, comment: "The movement the muscle generates.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Muscle".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "muscleAction".freeze, - "schemas:domainIncludes": "schemas:Muscle".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicArrangement, comment: "An arrangement derived from the composition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "musicArrangement".freeze, - "schemas:domainIncludes": "schemas:MusicComposition".freeze, - "schemas:rangeIncludes": "schemas:MusicComposition".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicBy, comment: "The composer of the soundtrack.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Clip".freeze, "https://schema.org/Episode".freeze, "https://schema.org/Movie".freeze, "https://schema.org/MovieSeries".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGame".freeze, "https://schema.org/VideoGameSeries".freeze, "https://schema.org/VideoObject".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/MusicGroup".freeze, "https://schema.org/Person".freeze], label: "musicBy".freeze, - "schemas:domainIncludes": ["schemas:Clip".freeze, "schemas:Episode".freeze, "schemas:Movie".freeze, "schemas:MovieSeries".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGame".freeze, "schemas:VideoGameSeries".freeze, "schemas:VideoObject".freeze], - "schemas:rangeIncludes": ["schemas:MusicGroup".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicCompositionForm, comment: "The type of composition (e.g. overture, sonata, symphony, etc.).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "musicCompositionForm".freeze, - "schemas:domainIncludes": "schemas:MusicComposition".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicGroupMember, comment: "A member of a music group—for example, John, Paul, George, or Ringo.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicGroup".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, + "https://schema.org/supersededBy": "https://schema.org/member".freeze, label: "musicGroupMember".freeze, - "schemas:domainIncludes": "schemas:MusicGroup".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - "schemas:supersededBy": "schemas:member".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicReleaseFormat, comment: "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicRelease".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicReleaseFormatType".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "musicReleaseFormat".freeze, - "schemas:domainIncludes": "schemas:MusicRelease".freeze, - "schemas:rangeIncludes": "schemas:MusicReleaseFormatType".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :musicalKey, comment: "The key, mode, or scale this composition uses.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "musicalKey".freeze, - "schemas:domainIncludes": "schemas:MusicComposition".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :naics, comment: "The North American Industry Classification System (NAICS) code for a particular organization or business person.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "naics".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :name, comment: "The name of the item.".freeze, - equivalentProperty: "dc:title".freeze, + equivalentProperty: "http://purl.org/dc/terms/title".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "name".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "rdfs:label".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :namedPosition, comment: "A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Role".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/supersededBy": "https://schema.org/roleName".freeze, label: "namedPosition".freeze, - "schemas:domainIncludes": "schemas:Role".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:supersededBy": "schemas:roleName".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nationality, comment: "Nationality of the person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Country".freeze, label: "nationality".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Country".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :naturalProgression, comment: "The expected progression of the condition if it is not treated and allowed to progress naturally.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "naturalProgression".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nerve, comment: "The underlying innervation associated with the muscle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Muscle".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Nerve".freeze, label: "nerve".freeze, - "schemas:domainIncludes": "schemas:Muscle".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Nerve".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nerveMotor, comment: "The neurological pathway extension that involves muscle control.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Nerve".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Muscle".freeze, label: "nerveMotor".freeze, - "schemas:domainIncludes": "schemas:Nerve".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Muscle".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :netWorth, comment: "The total financial value of the person as calculated by subtracting assets from liabilities.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/PriceSpecification".freeze], label: "netWorth".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:PriceSpecification".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/URL".freeze, "https://schema.org/WebContent".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "newsUpdatesAndGuidelines".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:URL".freeze, "schemas:WebContent".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nextItem, comment: "A link to the ListItem that follows the current one.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ListItem".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ListItem".freeze, label: "nextItem".freeze, - "schemas:domainIncludes": "schemas:ListItem".freeze, - "schemas:rangeIncludes": "schemas:ListItem".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/NewsMediaOrganization".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "noBylinesPolicy".freeze, - "schemas:domainIncludes": "schemas:NewsMediaOrganization".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subPropertyOf: "schemas:publishingPrinciples".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nonEqual, comment: "This ordering relation for qualitative values indicates that the subject is not equal to the object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QualitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "nonEqual".freeze, - "schemas:domainIncludes": "schemas:QualitativeValue".freeze, - "schemas:rangeIncludes": "schemas:QualitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nonProprietaryName, comment: "The generic name of this drug or supplement.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DietarySupplement".freeze, "https://schema.org/Drug".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "nonProprietaryName".freeze, - "schemas:domainIncludes": ["schemas:DietarySupplement".freeze, "schemas:Drug".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nonprofitStatus, comment: "nonprofit Status indicates the legal status of a non-profit organization in its primary place of business.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/NonprofitType".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "nonprofitStatus".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:NonprofitType".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :normalRange, comment: "Range of acceptable values for a typical patient, when applicable.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalTest".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MedicalEnumeration".freeze, "https://schema.org/Text".freeze], label: "normalRange".freeze, - "schemas:domainIncludes": "schemas:MedicalTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:MedicalEnumeration".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nsn, comment: "Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Product".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2126".freeze, label: "nsn".freeze, - "schemas:domainIncludes": "schemas:Product".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2126".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numAdults, comment: "The number of adults staying in the unit.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LodgingReservation".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/QuantitativeValue".freeze], label: "numAdults".freeze, - "schemas:domainIncludes": "schemas:LodgingReservation".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:QuantitativeValue".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numChildren, comment: "The number of children staying in the unit.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LodgingReservation".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/QuantitativeValue".freeze], label: "numChildren".freeze, - "schemas:domainIncludes": "schemas:LodgingReservation".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:QuantitativeValue".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/StatisticalPopulation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "numConstraints".freeze, - "schemas:domainIncludes": "schemas:StatisticalPopulation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numTracks, comment: "The number of tracks in this album or playlist.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicPlaylist".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "numTracks".freeze, - "schemas:domainIncludes": "schemas:MusicPlaylist".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/ApartmentComplex".freeze, "https://schema.org/FloorPlan".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfAccommodationUnits".freeze, - "schemas:domainIncludes": ["schemas:ApartmentComplex".freeze, "schemas:FloorPlan".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfAirbags, comment: "The number or type of airbags in the vehicle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "numberOfAirbags".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/ApartmentComplex".freeze, "https://schema.org/FloorPlan".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfAvailableAccommodationUnits".freeze, - "schemas:domainIncludes": ["schemas:ApartmentComplex".freeze, "schemas:FloorPlan".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfAxles, comment: "The number of axles.\\n\\nTypical unit code(s): C62".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "numberOfAxles".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfBathroomsTotal, comment: "The total integer number of bathrooms in a some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): \"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, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/FloorPlan".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfBathroomsTotal".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:FloorPlan".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfBedrooms, comment: "The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]].".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/ApartmentComplex".freeze, "https://schema.org/FloorPlan".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfBedrooms".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:ApartmentComplex".freeze, "schemas:FloorPlan".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfBeds, comment: "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BedDetails".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "numberOfBeds".freeze, - "schemas:domainIncludes": "schemas:BedDetails".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfCredits, comment: "The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Course".freeze, "https://schema.org/EducationalOccupationalProgram".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/StructuredValue".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "numberOfCredits".freeze, - "schemas:domainIncludes": ["schemas:Course".freeze, "schemas:EducationalOccupationalProgram".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:StructuredValue".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfDoors, comment: "The number of doors.\\n\\nTypical unit code(s): C62".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "numberOfDoors".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfEmployees, comment: "The number of employees in an organization e.g. business.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/BusinessAudience".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, label: "numberOfEmployees".freeze, - "schemas:domainIncludes": ["schemas:BusinessAudience".freeze, "schemas:Organization".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfEpisodes, comment: "The number of episodes in this season or series.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "numberOfEpisodes".freeze, - "schemas:domainIncludes": ["schemas:CreativeWorkSeason".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfForwardGears, comment: "The total number of forward gears available for the transmission system of the vehicle.\\n\\nTypical unit code(s): C62".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "numberOfForwardGears".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/FloorPlan".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfFullBathrooms".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:FloorPlan".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/ItemList".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "numberOfItems".freeze, - "schemas:domainIncludes": "schemas:ItemList".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/RepaymentSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "numberOfLoanPayments".freeze, - "schemas:domainIncludes": "schemas:RepaymentSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfPages, comment: "The number of pages in the book.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Book".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "numberOfPages".freeze, - "schemas:domainIncludes": "schemas:Book".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/FloorPlan".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "numberOfPartialBathrooms".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:FloorPlan".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfPlayers, comment: "Indicate how many people can play this game (minimum, maximum, or range).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Game".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, label: "numberOfPlayers".freeze, - "schemas:domainIncludes": ["schemas:Game".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfPreviousOwners, comment: "The number of owners of the vehicle, including the current one.\\n\\nTypical unit code(s): C62".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "numberOfPreviousOwners".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfRooms, comment: "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical 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, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/Apartment".freeze, "https://schema.org/FloorPlan".freeze, "https://schema.org/House".freeze, "https://schema.org/LodgingBusiness".freeze, "https://schema.org/SingleFamilyResidence".freeze, "https://schema.org/Suite".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "numberOfRooms".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:Apartment".freeze, "schemas:FloorPlan".freeze, "schemas:House".freeze, "schemas:LodgingBusiness".freeze, "schemas:SingleFamilyResidence".freeze, "schemas:Suite".freeze], - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberOfSeasons, comment: "The number of seasons in this series.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "numberOfSeasons".freeze, - "schemas:domainIncludes": ["schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :numberedPosition, comment: "A number associated with a role in an organization, for example, the number on an athlete's jersey.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OrganizationRole".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "numberedPosition".freeze, - "schemas:domainIncludes": "schemas:OrganizationRole".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nutrition, comment: "Nutrition information about the recipe or menu item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MenuItem".freeze, "https://schema.org/Recipe".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/NutritionInformation".freeze, label: "nutrition".freeze, - "schemas:domainIncludes": ["schemas:MenuItem".freeze, "schemas:Recipe".freeze], - "schemas:rangeIncludes": "schemas:NutritionInformation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :object, comment: "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read *a book*.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Action".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "object".freeze, - "schemas:domainIncludes": "schemas:Action".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :observationDate, comment: "The observationDate of an [[Observation]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Observation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "observationDate".freeze, - "schemas:domainIncludes": "schemas:Observation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :observedNode, comment: "The observedNode of an [[Observation]], often a [[StatisticalPopulation]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Observation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/StatisticalPopulation".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "observedNode".freeze, - "schemas:domainIncludes": "schemas:Observation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:StatisticalPopulation".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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).\nTypical unit code(s): C62 for person".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Apartment".freeze, "https://schema.org/HotelRoom".freeze, "https://schema.org/SingleFamilyResidence".freeze, "https://schema.org/Suite".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "occupancy".freeze, - "schemas:domainIncludes": ["schemas:Apartment".freeze, "schemas:HotelRoom".freeze, "schemas:SingleFamilyResidence".freeze, "schemas:Suite".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Occupation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AdministrativeArea".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "occupationLocation".freeze, - "schemas:domainIncludes": "schemas:Occupation".freeze, - "schemas:rangeIncludes": "schemas:AdministrativeArea".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :occupationalCategory, comment: "A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) 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.\\n\nNote: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/EducationalOccupationalProgram".freeze, "https://schema.org/JobPosting".freeze, "https://schema.org/Occupation".freeze, "https://schema.org/WorkBasedProgram".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CategoryCode".freeze, "https://schema.org/Text".freeze], + "https://schema.org/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], label: "occupationalCategory".freeze, - "schemas:domainIncludes": ["schemas:EducationalOccupationalProgram".freeze, "schemas:JobPosting".freeze, "schemas:Occupation".freeze, "schemas:WorkBasedProgram".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CategoryCode".freeze, "schemas:Text".freeze], - "schemas: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 + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Course".freeze, "https://schema.org/EducationalOccupationalProgram".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/EducationalOccupationalCredential".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "occupationalCredentialAwarded".freeze, - "schemas:domainIncludes": ["schemas:Course".freeze, "schemas:EducationalOccupationalProgram".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:EducationalOccupationalCredential".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offerCount, comment: "The number of offers for the product.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AggregateOffer".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "offerCount".freeze, - "schemas:domainIncludes": "schemas:AggregateOffer".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offeredBy, comment: "A pointer to the organization or person making the offer.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Offer".freeze, + "https://schema.org/inverseOf": "https://schema.org/makesOffer".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "offeredBy".freeze, - "schemas:domainIncludes": "schemas:Offer".freeze, - "schemas:inverseOf": "schemas:makesOffer".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\n ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/AggregateOffer".freeze, "https://schema.org/CreativeWork".freeze, "https://schema.org/EducationalOccupationalProgram".freeze, "https://schema.org/Event".freeze, "https://schema.org/MenuItem".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze, "https://schema.org/Trip".freeze], + "https://schema.org/inverseOf": "https://schema.org/itemOffered".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "offers".freeze, - "schemas:domainIncludes": ["schemas:AggregateOffer".freeze, "schemas:CreativeWork".freeze, "schemas:EducationalOccupationalProgram".freeze, "schemas:Event".freeze, "schemas:MenuItem".freeze, "schemas:Product".freeze, "schemas:Service".freeze, "schemas:Trip".freeze], - "schemas:inverseOf": "schemas:itemOffered".freeze, - "schemas:rangeIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offersPrescriptionByMail, comment: "Whether prescriptions can be delivered by mail.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HealthPlanFormulary".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "offersPrescriptionByMail".freeze, - "schemas:domainIncludes": "schemas:HealthPlanFormulary".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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 '-'.\\n\\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \\n* Here is an example: <time itemprop=\"openingHours\" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>.\\n* If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CivicStructure".freeze, "https://schema.org/LocalBusiness".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "openingHours".freeze, - "schemas:domainIncludes": ["schemas:CivicStructure".freeze, "schemas:LocalBusiness".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :openingHoursSpecification, comment: "The opening hours of a certain place.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/OpeningHoursSpecification".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "openingHoursSpecification".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": "schemas:OpeningHoursSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :opens, comment: "The opening hour of the place or service on the given day(s) of the week.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OpeningHoursSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Time".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "opens".freeze, - "schemas:domainIncludes": "schemas:OpeningHoursSpecification".freeze, - "schemas:rangeIncludes": "schemas:Time".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :operatingSystem, comment: "Operating systems supported (Windows 7, OSX 10.6, Android 1.6).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "operatingSystem".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :opponent, comment: "A sub property of participant. The opponent on this action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExerciseAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "opponent".freeze, - "schemas:domainIncludes": "schemas:ExerciseAction".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :option, comment: "A sub property of object. The options subject to this action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ChooseAction".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/Thing".freeze], + "https://schema.org/supersededBy": "https://schema.org/actionOption".freeze, label: "option".freeze, - "schemas:domainIncludes": "schemas:ChooseAction".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:Thing".freeze], - "schemas:supersededBy": "schemas:actionOption".freeze, - subPropertyOf: "schemas:object".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderDate, comment: "Date order was placed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "orderDate".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderDelivery, comment: "The delivery of the parcel related to this order or order item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Order".freeze, "https://schema.org/OrderItem".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/ParcelDelivery".freeze, label: "orderDelivery".freeze, - "schemas:domainIncludes": ["schemas:Order".freeze, "schemas:OrderItem".freeze], - "schemas:rangeIncludes": "schemas:ParcelDelivery".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderItemNumber, comment: "The identifier of the order item.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OrderItem".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "orderItemNumber".freeze, - "schemas:domainIncludes": "schemas:OrderItem".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderItemStatus, comment: "The current status of the order item.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OrderItem".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/OrderStatus".freeze, label: "orderItemStatus".freeze, - "schemas:domainIncludes": "schemas:OrderItem".freeze, - "schemas:rangeIncludes": "schemas:OrderStatus".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderNumber, comment: "The identifier of the transaction.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "orderNumber".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderQuantity, comment: "The number of the item ordered. If the property is not set, assume the quantity is one.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OrderItem".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "orderQuantity".freeze, - "schemas:domainIncludes": "schemas:OrderItem".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderStatus, comment: "The current status of the order.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/OrderStatus".freeze, label: "orderStatus".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": "schemas:OrderStatus".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :orderedItem, comment: "The item ordered.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Order".freeze, "https://schema.org/OrderItem".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/OrderItem".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze], label: "orderedItem".freeze, - "schemas:domainIncludes": ["schemas:Order".freeze, "schemas:OrderItem".freeze], - "schemas:rangeIncludes": ["schemas:OrderItem".freeze, "schemas:Product".freeze, "schemas:Service".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :organizer, comment: "An organizer of an Event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "organizer".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :originAddress, comment: "Shipper's address.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParcelDelivery".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PostalAddress".freeze, label: "originAddress".freeze, - "schemas:domainIncludes": "schemas:ParcelDelivery".freeze, - "schemas:rangeIncludes": "schemas:PostalAddress".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :originatesFrom, comment: "The vasculature the lymphatic structure originates, or afferents, from.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LymphaticVessel".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Vessel".freeze, label: "originatesFrom".freeze, - "schemas:domainIncludes": "schemas:LymphaticVessel".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Vessel".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :overdosage, comment: "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "overdosage".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ownedFrom, comment: "The date and time of obtaining the product.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OwnershipInfo".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "ownedFrom".freeze, - "schemas:domainIncludes": "schemas:OwnershipInfo".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ownedThrough, comment: "The date and time of giving up ownership on the product.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OwnershipInfo".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "ownedThrough".freeze, - "schemas:domainIncludes": "schemas:OwnershipInfo".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/NewsMediaOrganization".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AboutPage".freeze, "https://schema.org/CreativeWork".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "ownershipFundingInfo".freeze, - "schemas:domainIncludes": ["schemas:NewsMediaOrganization".freeze, "schemas:Organization".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:AboutPage".freeze, "schemas:CreativeWork".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subPropertyOf: "schemas:publishingPrinciples".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :owns, comment: "Products owned by the organization or person.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/OwnershipInfo".freeze, "https://schema.org/Product".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "owns".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": ["schemas:OwnershipInfo".freeze, "schemas:Product".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageEnd, comment: "The page on which the work ends; for example \"138\" or \"xvi\".".freeze, - equivalentProperty: "bibo:pageEnd".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/pageEnd".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Article".freeze, "https://schema.org/Chapter".freeze, "https://schema.org/PublicationIssue".freeze, "https://schema.org/PublicationVolume".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "pageEnd".freeze, - "schemas:domainIncludes": ["schemas:Article".freeze, "schemas:Chapter".freeze, "schemas:PublicationIssue".freeze, "schemas:PublicationVolume".freeze], - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:Text".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pageStart, comment: "The page on which the work starts; for example \"135\" or \"xiii\".".freeze, - equivalentProperty: "bibo:pageStart".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/pageStart".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Article".freeze, "https://schema.org/Chapter".freeze, "https://schema.org/PublicationIssue".freeze, "https://schema.org/PublicationVolume".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "pageStart".freeze, - "schemas:domainIncludes": ["schemas:Article".freeze, "schemas:Chapter".freeze, "schemas:PublicationIssue".freeze, "schemas:PublicationVolume".freeze], - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:Text".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, - equivalentProperty: "bibo:pages".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/pages".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Article".freeze, "https://schema.org/Chapter".freeze, "https://schema.org/PublicationIssue".freeze, "https://schema.org/PublicationVolume".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "pagination".freeze, - "schemas:domainIncludes": ["schemas:Article".freeze, "schemas:Chapter".freeze, "schemas:PublicationIssue".freeze, "schemas:PublicationVolume".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parent, comment: "A parent of this person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "parent".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parentItem, comment: "The parent of a question, answer or item in general.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Comment".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Comment".freeze, label: "parentItem".freeze, - "schemas:domainIncludes": "schemas:Comment".freeze, - "schemas:rangeIncludes": "schemas:Comment".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parentOrganization, comment: "The larger organization that this organization is a [[subOrganization]] of, if any.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/inverseOf": "https://schema.org/subOrganization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "parentOrganization".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:inverseOf": "schemas:subOrganization".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parentService, comment: "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastService".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BroadcastService".freeze, label: "parentService".freeze, - "schemas:domainIncludes": "schemas:BroadcastService".freeze, - "schemas:rangeIncludes": "schemas:BroadcastService".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parents, comment: "A parents of the person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, + "https://schema.org/supersededBy": "https://schema.org/parent".freeze, label: "parents".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - "schemas:supersededBy": "schemas:parent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfEpisode, comment: "The episode to which this clip belongs.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Clip".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Episode".freeze, label: "partOfEpisode".freeze, - "schemas:domainIncludes": "schemas:Clip".freeze, - "schemas:rangeIncludes": "schemas:Episode".freeze, - subPropertyOf: "schemas:isPartOf".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfInvoice, comment: "The order is being paid as part of the referenced Invoice.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Invoice".freeze, label: "partOfInvoice".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": "schemas:Invoice".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfOrder, comment: "The overall order the items in this delivery were included in.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParcelDelivery".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Order".freeze, label: "partOfOrder".freeze, - "schemas:domainIncludes": "schemas:ParcelDelivery".freeze, - "schemas:rangeIncludes": "schemas:Order".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfSeason, comment: "The season to which this episode belongs.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Clip".freeze, "https://schema.org/Episode".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWorkSeason".freeze, label: "partOfSeason".freeze, - "schemas:domainIncludes": ["schemas:Clip".freeze, "schemas:Episode".freeze], - "schemas:rangeIncludes": "schemas:CreativeWorkSeason".freeze, - subPropertyOf: "schemas:isPartOf".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfSeries, comment: "The series to which this episode or season belongs.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Clip".freeze, "https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/Episode".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWorkSeries".freeze, label: "partOfSeries".freeze, - "schemas:domainIncludes": ["schemas:Clip".freeze, "schemas:CreativeWorkSeason".freeze, "schemas:Episode".freeze], - "schemas:rangeIncludes": "schemas:CreativeWorkSeries".freeze, - subPropertyOf: "schemas:isPartOf".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfSystem, comment: "The anatomical or organ system that this structure is part of.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AnatomicalStructure".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AnatomicalSystem".freeze, label: "partOfSystem".freeze, - "schemas:domainIncludes": "schemas:AnatomicalStructure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AnatomicalSystem".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partOfTVSeries, comment: "The TV series to which this episode or season belongs.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/TVClip".freeze, "https://schema.org/TVEpisode".freeze, "https://schema.org/TVSeason".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/TVSeries".freeze, + "https://schema.org/supersededBy": "https://schema.org/partOfSeries".freeze, label: "partOfTVSeries".freeze, - "schemas:domainIncludes": ["schemas:TVClip".freeze, "schemas:TVEpisode".freeze, "schemas:TVSeason".freeze], - "schemas:rangeIncludes": "schemas:TVSeries".freeze, - "schemas:supersededBy": "schemas:partOfSeries".freeze, - subPropertyOf: "schemas:isPartOf".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/isPartOf".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Trip".freeze, + "https://schema.org/inverseOf": "https://schema.org/subTrip".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Trip".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "partOfTrip".freeze, - "schemas:domainIncludes": "schemas:Trip".freeze, - "schemas:inverseOf": "schemas:subTrip".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Trip".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :participant, comment: "Other co-agents that participated in the action indirectly. e.g. John wrote a book with *Steve*.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Action".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "participant".freeze, - "schemas:domainIncludes": "schemas:Action".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :partySize, comment: "Number of people the reservation should accommodate.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/FoodEstablishmentReservation".freeze, "https://schema.org/TaxiReservation".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/QuantitativeValue".freeze], label: "partySize".freeze, - "schemas:domainIncludes": ["schemas:FoodEstablishmentReservation".freeze, "schemas:TaxiReservation".freeze], - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:QuantitativeValue".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :passengerPriorityStatus, comment: "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FlightReservation".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze], label: "passengerPriorityStatus".freeze, - "schemas:domainIncludes": "schemas:FlightReservation".freeze, - "schemas:rangeIncludes": ["schemas:QualitativeValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :passengerSequenceNumber, comment: "The passenger's sequence number as assigned by the airline.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FlightReservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "passengerSequenceNumber".freeze, - "schemas:domainIncludes": "schemas:FlightReservation".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pathophysiology, comment: "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MedicalCondition".freeze, "https://schema.org/PhysicalActivity".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "pathophysiology".freeze, - "schemas:domainIncludes": ["schemas:MedicalCondition".freeze, "schemas:PhysicalActivity".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pattern, comment: "A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Product".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "pattern".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Product".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :payload, comment: "The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]\\n* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "payload".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentAccepted, comment: "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LocalBusiness".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "paymentAccepted".freeze, - "schemas:domainIncludes": "schemas:LocalBusiness".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentDue, comment: "The date that payment is due.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Invoice".freeze, "https://schema.org/Order".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, + "https://schema.org/supersededBy": "https://schema.org/paymentDueDate".freeze, label: "paymentDue".freeze, - "schemas:domainIncludes": ["schemas:Invoice".freeze, "schemas:Order".freeze], - "schemas:rangeIncludes": "schemas:DateTime".freeze, - "schemas:supersededBy": "schemas:paymentDueDate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentDueDate, comment: "The date that payment is due.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Invoice".freeze, "https://schema.org/Order".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], label: "paymentDueDate".freeze, - "schemas:domainIncludes": ["schemas:Invoice".freeze, "schemas:Order".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentMethod, comment: "The name of the credit card or other method of payment for the order.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Invoice".freeze, "https://schema.org/Order".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/PaymentMethod".freeze, label: "paymentMethod".freeze, - "schemas:domainIncludes": ["schemas:Invoice".freeze, "schemas:Order".freeze], - "schemas:rangeIncludes": "schemas:PaymentMethod".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentMethodId, comment: "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Invoice".freeze, "https://schema.org/Order".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "paymentMethodId".freeze, - "schemas:domainIncludes": ["schemas:Invoice".freeze, "schemas:Order".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentStatus, comment: "The status of payment; whether the invoice has been paid or not.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Invoice".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/PaymentStatusType".freeze, "https://schema.org/Text".freeze], label: "paymentStatus".freeze, - "schemas:domainIncludes": "schemas:Invoice".freeze, - "schemas:rangeIncludes": ["schemas:PaymentStatusType".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :paymentUrl, comment: "The URL for sending a payment.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Order".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "paymentUrl".freeze, - "schemas:domainIncludes": "schemas:Order".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :penciler, comment: "The individual who draws the primary narrative artwork.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ComicIssue".freeze, "https://schema.org/ComicStory".freeze, "https://schema.org/VisualArtwork".freeze], + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "penciler".freeze, - "schemas:domainIncludes": ["schemas:ComicIssue".freeze, "schemas:ComicStory".freeze, "schemas:VisualArtwork".freeze], - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :percentile10, comment: "The 10th percentile value.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QuantitativeValueDistribution".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "percentile10".freeze, - "schemas:domainIncludes": "schemas:QuantitativeValueDistribution".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :percentile25, comment: "The 25th percentile value.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QuantitativeValueDistribution".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "percentile25".freeze, - "schemas:domainIncludes": "schemas:QuantitativeValueDistribution".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :percentile75, comment: "The 75th percentile value.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QuantitativeValueDistribution".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "percentile75".freeze, - "schemas:domainIncludes": "schemas:QuantitativeValueDistribution".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :percentile90, comment: "The 90th percentile value.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/QuantitativeValueDistribution".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "percentile90".freeze, - "schemas:domainIncludes": "schemas:QuantitativeValueDistribution".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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](http://en.wikipedia.org/wiki/ISO_8601).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HowTo".freeze, "https://schema.org/HowToDirection".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, label: "performTime".freeze, - "schemas:domainIncludes": ["schemas:HowTo".freeze, "schemas:HowToDirection".freeze], - "schemas:rangeIncludes": "schemas:Duration".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :performer, comment: "A performer at the event—for example, a presenter, musician, musical group or actor.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "performer".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :performerIn, comment: "Event that this person is a performer or participant in.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Event".freeze, label: "performerIn".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Event".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :performers, comment: "The main performer or performers of the event—for example, a presenter, musician, or actor.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/supersededBy": "https://schema.org/performer".freeze, label: "performers".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:supersededBy": "schemas:performer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permissionType, comment: "The type of permission granted the person, organization, or audience.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DigitalDocumentPermission".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DigitalDocumentPermissionType".freeze, label: "permissionType".freeze, - "schemas:domainIncludes": "schemas:DigitalDocumentPermission".freeze, - "schemas:rangeIncludes": "schemas:DigitalDocumentPermissionType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permissions, comment: "Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "permissions".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permitAudience, comment: "The target audience for this permit.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Permit".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Audience".freeze, label: "permitAudience".freeze, - "schemas:domainIncludes": "schemas:Permit".freeze, - "schemas:rangeIncludes": "schemas:Audience".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :permittedUsage, comment: "Indications regarding the permitted usage of the accommodation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Accommodation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "permittedUsage".freeze, - "schemas:domainIncludes": "schemas:Accommodation".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/ApartmentComplex".freeze, "https://schema.org/FloorPlan".freeze, "https://schema.org/LodgingBusiness".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Boolean".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "petsAllowed".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:ApartmentComplex".freeze, "schemas:FloorPlan".freeze, "schemas:LodgingBusiness".freeze], - "schemas:rangeIncludes": ["schemas:Boolean".freeze, "schemas:Text".freeze], - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/PronounceableText".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, label: "phoneticText".freeze, - "schemas:domainIncludes": "schemas:PronounceableText".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :photo, comment: "A photograph of this place.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ImageObject".freeze, "https://schema.org/Photograph".freeze], label: "photo".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": ["schemas:ImageObject".freeze, "schemas:Photograph".freeze], - subPropertyOf: "schemas:image".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/image".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :photos, comment: "Photographs of this place.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ImageObject".freeze, "https://schema.org/Photograph".freeze], + "https://schema.org/supersededBy": "https://schema.org/photo".freeze, label: "photos".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": ["schemas:ImageObject".freeze, "schemas:Photograph".freeze], - "schemas:supersededBy": "schemas:photo".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, label: "physicalRequirement".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :physiologicalBenefits, comment: "Specific physiologic benefits associated to the plan.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Diet".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "physiologicalBenefits".freeze, - "schemas:domainIncludes": "schemas:Diet".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pickupLocation, comment: "Where a taxi will pick up a passenger or a rental car can be picked up.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/RentalCarReservation".freeze, "https://schema.org/TaxiReservation".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "pickupLocation".freeze, - "schemas:domainIncludes": ["schemas:RentalCarReservation".freeze, "schemas:TaxiReservation".freeze], - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pickupTime, comment: "When a taxi will pickup a passenger or a rental car can be picked up.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/RentalCarReservation".freeze, "https://schema.org/TaxiReservation".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "pickupTime".freeze, - "schemas:domainIncludes": ["schemas:RentalCarReservation".freeze, "schemas:TaxiReservation".freeze], - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :playMode, comment: "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/VideoGame".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/GamePlayMode".freeze, label: "playMode".freeze, - "schemas:domainIncludes": ["schemas:VideoGame".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:GamePlayMode".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :playerType, comment: "Player type required—for example, Flash or Silverlight.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "playerType".freeze, - "schemas:domainIncludes": "schemas:MediaObject".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :playersOnline, comment: "Number of players on the server.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GameServer".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "playersOnline".freeze, - "schemas:domainIncludes": "schemas:GameServer".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :polygon, comment: "A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GeoShape".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "polygon".freeze, - "schemas:domainIncludes": "schemas:GeoShape".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :populationType, comment: "Indicates the populationType common to all members of a [[StatisticalPopulation]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/StatisticalPopulation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Class".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "populationType".freeze, - "schemas:domainIncludes": "schemas:StatisticalPopulation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Class".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :position, comment: "The position of an item in a series or sequence of items.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/ListItem".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/Text".freeze], label: "position".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:ListItem".freeze], - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :possibleComplication, comment: "A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "possibleComplication".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :possibleTreatment, comment: "A possible treatment to address this condition, sign or symptom.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MedicalCondition".freeze, "https://schema.org/MedicalSignOrSymptom".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTherapy".freeze, label: "possibleTreatment".freeze, - "schemas:domainIncludes": ["schemas:MedicalCondition".freeze, "schemas:MedicalSignOrSymptom".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTherapy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postOfficeBoxNumber, comment: "The post office box number for PO box addresses.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PostalAddress".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "postOfficeBoxNumber".freeze, - "schemas:domainIncludes": "schemas:PostalAddress".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postOp, comment: "A description of the postoperative procedures, care, and/or followups for this device.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalDevice".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "postOp".freeze, - "schemas:domainIncludes": "schemas:MedicalDevice".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postalCode, comment: "The postal code. For example, 94043.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DefinedRegion".freeze, "https://schema.org/GeoCoordinates".freeze, "https://schema.org/GeoShape".freeze, "https://schema.org/PostalAddress".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCode".freeze, - "schemas:domainIncludes": ["schemas:DefinedRegion".freeze, "schemas:GeoCoordinates".freeze, "schemas:GeoShape".freeze, "schemas:PostalAddress".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postalCodeBegin, comment: "First postal code in a range (included).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PostalCodeRangeSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCodeBegin".freeze, - "schemas:domainIncludes": "schemas:PostalCodeRangeSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postalCodeEnd, comment: "Last postal code in the range (included). Needs to be after [[postalCodeBegin]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PostalCodeRangeSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCodeEnd".freeze, - "schemas:domainIncludes": "schemas:PostalCodeRangeSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/DefinedRegion".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCodePrefix".freeze, - "schemas:domainIncludes": "schemas:DefinedRegion".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :postalCodeRange, comment: "A defined range of postal codes.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DefinedRegion".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PostalCodeRangeSpecification".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "postalCodeRange".freeze, - "schemas:domainIncludes": "schemas:DefinedRegion".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:PostalCodeRangeSpecification".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :potentialAction, comment: "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Action".freeze, label: "potentialAction".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": "schemas:Action".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :preOp, comment: "A description of the workup, testing, and other preparations required before implanting this device.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalDevice".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "preOp".freeze, - "schemas:domainIncludes": "schemas:MedicalDevice".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :predecessorOf, comment: "A pointer from a previous, often discontinued variant of the product to its newer variant.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProductModel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ProductModel".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "predecessorOf".freeze, - "schemas:domainIncludes": "schemas:ProductModel".freeze, - "schemas:rangeIncludes": "schemas:ProductModel".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pregnancyCategory, comment: "Pregnancy category of this drug.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DrugPregnancyCategory".freeze, label: "pregnancyCategory".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DrugPregnancyCategory".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pregnancyWarning, comment: "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "pregnancyWarning".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prepTime, comment: "The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HowTo".freeze, "https://schema.org/HowToDirection".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, label: "prepTime".freeze, - "schemas:domainIncludes": ["schemas:HowTo".freeze, "schemas:HowToDirection".freeze], - "schemas:rangeIncludes": "schemas:Duration".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :preparation, comment: "Typical preparation that a patient must undergo before having the procedure performed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalProcedure".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MedicalEntity".freeze, "https://schema.org/Text".freeze], label: "preparation".freeze, - "schemas:domainIncludes": "schemas:MedicalProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:MedicalEntity".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prescribingInfo, comment: "Link to prescribing information for the drug.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "prescribingInfo".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prescriptionStatus, comment: "Indicates the status of drug prescription eg. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DrugPrescriptionStatus".freeze, "https://schema.org/Text".freeze], label: "prescriptionStatus".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DrugPrescriptionStatus".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :previousItem, comment: "A link to the ListItem that preceeds the current one.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ListItem".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ListItem".freeze, label: "previousItem".freeze, - "schemas:domainIncludes": "schemas:ListItem".freeze, - "schemas:rangeIncludes": "schemas:ListItem".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :previousStartDate, comment: "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "previousStartDate".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :price, comment: "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\\n\\nUsage guidelines:\\n\\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Offer".freeze, "https://schema.org/PriceSpecification".freeze, "https://schema.org/TradeAction".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "price".freeze, - "schemas:domainIncludes": ["schemas:Offer".freeze, "schemas:PriceSpecification".freeze, "schemas:TradeAction".freeze], - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceComponent, comment: "This property links to all [[UnitPriceSpecification]] nodes that apply in parallel for the [[CompoundPriceSpecification]] node.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CompoundPriceSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/UnitPriceSpecification".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "priceComponent".freeze, - "schemas:domainIncludes": "schemas:CompoundPriceSpecification".freeze, - "schemas:rangeIncludes": "schemas:UnitPriceSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceComponentType, comment: "Identifies a price component (for example, a line item on an invoice), part of the total price for an offer.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/UnitPriceSpecification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PriceComponentTypeEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "priceComponentType".freeze, - "schemas:domainIncludes": "schemas:UnitPriceSpecification".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:PriceComponentTypeEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceCurrency, comment: "The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Offer".freeze, "https://schema.org/PriceSpecification".freeze, "https://schema.org/Reservation".freeze, "https://schema.org/Ticket".freeze, "https://schema.org/TradeAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "priceCurrency".freeze, - "schemas:domainIncludes": ["schemas:Offer".freeze, "schemas:PriceSpecification".freeze, "schemas:Reservation".freeze, "schemas:Ticket".freeze, "schemas:TradeAction".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceRange, comment: "The price range of the business, for example ```$$$```.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LocalBusiness".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "priceRange".freeze, - "schemas:domainIncludes": "schemas:LocalBusiness".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceSpecification, comment: "One or more detailed price specifications, indicating the unit price and delivery or payment charges.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/TradeAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/PriceSpecification".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "priceSpecification".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:TradeAction".freeze], - "schemas:rangeIncludes": "schemas:PriceSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceType, comment: "Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CompoundPriceSpecification".freeze, "https://schema.org/UnitPriceSpecification".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/PriceTypeEnumeration".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "priceType".freeze, - "schemas:domainIncludes": ["schemas:CompoundPriceSpecification".freeze, "schemas:UnitPriceSpecification".freeze], - "schemas:rangeIncludes": ["schemas:PriceTypeEnumeration".freeze, "schemas:Text".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :priceValidUntil, comment: "The date after which the price is no longer available.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Offer".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "priceValidUntil".freeze, - "schemas:domainIncludes": "schemas:Offer".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :primaryImageOfPage, comment: "Indicates the main image on the page.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebPage".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ImageObject".freeze, label: "primaryImageOfPage".freeze, - "schemas:domainIncludes": "schemas:WebPage".freeze, - "schemas:rangeIncludes": "schemas:ImageObject".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :primaryPrevention, comment: "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTherapy".freeze, label: "primaryPrevention".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTherapy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :printColumn, comment: "The number of the column in which the NewsArticle appears in the print edition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NewsArticle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "printColumn".freeze, - "schemas:domainIncludes": "schemas:NewsArticle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :printEdition, comment: "The edition of the print product in which the NewsArticle appears.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NewsArticle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "printEdition".freeze, - "schemas:domainIncludes": "schemas:NewsArticle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :printPage, comment: "If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NewsArticle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "printPage".freeze, - "schemas:domainIncludes": "schemas:NewsArticle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :printSection, comment: "If this NewsArticle appears in print, this field indicates the print section in which the article appeared.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NewsArticle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "printSection".freeze, - "schemas:domainIncludes": "schemas:NewsArticle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :procedure, comment: "A description of the procedure involved in setting up, using, and/or installing the device.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalDevice".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "procedure".freeze, - "schemas:domainIncludes": "schemas:MedicalDevice".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :procedureType, comment: "The type of procedure, for example Surgical, Noninvasive, or Percutaneous.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalProcedure".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalProcedureType".freeze, label: "procedureType".freeze, - "schemas:domainIncludes": "schemas:MedicalProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalProcedureType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :processingTime, comment: "Estimated processing time for the service using this channel.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ServiceChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, label: "processingTime".freeze, - "schemas:domainIncludes": "schemas:ServiceChannel".freeze, - "schemas:rangeIncludes": "schemas:Duration".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :processorRequirements, comment: "Processor architecture required to run the application (e.g. IA64).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "processorRequirements".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :producer, comment: "The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "producer".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :produces, comment: "The tangible thing generated by the service, e.g. a passport, permit, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Service".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/supersededBy": "https://schema.org/serviceOutput".freeze, label: "produces".freeze, - "schemas:domainIncludes": "schemas:Service".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - "schemas:supersededBy": "schemas:serviceOutput".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productGroupID, comment: "Indicates a textual identifier for a ProductGroup.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProductGroup".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "productGroupID".freeze, - "schemas:domainIncludes": "schemas:ProductGroup".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productID, comment: "The product identifier, such as ISBN. For example: ``` meta itemprop=\"productID\" content=\"isbn:123-456-789\" ```.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Product".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "productID".freeze, - "schemas:domainIncludes": "schemas:Product".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productReturnDays, comment: "The productReturnDays property indicates the number of days (from purchase) within which relevant product return policy is applicable.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProductReturnPolicy".freeze, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "https://schema.org/supersededBy": "https://schema.org/merchantReturnDays".freeze, label: "productReturnDays".freeze, - "schemas:domainIncludes": "schemas:ProductReturnPolicy".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - "schemas:supersededBy": "schemas:merchantReturnDays".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productReturnLink, comment: "Indicates a Web page or service by URL, for product return.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProductReturnPolicy".freeze, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "https://schema.org/supersededBy": "https://schema.org/merchantReturnLink".freeze, label: "productReturnLink".freeze, - "schemas:domainIncludes": "schemas:ProductReturnPolicy".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - "schemas:supersededBy": "schemas:merchantReturnLink".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productSupported, comment: "The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\").".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ContactPoint".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Product".freeze, "https://schema.org/Text".freeze], label: "productSupported".freeze, - "schemas:domainIncludes": "schemas:ContactPoint".freeze, - "schemas:rangeIncludes": ["schemas:Product".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productionCompany, comment: "The production company or studio responsible for the item e.g. series, video game, episode etc.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/Episode".freeze, "https://schema.org/MediaObject".freeze, "https://schema.org/Movie".freeze, "https://schema.org/MovieSeries".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "productionCompany".freeze, - "schemas:domainIncludes": ["schemas:CreativeWorkSeason".freeze, "schemas:Episode".freeze, "schemas:MediaObject".freeze, "schemas:Movie".freeze, "schemas:MovieSeries".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :productionDate, comment: "The date of production of the item, e.g. vehicle.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Product".freeze, "https://schema.org/Vehicle".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "productionDate".freeze, - "schemas:domainIncludes": ["schemas:Product".freeze, "schemas:Vehicle".freeze], - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :proficiencyLevel, comment: "Proficiency needed for this content; expected values: 'Beginner', 'Expert'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TechArticle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "proficiencyLevel".freeze, - "schemas:domainIncludes": "schemas:TechArticle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programMembershipUsed, comment: "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Reservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ProgramMembership".freeze, label: "programMembershipUsed".freeze, - "schemas:domainIncludes": "schemas:Reservation".freeze, - "schemas:rangeIncludes": "schemas:ProgramMembership".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programName, comment: "The program providing the membership.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProgramMembership".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "programName".freeze, - "schemas:domainIncludes": "schemas:ProgramMembership".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programPrerequisites, comment: "Prerequisites for enrolling in the program.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AlignmentObject".freeze, "https://schema.org/Course".freeze, "https://schema.org/EducationalOccupationalCredential".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "programPrerequisites".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:AlignmentObject".freeze, "schemas:Course".freeze, "schemas:EducationalOccupationalCredential".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programType, comment: "The type of educational or occupational program. For example, classroom, internship, alternance, etc..".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2460".freeze, label: "programType".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2460".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programmingLanguage, comment: "The computer programming language.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareSourceCode".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ComputerLanguage".freeze, "https://schema.org/Text".freeze], label: "programmingLanguage".freeze, - "schemas:domainIncludes": "schemas:SoftwareSourceCode".freeze, - "schemas:rangeIncludes": ["schemas:ComputerLanguage".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :programmingModel, comment: "Indicates whether API is managed or unmanaged.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/APIReference".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "programmingModel".freeze, - "schemas:domainIncludes": "schemas:APIReference".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :propertyID, comment: "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValue".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "propertyID".freeze, - "schemas:domainIncludes": "schemas:PropertyValue".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :proprietaryName, comment: "Proprietary name given to the diet plan, typically by its originator or creator.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DietarySupplement".freeze, "https://schema.org/Drug".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "proprietaryName".freeze, - "schemas:domainIncludes": ["schemas:DietarySupplement".freeze, "schemas:Drug".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :proteinContent, comment: "The number of grams of protein.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "proteinContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/EducationalOccupationalProgram".freeze, "https://schema.org/Invoice".freeze, "https://schema.org/ParcelDelivery".freeze, "https://schema.org/Reservation".freeze, "https://schema.org/Service".freeze, "https://schema.org/Trip".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "provider".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:EducationalOccupationalProgram".freeze, "schemas:Invoice".freeze, "schemas:ParcelDelivery".freeze, "schemas:Reservation".freeze, "schemas:Service".freeze, "schemas:Trip".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :providerMobility, comment: "Indicates the mobility of a provided service (e.g. 'static', 'dynamic').".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Service".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "providerMobility".freeze, - "schemas:domainIncludes": "schemas:Service".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :providesBroadcastService, comment: "The BroadcastService offered on this channel.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BroadcastChannel".freeze, + "https://schema.org/inverseOf": "https://schema.org/hasBroadcastChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BroadcastService".freeze, label: "providesBroadcastService".freeze, - "schemas:domainIncludes": "schemas:BroadcastChannel".freeze, - "schemas:inverseOf": "schemas:hasBroadcastChannel".freeze, - "schemas:rangeIncludes": "schemas:BroadcastService".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :providesService, comment: "The service provided by this channel.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ServiceChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Service".freeze, label: "providesService".freeze, - "schemas:domainIncludes": "schemas:ServiceChannel".freeze, - "schemas:rangeIncludes": "schemas:Service".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicAccess, comment: "A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "publicAccess".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicTransportClosuresInfo, comment: "Information about public transport closures.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/URL".freeze, "https://schema.org/WebContent".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "publicTransportClosuresInfo".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:URL".freeze, "schemas:WebContent".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publication, comment: "A publication event associated with the item.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PublicationEvent".freeze, label: "publication".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:PublicationEvent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publicationType, comment: "The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalScholarlyArticle".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "publicationType".freeze, - "schemas:domainIncludes": "schemas:MedicalScholarlyArticle".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishedBy, comment: "An agent associated with the publication event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PublicationEvent".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "publishedBy".freeze, - "schemas:domainIncludes": "schemas:PublicationEvent".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishedOn, comment: "A broadcast service associated with the publication event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PublicationEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BroadcastService".freeze, label: "publishedOn".freeze, - "schemas:domainIncludes": "schemas:PublicationEvent".freeze, - "schemas:rangeIncludes": "schemas:BroadcastService".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publisher, comment: "The publisher of the creative work.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "publisher".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publisherImprint, comment: "The publishing division which published the comic.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "publisherImprint".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :publishingPrinciples, comment: "The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.\n".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], label: "publishingPrinciples".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :purchaseDate, comment: "The date the item e.g. vehicle was purchased by the current owner.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Product".freeze, "https://schema.org/Vehicle".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "purchaseDate".freeze, - "schemas:domainIncludes": ["schemas:Product".freeze, "schemas:Vehicle".freeze], - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :qualifications, comment: "Specific qualifications required for this role or Occupation.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/JobPosting".freeze, "https://schema.org/Occupation".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/EducationalOccupationalCredential".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], label: "qualifications".freeze, - "schemas:domainIncludes": ["schemas:JobPosting".freeze, "schemas:Occupation".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:EducationalOccupationalCredential".freeze, "schemas:Text".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :quarantineGuidelines, comment: "Guidelines about quarantine rules, e.g. in the context of a pandemic.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/URL".freeze, "https://schema.org/WebContent".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "quarantineGuidelines".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:URL".freeze, "schemas:WebContent".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :query, comment: "A sub property of instrument. The query used on this action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SearchAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "query".freeze, - "schemas:domainIncludes": "schemas:SearchAction".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "schemas:instrument".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :quest, comment: "The task that a player-controlled character, or group of characters may complete in order to gain a reward.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Game".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "quest".freeze, - "schemas:domainIncludes": ["schemas:Game".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :question, comment: "A sub property of object. A question.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AskAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Question".freeze, label: "question".freeze, - "schemas:domainIncludes": "schemas:AskAction".freeze, - "schemas:rangeIncludes": "schemas:Question".freeze, - subPropertyOf: "schemas:object".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rangeIncludes, comment: "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Property".freeze, + "https://schema.org/isPartOf": "https://meta.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Class".freeze, label: "rangeIncludes".freeze, - "schemas:domainIncludes": "schemas:Property".freeze, - "schemas:isPartOf": "https://meta.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Class".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingCount, comment: "The count of total number of ratings.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AggregateRating".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "ratingCount".freeze, - "schemas:domainIncludes": "schemas:AggregateRating".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Rating".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2300".freeze, label: "ratingExplanation".freeze, - "schemas:domainIncludes": "schemas:Rating".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2300".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ratingValue, comment: "The rating for the content.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Rating".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "ratingValue".freeze, - "schemas:domainIncludes": "schemas:Rating".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :readBy, comment: "A person who reads (performs) the audiobook.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Audiobook".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "readBy".freeze, - "schemas:domainIncludes": "schemas:Audiobook".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - subPropertyOf: "schemas:actor".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/actor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :readonlyValue, comment: "Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a \"hidden\" input in an HTML form.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValueSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "readonlyValue".freeze, - "schemas:domainIncludes": "schemas:PropertyValueSpecification".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :realEstateAgent, comment: "A sub property of participant. The real estate agent involved in the action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/RentAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/RealEstateAgent".freeze, label: "realEstateAgent".freeze, - "schemas:domainIncludes": "schemas:RentAction".freeze, - "schemas:rangeIncludes": "schemas:RealEstateAgent".freeze, - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipe, comment: "A sub property of instrument. The recipe/instructions used to perform the action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CookAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Recipe".freeze, label: "recipe".freeze, - "schemas:domainIncludes": "schemas:CookAction".freeze, - "schemas:rangeIncludes": "schemas:Recipe".freeze, - subPropertyOf: "schemas:instrument".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeCategory, comment: "The category of the recipe—for example, appetizer, entree, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Recipe".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "recipeCategory".freeze, - "schemas:domainIncludes": "schemas:Recipe".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeCuisine, comment: "The cuisine of the recipe (for example, French or Ethiopian).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Recipe".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "recipeCuisine".freeze, - "schemas:domainIncludes": "schemas:Recipe".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeIngredient, comment: "A single ingredient used in the recipe, e.g. sugar, flour or garlic.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Recipe".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "recipeIngredient".freeze, - "schemas:domainIncludes": "schemas:Recipe".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - subPropertyOf: "schemas:supply".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/supply".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeInstructions, comment: "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Recipe".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/ItemList".freeze, "https://schema.org/Text".freeze], label: "recipeInstructions".freeze, - "schemas:domainIncludes": "schemas:Recipe".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:ItemList".freeze, "schemas:Text".freeze], - subPropertyOf: "schemas:step".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/step".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeYield, comment: "The quantity produced by the recipe (for example, number of people served, number of servings, etc).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Recipe".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QuantitativeValue".freeze, "https://schema.org/Text".freeze], label: "recipeYield".freeze, - "schemas:domainIncludes": "schemas:Recipe".freeze, - "schemas:rangeIncludes": ["schemas:QuantitativeValue".freeze, "schemas:Text".freeze], - subPropertyOf: "schemas:yield".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/yield".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipient, comment: "A sub property of participant. The participant who is at the receiving end of the action.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/AuthorizeAction".freeze, "https://schema.org/CommunicateAction".freeze, "https://schema.org/DonateAction".freeze, "https://schema.org/GiveAction".freeze, "https://schema.org/Message".freeze, "https://schema.org/PayAction".freeze, "https://schema.org/ReturnAction".freeze, "https://schema.org/SendAction".freeze, "https://schema.org/TipAction".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Audience".freeze, "https://schema.org/ContactPoint".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "recipient".freeze, - "schemas:domainIncludes": ["schemas:AuthorizeAction".freeze, "schemas:CommunicateAction".freeze, "schemas:DonateAction".freeze, "schemas:GiveAction".freeze, "schemas:Message".freeze, "schemas:PayAction".freeze, "schemas:ReturnAction".freeze, "schemas:SendAction".freeze, "schemas:TipAction".freeze], - "schemas:rangeIncludes": ["schemas:Audience".freeze, "schemas:ContactPoint".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalCredential".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "recognizedBy".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalCredential".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recognizingAuthority, comment: "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalEntity".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "recognizingAuthority".freeze, - "schemas:domainIncludes": "schemas:MedicalEntity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recommendationStrength, comment: "Strength of the guideline's recommendation (e.g. 'class I').".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalGuidelineRecommendation".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "recommendationStrength".freeze, - "schemas:domainIncludes": "schemas:MedicalGuidelineRecommendation".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recommendedIntake, comment: "Recommended intake of this supplement for a given population as defined by a specific recommending authority.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DietarySupplement".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/RecommendedDoseSchedule".freeze, label: "recommendedIntake".freeze, - "schemas:domainIncludes": "schemas:DietarySupplement".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:RecommendedDoseSchedule".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordLabel, comment: "The label that issued the release.".freeze, - equivalentProperty: "mo:label".freeze, + equivalentProperty: "http://purl.org/ontology/mo/label".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicRelease".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "recordLabel".freeze, - "schemas:domainIncludes": "schemas:MusicRelease".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordedAs, comment: "An audio recording of the work.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/inverseOf": "https://schema.org/recordingOf".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicRecording".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "recordedAs".freeze, - "schemas:domainIncludes": "schemas:MusicComposition".freeze, - "schemas:inverseOf": "schemas:recordingOf".freeze, - "schemas:rangeIncludes": "schemas:MusicRecording".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordedAt, comment: "The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/inverseOf": "https://schema.org/recordedIn".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Event".freeze, label: "recordedAt".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:inverseOf": "schemas:recordedIn".freeze, - "schemas:rangeIncludes": "schemas:Event".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordedIn, comment: "The CreativeWork that captured all or part of this Event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/inverseOf": "https://schema.org/recordedAt".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "recordedIn".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:inverseOf": "schemas:recordedAt".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recordingOf, comment: "The composition this track is a recording of.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicRecording".freeze, + "https://schema.org/inverseOf": "https://schema.org/recordedAs".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicComposition".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "recordingOf".freeze, - "schemas:domainIncludes": "schemas:MusicRecording".freeze, - "schemas:inverseOf": "schemas:recordedAs".freeze, - "schemas:rangeIncludes": "schemas:MusicComposition".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/LoanOrCredit".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "recourseLoan".freeze, - "schemas:domainIncludes": "schemas:LoanOrCredit".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/UnitPriceSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze], label: "referenceQuantity".freeze, - "schemas:domainIncludes": "schemas:UnitPriceSpecification".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas: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 + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :referencesOrder, comment: "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Invoice".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Order".freeze, label: "referencesOrder".freeze, - "schemas:domainIncludes": "schemas:Invoice".freeze, - "schemas:rangeIncludes": "schemas:Order".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :refundType, comment: "A refundType, from an enumerated list.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MerchantReturnPolicy".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/RefundTypeEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "refundType".freeze, - "schemas:domainIncludes": "schemas:MerchantReturnPolicy".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:RefundTypeEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :regionDrained, comment: "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/LymphaticVessel".freeze, "https://schema.org/Vein".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AnatomicalStructure".freeze, "https://schema.org/AnatomicalSystem".freeze], label: "regionDrained".freeze, - "schemas:domainIncludes": ["schemas:LymphaticVessel".freeze, "schemas:Vein".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:AnatomicalStructure".freeze, "schemas:AnatomicalSystem".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :regionsAllowed, comment: "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "regionsAllowed".freeze, - "schemas:domainIncludes": "schemas:MediaObject".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedAnatomy, comment: "Anatomical systems or structures that relate to the superficial anatomy.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SuperficialAnatomy".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AnatomicalStructure".freeze, "https://schema.org/AnatomicalSystem".freeze], label: "relatedAnatomy".freeze, - "schemas:domainIncludes": "schemas:SuperficialAnatomy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:AnatomicalStructure".freeze, "schemas:AnatomicalSystem".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedCondition, comment: "A medical condition associated with this anatomy.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/AnatomicalStructure".freeze, "https://schema.org/AnatomicalSystem".freeze, "https://schema.org/SuperficialAnatomy".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalCondition".freeze, label: "relatedCondition".freeze, - "schemas:domainIncludes": ["schemas:AnatomicalStructure".freeze, "schemas:AnatomicalSystem".freeze, "schemas:SuperficialAnatomy".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalCondition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedDrug, comment: "Any other drug related to this one, for example commonly-prescribed alternatives.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Drug".freeze, label: "relatedDrug".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Drug".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedLink, comment: "A link related to this web page, for example to other related web pages.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebPage".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "relatedLink".freeze, - "schemas:domainIncludes": "schemas:WebPage".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedStructure, comment: "Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AnatomicalSystem".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AnatomicalStructure".freeze, label: "relatedStructure".freeze, - "schemas:domainIncludes": "schemas:AnatomicalSystem".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AnatomicalStructure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedTherapy, comment: "A medical therapy related to this anatomy.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/AnatomicalStructure".freeze, "https://schema.org/AnatomicalSystem".freeze, "https://schema.org/SuperficialAnatomy".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTherapy".freeze, label: "relatedTherapy".freeze, - "schemas:domainIncludes": ["schemas:AnatomicalStructure".freeze, "schemas:AnatomicalSystem".freeze, "schemas:SuperficialAnatomy".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTherapy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relatedTo, comment: "The most generic familial relation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "relatedTo".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Product".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "releaseDate".freeze, - "schemas:domainIncludes": "schemas:Product".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :releaseNotes, comment: "Description of what changed in this version.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "releaseNotes".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :releaseOf, comment: "The album this is a release of.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MusicRelease".freeze, + "https://schema.org/inverseOf": "https://schema.org/albumRelease".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MusicAlbum".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "releaseOf".freeze, - "schemas:domainIncludes": "schemas:MusicRelease".freeze, - "schemas:inverseOf": "schemas:albumRelease".freeze, - "schemas:rangeIncludes": "schemas:MusicAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :releasedEvent, comment: "The place and time the release was issued, expressed as a PublicationEvent.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PublicationEvent".freeze, label: "releasedEvent".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:PublicationEvent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relevantOccupation, comment: "The Occupation for the JobPosting.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Occupation".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "relevantOccupation".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Occupation".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :relevantSpecialty, comment: "If applicable, a medical specialty in which this entity is relevant.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalEntity".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalSpecialty".freeze, label: "relevantSpecialty".freeze, - "schemas:domainIncludes": "schemas:MedicalEntity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalSpecialty".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :remainingAttendeeCapacity, comment: "The number of attendee places for an event that remain unallocated.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "remainingAttendeeCapacity".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :renegotiableLoan, comment: "Whether the terms for payment of interest can be renegotiated during the life of the loan.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LoanOrCredit".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "renegotiableLoan".freeze, - "schemas:domainIncludes": "schemas:LoanOrCredit".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :repeatCount, comment: "Defines the number of times a recurring [[Event]] will take place".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Schedule".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "repeatCount".freeze, - "schemas:domainIncludes": "schemas:Schedule".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :repeatFrequency, comment: "Defines the frequency at which [[Events]] will occur according to a schedule [[Schedule]]. The intervals between\n events should be defined as a [[Duration]] of time.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Schedule".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Duration".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "repeatFrequency".freeze, - "schemas:domainIncludes": "schemas:Schedule".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Duration".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - subPropertyOf: "schemas:frequency".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/frequency".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :repetitions, comment: "Number of times one should repeat the activity.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExercisePlan".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], label: "repetitions".freeze, - "schemas:domainIncludes": "schemas:ExercisePlan".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :replacee, comment: "A sub property of object. The object that is being replaced.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ReplaceAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "replacee".freeze, - "schemas:domainIncludes": "schemas:ReplaceAction".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - subPropertyOf: "schemas:object".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :replacer, comment: "A sub property of object. The object that replaces.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ReplaceAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "replacer".freeze, - "schemas:domainIncludes": "schemas:ReplaceAction".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - subPropertyOf: "schemas:object".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :replyToUrl, comment: "The URL at which a reply may be posted to the specified UserComment.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/UserComments".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "replyToUrl".freeze, - "schemas:domainIncludes": "schemas:UserComments".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reportNumber, comment: "The number or other unique designator assigned to a Report by the publishing organization.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Report".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "reportNumber".freeze, - "schemas:domainIncludes": "schemas:Report".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :representativeOfPage, comment: "Indicates whether this image is representative of the content of the page.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ImageObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "representativeOfPage".freeze, - "schemas:domainIncludes": "schemas:ImageObject".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/LoanOrCredit".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/Thing".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "requiredCollateral".freeze, - "schemas:domainIncludes": "schemas:LoanOrCredit".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:Thing".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requiredGender, comment: "Audiences defined by a person's gender.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PeopleAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "requiredGender".freeze, - "schemas:domainIncludes": "schemas:PeopleAudience".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requiredMaxAge, comment: "Audiences defined by a person's maximum age.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PeopleAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "requiredMaxAge".freeze, - "schemas:domainIncludes": "schemas:PeopleAudience".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requiredMinAge, comment: "Audiences defined by a person's minimum age.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PeopleAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "requiredMinAge".freeze, - "schemas:domainIncludes": "schemas:PeopleAudience".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requiredQuantity, comment: "The required quantity of the item(s).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HowToItem".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze, "https://schema.org/Text".freeze], label: "requiredQuantity".freeze, - "schemas:domainIncludes": "schemas:HowToItem".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :requirements, comment: "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/supersededBy": "https://schema.org/softwareRequirements".freeze, label: "requirements".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:supersededBy": "schemas:softwareRequirements".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/ActionAccessSpecification".freeze, "https://schema.org/MediaObject".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Boolean".freeze, "https://schema.org/MediaSubscription".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "requiresSubscription".freeze, - "schemas:domainIncludes": ["schemas:ActionAccessSpecification".freeze, "schemas:MediaObject".freeze], - "schemas:rangeIncludes": ["schemas:Boolean".freeze, "schemas:MediaSubscription".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reservationFor, comment: "The thing -- flight, event, restaurant,etc. being reserved.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Reservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "reservationFor".freeze, - "schemas:domainIncludes": "schemas:Reservation".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reservationId, comment: "A unique identifier for the reservation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Reservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "reservationId".freeze, - "schemas:domainIncludes": "schemas:Reservation".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reservationStatus, comment: "The current status of the reservation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Reservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ReservationStatusType".freeze, label: "reservationStatus".freeze, - "schemas:domainIncludes": "schemas:Reservation".freeze, - "schemas:rangeIncludes": "schemas:ReservationStatusType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reservedTicket, comment: "A ticket associated with the reservation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Reservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Ticket".freeze, label: "reservedTicket".freeze, - "schemas:domainIncludes": "schemas:Reservation".freeze, - "schemas:rangeIncludes": "schemas:Ticket".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :responsibilities, comment: "Responsibilities associated with this role or Occupation.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/JobPosting".freeze, "https://schema.org/Occupation".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "responsibilities".freeze, - "schemas:domainIncludes": ["schemas:JobPosting".freeze, "schemas:Occupation".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :restPeriods, comment: "How often one should break from the activity.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExercisePlan".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QuantitativeValue".freeze, "https://schema.org/Text".freeze], label: "restPeriods".freeze, - "schemas:domainIncludes": "schemas:ExercisePlan".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:QuantitativeValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :result, comment: "The result produced in the action. e.g. John wrote *a book*.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Action".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "result".freeze, - "schemas:domainIncludes": "schemas:Action".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resultComment, comment: "A sub property of result. The Comment created or sent as a result of this action.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CommentAction".freeze, "https://schema.org/ReplyAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Comment".freeze, label: "resultComment".freeze, - "schemas:domainIncludes": ["schemas:CommentAction".freeze, "schemas:ReplyAction".freeze], - "schemas:rangeIncludes": "schemas:Comment".freeze, - subPropertyOf: "schemas:result".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/result".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resultReview, comment: "A sub property of result. The review that resulted in the performing of the action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ReviewAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Review".freeze, label: "resultReview".freeze, - "schemas:domainIncludes": "schemas:ReviewAction".freeze, - "schemas:rangeIncludes": "schemas:Review".freeze, - subPropertyOf: "schemas:result".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/result".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :returnFees, comment: "Indicates (via enumerated options) the return fees policy for a MerchantReturnPolicy".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MerchantReturnPolicy".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ReturnFeesEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "returnFees".freeze, - "schemas:domainIncludes": "schemas:MerchantReturnPolicy".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:ReturnFeesEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :returnPolicyCategory, comment: "A returnPolicyCategory expresses at most one of several enumerated kinds of return.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MerchantReturnPolicy".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MerchantReturnEnumeration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "returnPolicyCategory".freeze, - "schemas:domainIncludes": "schemas:MerchantReturnPolicy".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MerchantReturnEnumeration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :review, comment: "A review of the item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Brand".freeze, "https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Place".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Review".freeze, label: "review".freeze, - "schemas:domainIncludes": ["schemas:Brand".freeze, "schemas:CreativeWork".freeze, "schemas:Event".freeze, "schemas:Offer".freeze, "schemas:Organization".freeze, "schemas:Place".freeze, "schemas:Product".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": "schemas:Review".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewAspect, comment: "This Review or Rating is relevant to this part or facet of the itemReviewed.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Guide".freeze, "https://schema.org/Rating".freeze, "https://schema.org/Review".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, label: "reviewAspect".freeze, - "schemas:domainIncludes": ["schemas:Guide".freeze, "schemas:Rating".freeze, "schemas:Review".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewBody, comment: "The actual body of the review.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Review".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "reviewBody".freeze, - "schemas:domainIncludes": "schemas:Review".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewCount, comment: "The count of total number of reviews.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AggregateRating".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "reviewCount".freeze, - "schemas:domainIncludes": "schemas:AggregateRating".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewRating, comment: "The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Review".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Rating".freeze, label: "reviewRating".freeze, - "schemas:domainIncludes": "schemas:Review".freeze, - "schemas:rangeIncludes": "schemas:Rating".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewedBy, comment: "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebPage".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "reviewedBy".freeze, - "schemas:domainIncludes": "schemas:WebPage".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviews, comment: "Review of the item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Place".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Review".freeze, + "https://schema.org/supersededBy": "https://schema.org/review".freeze, label: "reviews".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Offer".freeze, "schemas:Organization".freeze, "schemas:Place".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:Review".freeze, - "schemas:supersededBy": "schemas:review".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :riskFactor, comment: "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalRiskFactor".freeze, label: "riskFactor".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalRiskFactor".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :risks, comment: "Specific physiologic risks associated to the diet plan.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Diet".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "risks".freeze, - "schemas:domainIncludes": "schemas:Diet".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :roleName, comment: "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Role".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "roleName".freeze, - "schemas:domainIncludes": "schemas:Role".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :roofLoad, comment: "The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/BusOrCoach".freeze, "https://schema.org/Car".freeze], + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "roofLoad".freeze, - "schemas:domainIncludes": ["schemas:BusOrCoach".freeze, "schemas:Car".freeze], - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rsvpResponse, comment: "The response (yes, no, maybe) to the RSVP.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/RsvpAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/RsvpResponseType".freeze, label: "rsvpResponse".freeze, - "schemas:domainIncludes": "schemas:RsvpAction".freeze, - "schemas:rangeIncludes": "schemas:RsvpResponseType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :runsTo, comment: "The vasculature the lymphatic structure runs, or efferents, to.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LymphaticVessel".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Vessel".freeze, label: "runsTo".freeze, - "schemas:domainIncludes": "schemas:LymphaticVessel".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Vessel".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :runtime, comment: "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareSourceCode".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/runtimePlatform".freeze, label: "runtime".freeze, - "schemas:domainIncludes": "schemas:SoftwareSourceCode".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:runtimePlatform".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :runtimePlatform, comment: "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareSourceCode".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "runtimePlatform".freeze, - "schemas:domainIncludes": "schemas:SoftwareSourceCode".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rxcui, comment: "The RxCUI drug identifier from RXNORM.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "rxcui".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/DietarySupplement".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "safetyConsideration".freeze, - "schemas:domainIncludes": "schemas:DietarySupplement".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :salaryCurrency, comment: "The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) ) used for the main salary information in this job posting or for this employee.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/EmployeeRole".freeze, "https://schema.org/JobPosting".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "salaryCurrency".freeze, - "schemas:domainIncludes": ["schemas:EmployeeRole".freeze, "schemas:JobPosting".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :salaryUponCompletion, comment: "The expected salary upon completing the training.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MonetaryAmountDistribution".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "salaryUponCompletion".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MonetaryAmountDistribution".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "sameAs".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sampleType, comment: "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareSourceCode".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/supersededBy": "https://schema.org/codeSampleType".freeze, label: "sampleType".freeze, - "schemas:domainIncludes": "schemas:SoftwareSourceCode".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:supersededBy": "schemas:codeSampleType".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :saturatedFatContent, comment: "The number of grams of saturated fat.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "saturatedFatContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Schedule".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "scheduleTimezone".freeze, - "schemas:domainIncludes": "schemas:Schedule".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :scheduledPaymentDate, comment: "The date the invoice is scheduled to be paid.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Invoice".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "scheduledPaymentDate".freeze, - "schemas:domainIncludes": "schemas:Invoice".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :scheduledTime, comment: "The time the object is scheduled to.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PlanAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "scheduledTime".freeze, - "schemas:domainIncludes": "schemas:PlanAction".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :schemaVersion, comment: "Indicates (by URL or string) a particular version of a schema used in some CreativeWork. For example, a document could declare a schemaVersion using an URL such as https://schema.org/version/2.0/ if precise indication of schema version was required by some application. ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "schemaVersion".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :schoolClosuresInfo, comment: "Information about school closures.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/URL".freeze, "https://schema.org/WebContent".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "schoolClosuresInfo".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:URL".freeze, "schemas:WebContent".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :screenCount, comment: "The number of screens in the movie theater.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MovieTheater".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "screenCount".freeze, - "schemas:domainIncludes": "schemas:MovieTheater".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :screenshot, comment: "A link to a screenshot image of the app.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ImageObject".freeze, "https://schema.org/URL".freeze], label: "screenshot".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": ["schemas:ImageObject".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sdDatePublished, comment: "Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, label: "sdDatePublished".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sdLicense, comment: "A license document that applies to this structured data, typically indicated by URL.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, label: "sdLicense".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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\n[[sdPublisher]] property helps make such practices more explicit.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, label: "sdPublisher".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :season, comment: "A season in a media series.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/URL".freeze], + "https://schema.org/supersededBy": "https://schema.org/containsSeason".freeze, label: "season".freeze, - "schemas:domainIncludes": ["schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": ["schemas:CreativeWorkSeason".freeze, "schemas:URL".freeze], - "schemas:supersededBy": "schemas:containsSeason".freeze, - subPropertyOf: "schemas:hasPart".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/hasPart".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seasonNumber, comment: "Position of the season within an ordered group of seasons.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWorkSeason".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/Text".freeze], label: "seasonNumber".freeze, - "schemas:domainIncludes": "schemas:CreativeWorkSeason".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:Text".freeze], - subPropertyOf: "schemas:position".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seasons, comment: "A season in a media series.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWorkSeason".freeze, + "https://schema.org/supersededBy": "https://schema.org/season".freeze, label: "seasons".freeze, - "schemas:domainIncludes": ["schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:CreativeWorkSeason".freeze, - "schemas:supersededBy": "schemas:season".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatNumber, comment: "The location of the reserved seat (e.g., 27).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Seat".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "seatNumber".freeze, - "schemas:domainIncludes": "schemas:Seat".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatRow, comment: "The row location of the reserved seat (e.g., B).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Seat".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "seatRow".freeze, - "schemas:domainIncludes": "schemas:Seat".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatSection, comment: "The section location of the reserved seat (e.g. Orchestra).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Seat".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "seatSection".freeze, - "schemas:domainIncludes": "schemas:Seat".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatingCapacity, 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.\\n\\nTypical unit code(s): C62 for persons ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "seatingCapacity".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seatingType, comment: "The type/class of the seat.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Seat".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze], label: "seatingType".freeze, - "schemas:domainIncludes": "schemas:Seat".freeze, - "schemas:rangeIncludes": ["schemas:QualitativeValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :secondaryPrevention, comment: "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTherapy".freeze, label: "secondaryPrevention".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTherapy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :securityClearanceRequirement, comment: "A description of any security clearance requirements of the job.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, label: "securityClearanceRequirement".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :securityScreening, comment: "The type of security screening the passenger is subject to.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FlightReservation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "securityScreening".freeze, - "schemas:domainIncludes": "schemas:FlightReservation".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seeks, comment: "A pointer to products or services sought by the organization or person (demand).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Demand".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "seeks".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:Demand".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seller, comment: "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/BuyAction".freeze, "https://schema.org/Demand".freeze, "https://schema.org/Flight".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Order".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "seller".freeze, - "schemas:domainIncludes": ["schemas:BuyAction".freeze, "schemas:Demand".freeze, "schemas:Flight".freeze, "schemas:Offer".freeze, "schemas:Order".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sender, comment: "A sub property of participant. The participant who is at the sending end of the action.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Message".freeze, "https://schema.org/ReceiveAction".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Audience".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "sender".freeze, - "schemas:domainIncludes": ["schemas:Message".freeze, "schemas:ReceiveAction".freeze], - "schemas:rangeIncludes": ["schemas:Audience".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, label: "sensoryRequirement".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sensoryUnit, comment: "The neurological pathway extension that inputs and sends information to the brain or spinal cord.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Nerve".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/AnatomicalStructure".freeze, "https://schema.org/SuperficialAnatomy".freeze], label: "sensoryUnit".freeze, - "schemas:domainIncludes": "schemas:Nerve".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:AnatomicalStructure".freeze, "schemas:SuperficialAnatomy".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/IndividualProduct".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "serialNumber".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:IndividualProduct".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seriousAdverseOutcome, comment: "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MedicalDevice".freeze, "https://schema.org/MedicalTherapy".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalEntity".freeze, label: "seriousAdverseOutcome".freeze, - "schemas:domainIncludes": ["schemas:MedicalDevice".freeze, "schemas:MedicalTherapy".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalEntity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serverStatus, comment: "Status of a game server.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GameServer".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/GameServerStatus".freeze, label: "serverStatus".freeze, - "schemas:domainIncludes": "schemas:GameServer".freeze, - "schemas:rangeIncludes": "schemas:GameServerStatus".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servesCuisine, comment: "The cuisine of the restaurant.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/FoodEstablishment".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "servesCuisine".freeze, - "schemas:domainIncludes": "schemas:FoodEstablishment".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceArea, comment: "The geographic area where the service is provided.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/AdministrativeArea".freeze, "https://schema.org/GeoShape".freeze, "https://schema.org/Place".freeze], + "https://schema.org/supersededBy": "https://schema.org/areaServed".freeze, label: "serviceArea".freeze, - "schemas:domainIncludes": ["schemas:ContactPoint".freeze, "schemas:Organization".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": ["schemas:AdministrativeArea".freeze, "schemas:GeoShape".freeze, "schemas:Place".freeze], - "schemas:supersededBy": "schemas:areaServed".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceAudience, comment: "The audience eligible for this service.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Service".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Audience".freeze, + "https://schema.org/supersededBy": "https://schema.org/audience".freeze, label: "serviceAudience".freeze, - "schemas:domainIncludes": "schemas:Service".freeze, - "schemas:rangeIncludes": "schemas:Audience".freeze, - "schemas:supersededBy": "schemas:audience".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceLocation, comment: "The location (e.g. civic structure, local business, etc.) where a person can go to access the service.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ServiceChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "serviceLocation".freeze, - "schemas:domainIncludes": "schemas:ServiceChannel".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceOperator, comment: "The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/GovernmentService".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "serviceOperator".freeze, - "schemas:domainIncludes": "schemas:GovernmentService".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceOutput, comment: "The tangible thing generated by the service, e.g. a passport, permit, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Service".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "serviceOutput".freeze, - "schemas:domainIncludes": "schemas:Service".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servicePhone, comment: "The phone number to use to access the service.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ServiceChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ContactPoint".freeze, label: "servicePhone".freeze, - "schemas:domainIncludes": "schemas:ServiceChannel".freeze, - "schemas:rangeIncludes": "schemas:ContactPoint".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servicePostalAddress, comment: "The address for accessing the service by mail.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ServiceChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/PostalAddress".freeze, label: "servicePostalAddress".freeze, - "schemas:domainIncludes": "schemas:ServiceChannel".freeze, - "schemas:rangeIncludes": "schemas:PostalAddress".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceSmsNumber, comment: "The number to access the service by text message.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ServiceChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ContactPoint".freeze, label: "serviceSmsNumber".freeze, - "schemas:domainIncludes": "schemas:ServiceChannel".freeze, - "schemas:rangeIncludes": "schemas:ContactPoint".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceType, comment: "The type of service being offered, e.g. veterans' benefits, emergency relief, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Service".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/GovernmentBenefitsType".freeze, "https://schema.org/Text".freeze], label: "serviceType".freeze, - "schemas:domainIncludes": "schemas:Service".freeze, - "schemas:rangeIncludes": ["schemas:GovernmentBenefitsType".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :serviceUrl, comment: "The website to access the service.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ServiceChannel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "serviceUrl".freeze, - "schemas:domainIncludes": "schemas:ServiceChannel".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servingSize, comment: "The serving size, in terms of the number of volume or mass.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "servingSize".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sharedContent, comment: "A CreativeWork such as an image, video, or audio clip shared as part of this posting.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SocialMediaPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "sharedContent".freeze, - "schemas:domainIncludes": "schemas:SocialMediaPosting".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shippingDestination, comment: "indicates (possibly multiple) shipping destinations. These can be defined in several ways e.g. postalCode ranges.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DeliveryTimeSettings".freeze, "https://schema.org/OfferShippingDetails".freeze, "https://schema.org/ShippingRateSettings".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DefinedRegion".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingDestination".freeze, - "schemas:domainIncludes": ["schemas:DeliveryTimeSettings".freeze, "schemas:OfferShippingDetails".freeze, "schemas:ShippingRateSettings".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:DefinedRegion".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shippingDetails, comment: "Indicates information about the shipping policies and options associated with an [[Offer]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Offer".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/OfferShippingDetails".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingDetails".freeze, - "schemas:domainIncludes": "schemas:Offer".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:OfferShippingDetails".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shippingLabel, comment: "Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/OfferShippingDetails".freeze, "https://schema.org/ShippingRateSettings".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingLabel".freeze, - "schemas:domainIncludes": ["schemas:OfferShippingDetails".freeze, "schemas:ShippingRateSettings".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/OfferShippingDetails".freeze, "https://schema.org/ShippingRateSettings".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MonetaryAmount".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingRate".freeze, - "schemas:domainIncludes": ["schemas:OfferShippingDetails".freeze, "schemas:ShippingRateSettings".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MonetaryAmount".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shippingSettingsLink, comment: "Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/OfferShippingDetails".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "shippingSettingsLink".freeze, - "schemas:domainIncludes": "schemas:OfferShippingDetails".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sibling, comment: "A sibling of the person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "sibling".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :siblings, comment: "A sibling of the person.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, + "https://schema.org/supersededBy": "https://schema.org/sibling".freeze, label: "siblings".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - "schemas:supersededBy": "schemas:sibling".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :signDetected, comment: "A sign detected by the test.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalTest".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalSign".freeze, label: "signDetected".freeze, - "schemas:domainIncludes": "schemas:MedicalTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalSign".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :signOrSymptom, comment: "A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalSignOrSymptom".freeze, label: "signOrSymptom".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalSignOrSymptom".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :significance, comment: "The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SuperficialAnatomy".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "significance".freeze, - "schemas:domainIncludes": "schemas:SuperficialAnatomy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :significantLink, comment: "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebPage".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "significantLink".freeze, - "schemas:domainIncludes": "schemas:WebPage".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :significantLinks, comment: "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebPage".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, + "https://schema.org/supersededBy": "https://schema.org/significantLink".freeze, label: "significantLinks".freeze, - "schemas:domainIncludes": "schemas:WebPage".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - "schemas:supersededBy": "schemas:significantLink".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :size, comment: "A standardized size of a product or creative work, often simplifying richer information into a simple textual string, either through referring to named sizes or (in the case of product markup), by adopting conventional simplifications. Use of QuantitativeValue with a unitCode or unitText can add more structure; in other cases, the /width, /height, /depth and /weight properties may be more applicable. ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Product".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/QuantitativeValue".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "size".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Product".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:QuantitativeValue".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/JobPosting".freeze, "https://schema.org/Occupation".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/2322".freeze], label: "skills".freeze, - "schemas:domainIncludes": ["schemas:JobPosting".freeze, "schemas:Occupation".freeze], - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/2322".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "sku".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :slogan, comment: "A slogan or motto associated with the item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Brand".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Place".freeze, "https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "slogan".freeze, - "schemas:domainIncludes": ["schemas:Brand".freeze, "schemas:Organization".freeze, "schemas:Place".freeze, "schemas:Product".freeze, "schemas:Service".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "smokingAllowed".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sodiumContent, comment: "The number of milligrams of sodium.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "sodiumContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :softwareAddOn, comment: "Additional content for a software application.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/SoftwareApplication".freeze, label: "softwareAddOn".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:SoftwareApplication".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :softwareHelp, comment: "Software application help.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "softwareHelp".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :softwareRequirements, comment: "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "softwareRequirements".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :softwareVersion, comment: "Version of the software instance.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "softwareVersion".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourceOrganization, comment: "The Organization on whose behalf the creator was working.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "sourceOrganization".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourcedFrom, comment: "The neurological pathway that originates the neurons.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Nerve".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/BrainStructure".freeze, label: "sourcedFrom".freeze, - "schemas:domainIncludes": "schemas:Nerve".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:BrainStructure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spatial, comment: "The \"spatial\" property can be used in cases when more specific properties\n(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.".freeze, - equivalentProperty: "dc:spatial".freeze, + equivalentProperty: "http://purl.org/dc/terms/spatial".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "spatial".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spatialCoverage, comment: "The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of\n contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates\n areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.".freeze, - equivalentProperty: "dc:spatial".freeze, + equivalentProperty: "http://purl.org/dc/terms/spatial".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "spatialCoverage".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Place".freeze, - subPropertyOf: "schemas:contentLocation".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/contentLocation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :speakable, comment: "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the [[cssSelector]] property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.\n\n\nFor 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\nwe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property.\n ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Article".freeze, "https://schema.org/WebPage".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/SpeakableSpecification".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, label: "speakable".freeze, - "schemas:domainIncludes": ["schemas:Article".freeze, "schemas:WebPage".freeze], - "schemas:rangeIncludes": ["schemas:SpeakableSpecification".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :specialCommitments, comment: "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "specialCommitments".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :specialOpeningHoursSpecification, comment: "The special opening hours of a certain place.\\n\\nUse this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].\n ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Place".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/OpeningHoursSpecification".freeze, label: "specialOpeningHoursSpecification".freeze, - "schemas:domainIncludes": "schemas:Place".freeze, - "schemas:rangeIncludes": "schemas:OpeningHoursSpecification".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :specialty, comment: "One of the domain specialities to which this web page's content applies.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WebPage".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Specialty".freeze, label: "specialty".freeze, - "schemas:domainIncludes": "schemas:WebPage".freeze, - "schemas:rangeIncludes": "schemas:Specialty".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :speechToTextMarkup, comment: "Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PronounceableText".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, label: "speechToTextMarkup".freeze, - "schemas:domainIncludes": "schemas:PronounceableText".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nTypical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot\\n\\n*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.\\n* 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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "speed".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spokenByCharacter, comment: "The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Quotation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, label: "spokenByCharacter".freeze, - "schemas:domainIncludes": "schemas:Quotation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze, "https://schema.org/Grant".freeze, "https://schema.org/MedicalStudy".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "sponsor".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Event".freeze, "schemas:Grant".freeze, "schemas:MedicalStudy".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sport, comment: "A type of sport (e.g. Baseball).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/SportsEvent".freeze, "https://schema.org/SportsOrganization".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1951".freeze, label: "sport".freeze, - "schemas:domainIncludes": ["schemas:SportsEvent".freeze, "schemas:SportsOrganization".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1951".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sportsActivityLocation, comment: "A sub property of location. The sports activity location where this action occurred.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExerciseAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/SportsActivityLocation".freeze, label: "sportsActivityLocation".freeze, - "schemas:domainIncludes": "schemas:ExerciseAction".freeze, - "schemas:rangeIncludes": "schemas:SportsActivityLocation".freeze, - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sportsEvent, comment: "A sub property of location. The sports event where this action occurred.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExerciseAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/SportsEvent".freeze, label: "sportsEvent".freeze, - "schemas:domainIncludes": "schemas:ExerciseAction".freeze, - "schemas:rangeIncludes": "schemas:SportsEvent".freeze, - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sportsTeam, comment: "A sub property of participant. The sports team that participated on this action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExerciseAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/SportsTeam".freeze, label: "sportsTeam".freeze, - "schemas:domainIncludes": "schemas:ExerciseAction".freeze, - "schemas:rangeIncludes": "schemas:SportsTeam".freeze, - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spouse, comment: "The person's spouse.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "spouse".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stage, comment: "The stage of the condition, if applicable.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalConditionStage".freeze, label: "stage".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalConditionStage".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stageAsNumber, comment: "The stage represented as a number, e.g. 3.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalConditionStage".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "stageAsNumber".freeze, - "schemas:domainIncludes": "schemas:MedicalConditionStage".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/FoodEstablishment".freeze, "https://schema.org/LodgingBusiness".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Rating".freeze, + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "starRating".freeze, - "schemas:domainIncludes": ["schemas:FoodEstablishment".freeze, "schemas:LodgingBusiness".freeze], - "schemas:rangeIncludes": "schemas:Rating".freeze, - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startDate, comment: "The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/CreativeWorkSeries".freeze, "https://schema.org/DatedMoneySpecification".freeze, "https://schema.org/EducationalOccupationalProgram".freeze, "https://schema.org/Event".freeze, "https://schema.org/Role".freeze, "https://schema.org/Schedule".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, label: "startDate".freeze, - "schemas:domainIncludes": ["schemas:CreativeWorkSeason".freeze, "schemas:CreativeWorkSeries".freeze, "schemas:DatedMoneySpecification".freeze, "schemas:EducationalOccupationalProgram".freeze, "schemas:Event".freeze, "schemas:Role".freeze, "schemas:Schedule".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :startOffset, comment: "The start time of the clip expressed as the number of seconds from the beginning of the work.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Clip".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/HyperTocEntry".freeze, "https://schema.org/Number".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, label: "startOffset".freeze, - "schemas:domainIncludes": "schemas:Clip".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:HyperTocEntry".freeze, "schemas:Number".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Action".freeze, "https://schema.org/FoodEstablishmentReservation".freeze, "https://schema.org/MediaObject".freeze, "https://schema.org/Schedule".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Time".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, label: "startTime".freeze, - "schemas:domainIncludes": ["schemas:Action".freeze, "schemas:FoodEstablishmentReservation".freeze, "schemas:MediaObject".freeze, "schemas:Schedule".freeze], - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Time".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :status, comment: "The status of the study (enumerated).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MedicalCondition".freeze, "https://schema.org/MedicalProcedure".freeze, "https://schema.org/MedicalStudy".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/EventStatusType".freeze, "https://schema.org/MedicalStudyStatus".freeze, "https://schema.org/Text".freeze], label: "status".freeze, - "schemas:domainIncludes": ["schemas:MedicalCondition".freeze, "schemas:MedicalProcedure".freeze, "schemas:MedicalStudy".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:EventStatusType".freeze, "schemas:MedicalStudyStatus".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :steeringPosition, comment: "The position of the steering wheel or similar device (mostly for cars).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/SteeringPositionValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "steeringPosition".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:SteeringPositionValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :step, comment: "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HowTo".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/HowToSection".freeze, "https://schema.org/HowToStep".freeze, "https://schema.org/Text".freeze], label: "step".freeze, - "schemas:domainIncludes": "schemas:HowTo".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:HowToSection".freeze, "schemas:HowToStep".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stepValue, comment: "The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValueSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "stepValue".freeze, - "schemas:domainIncludes": "schemas:PropertyValueSpecification".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :steps, comment: "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HowTo".freeze, "https://schema.org/HowToSection".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/ItemList".freeze, "https://schema.org/Text".freeze], + "https://schema.org/supersededBy": "https://schema.org/step".freeze, label: "steps".freeze, - "schemas:domainIncludes": ["schemas:HowTo".freeze, "schemas:HowToSection".freeze], - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:ItemList".freeze, "schemas:Text".freeze], - "schemas:supersededBy": "schemas:step".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :storageRequirements, comment: "Storage requirements (free space required).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "storageRequirements".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :streetAddress, comment: "The street address. For example, 1600 Amphitheatre Pkwy.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PostalAddress".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "streetAddress".freeze, - "schemas:domainIncludes": "schemas:PostalAddress".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :strengthUnit, comment: "The units of an active ingredient's strength, e.g. mg.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DrugStrength".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "strengthUnit".freeze, - "schemas:domainIncludes": "schemas:DrugStrength".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :strengthValue, comment: "The value of an active ingredient's strength, e.g. 325.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DrugStrength".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "strengthValue".freeze, - "schemas:domainIncludes": "schemas:DrugStrength".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :structuralClass, comment: "The name given to how bone physically connects to each other.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Joint".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "structuralClass".freeze, - "schemas:domainIncludes": "schemas:Joint".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :study, comment: "A medical study or trial related to this entity.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalEntity".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalStudy".freeze, label: "study".freeze, - "schemas:domainIncludes": "schemas:MedicalEntity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalStudy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :studyDesign, comment: "Specifics about the observational study design (enumerated).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalObservationalStudy".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalObservationalStudyDesign".freeze, label: "studyDesign".freeze, - "schemas:domainIncludes": "schemas:MedicalObservationalStudy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalObservationalStudyDesign".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :studyLocation, comment: "The location in which the study is taking/took place.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalStudy".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AdministrativeArea".freeze, label: "studyLocation".freeze, - "schemas:domainIncludes": "schemas:MedicalStudy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AdministrativeArea".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :studySubject, comment: "A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalStudy".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalEntity".freeze, label: "studySubject".freeze, - "schemas:domainIncludes": "schemas:MedicalStudy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalEntity".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stupidProperty, comment: "This is a StupidProperty! - for testing only".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/StupidType".freeze, "https://schema.org/Vehicle".freeze], + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, label: "stupidProperty".freeze, - "schemas:domainIncludes": ["schemas:StupidType".freeze, "schemas:Vehicle".freeze], - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subEvent, comment: "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/inverseOf": "https://schema.org/superEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Event".freeze, label: "subEvent".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:inverseOf": "schemas:superEvent".freeze, - "schemas:rangeIncludes": "schemas:Event".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subEvents, comment: "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Event".freeze, + "https://schema.org/supersededBy": "https://schema.org/subEvent".freeze, label: "subEvents".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": "schemas:Event".freeze, - "schemas:supersededBy": "schemas:subEvent".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subOrganization, comment: "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Organization".freeze, + "https://schema.org/inverseOf": "https://schema.org/parentOrganization".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "subOrganization".freeze, - "schemas:domainIncludes": "schemas:Organization".freeze, - "schemas:inverseOf": "schemas:parentOrganization".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subReservation, comment: "The individual reservations included in the package. Typically a repeated property.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ReservationPackage".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Reservation".freeze, label: "subReservation".freeze, - "schemas:domainIncludes": "schemas:ReservationPackage".freeze, - "schemas:rangeIncludes": "schemas:Reservation".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subStageSuffix, comment: "The substage, e.g. 'a' for Stage IIIa.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalConditionStage".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "subStageSuffix".freeze, - "schemas:domainIncludes": "schemas:MedicalConditionStage".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subStructure, comment: "Component (sub-)structure(s) that comprise this anatomical structure.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AnatomicalStructure".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AnatomicalStructure".freeze, label: "subStructure".freeze, - "schemas:domainIncludes": "schemas:AnatomicalStructure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AnatomicalStructure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subTest, comment: "A component test of the panel.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalTestPanel".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTest".freeze, label: "subTest".freeze, - "schemas:domainIncludes": "schemas:MedicalTestPanel".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTest".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Trip".freeze, + "https://schema.org/inverseOf": "https://schema.org/partOfTrip".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Trip".freeze, + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], label: "subTrip".freeze, - "schemas:domainIncludes": "schemas:Trip".freeze, - "schemas:inverseOf": "schemas:partOfTrip".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Trip".freeze, - "schemas:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, "https://github.com/schemaorg/schemaorg/issues/1810".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subjectOf, comment: "A CreativeWork or Event about this Thing.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/inverseOf": "https://schema.org/about".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, label: "subjectOf".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:inverseOf": "schemas:about".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:Event".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subtitleLanguage, comment: "Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/BroadcastEvent".freeze, "https://schema.org/Movie".freeze, "https://schema.org/ScreeningEvent".freeze, "https://schema.org/TVEpisode".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Language".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2110".freeze, label: "subtitleLanguage".freeze, - "schemas:domainIncludes": ["schemas:BroadcastEvent".freeze, "schemas:Movie".freeze, "schemas:ScreeningEvent".freeze, "schemas:TVEpisode".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Language".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2110".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :successorOf, comment: "A pointer from a newer variant of a product to its previous, often discontinued predecessor.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProductModel".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/ProductModel".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "successorOf".freeze, - "schemas:domainIncludes": "schemas:ProductModel".freeze, - "schemas:rangeIncludes": "schemas:ProductModel".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sugarContent, comment: "The number of grams of sugar.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "sugarContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suggestedAnswer, comment: "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Question".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Answer".freeze, "https://schema.org/ItemList".freeze], label: "suggestedAnswer".freeze, - "schemas:domainIncludes": "schemas:Question".freeze, - "schemas:rangeIncludes": ["schemas:Answer".freeze, "schemas:ItemList".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suggestedGender, comment: "The gender of the person or audience.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PeopleAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "suggestedGender".freeze, - "schemas:domainIncludes": "schemas:PeopleAudience".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suggestedMaxAge, comment: "Maximal age recommended for viewing content.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PeopleAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "suggestedMaxAge".freeze, - "schemas:domainIncludes": "schemas:PeopleAudience".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suggestedMinAge, comment: "Minimal age recommended for viewing content.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PeopleAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "suggestedMinAge".freeze, - "schemas:domainIncludes": "schemas:PeopleAudience".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suitableForDiet, comment: "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MenuItem".freeze, "https://schema.org/Recipe".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/RestrictedDiet".freeze, label: "suitableForDiet".freeze, - "schemas:domainIncludes": ["schemas:MenuItem".freeze, "schemas:Recipe".freeze], - "schemas:rangeIncludes": "schemas:RestrictedDiet".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :superEvent, comment: "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/inverseOf": "https://schema.org/subEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Event".freeze, label: "superEvent".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:inverseOf": "schemas:subEvent".freeze, - "schemas:rangeIncludes": "schemas:Event".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supersededBy, comment: "Relates a term (i.e. a property, class or enumeration) to one that supersedes it.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Class".freeze, "https://schema.org/Enumeration".freeze, "https://schema.org/Property".freeze], + "https://schema.org/isPartOf": "https://meta.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Class".freeze, "https://schema.org/Enumeration".freeze, "https://schema.org/Property".freeze], label: "supersededBy".freeze, - "schemas:domainIncludes": ["schemas:Class".freeze, "schemas:Enumeration".freeze, "schemas:Property".freeze], - "schemas:isPartOf": "https://meta.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Class".freeze, "schemas:Enumeration".freeze, "schemas:Property".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supply, comment: "A sub-property of instrument. A supply consumed when performing instructions or a direction.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HowTo".freeze, "https://schema.org/HowToDirection".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/HowToSupply".freeze, "https://schema.org/Text".freeze], label: "supply".freeze, - "schemas:domainIncludes": ["schemas:HowTo".freeze, "schemas:HowToDirection".freeze], - "schemas:rangeIncludes": ["schemas:HowToSupply".freeze, "schemas:Text".freeze], - subPropertyOf: "schemas:instrument".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supplyTo, comment: "The area to which the artery supplies blood.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Artery".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AnatomicalStructure".freeze, label: "supplyTo".freeze, - "schemas:domainIncludes": "schemas:Artery".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AnatomicalStructure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supportingData, comment: "Supporting data for a SoftwareApplication.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareApplication".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DataFeed".freeze, label: "supportingData".freeze, - "schemas:domainIncludes": "schemas:SoftwareApplication".freeze, - "schemas:rangeIncludes": "schemas:DataFeed".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :surface, comment: "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VisualArtwork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/supersededBy": "https://schema.org/artworkSurface".freeze, label: "surface".freeze, - "schemas:domainIncludes": "schemas:VisualArtwork".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:supersededBy": "schemas:artworkSurface".freeze, - subPropertyOf: "schemas:material".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/material".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :target, comment: "Indicates a target EntryPoint for an Action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Action".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EntryPoint".freeze, label: "target".freeze, - "schemas:domainIncludes": "schemas:Action".freeze, - "schemas:rangeIncludes": "schemas:EntryPoint".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetCollection, comment: "A sub property of object. The collection target of the action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/UpdateAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Thing".freeze, label: "targetCollection".freeze, - "schemas:domainIncludes": "schemas:UpdateAction".freeze, - "schemas:rangeIncludes": "schemas:Thing".freeze, - subPropertyOf: "schemas:object".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/object".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetDescription, comment: "The description of a node in an established educational framework.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AlignmentObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "targetDescription".freeze, - "schemas:domainIncludes": "schemas:AlignmentObject".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetName, comment: "The name of a node in an established educational framework.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AlignmentObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "targetName".freeze, - "schemas:domainIncludes": "schemas:AlignmentObject".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetPlatform, comment: "Type of app development: phone, Metro style, desktop, XBox, etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/APIReference".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "targetPlatform".freeze, - "schemas:domainIncludes": "schemas:APIReference".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetPopulation, comment: "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DietarySupplement".freeze, "https://schema.org/DoseSchedule".freeze], + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "targetPopulation".freeze, - "schemas:domainIncludes": ["schemas:DietarySupplement".freeze, "schemas:DoseSchedule".freeze], - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetProduct, comment: "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SoftwareSourceCode".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/SoftwareApplication".freeze, label: "targetProduct".freeze, - "schemas:domainIncludes": "schemas:SoftwareSourceCode".freeze, - "schemas:rangeIncludes": "schemas:SoftwareApplication".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetUrl, comment: "The URL of a node in an established educational framework.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/AlignmentObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "targetUrl".freeze, - "schemas:domainIncludes": "schemas:AlignmentObject".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "taxID".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/EducationEvent".freeze, "https://schema.org/LearningResource".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, label: "teaches".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:EducationEvent".freeze, "schemas:LearningResource".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :telephone, comment: "The telephone number.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze, "https://schema.org/Place".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "telephone".freeze, - "schemas:domainIncludes": ["schemas:ContactPoint".freeze, "schemas:Organization".freeze, "schemas:Person".freeze, "schemas:Place".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :temporal, comment: "The \"temporal\" property can be used in cases where more specific properties\n(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Text".freeze], label: "temporal".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :temporalCoverage, comment: "The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In\n the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL.\n Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".\n\nOpen-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.".freeze, - equivalentProperty: "dc:temporal".freeze, + equivalentProperty: "http://purl.org/dc/terms/temporal".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DateTime".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "temporalCoverage".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:DateTime".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :termCode, comment: "A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]".freeze, + "https://schema.org/domainIncludes": "https://schema.org/DefinedTerm".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "termCode".freeze, - "schemas:domainIncludes": "schemas:DefinedTerm".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "termDuration".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Duration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :termsOfService, comment: "Human-readable terms of service documentation.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Service".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, label: "termsOfService".freeze, - "schemas:domainIncludes": "schemas:Service".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "termsPerYear".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :text, comment: "The textual content of this CreativeWork.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "text".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textValue, comment: "Text value being annotated.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PronounceableText".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, label: "textValue".freeze, - "schemas:domainIncludes": "schemas:PronounceableText".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :thumbnail, comment: "Thumbnail image for an image or video.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ImageObject".freeze, "https://schema.org/VideoObject".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/ImageObject".freeze, label: "thumbnail".freeze, - "schemas:domainIncludes": ["schemas:ImageObject".freeze, "schemas:VideoObject".freeze], - "schemas:rangeIncludes": "schemas:ImageObject".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :thumbnailUrl, comment: "A thumbnail image relevant to the Thing.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "thumbnailUrl".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tickerSymbol, comment: "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Corporation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "tickerSymbol".freeze, - "schemas:domainIncludes": "schemas:Corporation".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ticketNumber, comment: "The unique identifier for the ticket.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Ticket".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "ticketNumber".freeze, - "schemas:domainIncludes": "schemas:Ticket".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ticketToken, comment: "Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Ticket".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "ticketToken".freeze, - "schemas:domainIncludes": "schemas:Ticket".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ticketedSeat, comment: "The seat associated with the ticket.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Ticket".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Seat".freeze, label: "ticketedSeat".freeze, - "schemas:domainIncludes": "schemas:Ticket".freeze, - "schemas:rangeIncludes": "schemas:Seat".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timeOfDay, comment: "The time of day the program normally runs. For example, \"evenings\".".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "timeOfDay".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, label: "timeRequired".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": "schemas:Duration".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timeToComplete, comment: "The expected length of time to complete the program if attending full-time.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "timeToComplete".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Duration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tissueSample, comment: "The type of tissue sample required for the test.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PathologyTest".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "tissueSample".freeze, - "schemas:domainIncludes": "schemas:PathologyTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, comment: "The title of the job.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "title".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :titleEIDR, comment: "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.\n\nFor 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]].\n\nSince 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.\n".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Movie".freeze, "https://schema.org/TVEpisode".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2469".freeze, label: "titleEIDR".freeze, - "schemas:domainIncludes": ["schemas:Movie".freeze, "schemas:TVEpisode".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2469".freeze, - subPropertyOf: "schemas:identifier".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/identifier".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :toLocation, comment: "A sub property of location. The final location of the object or the agent after the action.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/ExerciseAction".freeze, "https://schema.org/InsertAction".freeze, "https://schema.org/MoveAction".freeze, "https://schema.org/TransferAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Place".freeze, label: "toLocation".freeze, - "schemas:domainIncludes": ["schemas:ExerciseAction".freeze, "schemas:InsertAction".freeze, "schemas:MoveAction".freeze, "schemas:TransferAction".freeze], - "schemas:rangeIncludes": "schemas:Place".freeze, - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :toRecipient, comment: "A sub property of recipient. The recipient who was directly sent the message.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Message".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Audience".freeze, "https://schema.org/ContactPoint".freeze, "https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "toRecipient".freeze, - "schemas:domainIncludes": "schemas:Message".freeze, - "schemas:rangeIncludes": ["schemas:Audience".freeze, "schemas:ContactPoint".freeze, "schemas:Organization".freeze, "schemas:Person".freeze], - subPropertyOf: "schemas:recipient".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/recipient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tocContinuation, comment: "A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HyperTocEntry".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/HyperTocEntry".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "tocContinuation".freeze, - "schemas:domainIncludes": "schemas:HyperTocEntry".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:HyperTocEntry".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tocEntry, comment: "Indicates a [[HyperTocEntry]] in a [[HyperToc]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HyperToc".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/HyperTocEntry".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "tocEntry".freeze, - "schemas:domainIncludes": "schemas:HyperToc".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:HyperTocEntry".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - subPropertyOf: "schemas:hasPart".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/hasPart".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tongueWeight, comment: "The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR)\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "tongueWeight".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tool, comment: "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HowTo".freeze, "https://schema.org/HowToDirection".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/HowToTool".freeze, "https://schema.org/Text".freeze], label: "tool".freeze, - "schemas:domainIncludes": ["schemas:HowTo".freeze, "schemas:HowToDirection".freeze], - "schemas:rangeIncludes": ["schemas:HowToTool".freeze, "schemas:Text".freeze], - subPropertyOf: "schemas:instrument".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/instrument".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :torque, comment: "The torque (turning force) of the vehicle's engine.\\n\\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\\n\\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EngineSpecification".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "torque".freeze, - "schemas:domainIncludes": "schemas:EngineSpecification".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2329".freeze, label: "totalJobOpenings".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2329".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalPaymentDue, comment: "The total amount due.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Invoice".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/PriceSpecification".freeze], label: "totalPaymentDue".freeze, - "schemas:domainIncludes": "schemas:Invoice".freeze, - "schemas:rangeIncludes": ["schemas:MonetaryAmount".freeze, "schemas:PriceSpecification".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalPrice, comment: "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Reservation".freeze, "https://schema.org/Ticket".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/PriceSpecification".freeze, "https://schema.org/Text".freeze], label: "totalPrice".freeze, - "schemas:domainIncludes": ["schemas:Reservation".freeze, "schemas:Ticket".freeze], - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:PriceSpecification".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalTime, comment: "The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/HowTo".freeze, "https://schema.org/HowToDirection".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, label: "totalTime".freeze, - "schemas:domainIncludes": ["schemas:HowTo".freeze, "schemas:HowToDirection".freeze], - "schemas:rangeIncludes": "schemas:Duration".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Accommodation".freeze, "https://schema.org/ApartmentComplex".freeze, "https://schema.org/Place".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "tourBookingPage".freeze, - "schemas:domainIncludes": ["schemas:Accommodation".freeze, "schemas:ApartmentComplex".freeze, "schemas:Place".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :touristType, comment: "Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc. ".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/TouristAttraction".freeze, "https://schema.org/TouristDestination".freeze, "https://schema.org/TouristTrip".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Audience".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], label: "touristType".freeze, - "schemas:domainIncludes": ["schemas:TouristAttraction".freeze, "schemas:TouristDestination".freeze, "schemas:TouristTrip".freeze], - "schemas:rangeIncludes": ["schemas:Audience".freeze, "schemas:Text".freeze], - "schemas: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 + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/MusicGroup".freeze, "https://schema.org/MusicPlaylist".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/ItemList".freeze, "https://schema.org/MusicRecording".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "track".freeze, - "schemas:domainIncludes": ["schemas:MusicGroup".freeze, "schemas:MusicPlaylist".freeze], - "schemas:rangeIncludes": ["schemas:ItemList".freeze, "schemas:MusicRecording".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trackingNumber, comment: "Shipper tracking number.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParcelDelivery".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "trackingNumber".freeze, - "schemas:domainIncludes": "schemas:ParcelDelivery".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trackingUrl, comment: "Tracking url for the parcel delivery.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ParcelDelivery".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "trackingUrl".freeze, - "schemas:domainIncludes": "schemas:ParcelDelivery".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tracks, comment: "A music recording (track)—usually a single song.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MusicGroup".freeze, "https://schema.org/MusicPlaylist".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/MusicRecording".freeze, + "https://schema.org/supersededBy": "https://schema.org/track".freeze, label: "tracks".freeze, - "schemas:domainIncludes": ["schemas:MusicGroup".freeze, "schemas:MusicPlaylist".freeze], - "schemas:rangeIncludes": "schemas:MusicRecording".freeze, - "schemas:supersededBy": "schemas:track".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trailer, comment: "The trailer of a movie or tv/radio series, season, episode, etc.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWorkSeason".freeze, "https://schema.org/Episode".freeze, "https://schema.org/Movie".freeze, "https://schema.org/MovieSeries".freeze, "https://schema.org/RadioSeries".freeze, "https://schema.org/TVSeries".freeze, "https://schema.org/VideoGame".freeze, "https://schema.org/VideoGameSeries".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/VideoObject".freeze, label: "trailer".freeze, - "schemas:domainIncludes": ["schemas:CreativeWorkSeason".freeze, "schemas:Episode".freeze, "schemas:Movie".freeze, "schemas:MovieSeries".freeze, "schemas:RadioSeries".freeze, "schemas:TVSeries".freeze, "schemas:VideoGame".freeze, "schemas:VideoGameSeries".freeze], - "schemas:rangeIncludes": "schemas:VideoObject".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trailerWeight, comment: "The permitted weight of a trailer attached to the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "trailerWeight".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trainName, comment: "The name of the train (e.g. The Orient Express).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TrainTrip".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "trainName".freeze, - "schemas:domainIncludes": "schemas:TrainTrip".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trainNumber, comment: "The unique identifier for the train.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/TrainTrip".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "trainNumber".freeze, - "schemas:domainIncludes": "schemas:TrainTrip".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trainingSalary, comment: "The estimated salary earned while in the program.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/EducationalOccupationalProgram".freeze, "https://schema.org/WorkBasedProgram".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MonetaryAmountDistribution".freeze, + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/2289".freeze, "https://github.com/schemaorg/schemaorg/issues/2460".freeze], label: "trainingSalary".freeze, - "schemas:domainIncludes": ["schemas:EducationalOccupationalProgram".freeze, "schemas:WorkBasedProgram".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MonetaryAmountDistribution".freeze, - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/2289".freeze, "https://github.com/schemaorg/schemaorg/issues/2460".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :transFatContent, comment: "The number of grams of trans fat.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "transFatContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :transcript, comment: "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/AudioObject".freeze, "https://schema.org/VideoObject".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "transcript".freeze, - "schemas:domainIncludes": ["schemas:AudioObject".freeze, "schemas:VideoObject".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/ShippingDeliveryTime".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "transitTime".freeze, - "schemas:domainIncludes": "schemas:ShippingDeliveryTime".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :transitTimeLabel, comment: "Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/DeliveryTimeSettings".freeze, "https://schema.org/OfferShippingDetails".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "transitTimeLabel".freeze, - "schemas:domainIncludes": ["schemas:DeliveryTimeSettings".freeze, "schemas:OfferShippingDetails".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/inverseOf": "https://schema.org/workTranslation".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "translationOfWork".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:inverseOf": "schemas:workTranslation".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :translator, comment: "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "translator".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Event".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :transmissionMethod, comment: "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/InfectiousDisease".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "transmissionMethod".freeze, - "schemas:domainIncludes": "schemas:InfectiousDisease".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :travelBans, comment: "Information about travel bans, e.g. in the context of a pandemic.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/SpecialAnnouncement".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/URL".freeze, "https://schema.org/WebContent".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "travelBans".freeze, - "schemas:domainIncludes": "schemas:SpecialAnnouncement".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:URL".freeze, "schemas:WebContent".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :trialDesign, comment: "Specifics about the trial design (enumerated).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalTrial".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTrialDesign".freeze, label: "trialDesign".freeze, - "schemas:domainIncludes": "schemas:MedicalTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTrialDesign".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tributary, comment: "The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vein".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/AnatomicalStructure".freeze, label: "tributary".freeze, - "schemas:domainIncludes": "schemas:Vein".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:AnatomicalStructure".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/BedDetails".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/BedType".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "typeOfBed".freeze, - "schemas:domainIncludes": "schemas:BedDetails".freeze, - "schemas:rangeIncludes": ["schemas:BedType".freeze, "schemas:Text".freeze], - "schemas:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :typeOfGood, comment: "The product that this structured value is referring to.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/OwnershipInfo".freeze, "https://schema.org/TypeAndQuantityNode".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Product".freeze, "https://schema.org/Service".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "typeOfGood".freeze, - "schemas:domainIncludes": ["schemas:OwnershipInfo".freeze, "schemas:TypeAndQuantityNode".freeze], - "schemas:rangeIncludes": ["schemas:Product".freeze, "schemas:Service".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :typicalAgeRange, comment: "The typical expected age range, e.g. '7-9', '11-'.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/Event".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "typicalAgeRange".freeze, - "schemas:domainIncludes": ["schemas:CreativeWork".freeze, "schemas:Event".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/EducationalOccupationalProgram".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/StructuredValue".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, label: "typicalCreditsPerTerm".freeze, - "schemas:domainIncludes": "schemas:EducationalOccupationalProgram".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:StructuredValue".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :typicalTest, comment: "A medical test typically performed given this condition.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalCondition".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalTest".freeze, label: "typicalTest".freeze, - "schemas:domainIncludes": "schemas:MedicalCondition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalTest".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :underName, comment: "The person or organization the reservation or ticket is for.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Reservation".freeze, "https://schema.org/Ticket".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], label: "underName".freeze, - "schemas:domainIncludes": ["schemas:Reservation".freeze, "schemas:Ticket".freeze], - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/PropertyValue".freeze, "https://schema.org/QuantitativeValue".freeze, "https://schema.org/TypeAndQuantityNode".freeze, "https://schema.org/UnitPriceSpecification".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "unitCode".freeze, - "schemas:domainIncludes": ["schemas:PropertyValue".freeze, "schemas:QuantitativeValue".freeze, "schemas:TypeAndQuantityNode".freeze, "schemas:UnitPriceSpecification".freeze], - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :unitText, comment: "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/PropertyValue".freeze, "https://schema.org/QuantitativeValue".freeze, "https://schema.org/TypeAndQuantityNode".freeze, "https://schema.org/UnitPriceSpecification".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "unitText".freeze, - "schemas:domainIncludes": ["schemas:PropertyValue".freeze, "schemas:QuantitativeValue".freeze, "schemas:TypeAndQuantityNode".freeze, "schemas:UnitPriceSpecification".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/NewsMediaOrganization".freeze, "https://schema.org/Organization".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "unnamedSourcesPolicy".freeze, - "schemas:domainIncludes": ["schemas:NewsMediaOrganization".freeze, "schemas:Organization".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subPropertyOf: "schemas:publishingPrinciples".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :unsaturatedFatContent, comment: "The number of grams of unsaturated fat.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NutritionInformation".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Mass".freeze, label: "unsaturatedFatContent".freeze, - "schemas:domainIncludes": "schemas:NutritionInformation".freeze, - "schemas:rangeIncludes": "schemas:Mass".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :uploadDate, comment: "Date when this media object was uploaded to this site.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MediaObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "uploadDate".freeze, - "schemas:domainIncludes": "schemas:MediaObject".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :upvoteCount, comment: "The number of upvotes this question, answer or comment has received from the community.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Comment".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "upvoteCount".freeze, - "schemas:domainIncludes": "schemas:Comment".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :url, comment: "URL of the item.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Thing".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/URL".freeze, label: "url".freeze, - "schemas:domainIncludes": "schemas:Thing".freeze, - "schemas:rangeIncludes": "schemas:URL".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :urlTemplate, comment: "An url template (RFC6570) that will be used to construct the target of the execution of the action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/EntryPoint".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "urlTemplate".freeze, - "schemas:domainIncludes": "schemas:EntryPoint".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :usageInfo, 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.\n\nThis 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, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, label: "usageInfo".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :usedToDiagnose, comment: "A condition the test is used to diagnose.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalTest".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalCondition".freeze, label: "usedToDiagnose".freeze, - "schemas:domainIncludes": "schemas:MedicalTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalCondition".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :userInteractionCount, comment: "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/InteractionCounter".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "userInteractionCount".freeze, - "schemas:domainIncludes": "schemas:InteractionCounter".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :usesDevice, comment: "Device used to perform the test.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/MedicalTest".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/MedicalDevice".freeze, label: "usesDevice".freeze, - "schemas:domainIncludes": "schemas:MedicalTest".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": "schemas:MedicalDevice".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/HealthInsurancePlan".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "usesHealthPlanIdStandard".freeze, - "schemas:domainIncludes": "schemas:HealthInsurancePlan".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :utterances, comment: "Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HyperTocEntry".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, label: "utterances".freeze, - "schemas:domainIncludes": "schemas:HyperTocEntry".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2766".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :validFor, comment: "The duration of validity of a permit or similar thing.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/EducationalOccupationalCredential".freeze, "https://schema.org/Permit".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Duration".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "validFor".freeze, - "schemas:domainIncludes": ["schemas:EducationalOccupationalCredential".freeze, "schemas:Permit".freeze], - "schemas:rangeIncludes": "schemas:Duration".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :validFrom, comment: "The date when the item becomes valid.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/LocationFeatureSpecification".freeze, "https://schema.org/MonetaryAmount".freeze, "https://schema.org/Offer".freeze, "https://schema.org/OpeningHoursSpecification".freeze, "https://schema.org/Permit".freeze, "https://schema.org/PriceSpecification".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "validFrom".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:LocationFeatureSpecification".freeze, "schemas:MonetaryAmount".freeze, "schemas:Offer".freeze, "schemas:OpeningHoursSpecification".freeze, "schemas:Permit".freeze, "schemas:PriceSpecification".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :validIn, comment: "The geographic area where a permit or similar thing is valid.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/EducationalOccupationalCredential".freeze, "https://schema.org/Permit".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/AdministrativeArea".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "validIn".freeze, - "schemas:domainIncludes": ["schemas:EducationalOccupationalCredential".freeze, "schemas:Permit".freeze], - "schemas:rangeIncludes": "schemas:AdministrativeArea".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/JobPosting".freeze, "https://schema.org/LocationFeatureSpecification".freeze, "https://schema.org/MonetaryAmount".freeze, "https://schema.org/Offer".freeze, "https://schema.org/OpeningHoursSpecification".freeze, "https://schema.org/PriceSpecification".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Date".freeze, "https://schema.org/DateTime".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "validThrough".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:JobPosting".freeze, "schemas:LocationFeatureSpecification".freeze, "schemas:MonetaryAmount".freeze, "schemas:Offer".freeze, "schemas:OpeningHoursSpecification".freeze, "schemas:PriceSpecification".freeze], - "schemas:rangeIncludes": ["schemas:Date".freeze, "schemas:DateTime".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :validUntil, comment: "The date when the item is no longer valid.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Permit".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, label: "validUntil".freeze, - "schemas:domainIncludes": "schemas:Permit".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :value, comment: "The value of the quantitative value or property value node.\\n\\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\\n* For [[PropertyValue]], it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MonetaryAmount".freeze, "https://schema.org/PropertyValue".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Boolean".freeze, "https://schema.org/Number".freeze, "https://schema.org/StructuredValue".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "value".freeze, - "schemas:domainIncludes": ["schemas:MonetaryAmount".freeze, "schemas:PropertyValue".freeze, "schemas:QuantitativeValue".freeze], - "schemas:rangeIncludes": ["schemas:Boolean".freeze, "schemas:Number".freeze, "schemas:StructuredValue".freeze, "schemas:Text".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueAddedTaxIncluded, comment: "Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PriceSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "valueAddedTaxIncluded".freeze, - "schemas:domainIncludes": "schemas:PriceSpecification".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueMaxLength, comment: "Specifies the allowed range for number of characters in a literal value.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValueSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "valueMaxLength".freeze, - "schemas:domainIncludes": "schemas:PropertyValueSpecification".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueMinLength, comment: "Specifies the minimum allowed range for number of characters in a literal value.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValueSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, label: "valueMinLength".freeze, - "schemas:domainIncludes": "schemas:PropertyValueSpecification".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueName, comment: "Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValueSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "valueName".freeze, - "schemas:domainIncludes": "schemas:PropertyValueSpecification".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valuePattern, comment: "Specifies a regular expression for testing literal values according to the HTML spec.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValueSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "valuePattern".freeze, - "schemas:domainIncludes": "schemas:PropertyValueSpecification".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/PropertyValue".freeze, "https://schema.org/QualitativeValue".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Enumeration".freeze, "https://schema.org/PropertyValue".freeze, "https://schema.org/QualitativeValue".freeze, "https://schema.org/QuantitativeValue".freeze, "https://schema.org/StructuredValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "valueReference".freeze, - "schemas:domainIncludes": ["schemas:PropertyValue".freeze, "schemas:QualitativeValue".freeze, "schemas:QuantitativeValue".freeze], - "schemas:rangeIncludes": ["schemas:Enumeration".freeze, "schemas:PropertyValue".freeze, "schemas:QualitativeValue".freeze, "schemas:QuantitativeValue".freeze, "schemas:StructuredValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :valueRequired, comment: "Whether the property must be filled in to complete the action. Default is false.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PropertyValueSpecification".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Boolean".freeze, label: "valueRequired".freeze, - "schemas:domainIncludes": "schemas:PropertyValueSpecification".freeze, - "schemas:rangeIncludes": "schemas:Boolean".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Dataset".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/PropertyValue".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1083".freeze, label: "variableMeasured".freeze, - "schemas:domainIncludes": "schemas:Dataset".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:PropertyValue".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1083".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Dataset".freeze, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/PropertyValue".freeze, "https://schema.org/Text".freeze], label: "variablesMeasured".freeze, - "schemas:domainIncludes": "schemas:Dataset".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:PropertyValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :variantCover, comment: "A description of the variant cover\n \tfor the issue, if the issue is a variant printing. For example, \"Bryan Hitch\n \tVariant Cover\" or \"2nd Printing Variant\".".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ComicIssue".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "variantCover".freeze, - "schemas:domainIncludes": "schemas:ComicIssue".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :variesBy, comment: "Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. \"color\"; terms defined elsewhere can be referenced with their URIs.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ProductGroup".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DefinedTerm".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, label: "variesBy".freeze, - "schemas:domainIncludes": "schemas:ProductGroup".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DefinedTerm".freeze, "schemas:Text".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1797".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vatID, comment: "The Value-added Tax ID of the organization or person.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "vatID".freeze, - "schemas:domainIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "vehicleConfiguration".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vehicleEngine, comment: "Information about the engine or engines of the vehicle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/EngineSpecification".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "vehicleEngine".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:EngineSpecification".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "vehicleIdentificationNumber".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - subPropertyOf: "schemas:serialNumber".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/serialNumber".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vehicleInteriorColor, comment: "The color or color combination of the interior of the vehicle.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "vehicleInteriorColor".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "vehicleInteriorType".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vehicleModelDate, comment: "The release date of a vehicle model (often used to differentiate versions of the same make and model).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Date".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "vehicleModelDate".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": "schemas:Date".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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.\\n\\nTypical unit code(s): C62 for persons.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/QuantitativeValue".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "vehicleSeatingCapacity".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:QuantitativeValue".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CarUsageType".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "vehicleSpecialUsage".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CarUsageType".freeze, "schemas:Text".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QualitativeValue".freeze, "https://schema.org/Text".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "vehicleTransmission".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:rangeIncludes": ["schemas:QualitativeValue".freeze, "schemas:Text".freeze, "schemas:URL".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :vendor, comment: "'vendor' is an earlier term for 'seller'.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BuyAction".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Organization".freeze, "https://schema.org/Person".freeze], + "https://schema.org/supersededBy": "https://schema.org/seller".freeze, label: "vendor".freeze, - "schemas:domainIncludes": "schemas:BuyAction".freeze, - "schemas:rangeIncludes": ["schemas:Organization".freeze, "schemas:Person".freeze], - "schemas:supersededBy": "schemas:seller".freeze, - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :verificationFactCheckingPolicy, comment: "Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].".freeze, + "https://schema.org/domainIncludes": "https://schema.org/NewsMediaOrganization".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/CreativeWork".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "verificationFactCheckingPolicy".freeze, - "schemas:domainIncludes": "schemas:NewsMediaOrganization".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:CreativeWork".freeze, "schemas:URL".freeze], - "schemas:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], - subPropertyOf: "schemas:publishingPrinciples".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/publishingPrinciples".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :version, comment: "The version of the CreativeWork embodied by a specified resource.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "version".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :video, comment: "An embedded video object.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Clip".freeze, "https://schema.org/VideoObject".freeze], label: "video".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:rangeIncludes": ["schemas:Clip".freeze, "schemas:VideoObject".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoFormat, comment: "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/BroadcastEvent".freeze, "https://schema.org/BroadcastService".freeze, "https://schema.org/ScreeningEvent".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "videoFormat".freeze, - "schemas:domainIncludes": ["schemas:BroadcastEvent".freeze, "schemas:BroadcastService".freeze, "schemas:ScreeningEvent".freeze], - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoFrameSize, comment: "The frame size of the video.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VideoObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "videoFrameSize".freeze, - "schemas:domainIncludes": "schemas:VideoObject".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :videoQuality, comment: "The quality of the video.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/VideoObject".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "videoQuality".freeze, - "schemas:domainIncludes": "schemas:VideoObject".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :volumeNumber, comment: "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".".freeze, - equivalentProperty: "bibo:volume".freeze, + equivalentProperty: "http://purl.org/ontology/bibo/volume".freeze, + "https://schema.org/domainIncludes": "https://schema.org/PublicationVolume".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Integer".freeze, "https://schema.org/Text".freeze], + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "volumeNumber".freeze, - "schemas:domainIncludes": "schemas:PublicationVolume".freeze, - "schemas:rangeIncludes": ["schemas:Integer".freeze, "schemas:Text".freeze], - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - subPropertyOf: "schemas:position".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/position".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :warning, comment: "Any FDA or other warnings about the drug (text or URL).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Drug".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Text".freeze, "https://schema.org/URL".freeze], label: "warning".freeze, - "schemas:domainIncludes": "schemas:Drug".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Text".freeze, "schemas:URL".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :warranty, comment: "The warranty promise(s) included in the offer.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Demand".freeze, "https://schema.org/Offer".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/WarrantyPromise".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "warranty".freeze, - "schemas:domainIncludes": ["schemas:Demand".freeze, "schemas:Offer".freeze], - "schemas:rangeIncludes": "schemas:WarrantyPromise".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :warrantyPromise, comment: "The warranty promise(s) included in the offer.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/BuyAction".freeze, "https://schema.org/SellAction".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/WarrantyPromise".freeze, + "https://schema.org/supersededBy": "https://schema.org/warranty".freeze, label: "warrantyPromise".freeze, - "schemas:domainIncludes": ["schemas:BuyAction".freeze, "schemas:SellAction".freeze], - "schemas:rangeIncludes": "schemas:WarrantyPromise".freeze, - "schemas:supersededBy": "schemas:warranty".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :warrantyScope, comment: "The scope of the warranty promise.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/WarrantyPromise".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/WarrantyScope".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "warrantyScope".freeze, - "schemas:domainIncludes": "schemas:WarrantyPromise".freeze, - "schemas:rangeIncludes": "schemas:WarrantyScope".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :webCheckinTime, comment: "The time when a passenger can check into the flight online.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Flight".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/DateTime".freeze, label: "webCheckinTime".freeze, - "schemas:domainIncludes": "schemas:Flight".freeze, - "schemas:rangeIncludes": "schemas:DateTime".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/PodcastSeries".freeze, "https://schema.org/SpecialAnnouncement".freeze], + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/DataFeed".freeze, "https://schema.org/URL".freeze], + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "webFeed".freeze, - "schemas:domainIncludes": ["schemas:PodcastSeries".freeze, "schemas:SpecialAnnouncement".freeze], - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:DataFeed".freeze, "schemas:URL".freeze], - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :weight, comment: "The weight of the product or person.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/Person".freeze, "https://schema.org/Product".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "weight".freeze, - "schemas:domainIncludes": ["schemas:Person".freeze, "schemas:Product".freeze], - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :weightTotal, comment: "The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "weightTotal".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :wheelbase, comment: "The distance between the centers of the front and rear wheels.\\n\\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Vehicle".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "wheelbase".freeze, - "schemas:domainIncludes": "schemas:Vehicle".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :width, comment: "The width of the item.".freeze, + "https://schema.org/domainIncludes": ["https://schema.org/MediaObject".freeze, "https://schema.org/Product".freeze, "https://schema.org/VisualArtwork".freeze], + "https://schema.org/rangeIncludes": ["https://schema.org/Distance".freeze, "https://schema.org/QuantitativeValue".freeze], label: "width".freeze, - "schemas:domainIncludes": ["schemas:MediaObject".freeze, "schemas:Product".freeze, "schemas:VisualArtwork".freeze], - "schemas:rangeIncludes": ["schemas:Distance".freeze, "schemas:QuantitativeValue".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :winner, comment: "A sub property of participant. The winner of the action.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/LoseAction".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Person".freeze, label: "winner".freeze, - "schemas:domainIncludes": "schemas:LoseAction".freeze, - "schemas:rangeIncludes": "schemas:Person".freeze, - subPropertyOf: "schemas:participant".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/participant".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :wordCount, comment: "The number of words in the text of the Article.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Article".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Integer".freeze, label: "wordCount".freeze, - "schemas:domainIncludes": "schemas:Article".freeze, - "schemas:rangeIncludes": "schemas:Integer".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/inverseOf": "https://schema.org/exampleOfWork".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "workExample".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:inverseOf": "schemas:exampleOfWork".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workFeatured, comment: "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "workFeatured".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workHours, comment: "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).".freeze, + "https://schema.org/domainIncludes": "https://schema.org/JobPosting".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Text".freeze, label: "workHours".freeze, - "schemas:domainIncludes": "schemas:JobPosting".freeze, - "schemas:rangeIncludes": "schemas:Text".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workLocation, comment: "A contact location for a person's place of work.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/ContactPoint".freeze, "https://schema.org/Place".freeze], label: "workLocation".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": ["schemas:ContactPoint".freeze, "schemas:Place".freeze], - subPropertyOf: "schemas:location".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/location".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workPerformed, comment: "A work performed in some event, for example a play performed in a TheaterEvent.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Event".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "workPerformed".freeze, - "schemas:domainIncludes": "schemas:Event".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - subPropertyOf: "schemas:workFeatured".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/workFeatured".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workPresented, comment: "The movie presented during this event.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ScreeningEvent".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Movie".freeze, label: "workPresented".freeze, - "schemas:domainIncludes": "schemas:ScreeningEvent".freeze, - "schemas:rangeIncludes": "schemas:Movie".freeze, - subPropertyOf: "schemas:workFeatured".freeze, - type: "rdf:Property".freeze + subPropertyOf: "https://schema.org/workFeatured".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workTranslation, comment: "A work that is a translation of the content of this work. e.g. 西遊記 has an English workTranslation “Journey to the West”,a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/CreativeWork".freeze, + "https://schema.org/inverseOf": "https://schema.org/translationOfWork".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/CreativeWork".freeze, label: "workTranslation".freeze, - "schemas:domainIncludes": "schemas:CreativeWork".freeze, - "schemas:inverseOf": "schemas:translationOfWork".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - "schemas:rangeIncludes": "schemas:CreativeWork".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :workload, comment: "Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/ExercisePlan".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Energy".freeze, "https://schema.org/QuantitativeValue".freeze], label: "workload".freeze, - "schemas:domainIncludes": "schemas:ExercisePlan".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:rangeIncludes": ["schemas:Energy".freeze, "schemas:QuantitativeValue".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :worksFor, comment: "Organizations that the person works for.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Person".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Organization".freeze, label: "worksFor".freeze, - "schemas:domainIncludes": "schemas:Person".freeze, - "schemas:rangeIncludes": "schemas:Organization".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :worstRating, comment: "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Rating".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/Number".freeze, "https://schema.org/Text".freeze], label: "worstRating".freeze, - "schemas:domainIncludes": "schemas:Rating".freeze, - "schemas:rangeIncludes": ["schemas:Number".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#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, + "https://schema.org/domainIncludes": ["https://schema.org/SpeakableSpecification".freeze, "https://schema.org/WebPageElement".freeze], + "https://schema.org/rangeIncludes": "https://schema.org/XPathType".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, label: "xpath".freeze, - "schemas:domainIncludes": ["schemas:SpeakableSpecification".freeze, "schemas:WebPageElement".freeze], - "schemas:rangeIncludes": "schemas:XPathType".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yearBuilt, comment: "The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). ".freeze, + "https://schema.org/domainIncludes": "https://schema.org/Accommodation".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/Number".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "yearBuilt".freeze, - "schemas:domainIncludes": "schemas:Accommodation".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:rangeIncludes": "schemas:Number".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yearlyRevenue, comment: "The size of the business in annual revenue.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BusinessAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, label: "yearlyRevenue".freeze, - "schemas:domainIncludes": "schemas:BusinessAudience".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yearsInOperation, comment: "The age of the business.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/BusinessAudience".freeze, + "https://schema.org/rangeIncludes": "https://schema.org/QuantitativeValue".freeze, label: "yearsInOperation".freeze, - "schemas:domainIncludes": "schemas:BusinessAudience".freeze, - "schemas:rangeIncludes": "schemas:QuantitativeValue".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yield, comment: "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.".freeze, + "https://schema.org/domainIncludes": "https://schema.org/HowTo".freeze, + "https://schema.org/rangeIncludes": ["https://schema.org/QuantitativeValue".freeze, "https://schema.org/Text".freeze], label: "yield".freeze, - "schemas:domainIncludes": "schemas:HowTo".freeze, - "schemas:rangeIncludes": ["schemas:QuantitativeValue".freeze, "schemas:Text".freeze], - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :Abdomen, comment: "Abdomen clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Abdomen".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :ActivationFee, comment: "Represents the activation fee part of the total price for an offered product, for example a cellphone contract".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "ActivationFee".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schemas:PriceComponentTypeEnumeration".freeze + type: "https://schema.org/PriceComponentTypeEnumeration".freeze term :ActiveActionStatus, comment: "An in-progress action (e.g, while watching the movie, or driving to a location).".freeze, label: "ActiveActionStatus".freeze, - type: "schemas:ActionStatusType".freeze + type: "https://schema.org/ActionStatusType".freeze term :ActiveNotRecruiting, comment: "Active, but not recruiting new participants.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "ActiveNotRecruiting".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :AerobicActivity, comment: "Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "AerobicActivity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalActivityCategory".freeze + type: "https://schema.org/PhysicalActivityCategory".freeze term :AlbumRelease, comment: "AlbumRelease.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "AlbumRelease".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumReleaseType".freeze + type: "https://schema.org/MusicAlbumReleaseType".freeze term :AllWheelDriveConfiguration, comment: "All-wheel Drive is a transmission layout where the engine drives all four wheels.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "AllWheelDriveConfiguration".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "schemas:DriveWheelConfigurationValue".freeze + type: "https://schema.org/DriveWheelConfigurationValue".freeze term :AnaerobicActivity, comment: "Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "AnaerobicActivity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalActivityCategory".freeze + type: "https://schema.org/PhysicalActivityCategory".freeze term :Anesthesia, comment: "A specific branch of medical science that pertains to study of anesthetics and their application.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Anesthesia".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :Appearance, comment: "Appearance assessment with clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Appearance".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :AudiobookFormat, comment: "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.".freeze, label: "AudiobookFormat".freeze, - type: "schemas:BookFormatType".freeze + type: "https://schema.org/BookFormatType".freeze term :AuthenticContent, comment: "AuthenticMediaObject: An unaltered image that is presented in an accurate way.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "AuthenticContent".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, - type: "schemas:MediaManipulationRatingEnumeration".freeze + type: "https://schema.org/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, exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-authoritative".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "AuthoritativeLegalValue".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "schemas:LegalValueLevel".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Ayurvedic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicineSystem".freeze + type: "https://schema.org/MedicineSystem".freeze term :Balance, comment: "Physical activity that is engaged to help maintain posture and balance.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Balance".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalActivityCategory".freeze + type: "https://schema.org/PhysicalActivityCategory".freeze term :BasicIncome, comment: "BasicIncome: this is a benefit for basic income.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "BasicIncome".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schemas:GovernmentBenefitsType".freeze + type: "https://schema.org/GovernmentBenefitsType".freeze term :BenefitsHealthAspect, comment: "Content about the benefits and advantages of usage or utilization of topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "BenefitsHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :BroadcastRelease, comment: "BroadcastRelease.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "BroadcastRelease".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumReleaseType".freeze + type: "https://schema.org/MusicAlbumReleaseType".freeze term :BusinessSupport, comment: "BusinessSupport: this is a benefit for supporting businesses.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "BusinessSupport".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schemas:GovernmentBenefitsType".freeze + type: "https://schema.org/GovernmentBenefitsType".freeze term :CDFormat, comment: "CDFormat.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "CDFormat".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicReleaseFormatType".freeze + type: "https://schema.org/MusicReleaseFormatType".freeze term :CT, comment: "X-ray computed tomography imaging.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "CT".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalImagingTechnique".freeze + type: "https://schema.org/MedicalImagingTechnique".freeze term :Cardiovascular, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Cardiovascular".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :CardiovascularExam, comment: "Cardiovascular system assessment withclinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "CardiovascularExam".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :CaseSeries, comment: "A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "CaseSeries".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalObservationalStudyDesign".freeze + type: "https://schema.org/MedicalObservationalStudyDesign".freeze term :CassetteFormat, comment: "CassetteFormat.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "CassetteFormat".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicReleaseFormatType".freeze + type: "https://schema.org/MusicReleaseFormatType".freeze term :CausesHealthAspect, comment: "Information about the causes and main actions that gave rise to the topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "CausesHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :CharitableIncorporatedOrganization, comment: "CharitableIncorporatedOrganization: Non-profit type referring to a Charitable Incorporated Organization (UK).".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "CharitableIncorporatedOrganization".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:UKNonprofitType".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Chiropractic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicineSystem".freeze + type: "https://schema.org/MedicineSystem".freeze term :CleaningFee, comment: "Represents the cleaning fee part of the total price for an offered product, for example a vacation rental".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "CleaningFee".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schemas:PriceComponentTypeEnumeration".freeze + type: "https://schema.org/PriceComponentTypeEnumeration".freeze term :Clinician, comment: "Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Clinician".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalAudienceType".freeze + type: "https://schema.org/MedicalAudienceType".freeze term :CoOp, comment: "Play mode: CoOp. Co-operative games, where you play on the same team with friends.".freeze, label: "CoOp".freeze, - type: "schemas:GamePlayMode".freeze + type: "https://schema.org/GamePlayMode".freeze term :CohortStudy, comment: "Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "CohortStudy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalObservationalStudyDesign".freeze + type: "https://schema.org/MedicalObservationalStudyDesign".freeze term :CommentPermission, comment: "Permission to add comments to the document.".freeze, label: "CommentPermission".freeze, - type: "schemas:DigitalDocumentPermissionType".freeze + type: "https://schema.org/DigitalDocumentPermissionType".freeze term :CommunityHealth, comment: "A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "CommunityHealth".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :CompilationAlbum, comment: "CompilationAlbum.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "CompilationAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumProductionType".freeze + type: "https://schema.org/MusicAlbumProductionType".freeze term :Completed, comment: "Completed.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Completed".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :CompletedActionStatus, comment: "An action that has already taken place.".freeze, label: "CompletedActionStatus".freeze, - type: "schemas:ActionStatusType".freeze + type: "https://schema.org/ActionStatusType".freeze term :ContagiousnessHealthAspect, comment: "Content about contagion mechanisms and contagiousness information over the topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "ContagiousnessHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "CrossSectional".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalObservationalStudyDesign".freeze + type: "https://schema.org/MedicalObservationalStudyDesign".freeze term :DJMixAlbum, comment: "DJMixAlbum.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DJMixAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumProductionType".freeze + type: "https://schema.org/MusicAlbumProductionType".freeze term :DVDFormat, comment: "DVDFormat.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DVDFormat".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicReleaseFormatType".freeze + type: "https://schema.org/MusicReleaseFormatType".freeze term :DamagedCondition, comment: "Indicates that the item is damaged.".freeze, label: "DamagedCondition".freeze, - type: "schemas:OfferItemCondition".freeze + type: "https://schema.org/OfferItemCondition".freeze 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.)\n Something \"Definitive\" is considered to be also [[AuthoritativeLegalValue]].".freeze, exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-definitive".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "DefinitiveLegalValue".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "schemas:LegalValueLevel".freeze + type: "https://schema.org/LegalValueLevel".freeze term :DemoAlbum, comment: "DemoAlbum.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DemoAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumProductionType".freeze + type: "https://schema.org/MusicAlbumProductionType".freeze term :Dentistry, comment: "A branch of medicine that is involved in the dental care.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Dentistry".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :Dermatologic, comment: "Something relating to or practicing dermatology".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, + "https://schema.org/supersededBy": "https://schema.org/Dermatology".freeze, label: "Dermatologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - "schemas:supersededBy": "schemas:Dermatology".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :Dermatology, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Dermatology".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :DiabeticDiet, comment: "A diet appropriate for people with diabetes.".freeze, label: "DiabeticDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :Diagnostic, comment: "A medical device used for diagnostic purposes.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Diagnostic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalDevicePurpose".freeze + type: "https://schema.org/MedicalDevicePurpose".freeze term :DietNutrition, comment: "Dietetic and nutrition as a medical speciality.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DietNutrition".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :DigitalAudioTapeFormat, comment: "DigitalAudioTapeFormat.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DigitalAudioTapeFormat".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicReleaseFormatType".freeze + type: "https://schema.org/MusicReleaseFormatType".freeze term :DigitalFormat, comment: "DigitalFormat.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DigitalFormat".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicReleaseFormatType".freeze + type: "https://schema.org/MusicReleaseFormatType".freeze term :DisabilitySupport, comment: "DisabilitySupport: this is a benefit for disability support.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "DisabilitySupport".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schemas:GovernmentBenefitsType".freeze + type: "https://schema.org/GovernmentBenefitsType".freeze term :Discontinued, comment: "Indicates that the item has been discontinued.".freeze, label: "Discontinued".freeze, - type: "schemas:ItemAvailability".freeze + type: "https://schema.org/ItemAvailability".freeze term :DistanceFee, comment: "Represents the distance fee (e.g., price per km or mile) part of the total price for an offered product, for example a car rental".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "DistanceFee".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schemas:PriceComponentTypeEnumeration".freeze + type: "https://schema.org/PriceComponentTypeEnumeration".freeze term :DoubleBlindedTrial, comment: "A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "DoubleBlindedTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalTrialDesign".freeze + type: "https://schema.org/MedicalTrialDesign".freeze term :Downpayment, comment: "Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "Downpayment".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schemas:PriceComponentTypeEnumeration".freeze + type: "https://schema.org/PriceComponentTypeEnumeration".freeze term :DrivingSchoolVehicleUsage, comment: "Indicates the usage of the vehicle for driving school.".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "DrivingSchoolVehicleUsage".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "schemas:CarUsageType".freeze + type: "https://schema.org/CarUsageType".freeze term :EBook, comment: "Book format: Ebook.".freeze, label: "EBook".freeze, - type: "schemas:BookFormatType".freeze + type: "https://schema.org/BookFormatType".freeze term :EPRelease, comment: "EPRelease.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "EPRelease".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumReleaseType".freeze + type: "https://schema.org/MusicAlbumReleaseType".freeze term :EUEnergyEfficiencyCategoryA, comment: "Represents EU Energy Efficiency Class A as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryA".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryA1Plus, comment: "Represents EU Energy Efficiency Class A+ as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryA1Plus".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryA2Plus, comment: "Represents EU Energy Efficiency Class A++ as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryA2Plus".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryA3Plus, comment: "Represents EU Energy Efficiency Class A+++ as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryA3Plus".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryB, comment: "Represents EU Energy Efficiency Class B as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryB".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryC, comment: "Represents EU Energy Efficiency Class C as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryC".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryD, comment: "Represents EU Energy Efficiency Class D as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryD".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryE, comment: "Represents EU Energy Efficiency Class E as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryE".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryF, comment: "Represents EU Energy Efficiency Class F as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryF".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :EUEnergyEfficiencyCategoryG, comment: "Represents EU Energy Efficiency Class G as defined in EU energy labeling regulations".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EUEnergyEfficiencyCategoryG".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EUEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EUEnergyEfficiencyEnumeration".freeze term :Ear, comment: "Ear function assessment with clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Ear".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :Emergency, comment: "A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Emergency".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :Endocrine, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Endocrine".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :EnergyStarCertified, comment: "Represents EnergyStar certification".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, label: "EnergyStarCertified".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2670".freeze, - type: "schemas:EnergyStarEnergyEfficiencyEnumeration".freeze + type: "https://schema.org/EnergyStarEnergyEfficiencyEnumeration".freeze term :EnrollingByInvitation, comment: "Enrolling participants by invitation only.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "EnrollingByInvitation".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :EventCancelled, comment: "The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s).".freeze, label: "EventCancelled".freeze, - type: "schemas:EventStatusType".freeze + type: "https://schema.org/EventStatusType".freeze term :EventMovedOnline, comment: "Indicates that the event was changed to allow online participation. See [[eventAttendanceMode]] for specifics of whether it is now fully or partially online.".freeze, label: "EventMovedOnline".freeze, - type: "schemas:EventStatusType".freeze + type: "https://schema.org/EventStatusType".freeze term :EventPostponed, comment: "The event has been postponed and no new date has been set. The event's previousStartDate should be set.".freeze, label: "EventPostponed".freeze, - type: "schemas:EventStatusType".freeze + type: "https://schema.org/EventStatusType".freeze term :EventRescheduled, comment: "The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated).".freeze, label: "EventRescheduled".freeze, - type: "schemas:EventStatusType".freeze + type: "https://schema.org/EventStatusType".freeze term :EventScheduled, comment: "The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default.".freeze, label: "EventScheduled".freeze, - type: "schemas:EventStatusType".freeze + type: "https://schema.org/EventStatusType".freeze term :EvidenceLevelA, comment: "Data derived from multiple randomized clinical trials or meta-analyses.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "EvidenceLevelA".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalEvidenceLevel".freeze + type: "https://schema.org/MedicalEvidenceLevel".freeze term :EvidenceLevelB, comment: "Data derived from a single randomized trial, or nonrandomized studies.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "EvidenceLevelB".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalEvidenceLevel".freeze + type: "https://schema.org/MedicalEvidenceLevel".freeze term :EvidenceLevelC, comment: "Only consensus opinion of experts, case studies, or standard-of-care.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "EvidenceLevelC".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalEvidenceLevel".freeze + type: "https://schema.org/MedicalEvidenceLevel".freeze term :ExchangeRefund, comment: "A ExchangeRefund ...".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ExchangeRefund".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:RefundTypeEnumeration".freeze + type: "https://schema.org/RefundTypeEnumeration".freeze term :Eye, comment: "Eye or ophtalmological function assessment with clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Eye".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :FDAcategoryA, comment: "A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "FDAcategoryA".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugPregnancyCategory".freeze + type: "https://schema.org/DrugPregnancyCategory".freeze term :FDAcategoryB, comment: "A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "FDAcategoryB".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugPregnancyCategory".freeze + type: "https://schema.org/DrugPregnancyCategory".freeze term :FDAcategoryC, comment: "A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "FDAcategoryC".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugPregnancyCategory".freeze + type: "https://schema.org/DrugPregnancyCategory".freeze term :FDAcategoryD, comment: "A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "FDAcategoryD".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugPregnancyCategory".freeze + type: "https://schema.org/DrugPregnancyCategory".freeze term :FDAcategoryX, comment: "A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "FDAcategoryX".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugPregnancyCategory".freeze + type: "https://schema.org/DrugPregnancyCategory".freeze term :FDAnotEvaluated, comment: "A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "FDAnotEvaluated".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugPregnancyCategory".freeze + type: "https://schema.org/DrugPregnancyCategory".freeze term :FailedActionStatus, comment: "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure.".freeze, label: "FailedActionStatus".freeze, - type: "schemas:ActionStatusType".freeze + type: "https://schema.org/ActionStatusType".freeze term :False, comment: "The boolean value false.".freeze, label: "False".freeze, - type: "schemas:Boolean".freeze + type: "https://schema.org/Boolean".freeze term :Female, comment: "The female gender.".freeze, label: "Female".freeze, - type: "schemas:GenderType".freeze + type: "https://schema.org/GenderType".freeze term :Flexibility, comment: "Physical activity that is engaged in to improve joint and muscle flexibility.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Flexibility".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalActivityCategory".freeze + type: "https://schema.org/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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "FourWheelDriveConfiguration".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "schemas:DriveWheelConfigurationValue".freeze + type: "https://schema.org/DriveWheelConfigurationValue".freeze term :Friday, comment: "The day of the week between Thursday and Saturday.".freeze, + "https://schema.org/sameAs": "http://www.wikidata.org/entity/Q130".freeze, label: "Friday".freeze, - "schemas:sameAs": "http://www.wikidata.org/entity/Q130".freeze, - type: "schemas:DayOfWeek".freeze + type: "https://schema.org/DayOfWeek".freeze term :FrontWheelDriveConfiguration, comment: "Front-wheel drive is a transmission layout where the engine drives the front wheels.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "FrontWheelDriveConfiguration".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "schemas:DriveWheelConfigurationValue".freeze + type: "https://schema.org/DriveWheelConfigurationValue".freeze term :FullRefund, comment: "A FullRefund ...".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "FullRefund".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:RefundTypeEnumeration".freeze + type: "https://schema.org/RefundTypeEnumeration".freeze term :Gastroenterologic, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Gastroenterologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :Genetic, comment: "A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Genetic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :Genitourinary, comment: "Genitourinary system function assessment with clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Genitourinary".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :Geriatric, comment: "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Geriatric".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :GlutenFreeDiet, comment: "A diet exclusive of gluten.".freeze, label: "GlutenFreeDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :GraphicNovel, comment: "Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.".freeze, + "https://schema.org/isPartOf": "https://bib.schema.org".freeze, label: "GraphicNovel".freeze, - "schemas:isPartOf": "https://bib.schema.org".freeze, - type: "schemas:BookFormatType".freeze + type: "https://schema.org/BookFormatType".freeze term :GroupBoardingPolicy, comment: "The airline boards by groups based on check-in time, priority, etc.".freeze, label: "GroupBoardingPolicy".freeze, - type: "schemas:BoardingPolicyType".freeze + type: "https://schema.org/BoardingPolicyType".freeze term :Gynecologic, comment: "A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Gynecologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :HalalDiet, comment: "A diet conforming to Islamic dietary practices.".freeze, label: "HalalDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :Hardcover, comment: "Book format: Hardcover.".freeze, label: "Hardcover".freeze, - type: "schemas:BookFormatType".freeze + type: "https://schema.org/BookFormatType".freeze term :Head, comment: "Head assessment with clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Head".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :HealthCare, comment: "HealthCare: this is a benefit for health care.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "HealthCare".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schemas:GovernmentBenefitsType".freeze + type: "https://schema.org/GovernmentBenefitsType".freeze term :HearingImpairedSupported, comment: "Uses devices to support users with hearing impairments.".freeze, label: "HearingImpairedSupported".freeze, - type: "schemas:ContactPointOption".freeze + type: "https://schema.org/ContactPointOption".freeze term :Hematologic, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Hematologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :HinduDiet, comment: "A diet conforming to Hindu dietary practices, in particular, beef-free.".freeze, label: "HinduDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :Homeopathic, comment: "A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Homeopathic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicineSystem".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "HowOrWhereHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :InForce, comment: "Indicates that a legislation is in force.".freeze, exactMatch: "http://data.europa.eu/eli/ontology#InForce-inForce".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "InForce".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "schemas:LegalForceStatus".freeze + type: "https://schema.org/LegalForceStatus".freeze term :InStock, comment: "Indicates that the item is in stock.".freeze, label: "InStock".freeze, - type: "schemas:ItemAvailability".freeze + type: "https://schema.org/ItemAvailability".freeze term :InStoreOnly, comment: "Indicates that the item is available only at physical locations.".freeze, label: "InStoreOnly".freeze, - type: "schemas:ItemAvailability".freeze + type: "https://schema.org/ItemAvailability".freeze term :Infectious, comment: "Something in medical science that pertains to infectious diseases i.e caused by bacterial, viral, fungal or parasitic infections.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Infectious".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :Installment, comment: "Represents the installment pricing component of the total price for an offered product".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "Installment".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schemas:PriceComponentTypeEnumeration".freeze + type: "https://schema.org/PriceComponentTypeEnumeration".freeze term :InternationalTrial, comment: "An international trial.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "InternationalTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalTrialDesign".freeze + type: "https://schema.org/MedicalTrialDesign".freeze term :InvoicePrice, comment: "Represents the invoice price of an offered product.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "InvoicePrice".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schemas:PriceTypeEnumeration".freeze + type: "https://schema.org/PriceTypeEnumeration".freeze term :ItemListOrderAscending, comment: "An ItemList ordered with lower values listed first.".freeze, label: "ItemListOrderAscending".freeze, - type: "schemas:ItemListOrderType".freeze + type: "https://schema.org/ItemListOrderType".freeze term :ItemListOrderDescending, comment: "An ItemList ordered with higher values listed first.".freeze, label: "ItemListOrderDescending".freeze, - type: "schemas:ItemListOrderType".freeze + type: "https://schema.org/ItemListOrderType".freeze term :ItemListUnordered, comment: "An ItemList ordered with no explicit order.".freeze, label: "ItemListUnordered".freeze, - type: "schemas:ItemListOrderType".freeze + type: "https://schema.org/ItemListOrderType".freeze term :KosherDiet, comment: "A diet conforming to Jewish dietary practices.".freeze, label: "KosherDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :LaboratoryScience, comment: "A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "LaboratoryScience".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :LaserDiscFormat, comment: "LaserDiscFormat.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "LaserDiscFormat".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicReleaseFormatType".freeze + type: "https://schema.org/MusicReleaseFormatType".freeze term :LeftHandDriving, comment: "The steering position is on the left side of the vehicle (viewed from the main direction of driving).".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "LeftHandDriving".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "schemas:SteeringPositionValue".freeze + type: "https://schema.org/SteeringPositionValue".freeze term :LeisureTimeActivity, comment: "Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "LeisureTimeActivity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalActivityCategory".freeze + type: "https://schema.org/PhysicalActivityCategory".freeze term :LimitedAvailability, comment: "Indicates that the item has limited availability.".freeze, label: "LimitedAvailability".freeze, - type: "schemas:ItemAvailability".freeze + type: "https://schema.org/ItemAvailability".freeze term :LimitedByGuaranteeCharity, comment: "LimitedByGuaranteeCharity: Non-profit type referring to a charitable company that is limited by guarantee (UK).".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "LimitedByGuaranteeCharity".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:UKNonprofitType".freeze + type: "https://schema.org/UKNonprofitType".freeze term :ListPrice, comment: "Represents the list price (the price a product is actually advertised for) of an offered product.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "ListPrice".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schemas:PriceTypeEnumeration".freeze + type: "https://schema.org/PriceTypeEnumeration".freeze term :LiveAlbum, comment: "LiveAlbum.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "LiveAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumProductionType".freeze + type: "https://schema.org/MusicAlbumProductionType".freeze term :LivingWithHealthAspect, comment: "Information about coping or life related to the topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "LivingWithHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :LockerDelivery, comment: "A DeliveryMethod in which an item is made available via locker.".freeze, label: "LockerDelivery".freeze, - type: "schemas:DeliveryMethod".freeze + type: "https://schema.org/DeliveryMethod".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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Longitudinal".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalObservationalStudyDesign".freeze + type: "https://schema.org/MedicalObservationalStudyDesign".freeze term :LowCalorieDiet, comment: "A diet focused on reduced calorie intake.".freeze, label: "LowCalorieDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :LowFatDiet, comment: "A diet focused on reduced fat and cholesterol intake.".freeze, label: "LowFatDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :LowLactoseDiet, comment: "A diet appropriate for people with lactose intolerance.".freeze, label: "LowLactoseDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :LowSaltDiet, comment: "A diet focused on reduced sodium intake.".freeze, label: "LowSaltDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :Lung, comment: "Lung and respiratory system clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Lung".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :MRI, comment: "Magnetic resonance imaging.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MRI".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalImagingTechnique".freeze + type: "https://schema.org/MedicalImagingTechnique".freeze term :MSRP, comment: "Represents the manufacturer suggested retail price (\"MSRP\") of an offered product.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "MSRP".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schemas:PriceTypeEnumeration".freeze + type: "https://schema.org/PriceTypeEnumeration".freeze term :Male, comment: "The male gender.".freeze, label: "Male".freeze, - type: "schemas:GenderType".freeze + type: "https://schema.org/GenderType".freeze term :MayTreatHealthAspect, comment: "Related topics may be treated by a Topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "MayTreatHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :MedicalResearcher, comment: "Medical researchers.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MedicalResearcher".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalAudienceType".freeze + type: "https://schema.org/MedicalAudienceType".freeze term :MerchantReturnFiniteReturnWindow, comment: "MerchantReturnFiniteReturnWindow: there is a finite window for product returns.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnFiniteReturnWindow".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:MerchantReturnEnumeration".freeze + type: "https://schema.org/MerchantReturnEnumeration".freeze term :MerchantReturnNotPermitted, comment: "MerchantReturnNotPermitted: product returns are not permitted.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnNotPermitted".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:MerchantReturnEnumeration".freeze + type: "https://schema.org/MerchantReturnEnumeration".freeze term :MerchantReturnUnlimitedWindow, comment: "MerchantReturnUnlimitedWindow: there is an unlimited window for product returns.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnUnlimitedWindow".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:MerchantReturnEnumeration".freeze + type: "https://schema.org/MerchantReturnEnumeration".freeze term :MerchantReturnUnspecified, comment: "MerchantReturnUnspecified: a product return policy is not specified here.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnUnspecified".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:MerchantReturnEnumeration".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Midwifery".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :MinimumAdvertisedPrice, comment: "Represents the minimum advertised price (\"MAP\") (as dictated by the manufacturer) of an offered product.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "MinimumAdvertisedPrice".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schemas:PriceTypeEnumeration".freeze + type: "https://schema.org/PriceTypeEnumeration".freeze term :MisconceptionsHealthAspect, comment: "Content about common misconceptions and myths that are related to a topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "MisconceptionsHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :MissingContext, comment: "MissingContext: ...".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "MissingContext".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, - type: "schemas:MediaManipulationRatingEnumeration".freeze + type: "https://schema.org/MediaManipulationRatingEnumeration".freeze term :MixedEventAttendanceMode, comment: "MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "MixedEventAttendanceMode".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "schemas:EventAttendanceModeEnumeration".freeze + type: "https://schema.org/EventAttendanceModeEnumeration".freeze term :MixtapeAlbum, comment: "MixtapeAlbum.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MixtapeAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumProductionType".freeze + type: "https://schema.org/MusicAlbumProductionType".freeze term :Monday, comment: "The day of the week between Sunday and Tuesday.".freeze, + "https://schema.org/sameAs": "http://www.wikidata.org/entity/Q105".freeze, label: "Monday".freeze, - "schemas:sameAs": "http://www.wikidata.org/entity/Q105".freeze, - type: "schemas:DayOfWeek".freeze + type: "https://schema.org/DayOfWeek".freeze term :MultiCenterTrial, comment: "A trial that takes place at multiple centers.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MultiCenterTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalTrialDesign".freeze + type: "https://schema.org/MedicalTrialDesign".freeze term :MultiPlayer, comment: "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.".freeze, label: "MultiPlayer".freeze, - type: "schemas:GamePlayMode".freeze + type: "https://schema.org/GamePlayMode".freeze term :Musculoskeletal, comment: "A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Musculoskeletal".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :MusculoskeletalExam, comment: "Musculoskeletal system clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "MusculoskeletalExam".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :Neck, comment: "Neck assessment with clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Neck".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :Neuro, comment: "Neurological system clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Neuro".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :Neurologic, comment: "A specific branch of medical science that studies the nerves and nervous system and its respective disease states.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Neurologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :NewCondition, comment: "Indicates that the item is new.".freeze, label: "NewCondition".freeze, - type: "schemas:OfferItemCondition".freeze + type: "https://schema.org/OfferItemCondition".freeze term :NoninvasiveProcedure, comment: "A type of medical procedure that involves noninvasive techniques.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "NoninvasiveProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalProcedureType".freeze + type: "https://schema.org/MedicalProcedureType".freeze term :Nonprofit501a, comment: "Nonprofit501a: Non-profit type referring to Farmers’ Cooperative Associations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501a".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c1".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c10, comment: "Nonprofit501c10: Non-profit type referring to Domestic Fraternal Societies and Associations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c10".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c11, comment: "Nonprofit501c11: Non-profit type referring to Teachers' Retirement Fund Associations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c11".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c12".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c13, comment: "Nonprofit501c13: Non-profit type referring to Cemetery Companies.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c13".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c14, comment: "Nonprofit501c14: Non-profit type referring to State-Chartered Credit Unions, Mutual Reserve Funds.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c14".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c15, comment: "Nonprofit501c15: Non-profit type referring to Mutual Insurance Companies or Associations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c15".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c16, comment: "Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c16".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c17, comment: "Nonprofit501c17: Non-profit type referring to Supplemental Unemployment Benefit Trusts.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c17".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c18, comment: "Nonprofit501c18: Non-profit type referring to Employee Funded Pension Trust (created before 25 June 1959).".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c18".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c19, comment: "Nonprofit501c19: Non-profit type referring to Post or Organization of Past or Present Members of the Armed Forces.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c19".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c2, comment: "Nonprofit501c2: Non-profit type referring to Title-holding Corporations for Exempt Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c2".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c20, comment: "Nonprofit501c20: Non-profit type referring to Group Legal Services Plan Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c20".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c21, comment: "Nonprofit501c21: Non-profit type referring to Black Lung Benefit Trusts.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c21".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c22, comment: "Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c22".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c23, comment: "Nonprofit501c23: Non-profit type referring to Veterans Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c23".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c24, comment: "Nonprofit501c24: Non-profit type referring to Section 4049 ERISA Trusts.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c24".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c25, comment: "Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c25".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c26, comment: "Nonprofit501c26: Non-profit type referring to State-Sponsored Organizations Providing Health Coverage for High-Risk Individuals.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c26".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c27, comment: "Nonprofit501c27: Non-profit type referring to State-Sponsored Workers' Compensation Reinsurance Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c27".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c28, comment: "Nonprofit501c28: Non-profit type referring to National Railroad Retirement Investment Trusts.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c28".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c3".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c4, comment: "Nonprofit501c4: Non-profit type referring to Civic Leagues, Social Welfare Organizations, and Local Associations of Employees.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c4".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c5, comment: "Nonprofit501c5: Non-profit type referring to Labor, Agricultural and Horticultural Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c5".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c6, comment: "Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c6".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c7, comment: "Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c7".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c8, comment: "Nonprofit501c8: Non-profit type referring to Fraternal Beneficiary Societies and Associations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c8".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501c9, comment: "Nonprofit501c9: Non-profit type referring to Voluntary Employee Beneficiary Associations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501c9".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501d, comment: "Nonprofit501d: Non-profit type referring to Religious and Apostolic Associations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501d".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501e, comment: "Nonprofit501e: Non-profit type referring to Cooperative Hospital Service Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501e".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501f, comment: "Nonprofit501f: Non-profit type referring to Cooperative Service Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501f".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501k, comment: "Nonprofit501k: Non-profit type referring to Child Care Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501k".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501n, comment: "Nonprofit501n: Non-profit type referring to Charitable Risk Pools.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501n".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit501q, comment: "Nonprofit501q: Non-profit type referring to Credit Counseling Organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit501q".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :Nonprofit527, comment: "Nonprofit527: Non-profit type referring to Political organizations.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "Nonprofit527".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:USNonprofitType".freeze + type: "https://schema.org/USNonprofitType".freeze term :NonprofitANBI, comment: "NonprofitANBI: Non-profit type referring to a Public Benefit Organization (NL).".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "NonprofitANBI".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:NLNonprofitType".freeze + type: "https://schema.org/NLNonprofitType".freeze term :NonprofitSBBI, comment: "NonprofitSBBI: Non-profit type referring to a Social Interest Promoting Institution (NL).".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "NonprofitSBBI".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:NLNonprofitType".freeze + type: "https://schema.org/NLNonprofitType".freeze term :Nose, comment: "Nose function assessment with clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Nose".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :NotInForce, comment: "Indicates that a legislation is currently not in force.".freeze, exactMatch: "http://data.europa.eu/eli/ontology#InForce-notInForce".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "NotInForce".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "schemas:LegalForceStatus".freeze + type: "https://schema.org/LegalForceStatus".freeze term :NotYetRecruiting, comment: "Not yet recruiting.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "NotYetRecruiting".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :Nursing, comment: "A health profession of a person formally educated and trained in the care of the sick or infirm person.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Nursing".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :OTC, comment: "The character of a medical substance, typically a medicine, of being available over the counter or not.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "OTC".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugPrescriptionStatus".freeze + type: "https://schema.org/DrugPrescriptionStatus".freeze term :Observational, comment: "An observational study design.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Observational".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalObservationalStudyDesign".freeze + type: "https://schema.org/MedicalObservationalStudyDesign".freeze term :Obstetric, comment: "A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Obstetric".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :OccupationalActivity, comment: "Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "OccupationalActivity".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalActivityCategory".freeze + type: "https://schema.org/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, exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-official".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "OfficialLegalValue".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "schemas:LegalValueLevel".freeze + type: "https://schema.org/LegalValueLevel".freeze term :OfflineEventAttendanceMode, comment: "OfflineEventAttendanceMode - an event that is primarily conducted offline. ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "OfflineEventAttendanceMode".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "schemas:EventAttendanceModeEnumeration".freeze + type: "https://schema.org/EventAttendanceModeEnumeration".freeze term :OfflinePermanently, comment: "Game server status: OfflinePermanently. Server is offline and not available.".freeze, label: "OfflinePermanently".freeze, - type: "schemas:GameServerStatus".freeze + type: "https://schema.org/GameServerStatus".freeze term :OfflineTemporarily, comment: "Game server status: OfflineTemporarily. Server is offline now but it can be online soon.".freeze, label: "OfflineTemporarily".freeze, - type: "schemas:GameServerStatus".freeze + type: "https://schema.org/GameServerStatus".freeze term :OnSitePickup, comment: "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.".freeze, label: "OnSitePickup".freeze, - type: "schemas:DeliveryMethod".freeze + type: "https://schema.org/DeliveryMethod".freeze term :Oncologic, comment: "A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Oncologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :OneTimePayments, comment: "OneTimePayments: this is a benefit for one-time payments for individuals.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "OneTimePayments".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schemas:GovernmentBenefitsType".freeze + type: "https://schema.org/GovernmentBenefitsType".freeze term :Online, comment: "Game server status: Online. Server is available.".freeze, label: "Online".freeze, - type: "schemas:GameServerStatus".freeze + type: "https://schema.org/GameServerStatus".freeze term :OnlineEventAttendanceMode, comment: "OnlineEventAttendanceMode - an event that is primarily conducted online. ".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "OnlineEventAttendanceMode".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, - type: "schemas:EventAttendanceModeEnumeration".freeze + type: "https://schema.org/EventAttendanceModeEnumeration".freeze term :OnlineFull, comment: "Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.".freeze, label: "OnlineFull".freeze, - type: "schemas:GameServerStatus".freeze + type: "https://schema.org/GameServerStatus".freeze term :OnlineOnly, comment: "Indicates that the item is available only online.".freeze, label: "OnlineOnly".freeze, - type: "schemas:ItemAvailability".freeze + type: "https://schema.org/ItemAvailability".freeze term :OpenTrial, comment: "A trial design in which the researcher knows the full details of the treatment, and so does the patient.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "OpenTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalTrialDesign".freeze + type: "https://schema.org/MedicalTrialDesign".freeze term :Optometric, comment: "The science or practice of testing visual acuity and prescribing corrective lenses.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Optometric".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :OrderCancelled, comment: "OrderStatus representing cancellation of an order.".freeze, label: "OrderCancelled".freeze, - type: "schemas:OrderStatus".freeze + type: "https://schema.org/OrderStatus".freeze term :OrderDelivered, comment: "OrderStatus representing successful delivery of an order.".freeze, label: "OrderDelivered".freeze, - type: "schemas:OrderStatus".freeze + type: "https://schema.org/OrderStatus".freeze term :OrderInTransit, comment: "OrderStatus representing that an order is in transit.".freeze, label: "OrderInTransit".freeze, - type: "schemas:OrderStatus".freeze + type: "https://schema.org/OrderStatus".freeze term :OrderPaymentDue, comment: "OrderStatus representing that payment is due on an order.".freeze, label: "OrderPaymentDue".freeze, - type: "schemas:OrderStatus".freeze + type: "https://schema.org/OrderStatus".freeze term :OrderPickupAvailable, comment: "OrderStatus representing availability of an order for pickup.".freeze, label: "OrderPickupAvailable".freeze, - type: "schemas:OrderStatus".freeze + type: "https://schema.org/OrderStatus".freeze term :OrderProblem, comment: "OrderStatus representing that there is a problem with the order.".freeze, label: "OrderProblem".freeze, - type: "schemas:OrderStatus".freeze + type: "https://schema.org/OrderStatus".freeze term :OrderProcessing, comment: "OrderStatus representing that an order is being processed.".freeze, label: "OrderProcessing".freeze, - type: "schemas:OrderStatus".freeze + type: "https://schema.org/OrderStatus".freeze term :OrderReturned, comment: "OrderStatus representing that an order has been returned.".freeze, label: "OrderReturned".freeze, - type: "schemas:OrderStatus".freeze + type: "https://schema.org/OrderStatus".freeze term :OriginalShippingFees, comment: "OriginalShippingFees ...".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "OriginalShippingFees".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:ReturnFeesEnumeration".freeze + type: "https://schema.org/ReturnFeesEnumeration".freeze term :Osteopathic, comment: "A system of medicine focused on promoting the body's innate ability to heal itself.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Osteopathic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicineSystem".freeze + type: "https://schema.org/MedicineSystem".freeze term :Otolaryngologic, comment: "A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Otolaryngologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :OutOfStock, comment: "Indicates that the item is out of stock.".freeze, label: "OutOfStock".freeze, - type: "schemas:ItemAvailability".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "OverviewHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :PET, comment: "Positron emission tomography imaging.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PET".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalImagingTechnique".freeze + type: "https://schema.org/MedicalImagingTechnique".freeze term :PaidLeave, comment: "PaidLeave: this is a benefit for paid leave.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "PaidLeave".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schemas:GovernmentBenefitsType".freeze + type: "https://schema.org/GovernmentBenefitsType".freeze term :Paperback, comment: "Book format: Paperback.".freeze, label: "Paperback".freeze, - type: "schemas:BookFormatType".freeze + type: "https://schema.org/BookFormatType".freeze term :ParcelService, comment: "A private parcel service as the delivery mode available for a certain offer.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "ParcelService".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - type: "schemas:DeliveryMethod".freeze + type: "https://schema.org/DeliveryMethod".freeze term :ParentalSupport, comment: "ParentalSupport: this is a benefit for parental support.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "ParentalSupport".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schemas:GovernmentBenefitsType".freeze + type: "https://schema.org/GovernmentBenefitsType".freeze term :ParkingMap, comment: "A parking map.".freeze, label: "ParkingMap".freeze, - type: "schemas:MapCategoryType".freeze + type: "https://schema.org/MapCategoryType".freeze term :PartiallyInForce, comment: "Indicates that parts of the legislation are in force, and parts are not.".freeze, exactMatch: "http://data.europa.eu/eli/ontology#InForce-partiallyInForce".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "PartiallyInForce".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "schemas:LegalForceStatus".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Pathology".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "PatientExperienceHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :PaymentAutomaticallyApplied, comment: "An automatic payment system is in place and will be used.".freeze, label: "PaymentAutomaticallyApplied".freeze, - type: "schemas:PaymentStatusType".freeze + type: "https://schema.org/PaymentStatusType".freeze term :PaymentComplete, comment: "The payment has been received and processed.".freeze, label: "PaymentComplete".freeze, - type: "schemas:PaymentStatusType".freeze + type: "https://schema.org/PaymentStatusType".freeze term :PaymentDeclined, comment: "The payee received the payment, but it was declined for some reason.".freeze, label: "PaymentDeclined".freeze, - type: "schemas:PaymentStatusType".freeze + type: "https://schema.org/PaymentStatusType".freeze term :PaymentDue, comment: "The payment is due, but still within an acceptable time to be received.".freeze, label: "PaymentDue".freeze, - type: "schemas:PaymentStatusType".freeze + type: "https://schema.org/PaymentStatusType".freeze term :PaymentPastDue, comment: "The payment is due and considered late.".freeze, label: "PaymentPastDue".freeze, - type: "schemas:PaymentStatusType".freeze + type: "https://schema.org/PaymentStatusType".freeze term :Pediatric, comment: "A specific branch of medical science that specializes in the care of infants, children and adolescents.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Pediatric".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :PercutaneousProcedure, comment: "A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PercutaneousProcedure".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalProcedureType".freeze + type: "https://schema.org/MedicalProcedureType".freeze term :PharmacySpecialty, comment: "The practice or art and science of preparing and dispensing drugs and medicines.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PharmacySpecialty".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :Physiotherapy, comment: "The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery..".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Physiotherapy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :PlaceboControlledTrial, comment: "A placebo-controlled trial design.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PlaceboControlledTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalTrialDesign".freeze + type: "https://schema.org/MedicalTrialDesign".freeze term :PlasticSurgery, comment: "A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PlasticSurgery".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :Podiatric, comment: "Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Podiatric".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :PotentialActionStatus, comment: "A description of an action that is supported.".freeze, label: "PotentialActionStatus".freeze, - type: "schemas:ActionStatusType".freeze + type: "https://schema.org/ActionStatusType".freeze term :PreOrder, comment: "Indicates that the item is available for pre-order.".freeze, label: "PreOrder".freeze, - type: "schemas:ItemAvailability".freeze + type: "https://schema.org/ItemAvailability".freeze term :PreSale, comment: "Indicates that the item is available for ordering and delivery before general availability.".freeze, label: "PreSale".freeze, - type: "schemas:ItemAvailability".freeze + type: "https://schema.org/ItemAvailability".freeze term :PrescriptionOnly, comment: "Available by prescription only.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PrescriptionOnly".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugPrescriptionStatus".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "PreventionHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PrimaryCare".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :ProductReturnFiniteReturnWindow, comment: "ProductReturnFiniteReturnWindow: there is a finite window for product returns.".freeze, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "https://schema.org/supersededBy": "https://schema.org/MerchantReturnFiniteReturnWindow".freeze, label: "ProductReturnFiniteReturnWindow".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - "schemas:supersededBy": "schemas:MerchantReturnFiniteReturnWindow".freeze, - type: "schemas:ProductReturnEnumeration".freeze + type: "https://schema.org/ProductReturnEnumeration".freeze term :ProductReturnNotPermitted, comment: "ProductReturnNotPermitted: product returns are not permitted.".freeze, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "https://schema.org/supersededBy": "https://schema.org/MerchantReturnNotPermitted".freeze, label: "ProductReturnNotPermitted".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - "schemas:supersededBy": "schemas:MerchantReturnNotPermitted".freeze, - type: "schemas:ProductReturnEnumeration".freeze + type: "https://schema.org/ProductReturnEnumeration".freeze term :ProductReturnUnlimitedWindow, comment: "ProductReturnUnlimitedWindow: there is an unlimited window for product returns.".freeze, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "https://schema.org/supersededBy": "https://schema.org/MerchantReturnUnlimitedWindow".freeze, label: "ProductReturnUnlimitedWindow".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - "schemas:supersededBy": "schemas:MerchantReturnUnlimitedWindow".freeze, - type: "schemas:ProductReturnEnumeration".freeze + type: "https://schema.org/ProductReturnEnumeration".freeze term :ProductReturnUnspecified, comment: "ProductReturnUnspecified: a product return policy is not specified here.".freeze, + "https://schema.org/isPartOf": "https://attic.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, + "https://schema.org/supersededBy": "https://schema.org/MerchantReturnUnspecified".freeze, label: "ProductReturnUnspecified".freeze, - "schemas:isPartOf": "https://attic.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - "schemas:supersededBy": "schemas:MerchantReturnUnspecified".freeze, - type: "schemas:ProductReturnEnumeration".freeze + type: "https://schema.org/ProductReturnEnumeration".freeze term :PrognosisHealthAspect, comment: "Typical progression and happenings of life course of the topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "PrognosisHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Psychiatric".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :PublicHealth, comment: "Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "PublicHealth".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalBusiness".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalBusiness".freeze, + type: "https://schema.org/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, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PublicHolidays".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, - type: "schemas:DayOfWeek".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Pulmonary".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :Radiography, comment: "Radiography is an imaging technique that uses electromagnetic radiation other than visible light, especially X-rays, to view the internal structure of a non-uniformly composed and opaque object such as the human body.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Radiography".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: ["schemas:MedicalImagingTechnique".freeze, "schemas:MedicalSpecialty".freeze] + type: ["https://schema.org/MedicalImagingTechnique".freeze, "https://schema.org/MedicalSpecialty".freeze] term :RandomizedTrial, comment: "A randomized trial design.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "RandomizedTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalTrialDesign".freeze + type: "https://schema.org/MedicalTrialDesign".freeze term :ReadPermission, comment: "Permission to read or view the document.".freeze, label: "ReadPermission".freeze, - type: "schemas:DigitalDocumentPermissionType".freeze + type: "https://schema.org/DigitalDocumentPermissionType".freeze term :RearWheelDriveConfiguration, comment: "Real-wheel drive is a transmission layout where the engine drives the rear wheels.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "RearWheelDriveConfiguration".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "schemas:DriveWheelConfigurationValue".freeze + type: "https://schema.org/DriveWheelConfigurationValue".freeze term :Recruiting, comment: "Recruiting participants.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Recruiting".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :RefurbishedCondition, comment: "Indicates that the item is refurbished.".freeze, label: "RefurbishedCondition".freeze, - type: "schemas:OfferItemCondition".freeze + type: "https://schema.org/OfferItemCondition".freeze term :Registry, comment: "A registry-based study design.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Registry".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalObservationalStudyDesign".freeze + type: "https://schema.org/MedicalObservationalStudyDesign".freeze term :ReimbursementCap, comment: "The drug's cost represents the maximum reimbursement paid by an insurer for the drug.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "ReimbursementCap".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugCostCategory".freeze + type: "https://schema.org/DrugCostCategory".freeze term :RelatedTopicsHealthAspect, comment: "Other prominent or relevant topics tied to the main topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "RelatedTopicsHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :RemixAlbum, comment: "RemixAlbum.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "RemixAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumProductionType".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Renal".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :RentalVehicleUsage, comment: "Indicates the usage of the vehicle as a rental car.".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "RentalVehicleUsage".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "schemas:CarUsageType".freeze + type: "https://schema.org/CarUsageType".freeze term :ReservationCancelled, comment: "The status for a previously confirmed reservation that is now cancelled.".freeze, label: "ReservationCancelled".freeze, - type: "schemas:ReservationStatusType".freeze + type: "https://schema.org/ReservationStatusType".freeze term :ReservationConfirmed, comment: "The status of a confirmed reservation.".freeze, label: "ReservationConfirmed".freeze, - type: "schemas:ReservationStatusType".freeze + type: "https://schema.org/ReservationStatusType".freeze term :ReservationHold, comment: "The status of a reservation on hold pending an update like credit card number or flight changes.".freeze, label: "ReservationHold".freeze, - type: "schemas:ReservationStatusType".freeze + type: "https://schema.org/ReservationStatusType".freeze term :ReservationPending, comment: "The status of a reservation when a request has been sent, but not confirmed.".freeze, label: "ReservationPending".freeze, - type: "schemas:ReservationStatusType".freeze + type: "https://schema.org/ReservationStatusType".freeze term :RespiratoryTherapy, comment: "The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "RespiratoryTherapy".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - subClassOf: "schemas:MedicalTherapy".freeze, - type: "schemas:MedicalSpecialty".freeze + subClassOf: "https://schema.org/MedicalTherapy".freeze, + type: "https://schema.org/MedicalSpecialty".freeze term :RestockingFees, comment: "RestockingFees ...".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "RestockingFees".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:ReturnFeesEnumeration".freeze + type: "https://schema.org/ReturnFeesEnumeration".freeze term :ResultsAvailable, comment: "Results are available.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "ResultsAvailable".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :ResultsNotAvailable, comment: "Results are not available.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "ResultsNotAvailable".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :Retail, comment: "The drug's cost represents the retail cost of the drug.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Retail".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugCostCategory".freeze + type: "https://schema.org/DrugCostCategory".freeze term :ReturnShippingFees, comment: "ReturnShippingFees ...".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ReturnShippingFees".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:ReturnFeesEnumeration".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Rheumatologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :RightHandDriving, comment: "The steering position is on the right side of the vehicle (viewed from the main direction of driving).".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "RightHandDriving".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "schemas:SteeringPositionValue".freeze + type: "https://schema.org/SteeringPositionValue".freeze term :RisksOrComplicationsHealthAspect, comment: "Information about the risk factors and possible complications that may follow a topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "RisksOrComplicationsHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :RsvpResponseMaybe, comment: "The invitee may or may not attend.".freeze, label: "RsvpResponseMaybe".freeze, - type: "schemas:RsvpResponseType".freeze + type: "https://schema.org/RsvpResponseType".freeze term :RsvpResponseNo, comment: "The invitee will not attend.".freeze, label: "RsvpResponseNo".freeze, - type: "schemas:RsvpResponseType".freeze + type: "https://schema.org/RsvpResponseType".freeze term :RsvpResponseYes, comment: "The invitee will attend.".freeze, label: "RsvpResponseYes".freeze, - type: "schemas:RsvpResponseType".freeze + type: "https://schema.org/RsvpResponseType".freeze term :SRP, comment: "Represents the suggested retail price (\"SRP\") of an offered product.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "SRP".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schemas:PriceTypeEnumeration".freeze + type: "https://schema.org/PriceTypeEnumeration".freeze term :SalePrice, comment: "Represents a sale price (usually active for a limited period) of an offered product.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, label: "SalePrice".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2712".freeze, - type: "schemas:PriceTypeEnumeration".freeze + type: "https://schema.org/PriceTypeEnumeration".freeze term :Saturday, comment: "The day of the week between Friday and Sunday.".freeze, + "https://schema.org/sameAs": "http://www.wikidata.org/entity/Q131".freeze, label: "Saturday".freeze, - "schemas:sameAs": "http://www.wikidata.org/entity/Q131".freeze, - type: "schemas:DayOfWeek".freeze + type: "https://schema.org/DayOfWeek".freeze term :ScreeningHealthAspect, comment: "Content about how to screen or further filter a topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "ScreeningHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :SeatingMap, comment: "A seating map.".freeze, label: "SeatingMap".freeze, - type: "schemas:MapCategoryType".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SeeDoctorHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SelfCareHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :SideEffectsHealthAspect, comment: "Side effects that can be observed from the usage of the topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SideEffectsHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "SingleBlindedTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalTrialDesign".freeze + type: "https://schema.org/MedicalTrialDesign".freeze term :SingleCenterTrial, comment: "A trial that takes place at a single center.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "SingleCenterTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalTrialDesign".freeze + type: "https://schema.org/MedicalTrialDesign".freeze term :SinglePlayer, comment: "Play mode: SinglePlayer. Which is played by a lone player.".freeze, label: "SinglePlayer".freeze, - type: "schemas:GamePlayMode".freeze + type: "https://schema.org/GamePlayMode".freeze term :SingleRelease, comment: "SingleRelease.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "SingleRelease".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumReleaseType".freeze + type: "https://schema.org/MusicAlbumReleaseType".freeze term :Skin, comment: "Skin assessment with clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Skin".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :SoldOut, comment: "Indicates that the item has sold out.".freeze, label: "SoldOut".freeze, - type: "schemas:ItemAvailability".freeze + type: "https://schema.org/ItemAvailability".freeze term :SoundtrackAlbum, comment: "SoundtrackAlbum.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "SoundtrackAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumProductionType".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "SpeechPathology".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :SpokenWordAlbum, comment: "SpokenWordAlbum.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "SpokenWordAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumProductionType".freeze + type: "https://schema.org/MusicAlbumProductionType".freeze term :StagesHealthAspect, comment: "Stages that can be observed from a topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "StagesHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :StoreCreditRefund, comment: "A StoreCreditRefund ...".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "StoreCreditRefund".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, - type: "schemas:RefundTypeEnumeration".freeze + type: "https://schema.org/RefundTypeEnumeration".freeze term :StrengthTraining, comment: "Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "StrengthTraining".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalActivityCategory".freeze + type: "https://schema.org/PhysicalActivityCategory".freeze term :StudioAlbum, comment: "StudioAlbum.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "StudioAlbum".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicAlbumProductionType".freeze + type: "https://schema.org/MusicAlbumProductionType".freeze term :Subscription, comment: "Represents the subscription pricing component of the total price for an offered product".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, label: "Subscription".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2689".freeze, - type: "schemas:PriceComponentTypeEnumeration".freeze + type: "https://schema.org/PriceComponentTypeEnumeration".freeze term :Sunday, comment: "The day of the week between Saturday and Monday.".freeze, + "https://schema.org/sameAs": "http://www.wikidata.org/entity/Q132".freeze, label: "Sunday".freeze, - "schemas:sameAs": "http://www.wikidata.org/entity/Q132".freeze, - type: "schemas:DayOfWeek".freeze + type: "https://schema.org/DayOfWeek".freeze term :Surgical, comment: "A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Surgical".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :Suspended, comment: "Suspended.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Suspended".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :SymptomsHealthAspect, comment: "Symptoms or related symptoms of a Topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SymptomsHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :TaxiVehicleUsage, comment: "Indicates the usage of the car as a taxi.".freeze, + "https://schema.org/isPartOf": "https://auto.schema.org".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "TaxiVehicleUsage".freeze, - "schemas:isPartOf": "https://auto.schema.org".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, - type: "schemas:CarUsageType".freeze + type: "https://schema.org/CarUsageType".freeze term :Terminated, comment: "Terminated.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Terminated".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :Therapeutic, comment: "A medical device used for therapeutic purposes.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Therapeutic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalDevicePurpose".freeze + type: "https://schema.org/MedicalDevicePurpose".freeze term :Throat, comment: "Throat assessment with clinical examination.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Throat".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:PhysicalExam".freeze + type: "https://schema.org/PhysicalExam".freeze term :Thursday, comment: "The day of the week between Wednesday and Friday.".freeze, + "https://schema.org/sameAs": "http://www.wikidata.org/entity/Q129".freeze, label: "Thursday".freeze, - "schemas:sameAs": "http://www.wikidata.org/entity/Q129".freeze, - type: "schemas:DayOfWeek".freeze + type: "https://schema.org/DayOfWeek".freeze term :TollFree, comment: "The associated telephone number is toll free.".freeze, label: "TollFree".freeze, - type: "schemas:ContactPointOption".freeze + type: "https://schema.org/ContactPointOption".freeze term :Toxicologic, comment: "A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Toxicologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :TraditionalChinese, comment: "A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "TraditionalChinese".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicineSystem".freeze + type: "https://schema.org/MedicineSystem".freeze term :TransitMap, comment: "A transit map.".freeze, label: "TransitMap".freeze, - type: "schemas:MapCategoryType".freeze + type: "https://schema.org/MapCategoryType".freeze term :TreatmentsHealthAspect, comment: "Treatments or related therapies for a Topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "TreatmentsHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "TripleBlindedTrial".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalTrialDesign".freeze + type: "https://schema.org/MedicalTrialDesign".freeze term :True, comment: "The boolean value true.".freeze, label: "True".freeze, - type: "schemas:Boolean".freeze + type: "https://schema.org/Boolean".freeze term :Tuesday, comment: "The day of the week between Monday and Wednesday.".freeze, + "https://schema.org/sameAs": "http://www.wikidata.org/entity/Q127".freeze, label: "Tuesday".freeze, - "schemas:sameAs": "http://www.wikidata.org/entity/Q127".freeze, - type: "schemas:DayOfWeek".freeze + type: "https://schema.org/DayOfWeek".freeze term :TypesHealthAspect, comment: "Categorization and other types related to a topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "TypesHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :UKTrust, comment: "UKTrust: Non-profit type referring to a UK trust.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "UKTrust".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:UKNonprofitType".freeze + type: "https://schema.org/UKNonprofitType".freeze term :Ultrasound, comment: "Ultrasound imaging.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Ultrasound".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalImagingTechnique".freeze + type: "https://schema.org/MedicalImagingTechnique".freeze term :UnemploymentSupport, comment: "UnemploymentSupport: this is a benefit for unemployment support.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "UnemploymentSupport".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, - type: "schemas:GovernmentBenefitsType".freeze + type: "https://schema.org/GovernmentBenefitsType".freeze term :UnincorporatedAssociationCharity, comment: "UnincorporatedAssociationCharity: Non-profit type referring to a charitable company that is not incorporated (UK).".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, label: "UnincorporatedAssociationCharity".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, - type: "schemas:UKNonprofitType".freeze + type: "https://schema.org/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, exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-unofficial".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "UnofficialLegalValue".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], - type: "schemas:LegalValueLevel".freeze + type: "https://schema.org/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, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Urologic".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalSpecialty".freeze + type: "https://schema.org/MedicalSpecialty".freeze term :UsageOrScheduleHealthAspect, comment: "Content about how, when, frequency and dosage of a topic.".freeze, + "https://schema.org/isPartOf": "https://pending.schema.org".freeze, + "https://schema.org/source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "UsageOrScheduleHealthAspect".freeze, - "schemas:isPartOf": "https://pending.schema.org".freeze, - "schemas:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, - type: "schemas:HealthAspectEnumeration".freeze + type: "https://schema.org/HealthAspectEnumeration".freeze term :UsedCondition, comment: "Indicates that the item is used.".freeze, label: "UsedCondition".freeze, - type: "schemas:OfferItemCondition".freeze + type: "https://schema.org/OfferItemCondition".freeze term :VeganDiet, comment: "A diet exclusive of all animal products.".freeze, label: "VeganDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :VegetarianDiet, comment: "A diet exclusive of animal meat.".freeze, label: "VegetarianDiet".freeze, - type: "schemas:RestrictedDiet".freeze + type: "https://schema.org/RestrictedDiet".freeze term :VenueMap, comment: "A venue map (e.g. for malls, auditoriums, museums, etc.).".freeze, label: "VenueMap".freeze, - type: "schemas:MapCategoryType".freeze + type: "https://schema.org/MapCategoryType".freeze term :VinylFormat, comment: "VinylFormat.".freeze, + "https://schema.org/source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "VinylFormat".freeze, - "schemas:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, - type: "schemas:MusicReleaseFormatType".freeze + type: "https://schema.org/MusicReleaseFormatType".freeze term :Wednesday, comment: "The day of the week between Tuesday and Thursday.".freeze, + "https://schema.org/sameAs": "http://www.wikidata.org/entity/Q128".freeze, label: "Wednesday".freeze, - "schemas:sameAs": "http://www.wikidata.org/entity/Q128".freeze, - type: "schemas:DayOfWeek".freeze + type: "https://schema.org/DayOfWeek".freeze term :WesternConventional, comment: "The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "WesternConventional".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicineSystem".freeze + type: "https://schema.org/MedicineSystem".freeze term :Wholesale, comment: "The drug's cost represents the wholesale acquisition cost of the drug.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Wholesale".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:DrugCostCategory".freeze + type: "https://schema.org/DrugCostCategory".freeze term :Withdrawn, comment: "Withdrawn.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "Withdrawn".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalStudyStatus".freeze + type: "https://schema.org/MedicalStudyStatus".freeze term :WritePermission, comment: "Permission to write or edit the document.".freeze, label: "WritePermission".freeze, - type: "schemas:DigitalDocumentPermissionType".freeze + type: "https://schema.org/DigitalDocumentPermissionType".freeze term :XRay, comment: "X-ray imaging.".freeze, + "https://schema.org/isPartOf": "https://health-lifesci.schema.org".freeze, label: "XRay".freeze, - "schemas:isPartOf": "https://health-lifesci.schema.org".freeze, - type: "schemas:MedicalImagingTechnique".freeze + type: "https://schema.org/MedicalImagingTechnique".freeze term :ZoneBoardingPolicy, comment: "The airline boards by zones of the plane.".freeze, label: "ZoneBoardingPolicy".freeze, - type: "schemas:BoardingPolicyType".freeze + type: "https://schema.org/BoardingPolicyType".freeze end end diff --git a/lib/rdf/vocab/sd.rb b/lib/rdf/vocab/sd.rb index fe275c6..68fc033 100644 --- a/lib/rdf/vocab/sd.rb +++ b/lib/rdf/vocab/sd.rb @@ -3,370 +3,213 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/sparql-service-description# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class SD < RDF::StrictVocabulary - # # An instance of sd:Aggregate represents an aggregate that may be used in a SPARQL aggregate query (for instance in a HAVING clause or SELECT expression) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Aggregate - # - # # An instance of sd:Dataset represents a RDF Dataset comprised of a default graph and zero or more named graphs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dataset - # - # # An instance of sd:EntailmentProfile represents a profile of an entailment regime. An entailment profile MAY impose restrictions on what constitutes valid RDF with respect to entailment. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EntailmentProfile - # - # # An instance of sd:EntailmentRegime represents an entailment regime used in basic graph pattern matching (as described by SPARQL 1.1 Query Language). - # # @return [RDF::Vocabulary::Term] - # attr_reader :EntailmentRegime - # - # # An instance of sd:Feature represents a feature of a SPARQL service. Specific types of features include functions, aggregates, languages, and entailment regimes and profiles. This document defines five instances of sd:Feature: sd:DereferencesURIs, sd:UnionDefaultGraph, sd:RequiresDataset, sd:EmptyGraphs, and sd:BasicFederatedQuery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Feature - # - # # An instance of sd:Function represents a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Function - # - # # An instance of sd:Graph represents the description of an RDF graph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Graph - # - # # An instance of sd:GraphCollection represents a collection of zero or more named graph descriptions. Each named graph description belonging to an sd:GraphCollection MUST be linked with the sd:namedGraph predicate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :GraphCollection - # - # # An instance of sd:Language represents one of the SPARQL languages, including specific configurations providing particular features or extensions. This document defines three instances of sd:Language: sd:SPARQL10Query, sd:SPARQL11Query, and sd:SPARQL11Update. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Language - # - # # An instance of sd:NamedGraph represents a named graph having a name (via sd:name) and an optional graph description (via sd:graph). - # # @return [RDF::Vocabulary::Term] - # attr_reader :NamedGraph - # - # # An instance of sd:Service represents a SPARQL service made available via the SPARQL Protocol. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Service - # - # # Relates an instance of sd:Service to a description of the graphs which are allowed in the construction of a dataset either via the SPARQL Protocol, with FROM/FROM NAMED clauses in a query, or with USING/USING NAMED in an update request, if the service limits the scope of dataset construction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :availableGraphs - # - # # Relates an instance of sd:Service to a description of the default dataset available when no explicit dataset is specified in the query, update request or via protocol parameters. - # # @return [RDF::Vocabulary::Term] - # attr_reader :defaultDataset - # - # # Relates an instance of sd:Service with a resource representing an entailment regime used for basic graph pattern matching. This property is intended for use when a single entailment regime by default applies to all graphs in the default dataset of the service. In situations where a different entailment regime applies to a specific graph in the dataset, the sd:entailmentRegime property should be used to indicate this fact in the description of that graph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :defaultEntailmentRegime - # - # # Relates an instance of sd:Dataset to the description of its default graph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :defaultGraph - # - # # Relates an instance of sd:Service with a resource representing a supported profile of the default entailment regime (as declared by sd:defaultEntailmentRegime). - # # @return [RDF::Vocabulary::Term] - # attr_reader :defaultSupportedEntailmentProfile - # - # # The SPARQL endpoint of an sd:Service that implements the SPARQL Protocol service. The object of the sd:endpoint property is an IRI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :endpoint - # - # # Relates a named graph description with a resource representing an entailment regime used for basic graph pattern matching over that graph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :entailmentRegime - # - # # Relates an instance of sd:Service to an aggregate that may be used in a SPARQL aggregate query (for instance in a HAVING clause or SELECT expression) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE - # # @return [RDF::Vocabulary::Term] - # attr_reader :extensionAggregate - # - # # Relates an instance of sd:Service to a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause. - # # @return [RDF::Vocabulary::Term] - # attr_reader :extensionFunction - # - # # Relates an instance of sd:Service with a resource representing a supported feature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :feature - # - # # Relates a named graph to its graph description. - # # @return [RDF::Vocabulary::Term] - # attr_reader :graph - # - # # Relates an instance of sd:Service to a format that is supported for parsing RDF input; for example, via a SPARQL 1.1 Update LOAD statement, or when URIs are dereferenced in FROM/FROM NAMED/USING/USING NAMED clauses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inputFormat - # - # # Relates an instance of sd:Service to a resource representing an implemented extension to the SPARQL Query or Update language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :languageExtension - # - # # Relates a named graph to the name by which it may be referenced in a FROM/FROM NAMED clause. The object of the sd:name property is an IRI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # Relates an instance of sd:GraphCollection (or its subclass sd:Dataset) to the description of one of its named graphs. The description of such a named graph MUST include the sd:name property and MAY include the sd:graph property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namedGraph - # - # # Relates an instance of sd:Service to a resource representing an implemented feature that extends the SPARQL Query or Update language and that is accessed by using the named property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :propertyFeature - # - # # Relates an instance of sd:Service to a format that is supported for serializing query results. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultFormat - # - # # Relates a named graph description with a resource representing a supported profile of the entailment regime (as declared by sd:entailmentRegime) used for basic graph pattern matching over that graph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supportedEntailmentProfile - # - # # Relates an instance of sd:Service to a SPARQL language (e.g. Query and Update) that it implements. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supportedLanguage - # - # # sd:BasicFederatedQuery, when used as the object of the sd:feature property, indicates that the SPARQL service supports basic federated query using the SERVICE keyword as defined by SPARQL 1.1 Federation Extensions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BasicFederatedQuery - # - # # sd:DereferencesURIs, when used as the object of the sd:feature property, indicates that a SPARQL service will dereference URIs used in FROM/FROM NAMED and USING/USING NAMED clauses and use the resulting RDF in the dataset during query evaluation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DereferencesURIs - # - # # sd:EmptyGraphs, when used as the object of the sd:feature property, indicates that the underlying graph store supports empty graphs. A graph store that supports empty graphs MUST NOT remove graphs that are left empty after triples are removed from them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EmptyGraphs - # - # # sd:RequiresDataset, when used as the object of the sd:feature property, indicates that the SPARQL service requires an explicit dataset declaration (based on either FROM/FROM NAMED clauses in a query, USING/USING NAMED clauses in an update, or the appropriate SPARQL Protocol parameters). - # # @return [RDF::Vocabulary::Term] - # attr_reader :RequiresDataset - # - # # sd:SPARQL10Query is an sd:Language representing the SPARQL 1.0 Query language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQL10Query - # - # # sd:SPARQL11Query is an sd:Language representing the SPARQL 1.1 Query language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQL11Query - # - # # sd:SPARQLUpdate is an sd:Language representing the SPARQL 1.1 Update language. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQL11Update - # - # # sd:UnionDefaultGraph, when used as the object of the sd:feature property, indicates that the default graph of the dataset used during query and update evaluation (when an explicit dataset is not specified) is comprised of the union of all the named graphs in that dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UnionDefaultGraph - # - # end SD = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/sparql-service-description#")) do # Class definitions term :Aggregate, comment: "An instance of sd:Aggregate represents an aggregate that may be used in a SPARQL aggregate query (for instance in a HAVING clause or SELECT expression) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE.".freeze, label: "Aggregate".freeze, - subClassOf: "sd:Feature".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/sparql-service-description#Feature".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Dataset, comment: "An instance of sd:Dataset represents a RDF Dataset comprised of a default graph and zero or more named graphs.".freeze, label: "Dataset".freeze, - subClassOf: "sd:GraphCollection".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/sparql-service-description#GraphCollection".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EntailmentProfile, comment: "An instance of sd:EntailmentProfile represents a profile of an entailment regime. An entailment profile MAY impose restrictions on what constitutes valid RDF with respect to entailment.".freeze, label: "Entailment Profile".freeze, - subClassOf: "sd:Feature".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/sparql-service-description#Feature".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :EntailmentRegime, comment: "An instance of sd:EntailmentRegime represents an entailment regime used in basic graph pattern matching (as described by SPARQL 1.1 Query Language).".freeze, label: "Entailment Regime".freeze, - subClassOf: "sd:Feature".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/sparql-service-description#Feature".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Feature, comment: "An instance of sd:Feature represents a feature of a SPARQL service. Specific types of features include functions, aggregates, languages, and entailment regimes and profiles. This document defines five instances of sd:Feature: sd:DereferencesURIs, sd:UnionDefaultGraph, sd:RequiresDataset, sd:EmptyGraphs, and sd:BasicFederatedQuery.".freeze, label: "Feature".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Function, comment: "An instance of sd:Function represents a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause.".freeze, label: "Function".freeze, - subClassOf: "sd:Feature".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/sparql-service-description#Feature".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Graph, comment: "An instance of sd:Graph represents the description of an RDF graph.".freeze, label: "Graph".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :GraphCollection, comment: "An instance of sd:GraphCollection represents a collection of zero or more named graph descriptions. Each named graph description belonging to an sd:GraphCollection MUST be linked with the sd:namedGraph predicate.".freeze, label: "Graph Collection".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Language, comment: "An instance of sd:Language represents one of the SPARQL languages, including specific configurations providing particular features or extensions. This document defines three instances of sd:Language: sd:SPARQL10Query, sd:SPARQL11Query, and sd:SPARQL11Update.".freeze, label: "Language".freeze, - subClassOf: "sd:Feature".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/sparql-service-description#Feature".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NamedGraph, comment: "An instance of sd:NamedGraph represents a named graph having a name (via sd:name) and an optional graph description (via sd:graph).".freeze, label: "Named Graph".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Service, comment: "An instance of sd:Service represents a SPARQL service made available via the SPARQL Protocol.".freeze, label: "Service".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :availableGraphs, comment: "Relates an instance of sd:Service to a description of the graphs which are allowed in the construction of a dataset either via the SPARQL Protocol, with FROM/FROM NAMED clauses in a query, or with USING/USING NAMED in an update request, if the service limits the scope of dataset construction.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "available graph descriptions".freeze, - range: "sd:GraphCollection".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#GraphCollection".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :defaultDataset, comment: "Relates an instance of sd:Service to a description of the default dataset available when no explicit dataset is specified in the query, update request or via protocol parameters.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "default dataset description".freeze, - range: "sd:Dataset".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/sparql-service-description#Dataset".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :defaultEntailmentRegime, comment: "Relates an instance of sd:Service with a resource representing an entailment regime used for basic graph pattern matching. This property is intended for use when a single entailment regime by default applies to all graphs in the default dataset of the service. In situations where a different entailment regime applies to a specific graph in the dataset, the sd:entailmentRegime property should be used to indicate this fact in the description of that graph.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "default entailment regime".freeze, - range: "sd:EntailmentRegime".freeze, - subPropertyOf: "sd:feature".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#EntailmentRegime".freeze, + subPropertyOf: "http://www.w3.org/ns/sparql-service-description#feature".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :defaultGraph, comment: "Relates an instance of sd:Dataset to the description of its default graph.".freeze, - domain: "sd:Dataset".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Dataset".freeze, label: "default graph".freeze, - range: "sd:Graph".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#Graph".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :defaultSupportedEntailmentProfile, comment: "Relates an instance of sd:Service with a resource representing a supported profile of the default entailment regime (as declared by sd:defaultEntailmentRegime).".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "default supported entailment profile".freeze, - range: "sd:EntailmentProfile".freeze, - subPropertyOf: "sd:feature".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#EntailmentProfile".freeze, + subPropertyOf: "http://www.w3.org/ns/sparql-service-description#feature".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :endpoint, comment: "The SPARQL endpoint of an sd:Service that implements the SPARQL Protocol service. The object of the sd:endpoint property is an IRI.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "endpoint".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :entailmentRegime, comment: "Relates a named graph description with a resource representing an entailment regime used for basic graph pattern matching over that graph.".freeze, - domain: "sd:NamedGraph".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#NamedGraph".freeze, label: "entailment regime".freeze, - range: "sd:EntailmentRegime".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#EntailmentRegime".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :extensionAggregate, comment: "Relates an instance of sd:Service to an aggregate that may be used in a SPARQL aggregate query (for instance in a HAVING clause or SELECT expression) besides the standard list of supported aggregates COUNT, SUM, MIN, MAX, AVG, GROUP_CONCAT, and SAMPLE".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "extension aggregate".freeze, - range: "sd:Aggregate".freeze, - subPropertyOf: "sd:feature".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#Aggregate".freeze, + subPropertyOf: "http://www.w3.org/ns/sparql-service-description#feature".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :extensionFunction, comment: "Relates an instance of sd:Service to a function that may be used in a SPARQL SELECT expression or a FILTER, HAVING, GROUP BY, ORDER BY, or BIND clause.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "extension function".freeze, - range: "sd:Function".freeze, - subPropertyOf: "sd:feature".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#Function".freeze, + subPropertyOf: "http://www.w3.org/ns/sparql-service-description#feature".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :feature, comment: "Relates an instance of sd:Service with a resource representing a supported feature.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "feature".freeze, - range: "sd:Feature".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#Feature".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :graph, comment: "Relates a named graph to its graph description.".freeze, - domain: "sd:NamedGraph".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#NamedGraph".freeze, label: "graph".freeze, - range: "sd:Graph".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#Graph".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inputFormat, comment: "Relates an instance of sd:Service to a format that is supported for parsing RDF input; for example, via a SPARQL 1.1 Update LOAD statement, or when URIs are dereferenced in FROM/FROM NAMED/USING/USING NAMED clauses.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "input format".freeze, range: "http://www.w3.org/ns/formats/Format".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :languageExtension, comment: "Relates an instance of sd:Service to a resource representing an implemented extension to the SPARQL Query or Update language.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "language extension".freeze, - range: "sd:Feature".freeze, - subPropertyOf: "sd:feature".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#Feature".freeze, + subPropertyOf: "http://www.w3.org/ns/sparql-service-description#feature".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :name, comment: "Relates a named graph to the name by which it may be referenced in a FROM/FROM NAMED clause. The object of the sd:name property is an IRI.".freeze, - domain: "sd:NamedGraph".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#NamedGraph".freeze, label: "name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :namedGraph, comment: "Relates an instance of sd:GraphCollection (or its subclass sd:Dataset) to the description of one of its named graphs. The description of such a named graph MUST include the sd:name property and MAY include the sd:graph property.".freeze, - domain: "sd:GraphCollection".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#GraphCollection".freeze, label: "named graph".freeze, - range: "sd:NamedGraph".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#NamedGraph".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :propertyFeature, comment: "Relates an instance of sd:Service to a resource representing an implemented feature that extends the SPARQL Query or Update language and that is accessed by using the named property.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "property feature".freeze, - range: "sd:Feature".freeze, - subPropertyOf: "sd:feature".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#Feature".freeze, + subPropertyOf: "http://www.w3.org/ns/sparql-service-description#feature".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resultFormat, comment: "Relates an instance of sd:Service to a format that is supported for serializing query results.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "result format".freeze, range: "http://www.w3.org/ns/formats/Format".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supportedEntailmentProfile, comment: "Relates a named graph description with a resource representing a supported profile of the entailment regime (as declared by sd:entailmentRegime) used for basic graph pattern matching over that graph.".freeze, - domain: "sd:NamedGraph".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#NamedGraph".freeze, label: "supported entailment profile".freeze, - range: "sd:EntailmentProfile".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#EntailmentProfile".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supportedLanguage, comment: "Relates an instance of sd:Service to a SPARQL language (e.g. Query and Update) that it implements.".freeze, - domain: "sd:Service".freeze, + domain: "http://www.w3.org/ns/sparql-service-description#Service".freeze, label: "supported language".freeze, - range: "sd:Language".freeze, - subPropertyOf: "sd:feature".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/sparql-service-description#Language".freeze, + subPropertyOf: "http://www.w3.org/ns/sparql-service-description#feature".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :BasicFederatedQuery, comment: "sd:BasicFederatedQuery, when used as the object of the sd:feature property, indicates that the SPARQL service supports basic federated query using the SERVICE keyword as defined by SPARQL 1.1 Federation Extensions.".freeze, label: "Basic Federated Query".freeze, - type: "sd:Feature".freeze + type: "http://www.w3.org/ns/sparql-service-description#Feature".freeze term :DereferencesURIs, comment: "sd:DereferencesURIs, when used as the object of the sd:feature property, indicates that a SPARQL service will dereference URIs used in FROM/FROM NAMED and USING/USING NAMED clauses and use the resulting RDF in the dataset during query evaluation.".freeze, label: "Dereferences URIs".freeze, - type: "sd:Feature".freeze + type: "http://www.w3.org/ns/sparql-service-description#Feature".freeze term :EmptyGraphs, comment: "sd:EmptyGraphs, when used as the object of the sd:feature property, indicates that the underlying graph store supports empty graphs. A graph store that supports empty graphs MUST NOT remove graphs that are left empty after triples are removed from them.".freeze, label: "Empty Graphs".freeze, - type: "sd:Feature".freeze + type: "http://www.w3.org/ns/sparql-service-description#Feature".freeze term :RequiresDataset, comment: "sd:RequiresDataset, when used as the object of the sd:feature property, indicates that the SPARQL service requires an explicit dataset declaration (based on either FROM/FROM NAMED clauses in a query, USING/USING NAMED clauses in an update, or the appropriate SPARQL Protocol parameters).".freeze, label: "Requires Dataset".freeze, - type: "sd:Feature".freeze + type: "http://www.w3.org/ns/sparql-service-description#Feature".freeze term :SPARQL10Query, comment: "sd:SPARQL10Query is an sd:Language representing the SPARQL 1.0 Query language.".freeze, label: "SPARQL 1.0 Query".freeze, - type: "sd:Language".freeze + type: "http://www.w3.org/ns/sparql-service-description#Language".freeze term :SPARQL11Query, comment: "sd:SPARQL11Query is an sd:Language representing the SPARQL 1.1 Query language.".freeze, label: "SPARQL 1.1 Query".freeze, - type: "sd:Language".freeze + type: "http://www.w3.org/ns/sparql-service-description#Language".freeze term :SPARQL11Update, comment: "sd:SPARQLUpdate is an sd:Language representing the SPARQL 1.1 Update language.".freeze, label: "SPARQL 1.1 Update".freeze, - type: "sd:Language".freeze + type: "http://www.w3.org/ns/sparql-service-description#Language".freeze term :UnionDefaultGraph, comment: "sd:UnionDefaultGraph, when used as the object of the sd:feature property, indicates that the default graph of the dataset used during query and update evaluation (when an explicit dataset is not specified) is comprised of the union of all the named graphs in that dataset.".freeze, label: "Union Default Graph".freeze, - type: "sd:Feature".freeze + type: "http://www.w3.org/ns/sparql-service-description#Feature".freeze end end diff --git a/lib/rdf/vocab/sh.rb b/lib/rdf/vocab/sh.rb index 760b987..cd66941 100644 --- a/lib/rdf/vocab/sh.rb +++ b/lib/rdf/vocab/sh.rb @@ -3,2071 +3,1332 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/shacl# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # W3C Shapes Constraint Language (SHACL) Vocabulary - # # - # # This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language. - # class SH < RDF::StrictVocabulary - # # The base class of validation results, typically not instantiated directly. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AbstractResult - # - # # The class of constraint components. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConstraintComponent - # - # # The class of SHACL functions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Function - # - # # The class of constraints backed by a JavaScript function. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JSConstraint - # - # # Abstract base class of resources that declare an executable JavaScript. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JSExecutable - # - # # The class of SHACL functions that execute a JavaScript function when called. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JSFunction - # - # # Represents a JavaScript library, typically identified by one or more URLs of files to include. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JSLibrary - # - # # The class of SHACL rules expressed using JavaScript. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JSRule - # - # # The class of targets that are based on JavaScript functions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JSTarget - # - # # The (meta) class for parameterizable targets that are based on JavaScript functions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JSTargetType - # - # # A SHACL validator based on JavaScript. This can be used to declare SHACL constraint components that perform JavaScript-based validation when used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JSValidator - # - # # The class of all node kinds, including sh:BlankNode, sh:IRI, sh:Literal or the combinations of these: sh:BlankNodeOrIRI, sh:BlankNodeOrLiteral, sh:IRIOrLiteral. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NodeKind - # - # # A node shape is a shape that specifies constraint that need to be met with respect to focus nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NodeShape - # - # # The class of parameter declarations, consisting of a path predicate and (possibly) information about allowed value type, cardinality and other characteristics. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Parameter - # - # # Superclass of components that can take parameters, especially functions and constraint components. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Parameterizable - # - # # The class of prefix declarations, consisting of pairs of a prefix with a namespace. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PrefixDeclaration - # - # # Instances of this class represent groups of property shapes that belong together. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PropertyGroup - # - # # A property shape is a shape that specifies constraints on the values of a focus node for a given property or path. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PropertyShape - # - # # A class of result annotations, which define the rules to derive the values of a given annotation property as extra values for a validation result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResultAnnotation - # - # # The class of SHACL rules. Never instantiated directly. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rule - # - # # The class of SPARQL executables that are based on an ASK query. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLAskExecutable - # - # # The class of validators based on SPARQL ASK queries. The queries are evaluated for each value node and are supposed to return true if the given node conforms. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLAskValidator - # - # # The class of constraints based on SPARQL SELECT queries. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLConstraint - # - # # The class of SPARQL executables that are based on a CONSTRUCT query. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLConstructExecutable - # - # # The class of resources that encapsulate a SPARQL query. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLExecutable - # - # # A function backed by a SPARQL query - either ASK or SELECT. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLFunction - # - # # The class of SHACL rules based on SPARQL CONSTRUCT queries. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLRule - # - # # The class of SPARQL executables based on a SELECT query. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLSelectExecutable - # - # # The class of validators based on SPARQL SELECT queries. The queries are evaluated for each focus node and are supposed to produce bindings for all focus nodes that do not conform. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLSelectValidator - # - # # The class of targets that are based on SPARQL queries. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLTarget - # - # # The (meta) class for parameterizable targets that are based on SPARQL queries. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLTargetType - # - # # The class of SPARQL executables based on a SPARQL UPDATE. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLUpdateExecutable - # - # # The class of validation result severity levels, including violation and warning levels. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Severity - # - # # A shape is a collection of constraints that may be targeted for certain nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Shape - # - # # The base class of targets such as those based on SPARQL queries. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Target - # - # # The (meta) class for parameterizable targets. Instances of this are instantiated as values of the sh:target property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TargetType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TripleRule - # - # # The class of SHACL validation reports. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ValidationReport - # - # # The class of validation results. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ValidationResult - # - # # The class of validators, which provide instructions on how to process a constraint definition. This class serves as base class for the SPARQL-based validators and other possible implementations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Validator - # - # # The (single) value of this property must be a list of path elements, representing the elements of alternative paths. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternativePath - # - # # RDF list of shapes to validate the value nodes against. - # # @return [RDF::Vocabulary::Term] - # attr_reader :and - # - # # The annotation property that shall be set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationProperty - # - # # The (default) values of the annotation property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationValue - # - # # The name of the SPARQL variable from the SELECT clause that shall be used for the values. - # # @return [RDF::Vocabulary::Term] - # attr_reader :annotationVarName - # - # # The SPARQL ASK query to execute. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ask - # - # # The type that all value nodes must have. - # # @return [RDF::Vocabulary::Term] - # attr_reader :class - # - # # If set to true then the shape is closed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :closed - # - # # The shapes that the focus nodes need to conform to before a rule is executed on them. - # # @return [RDF::Vocabulary::Term] - # attr_reader :condition - # - # # True if the validation did not produce any validation results, and false otherwise. - # # @return [RDF::Vocabulary::Term] - # attr_reader :conforms - # - # # The SPARQL CONSTRUCT query to execute. - # # @return [RDF::Vocabulary::Term] - # attr_reader :construct - # - # # Specifies an RDF datatype that all value nodes must have. - # # @return [RDF::Vocabulary::Term] - # attr_reader :datatype - # - # # If set to true then all nodes conform to this. - # # @return [RDF::Vocabulary::Term] - # attr_reader :deactivated - # - # # Links a resource with its namespace prefix declarations. - # # @return [RDF::Vocabulary::Term] - # attr_reader :declare - # - # # A default value for a property, for example for user interface tools to pre-populate input fields. - # # @return [RDF::Vocabulary::Term] - # attr_reader :defaultValue - # - # # Human-readable descriptions for the property in the context of the surrounding shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # Links a result with other results that provide more details, for example to describe violations against nested shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :detail - # - # # Specifies a property where the set of values must be disjoint with the value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :disjoint - # - # # An entailment regime that indicates what kind of inferencing is required by a shapes graph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :entailment - # - # # Specifies a property that must have the same values as the value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :equals - # - # # The node expression that must return true for the value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :expression - # - # # The shape that all input nodes of the expression need to conform to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :filterShape - # - # # An optional flag to be used with regular expression pattern matching. - # # @return [RDF::Vocabulary::Term] - # attr_reader :flags - # - # # The focus node that was validated when the result was produced. - # # @return [RDF::Vocabulary::Term] - # attr_reader :focusNode - # - # # Can be used to link to a property group to indicate that a property shape belongs to a group of related property shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :group - # - # # Specifies a value that must be among the value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasValue - # - # # An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ignoredProperties - # - # # Specifies a list of allowed values so that each value node must be among the members of the given list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :in - # - # # A list of node expressions that shall be intersected. - # # @return [RDF::Vocabulary::Term] - # attr_reader :intersection - # - # # The (single) value of this property represents an inverse path (object to subject). - # # @return [RDF::Vocabulary::Term] - # attr_reader :inversePath - # - # # Constraints expressed in JavaScript. - # # @return [RDF::Vocabulary::Term] - # attr_reader :js - # - # # The name of the JavaScript function to execute. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jsFunctionName - # - # # Declares which JavaScript libraries are needed to execute this. - # # @return [RDF::Vocabulary::Term] - # attr_reader :jsLibrary - # - # # Declares the URLs of a JavaScript library. This should be the absolute URL of a JavaScript file. Implementations may redirect those to local files. - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :labelTemplate - # - # # Specifies a list of language tags that all value nodes must have. - # # @return [RDF::Vocabulary::Term] - # attr_reader :languageIn - # - # # Specifies a property that must have smaller values than the value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lessThan - # - # # Specifies a property that must have smaller or equal values than the value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :lessThanOrEquals - # - # # Specifies the maximum number of values in the set of value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxCount - # - # # Specifies the maximum exclusive value of each value node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxExclusive - # - # # Specifies the maximum inclusive value of each value node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxInclusive - # - # # Specifies the maximum string length of each value node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxLength - # - # # A human-readable message (possibly with placeholders for variables) explaining the cause of the result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :message - # - # # Specifies the minimum number of values in the set of value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minCount - # - # # Specifies the minimum exclusive value of each value node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minExclusive - # - # # Specifies the minimum inclusive value of each value node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minInclusive - # - # # Specifies the minimum string length of each value node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :minLength - # - # # Human-readable labels for the property in the context of the surrounding shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # The namespace associated with a prefix in a prefix declaration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :namespace - # - # # Specifies the node shape that all value nodes must conform to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :node - # - # # Specifies the node kind (e.g. IRI or literal) each value node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nodeKind - # - # # The validator(s) used to evaluate a constraint in the context of a node shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nodeValidator - # - # # The node expression producing the input nodes of a filter shape expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nodes - # - # # Specifies a shape that the value nodes must not conform to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :not - # - # # An expression producing the nodes that shall be inferred as objects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :object - # - # # The (single) value of this property represents a path that is matched one or more times. - # # @return [RDF::Vocabulary::Term] - # attr_reader :oneOrMorePath - # - # # Indicates whether a parameter is optional. - # # @return [RDF::Vocabulary::Term] - # attr_reader :optional - # - # # Specifies a list of shapes so that the value nodes must conform to at least one of the shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :or - # - # # Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second. - # # @return [RDF::Vocabulary::Term] - # attr_reader :order - # - # # The parameters of a function or constraint component. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parameter - # - # # Specifies the property path of a property shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :path - # - # # Specifies a regular expression pattern that the string representations of the value nodes must match. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pattern - # - # # An expression producing the properties that shall be inferred as predicates. - # # @return [RDF::Vocabulary::Term] - # attr_reader :predicate - # - # # The prefix of a prefix declaration. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefix - # - # # The prefixes that shall be applied before parsing the associated SPARQL query. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefixes - # - # # Links a shape to its property shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :property - # - # # The validator(s) used to evaluate a constraint in the context of a property shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :propertyValidator - # - # # The maximum number of value nodes that can conform to the shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedMaxCount - # - # # The minimum number of value nodes that must conform to the shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedMinCount - # - # # The shape that a specified number of values must conform to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedValueShape - # - # # Can be used to mark the qualified value shape to be disjoint with its sibling shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :qualifiedValueShapesDisjoint - # - # # The validation results contained in a validation report. - # # @return [RDF::Vocabulary::Term] - # attr_reader :result - # - # # Links a SPARQL validator with zero or more sh:ResultAnnotation instances, defining how to derive additional result properties based on the variables of the SELECT query. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultAnnotation - # - # # Human-readable messages explaining the cause of the result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultMessage - # - # # The path of a validation result, based on the path of the validated property shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultPath - # - # # The severity of the result, e.g. warning. - # # @return [RDF::Vocabulary::Term] - # attr_reader :resultSeverity - # - # # The expected type of values returned by the associated function. - # # @return [RDF::Vocabulary::Term] - # attr_reader :returnType - # - # # The rules linked to a shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rule - # - # # The SPARQL SELECT query to execute. - # # @return [RDF::Vocabulary::Term] - # attr_reader :select - # - # # Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :severity - # - # # Shapes graphs that should be used when validating this data graph. - # # @return [RDF::Vocabulary::Term] - # attr_reader :shapesGraph - # - # # If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process. - # # @return [RDF::Vocabulary::Term] - # attr_reader :shapesGraphWellFormed - # - # # The constraint that was validated when the result was produced. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConstraint - # - # # The constraint component that is the source of the result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConstraintComponent - # - # # The shape that is was validated when the result was produced. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceShape - # - # # Links a shape with SPARQL constraints. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sparql - # - # # An expression producing the resources that shall be inferred as subjects. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subject - # - # # Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements. - # # @return [RDF::Vocabulary::Term] - # attr_reader :suggestedShapesGraph - # - # # Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget. - # # @return [RDF::Vocabulary::Term] - # attr_reader :target - # - # # Links a shape to a class, indicating that all instances of the class must conform to the shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetClass - # - # # Links a shape to individual nodes, indicating that these nodes must conform to the shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetNode - # - # # Links a shape to a property, indicating that all all objects of triples that have the given property as their predicate must conform to the shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetObjectsOf - # - # # Links a shape to a property, indicating that all subjects of triples that have the given property as their predicate must conform to the shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetSubjectsOf - # - # # A list of node expressions that shall be used together. - # # @return [RDF::Vocabulary::Term] - # attr_reader :union - # - # # Specifies whether all node values must have a unique (or no) language tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :uniqueLang - # - # # The SPARQL UPDATE to execute. - # # @return [RDF::Vocabulary::Term] - # attr_reader :update - # - # # The validator(s) used to evaluate constraints of either node or property shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validator - # - # # An RDF node that has caused the result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :value - # - # # Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :xone - # - # # The (single) value of this property represents a path that is matched zero or more times. - # # @return [RDF::Vocabulary::Term] - # attr_reader :zeroOrMorePath - # - # # The (single) value of this property represents a path that is matched zero or one times. - # # @return [RDF::Vocabulary::Term] - # attr_reader :zeroOrOnePath - # - # # A constraint component that can be used to test whether a value node conforms to all members of a provided list of shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AndConstraintComponent - # - # # The node kind of all blank nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BlankNode - # - # # The node kind of all blank nodes or IRIs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BlankNodeOrIRI - # - # # The node kind of all blank nodes or literals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BlankNodeOrLiteral - # - # # A constraint component that can be used to verify that each value node is an instance of a given type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassConstraintComponent - # - # # A constraint component that can be used to indicate that focus nodes must only have values for those properties that have been explicitly enumerated via sh:property/sh:path. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClosedConstraintComponent - # - # # A constraint component that can be used to restrict the datatype of all value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DatatypeConstraintComponent - # - # # A constraint component that can be used to verify that the set of value nodes is disjoint with the the set of nodes that have the focus node as subject and the value of a given property as predicate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DisjointConstraintComponent - # - # # A constraint component that can be used to verify that the set of value nodes is equal to the set of nodes that have the focus node as subject and the value of a given property as predicate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EqualsConstraintComponent - # - # # A constraint component that can be used to verify that a given node expression produces true for all value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExpressionConstraintComponent - # - # # A constraint component that can be used to verify that one of the value nodes is a given RDF node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :HasValueConstraintComponent - # - # # The node kind of all IRIs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IRI - # - # # The node kind of all IRIs or literals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :IRIOrLiteral - # - # # A constraint component that can be used to exclusively enumerate the permitted value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InConstraintComponent - # - # # The severity for an informational validation result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Info - # - # # A constraint component with the parameter sh:js linking to a sh:JSConstraint containing a sh:script. - # # @return [RDF::Vocabulary::Term] - # attr_reader :JSConstraintComponent - # - # # A constraint component that can be used to enumerate language tags that all value nodes must have. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LanguageInConstraintComponent - # - # # A constraint component that can be used to verify that each value node is smaller than all the nodes that have the focus node as subject and the value of a given property as predicate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LessThanConstraintComponent - # - # # A constraint component that can be used to verify that every value node is smaller than all the nodes that have the focus node as subject and the value of a given property as predicate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :LessThanOrEqualsConstraintComponent - # - # # The node kind of all literals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Literal - # - # # A constraint component that can be used to restrict the maximum number of value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MaxCountConstraintComponent - # - # # A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MaxExclusiveConstraintComponent - # - # # A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MaxInclusiveConstraintComponent - # - # # A constraint component that can be used to restrict the maximum string length of value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MaxLengthConstraintComponent - # - # # A constraint component that can be used to restrict the minimum number of value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MinCountConstraintComponent - # - # # A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MinExclusiveConstraintComponent - # - # # A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MinInclusiveConstraintComponent - # - # # A constraint component that can be used to restrict the minimum string length of value nodes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MinLengthConstraintComponent - # - # # A constraint component that can be used to verify that all value nodes conform to the given node shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NodeConstraintComponent - # - # # A constraint component that can be used to restrict the RDF node kind of each value node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NodeKindConstraintComponent - # - # # A constraint component that can be used to verify that value nodes do not conform to a given shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :NotConstraintComponent - # - # # A constraint component that can be used to restrict the value nodes so that they conform to at least one out of several provided shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OrConstraintComponent - # - # # A constraint component that can be used to verify that every value node matches a given regular expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PatternConstraintComponent - # - # # A constraint component that can be used to verify that all value nodes conform to the given property shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :PropertyConstraintComponent - # - # # A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QualifiedMaxCountConstraintComponent - # - # # A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape. - # # @return [RDF::Vocabulary::Term] - # attr_reader :QualifiedMinCountConstraintComponent - # - # # A constraint component that can be used to define constraints based on SPARQL queries. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SPARQLConstraintComponent - # - # # A constraint component that can be used to specify that no pair of value nodes may use the same language tag. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UniqueLangConstraintComponent - # - # # The severity for a violation validation result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Violation - # - # # The severity for a warning validation result. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Warning - # - # # A constraint component that can be used to restrict the value nodes so that they conform to exactly one out of several provided shapes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :XoneConstraintComponent - # - # # A node expression that represents the current focus node. - # # @return [RDF::Vocabulary::Term] - # attr_reader :this - # - # end SH = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/shacl#")) do # Ontology definition ontology :"http://www.w3.org/ns/shacl#", comment: "This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language.".freeze, - label: "W3C Shapes Constraint Language (SHACL) Vocabulary".freeze, - "sh:declare": term( - "sh:namespace": "http://www.w3.org/ns/shacl#".freeze, - "sh:prefix": "sh".freeze + "http://www.w3.org/ns/shacl#declare": term( + "http://www.w3.org/ns/shacl#namespace": "http://www.w3.org/ns/shacl#".freeze, + "http://www.w3.org/ns/shacl#prefix": "sh".freeze ), - "sh:suggestedShapesGraph": "http://www.w3.org/ns/shacl-shacl#".freeze, - type: "owl:Ontology".freeze + "http://www.w3.org/ns/shacl#suggestedShapesGraph": "http://www.w3.org/ns/shacl-shacl#".freeze, + label: "W3C Shapes Constraint Language (SHACL) Vocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AbstractResult, comment: "The base class of validation results, typically not instantiated directly.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Abstract result".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ConstraintComponent, comment: "The class of constraint components.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Constraint component".freeze, - subClassOf: "sh:Parameterizable".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#Parameterizable".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Function, comment: "The class of SHACL functions.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Function".freeze, - subClassOf: "sh:Parameterizable".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#Parameterizable".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JSConstraint, comment: "The class of constraints backed by a JavaScript function.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript-based constraint".freeze, - subClassOf: "sh:JSExecutable".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#JSExecutable".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JSExecutable, comment: "Abstract base class of resources that declare an executable JavaScript.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript executable".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JSFunction, comment: "The class of SHACL functions that execute a JavaScript function when called.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript function".freeze, - subClassOf: ["sh:Function".freeze, "sh:JSExecutable".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#Function".freeze, "http://www.w3.org/ns/shacl#JSExecutable".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JSLibrary, comment: "Represents a JavaScript library, typically identified by one or more URLs of files to include.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript library".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JSRule, comment: "The class of SHACL rules expressed using JavaScript.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript rule".freeze, - subClassOf: ["sh:JSExecutable".freeze, "sh:Rule".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#JSExecutable".freeze, "http://www.w3.org/ns/shacl#Rule".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JSTarget, comment: "The class of targets that are based on JavaScript functions.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript target".freeze, - subClassOf: ["sh:JSExecutable".freeze, "sh:Target".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#JSExecutable".freeze, "http://www.w3.org/ns/shacl#Target".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JSTargetType, comment: "The (meta) class for parameterizable targets that are based on JavaScript functions.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript target type".freeze, - subClassOf: ["sh:JSExecutable".freeze, "sh:TargetType".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#JSExecutable".freeze, "http://www.w3.org/ns/shacl#TargetType".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :JSValidator, comment: "A SHACL validator based on JavaScript. This can be used to declare SHACL constraint components that perform JavaScript-based validation when used.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript validator".freeze, - subClassOf: ["sh:JSExecutable".freeze, "sh:Validator".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#JSExecutable".freeze, "http://www.w3.org/ns/shacl#Validator".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NodeKind, comment: "The class of all node kinds, including sh:BlankNode, sh:IRI, sh:Literal or the combinations of these: sh:BlankNodeOrIRI, sh:BlankNodeOrLiteral, sh:IRIOrLiteral.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Node kind".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :NodeShape, comment: "A node shape is a shape that specifies constraint that need to be met with respect to focus nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Node shape".freeze, - subClassOf: "sh:Shape".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#Shape".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Parameter, comment: "The class of parameter declarations, consisting of a path predicate and (possibly) information about allowed value type, cardinality and other characteristics.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Parameter".freeze, - subClassOf: "sh:PropertyShape".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#PropertyShape".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Parameterizable, comment: "Superclass of components that can take parameters, especially functions and constraint components.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Parameterizable".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PrefixDeclaration, comment: "The class of prefix declarations, consisting of pairs of a prefix with a namespace.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Prefix declaration".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PropertyGroup, comment: "Instances of this class represent groups of property shapes that belong together.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Property group".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :PropertyShape, comment: "A property shape is a shape that specifies constraints on the values of a focus node for a given property or path.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Property shape".freeze, - subClassOf: "sh:Shape".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#Shape".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ResultAnnotation, comment: "A class of result annotations, which define the rules to derive the values of a given annotation property as extra values for a validation result.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Result annotation".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Rule, comment: "The class of SHACL rules. Never instantiated directly.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Rule".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLAskExecutable, comment: "The class of SPARQL executables that are based on an ASK query.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL ASK executable".freeze, - subClassOf: "sh:SPARQLExecutable".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#SPARQLExecutable".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLAskValidator, comment: "The class of validators based on SPARQL ASK queries. The queries are evaluated for each value node and are supposed to return true if the given node conforms.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL ASK validator".freeze, - subClassOf: ["sh:SPARQLAskExecutable".freeze, "sh:Validator".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#SPARQLAskExecutable".freeze, "http://www.w3.org/ns/shacl#Validator".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLConstraint, comment: "The class of constraints based on SPARQL SELECT queries.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL constraint".freeze, - subClassOf: "sh:SPARQLSelectExecutable".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#SPARQLSelectExecutable".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLConstructExecutable, comment: "The class of SPARQL executables that are based on a CONSTRUCT query.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL CONSTRUCT executable".freeze, - subClassOf: "sh:SPARQLExecutable".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#SPARQLExecutable".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLExecutable, comment: "The class of resources that encapsulate a SPARQL query.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL executable".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLFunction, comment: "A function backed by a SPARQL query - either ASK or SELECT.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL function".freeze, - subClassOf: ["sh:Function".freeze, "sh:SPARQLAskExecutable".freeze, "sh:SPARQLSelectExecutable".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#Function".freeze, "http://www.w3.org/ns/shacl#SPARQLAskExecutable".freeze, "http://www.w3.org/ns/shacl#SPARQLSelectExecutable".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLRule, comment: "The class of SHACL rules based on SPARQL CONSTRUCT queries.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL CONSTRUCT rule".freeze, - subClassOf: ["sh:Rule".freeze, "sh:SPARQLConstructExecutable".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#Rule".freeze, "http://www.w3.org/ns/shacl#SPARQLConstructExecutable".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLSelectExecutable, comment: "The class of SPARQL executables based on a SELECT query.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL SELECT executable".freeze, - subClassOf: "sh:SPARQLExecutable".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#SPARQLExecutable".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLSelectValidator, comment: "The class of validators based on SPARQL SELECT queries. The queries are evaluated for each focus node and are supposed to produce bindings for all focus nodes that do not conform.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL SELECT validator".freeze, - subClassOf: ["sh:SPARQLSelectExecutable".freeze, "sh:Validator".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#SPARQLSelectExecutable".freeze, "http://www.w3.org/ns/shacl#Validator".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLTarget, comment: "The class of targets that are based on SPARQL queries.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL target".freeze, - subClassOf: ["sh:SPARQLAskExecutable".freeze, "sh:SPARQLSelectExecutable".freeze, "sh:Target".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#SPARQLAskExecutable".freeze, "http://www.w3.org/ns/shacl#SPARQLSelectExecutable".freeze, "http://www.w3.org/ns/shacl#Target".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLTargetType, comment: "The (meta) class for parameterizable targets that are based on SPARQL queries.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL target type".freeze, - subClassOf: ["sh:SPARQLAskExecutable".freeze, "sh:SPARQLSelectExecutable".freeze, "sh:TargetType".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/ns/shacl#SPARQLAskExecutable".freeze, "http://www.w3.org/ns/shacl#SPARQLSelectExecutable".freeze, "http://www.w3.org/ns/shacl#TargetType".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :SPARQLUpdateExecutable, comment: "The class of SPARQL executables based on a SPARQL UPDATE.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL UPDATE executable".freeze, - subClassOf: "sh:SPARQLExecutable".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#SPARQLExecutable".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Severity, comment: "The class of validation result severity levels, including violation and warning levels.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Severity".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Shape, comment: "A shape is a collection of constraints that may be targeted for certain nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Shape".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Target, comment: "The base class of targets such as those based on SPARQL queries.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Target".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TargetType, comment: "The (meta) class for parameterizable targets.\tInstances of this are instantiated as values of the sh:target property.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Target type".freeze, - subClassOf: ["rdfs:Class".freeze, "sh:Parameterizable".freeze], - type: "rdfs:Class".freeze + subClassOf: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/ns/shacl#Parameterizable".freeze], + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TripleRule, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "A rule based on triple (subject, predicate, object) pattern.".freeze, - subClassOf: "sh:Rule".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#Rule".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ValidationReport, comment: "The class of SHACL validation reports.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Validation report".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ValidationResult, comment: "The class of validation results.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Validation result".freeze, - subClassOf: "sh:AbstractResult".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Validator, comment: "The class of validators, which provide instructions on how to process a constraint definition. This class serves as base class for the SPARQL-based validators and other possible implementations.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Validator".freeze, - subClassOf: "rdfs:Resource".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :alternativePath, comment: "The (single) value of this property must be a list of path elements, representing the elements of alternative paths.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "alternative path".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :and, comment: "RDF list of shapes to validate the value nodes against.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "and".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationProperty, comment: "The annotation property that shall be set.".freeze, - domain: "sh:ResultAnnotation".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#ResultAnnotation".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "annotation property".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationValue, comment: "The (default) values of the annotation property.".freeze, - domain: "sh:ResultAnnotation".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#ResultAnnotation".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "annotation value".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :annotationVarName, comment: "The name of the SPARQL variable from the SELECT clause that shall be used for the values.".freeze, - domain: "sh:ResultAnnotation".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#ResultAnnotation".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "annotation variable name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ask, comment: "The SPARQL ASK query to execute.".freeze, - domain: "sh:SPARQLAskExecutable".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#SPARQLAskExecutable".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "ask".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :class, comment: "The type that all value nodes must have.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "class".freeze, - range: "rdfs:Class".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :closed, comment: "If set to true then the shape is closed.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "closed".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :condition, comment: "The shapes that the focus nodes need to conform to before a rule is executed on them.".freeze, - domain: "sh:Rule".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Rule".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "condition".freeze, - range: "sh:Shape".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Shape".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :conforms, comment: "True if the validation did not produce any validation results, and false otherwise.".freeze, - domain: "sh:ValidationReport".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#ValidationReport".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "conforms".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :construct, comment: "The SPARQL CONSTRUCT query to execute.".freeze, - domain: "sh:SPARQLConstructExecutable".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#SPARQLConstructExecutable".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "construct".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :datatype, comment: "Specifies an RDF datatype that all value nodes must have.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "datatype".freeze, - range: "rdfs:Datatype".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deactivated, comment: "If set to true then all nodes conform to this.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "deactivated".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :declare, comment: "Links a resource with its namespace prefix declarations.".freeze, - domain: "owl:Ontology".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/2002/07/owl#Ontology".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "declare".freeze, - range: "sh:PrefixDeclaration".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#PrefixDeclaration".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :defaultValue, comment: "A default value for a property, for example for user interface tools to pre-populate input fields.".freeze, - domain: "sh:PropertyShape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#PropertyShape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "default value".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, comment: "Human-readable descriptions for the property in the context of the surrounding shape.".freeze, - domain: "sh:PropertyShape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#PropertyShape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "description".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :detail, comment: "Links a result with other results that provide more details, for example to describe violations against nested shapes.".freeze, - domain: "sh:AbstractResult".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "detail".freeze, - range: "sh:AbstractResult".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :disjoint, comment: "Specifies a property where the set of values must be disjoint with the value nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "disjoint".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :entailment, comment: "An entailment regime that indicates what kind of inferencing is required by a shapes graph.".freeze, - domain: "owl:Ontology".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/2002/07/owl#Ontology".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "entailment".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :equals, comment: "Specifies a property that must have the same values as the value nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "equals".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :expression, comment: "The node expression that must return true for the value nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "expression".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :filterShape, comment: "The shape that all input nodes of the expression need to conform to.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "filter shape".freeze, - range: "sh:Shape".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Shape".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :flags, comment: "An optional flag to be used with regular expression pattern matching.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "flags".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :focusNode, comment: "The focus node that was validated when the result was produced.".freeze, - domain: "sh:AbstractResult".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "focus node".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :group, comment: "Can be used to link to a property group to indicate that a property shape belongs to a group of related property shapes.".freeze, - domain: "sh:PropertyShape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#PropertyShape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "group".freeze, - range: "sh:PropertyGroup".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#PropertyGroup".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasValue, comment: "Specifies a value that must be among the value nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "has value".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ignoredProperties, comment: "An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "ignored properties".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :in, comment: "Specifies a list of allowed values so that each value node must be among the members of the given list.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "in".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :intersection, comment: "A list of node expressions that shall be intersected.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "intersection".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inversePath, comment: "The (single) value of this property represents an inverse path (object to subject).".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "inverse path".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :js, comment: "Constraints expressed in JavaScript.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript constraint".freeze, - range: "sh:JSConstraint".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#JSConstraint".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jsFunctionName, comment: "The name of the JavaScript function to execute.".freeze, - domain: "sh:JSExecutable".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#JSExecutable".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript function name".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jsLibrary, comment: "Declares which JavaScript libraries are needed to execute this.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript library".freeze, - range: "sh:JSLibrary".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#JSLibrary".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :jsLibraryURL, comment: "Declares the URLs of a JavaScript library. This should be the absolute URL of a JavaScript file. Implementations may redirect those to local files.".freeze, - domain: "sh:JSLibrary".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#JSLibrary".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript library URL".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :labelTemplate, comment: "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.".freeze, - domain: "sh:Parameterizable".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Parameterizable".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "label template".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :languageIn, comment: "Specifies a list of language tags that all value nodes must have.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "language in".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lessThan, comment: "Specifies a property that must have smaller values than the value nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "less than".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lessThanOrEquals, comment: "Specifies a property that must have smaller or equal values than the value nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "less than or equals".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maxCount, comment: "Specifies the maximum number of values in the set of value nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "max count".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maxExclusive, comment: "Specifies the maximum exclusive value of each value node.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "max exclusive".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maxInclusive, comment: "Specifies the maximum inclusive value of each value node.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "max inclusive".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :maxLength, comment: "Specifies the maximum string length of each value node.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "max length".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :message, comment: "A human-readable message (possibly with placeholders for variables) explaining the cause of the result.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "message".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minCount, comment: "Specifies the minimum number of values in the set of value nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "min count".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minExclusive, comment: "Specifies the minimum exclusive value of each value node.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "min exclusive".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minInclusive, comment: "Specifies the minimum inclusive value of each value node.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "min inclusive".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :minLength, comment: "Specifies the minimum string length of each value node.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "min length".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :name, comment: "Human-readable labels for the property in the context of the surrounding shape.".freeze, - domain: "sh:PropertyShape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#PropertyShape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "name".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :namespace, comment: "The namespace associated with a prefix in a prefix declaration.".freeze, - domain: "sh:PrefixDeclaration".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#PrefixDeclaration".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "namespace".freeze, - range: "xsd:anyURI".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :node, comment: "Specifies the node shape that all value nodes must conform to.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "node".freeze, - range: "sh:NodeShape".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#NodeShape".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nodeKind, comment: "Specifies the node kind (e.g. IRI or literal) each value node.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "node kind".freeze, - range: "sh:NodeKind".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#NodeKind".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nodeValidator, comment: "The validator(s) used to evaluate a constraint in the context of a node shape.".freeze, - domain: "sh:ConstraintComponent".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "shape validator".freeze, - range: "sh:Validator".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Validator".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nodes, comment: "The node expression producing the input nodes of a filter shape expression.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "nodes".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :not, comment: "Specifies a shape that the value nodes must not conform to.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "not".freeze, - range: "sh:Shape".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Shape".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :object, comment: "An expression producing the nodes that shall be inferred as objects.".freeze, - domain: "sh:TripleRule".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#TripleRule".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "object".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :oneOrMorePath, comment: "The (single) value of this property represents a path that is matched one or more times.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "one or more path".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :optional, comment: "Indicates whether a parameter is optional.".freeze, - domain: "sh:Parameter".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Parameter".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "optional".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :or, comment: "Specifies a list of shapes so that the value nodes must conform to at least one of the shapes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "or".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :order, comment: "Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "order".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :parameter, comment: "The parameters of a function or constraint component.".freeze, - domain: "sh:Parameterizable".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Parameterizable".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "parameter".freeze, - range: "sh:Parameter".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Parameter".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :path, comment: "Specifies the property path of a property shape.".freeze, - domain: "sh:PropertyShape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#PropertyShape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "path".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pattern, comment: "Specifies a regular expression pattern that the string representations of the value nodes must match.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "pattern".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :predicate, comment: "An expression producing the properties that shall be inferred as predicates.".freeze, - domain: "sh:TripleRule".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#TripleRule".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "predicate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prefix, comment: "The prefix of a prefix declaration.".freeze, - domain: "sh:PrefixDeclaration".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#PrefixDeclaration".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "prefix".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prefixes, comment: "The prefixes that shall be applied before parsing the associated SPARQL query.".freeze, - domain: "sh:SPARQLExecutable".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#SPARQLExecutable".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "prefixes".freeze, - range: "owl:Ontology".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2002/07/owl#Ontology".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :property, comment: "Links a shape to its property shapes.".freeze, - domain: "sh:Shape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Shape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "property".freeze, - range: "sh:PropertyShape".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#PropertyShape".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :propertyValidator, comment: "The validator(s) used to evaluate a constraint in the context of a property shape.".freeze, - domain: "sh:ConstraintComponent".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "property validator".freeze, - range: "sh:Validator".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Validator".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :qualifiedMaxCount, comment: "The maximum number of value nodes that can conform to the shape.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "qualified max count".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :qualifiedMinCount, comment: "The minimum number of value nodes that must conform to the shape.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "qualified min count".freeze, - range: "xsd:integer".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :qualifiedValueShape, comment: "The shape that a specified number of values must conform to.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "qualified value shape".freeze, - range: "sh:Shape".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Shape".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :qualifiedValueShapesDisjoint, comment: "Can be used to mark the qualified value shape to be disjoint with its sibling shapes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "qualified value shapes disjoint".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :result, comment: "The validation results contained in a validation report.".freeze, - domain: "sh:ValidationReport".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#ValidationReport".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "result".freeze, - range: "sh:ValidationResult".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#ValidationResult".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resultAnnotation, comment: "Links a SPARQL validator with zero or more sh:ResultAnnotation instances, defining how to derive additional result properties based on the variables of the SELECT query.".freeze, - domain: "sh:SPARQLSelectValidator".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#SPARQLSelectValidator".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "result annotation".freeze, - range: "sh:ResultAnnotation".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#ResultAnnotation".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resultMessage, comment: "Human-readable messages explaining the cause of the result.".freeze, - domain: "sh:AbstractResult".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "result message".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resultPath, comment: "The path of a validation result, based on the path of the validated property shape.".freeze, - domain: "sh:AbstractResult".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "result path".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :resultSeverity, comment: "The severity of the result, e.g. warning.".freeze, - domain: "sh:AbstractResult".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "result severity".freeze, - range: "sh:Severity".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Severity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :returnType, comment: "The expected type of values returned by the associated function.".freeze, - domain: "sh:Function".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Function".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "return type".freeze, - range: "rdfs:Class".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rule, comment: "The rules linked to a shape.".freeze, - domain: "sh:Shape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Shape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "rule".freeze, - range: "sh:Rule".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Rule".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :select, comment: "The SPARQL SELECT query to execute.".freeze, - domain: "sh:SPARQLSelectExecutable".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#SPARQLSelectExecutable".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "select".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :severity, comment: "Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation.".freeze, - domain: "sh:Shape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Shape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "severity".freeze, - range: "sh:Severity".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Severity".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shapesGraph, comment: "Shapes graphs that should be used when validating this data graph.".freeze, - domain: "owl:Ontology".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/2002/07/owl#Ontology".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "shapes graph".freeze, - range: "owl:Ontology".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2002/07/owl#Ontology".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :shapesGraphWellFormed, comment: "If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process.".freeze, - domain: "sh:ValidationReport".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#ValidationReport".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "shapes graph well-formed".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourceConstraint, comment: "The constraint that was validated when the result was produced.".freeze, - domain: "sh:AbstractResult".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "source constraint".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourceConstraintComponent, comment: "The constraint component that is the source of the result.".freeze, - domain: "sh:AbstractResult".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "source constraint component".freeze, - range: "sh:ConstraintComponent".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sourceShape, comment: "The shape that is was validated when the result was produced.".freeze, - domain: "sh:AbstractResult".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "source shape".freeze, - range: "sh:Shape".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Shape".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sparql, comment: "Links a shape with SPARQL constraints.".freeze, - domain: "sh:Shape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Shape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "constraint (in SPARQL)".freeze, - range: "sh:SPARQLConstraint".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#SPARQLConstraint".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subject, comment: "An expression producing the resources that shall be inferred as subjects.".freeze, - domain: "sh:TripleRule".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#TripleRule".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "subject".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :suggestedShapesGraph, comment: "Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements.".freeze, - domain: "owl:Ontology".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/2002/07/owl#Ontology".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "suggested shapes graph".freeze, - range: "owl:Ontology".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2002/07/owl#Ontology".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :target, comment: "Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget.".freeze, - domain: "sh:Shape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Shape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "target".freeze, - range: "sh:Target".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Target".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetClass, comment: "Links a shape to a class, indicating that all instances of the class must conform to the shape.".freeze, - domain: "sh:Shape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Shape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "target class".freeze, - range: "rdfs:Class".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetNode, comment: "Links a shape to individual nodes, indicating that these nodes must conform to the shape.".freeze, - domain: "sh:Shape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Shape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "target node".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetObjectsOf, comment: "Links a shape to a property, indicating that all all objects of triples that have the given property as their predicate must conform to the shape.".freeze, - domain: "sh:Shape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Shape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "target objects of".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :targetSubjectsOf, comment: "Links a shape to a property, indicating that all subjects of triples that have the given property as their predicate must conform to the shape.".freeze, - domain: "sh:Shape".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#Shape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "target subjects of".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :union, comment: "A list of node expressions that shall be used together.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "union".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :uniqueLang, comment: "Specifies whether all node values must have a unique (or no) language tag.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "unique languages".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :update, comment: "The SPARQL UPDATE to execute.".freeze, - domain: "sh:SPARQLUpdateExecutable".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#SPARQLUpdateExecutable".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "update".freeze, - range: "xsd:string".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :validator, comment: "The validator(s) used to evaluate constraints of either node or property shapes.".freeze, - domain: "sh:ConstraintComponent".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "validator".freeze, - range: "sh:Validator".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/ns/shacl#Validator".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :value, comment: "An RDF node that has caused the result.".freeze, - domain: "sh:AbstractResult".freeze, - isDefinedBy: "sh:".freeze, + domain: "http://www.w3.org/ns/shacl#AbstractResult".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "value".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :xone, comment: "Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "exactly one".freeze, - range: "rdf:List".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :zeroOrMorePath, comment: "The (single) value of this property represents a path that is matched zero or more times.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "zero or more path".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :zeroOrOnePath, comment: "The (single) value of this property represents a path that is matched zero or one times.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "zero or one path".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :AndConstraintComponent, comment: "A constraint component that can be used to test whether a value node conforms to all members of a provided list of shapes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#AndConstraintComponent-and".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "And constraint component".freeze, - "sh:parameter": "sh:AndConstraintComponent-and".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"AndConstraintComponent-and", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:and".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#and".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :BlankNode, comment: "The node kind of all blank nodes.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Blank node".freeze, - type: "sh:NodeKind".freeze + type: "http://www.w3.org/ns/shacl#NodeKind".freeze term :BlankNodeOrIRI, comment: "The node kind of all blank nodes or IRIs.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Blank node or IRI".freeze, - type: "sh:NodeKind".freeze + type: "http://www.w3.org/ns/shacl#NodeKind".freeze term :BlankNodeOrLiteral, comment: "The node kind of all blank nodes or literals.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Blank node or literal".freeze, - type: "sh:NodeKind".freeze + type: "http://www.w3.org/ns/shacl#NodeKind".freeze term :ClassConstraintComponent, comment: "A constraint component that can be used to verify that each value node is an instance of a given type.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#ClassConstraintComponent-class".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Class constraint component".freeze, - "sh:parameter": "sh:ClassConstraintComponent-class".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"ClassConstraintComponent-class", - isDefinedBy: "sh:".freeze, - "sh:nodeKind": "sh:IRI".freeze, - "sh:path": "sh:class".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#class".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :ClosedConstraintComponent, comment: "A constraint component that can be used to indicate that focus nodes must only have values for those properties that have been explicitly enumerated via sh:property/sh:path.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": ["http://www.w3.org/ns/shacl#ClosedConstraintComponent-closed".freeze, "http://www.w3.org/ns/shacl#ClosedConstraintComponent-ignoredProperties".freeze], + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Closed constraint component".freeze, - "sh:parameter": ["sh:ClosedConstraintComponent-closed".freeze, "sh:ClosedConstraintComponent-ignoredProperties".freeze], - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"ClosedConstraintComponent-closed", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:boolean".freeze, - "sh:path": "sh:closed".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#boolean".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#closed".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :"ClosedConstraintComponent-ignoredProperties", - isDefinedBy: "sh:".freeze, - "sh:optional": "true".freeze, - "sh:path": "sh:ignoredProperties".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#optional": "true".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#ignoredProperties".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :DatatypeConstraintComponent, comment: "A constraint component that can be used to restrict the datatype of all value nodes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#DatatypeConstraintComponent-datatype".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Datatype constraint component".freeze, - "sh:parameter": "sh:DatatypeConstraintComponent-datatype".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"DatatypeConstraintComponent-datatype", - isDefinedBy: "sh:".freeze, - "sh:maxCount": "1".freeze, - "sh:nodeKind": "sh:IRI".freeze, - "sh:path": "sh:datatype".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#datatype".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :DisjointConstraintComponent, comment: "A constraint component that can be used to verify that the set of value nodes is disjoint with the the set of nodes that have the focus node as subject and the value of a given property as predicate.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#DisjointConstraintComponent-disjoint".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Disjoint constraint component".freeze, - "sh:parameter": "sh:DisjointConstraintComponent-disjoint".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"DisjointConstraintComponent-disjoint", - isDefinedBy: "sh:".freeze, - "sh:nodeKind": "sh:IRI".freeze, - "sh:path": "sh:disjoint".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#disjoint".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :EqualsConstraintComponent, comment: "A constraint component that can be used to verify that the set of value nodes is equal to the set of nodes that have the focus node as subject and the value of a given property as predicate.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#EqualsConstraintComponent-equals".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Equals constraint component".freeze, - "sh:parameter": "sh:EqualsConstraintComponent-equals".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"EqualsConstraintComponent-equals", - isDefinedBy: "sh:".freeze, - "sh:nodeKind": "sh:IRI".freeze, - "sh:path": "sh:equals".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#equals".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :ExpressionConstraintComponent, comment: "A constraint component that can be used to verify that a given node expression produces true for all value nodes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#ExpressionConstraintComponent-expression".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Expression constraint component".freeze, - "sh:parameter": "sh:ExpressionConstraintComponent-expression".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"ExpressionConstraintComponent-expression", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:expression".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#expression".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :HasValueConstraintComponent, comment: "A constraint component that can be used to verify that one of the value nodes is a given RDF node.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#HasValueConstraintComponent-hasValue".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Has-value constraint component".freeze, - "sh:parameter": "sh:HasValueConstraintComponent-hasValue".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"HasValueConstraintComponent-hasValue", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:hasValue".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#hasValue".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :IRI, comment: "The node kind of all IRIs.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "IRI".freeze, - type: "sh:NodeKind".freeze + type: "http://www.w3.org/ns/shacl#NodeKind".freeze term :IRIOrLiteral, comment: "The node kind of all IRIs or literals.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "IRI or literal".freeze, - type: "sh:NodeKind".freeze + type: "http://www.w3.org/ns/shacl#NodeKind".freeze term :InConstraintComponent, comment: "A constraint component that can be used to exclusively enumerate the permitted value nodes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#InConstraintComponent-in".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "In constraint component".freeze, - "sh:parameter": "sh:InConstraintComponent-in".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"InConstraintComponent-in", - isDefinedBy: "sh:".freeze, - "sh:maxCount": "1".freeze, - "sh:path": "sh:in".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#in".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :Info, comment: "The severity for an informational validation result.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Info".freeze, - type: "sh:Severity".freeze + type: "http://www.w3.org/ns/shacl#Severity".freeze term :"JSConstraint-js", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:js".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#js".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :JSConstraintComponent, comment: "A constraint component with the parameter sh:js linking to a sh:JSConstraint containing a sh:script.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#JSConstraint-js".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "JavaScript constraint component".freeze, - "sh:parameter": "sh:JSConstraint-js".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :LanguageInConstraintComponent, comment: "A constraint component that can be used to enumerate language tags that all value nodes must have.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#LanguageInConstraintComponent-languageIn".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Language-in constraint component".freeze, - "sh:parameter": "sh:LanguageInConstraintComponent-languageIn".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"LanguageInConstraintComponent-languageIn", - isDefinedBy: "sh:".freeze, - "sh:maxCount": "1".freeze, - "sh:path": "sh:languageIn".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#languageIn".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :LessThanConstraintComponent, comment: "A constraint component that can be used to verify that each value node is smaller than all the nodes that have the focus node as subject and the value of a given property as predicate.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#LessThanConstraintComponent-lessThan".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Less-than constraint component".freeze, - "sh:parameter": "sh:LessThanConstraintComponent-lessThan".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"LessThanConstraintComponent-lessThan", - isDefinedBy: "sh:".freeze, - "sh:nodeKind": "sh:IRI".freeze, - "sh:path": "sh:lessThan".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#lessThan".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :LessThanOrEqualsConstraintComponent, comment: "A constraint component that can be used to verify that every value node is smaller than all the nodes that have the focus node as subject and the value of a given property as predicate.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#LessThanOrEqualsConstraintComponent-lessThanOrEquals".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "less-than-or-equals constraint component".freeze, - "sh:parameter": "sh:LessThanOrEqualsConstraintComponent-lessThanOrEquals".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"LessThanOrEqualsConstraintComponent-lessThanOrEquals", - isDefinedBy: "sh:".freeze, - "sh:nodeKind": "sh:IRI".freeze, - "sh:path": "sh:lessThanOrEquals".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#IRI".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#lessThanOrEquals".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :Literal, comment: "The node kind of all literals.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Literal".freeze, - type: "sh:NodeKind".freeze + type: "http://www.w3.org/ns/shacl#NodeKind".freeze term :MaxCountConstraintComponent, comment: "A constraint component that can be used to restrict the maximum number of value nodes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MaxCountConstraintComponent-maxCount".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Max-count constraint component".freeze, - "sh:parameter": "sh:MaxCountConstraintComponent-maxCount".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"MaxCountConstraintComponent-maxCount", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:integer".freeze, - "sh:maxCount": "1".freeze, - "sh:path": "sh:maxCount".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer".freeze, + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#maxCount".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :MaxExclusiveConstraintComponent, comment: "A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MaxExclusiveConstraintComponent-maxExclusive".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Max-exclusive constraint component".freeze, - "sh:parameter": "sh:MaxExclusiveConstraintComponent-maxExclusive".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"MaxExclusiveConstraintComponent-maxExclusive", - isDefinedBy: "sh:".freeze, - "sh:maxCount": "1".freeze, - "sh:nodeKind": "sh:Literal".freeze, - "sh:path": "sh:maxExclusive".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#Literal".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#maxExclusive".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :MaxInclusiveConstraintComponent, comment: "A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MaxInclusiveConstraintComponent-maxInclusive".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Max-inclusive constraint component".freeze, - "sh:parameter": "sh:MaxInclusiveConstraintComponent-maxInclusive".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"MaxInclusiveConstraintComponent-maxInclusive", - isDefinedBy: "sh:".freeze, - "sh:maxCount": "1".freeze, - "sh:nodeKind": "sh:Literal".freeze, - "sh:path": "sh:maxInclusive".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#Literal".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#maxInclusive".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :MaxLengthConstraintComponent, comment: "A constraint component that can be used to restrict the maximum string length of value nodes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MaxLengthConstraintComponent-maxLength".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Max-length constraint component".freeze, - "sh:parameter": "sh:MaxLengthConstraintComponent-maxLength".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"MaxLengthConstraintComponent-maxLength", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:integer".freeze, - "sh:maxCount": "1".freeze, - "sh:path": "sh:maxLength".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer".freeze, + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#maxLength".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :MinCountConstraintComponent, comment: "A constraint component that can be used to restrict the minimum number of value nodes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MinCountConstraintComponent-minCount".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Min-count constraint component".freeze, - "sh:parameter": "sh:MinCountConstraintComponent-minCount".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"MinCountConstraintComponent-minCount", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:integer".freeze, - "sh:maxCount": "1".freeze, - "sh:path": "sh:minCount".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer".freeze, + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#minCount".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :MinExclusiveConstraintComponent, comment: "A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MinExclusiveConstraintComponent-minExclusive".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Min-exclusive constraint component".freeze, - "sh:parameter": "sh:MinExclusiveConstraintComponent-minExclusive".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"MinExclusiveConstraintComponent-minExclusive", - isDefinedBy: "sh:".freeze, - "sh:maxCount": "1".freeze, - "sh:nodeKind": "sh:Literal".freeze, - "sh:path": "sh:minExclusive".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#Literal".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#minExclusive".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :MinInclusiveConstraintComponent, comment: "A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MinInclusiveConstraintComponent-minInclusive".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Min-inclusive constraint component".freeze, - "sh:parameter": "sh:MinInclusiveConstraintComponent-minInclusive".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"MinInclusiveConstraintComponent-minInclusive", - isDefinedBy: "sh:".freeze, - "sh:maxCount": "1".freeze, - "sh:nodeKind": "sh:Literal".freeze, - "sh:path": "sh:minInclusive".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#nodeKind": "http://www.w3.org/ns/shacl#Literal".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#minInclusive".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :MinLengthConstraintComponent, comment: "A constraint component that can be used to restrict the minimum string length of value nodes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#MinLengthConstraintComponent-minLength".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Min-length constraint component".freeze, - "sh:parameter": "sh:MinLengthConstraintComponent-minLength".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"MinLengthConstraintComponent-minLength", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:integer".freeze, - "sh:maxCount": "1".freeze, - "sh:path": "sh:minLength".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer".freeze, + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#minLength".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :NodeConstraintComponent, comment: "A constraint component that can be used to verify that all value nodes conform to the given node shape.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#NodeConstraintComponent-node".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Node constraint component".freeze, - "sh:parameter": "sh:NodeConstraintComponent-node".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"NodeConstraintComponent-node", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:node".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#node".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :NodeKindConstraintComponent, comment: "A constraint component that can be used to restrict the RDF node kind of each value node.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#NodeKindConstraintComponent-nodeKind".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Node-kind constraint component".freeze, - "sh:parameter": "sh:NodeKindConstraintComponent-nodeKind".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"NodeKindConstraintComponent-nodeKind", - isDefinedBy: "sh:".freeze, - "sh:in": list("sh:BlankNode".freeze, "sh:IRI".freeze, "sh:Literal".freeze, "sh:BlankNodeOrIRI".freeze, "sh:BlankNodeOrLiteral".freeze, "sh:IRIOrLiteral".freeze), - "sh:maxCount": "1".freeze, - "sh:path": "sh:nodeKind".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#in": list("http://www.w3.org/ns/shacl#BlankNode".freeze, "http://www.w3.org/ns/shacl#IRI".freeze, "http://www.w3.org/ns/shacl#Literal".freeze, "http://www.w3.org/ns/shacl#BlankNodeOrIRI".freeze, "http://www.w3.org/ns/shacl#BlankNodeOrLiteral".freeze, "http://www.w3.org/ns/shacl#IRIOrLiteral".freeze), + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#nodeKind".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :NotConstraintComponent, comment: "A constraint component that can be used to verify that value nodes do not conform to a given shape.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#NotConstraintComponent-not".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Not constraint component".freeze, - "sh:parameter": "sh:NotConstraintComponent-not".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"NotConstraintComponent-not", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:not".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#not".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :OrConstraintComponent, comment: "A constraint component that can be used to restrict the value nodes so that they conform to at least one out of several provided shapes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#OrConstraintComponent-or".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Or constraint component".freeze, - "sh:parameter": "sh:OrConstraintComponent-or".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"OrConstraintComponent-or", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:or".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#or".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :PatternConstraintComponent, comment: "A constraint component that can be used to verify that every value node matches a given regular expression.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": ["http://www.w3.org/ns/shacl#PatternConstraintComponent-flags".freeze, "http://www.w3.org/ns/shacl#PatternConstraintComponent-pattern".freeze], + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Pattern constraint component".freeze, - "sh:parameter": ["sh:PatternConstraintComponent-flags".freeze, "sh:PatternConstraintComponent-pattern".freeze], - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"PatternConstraintComponent-flags", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:string".freeze, - "sh:optional": "true".freeze, - "sh:path": "sh:flags".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#string".freeze, + "http://www.w3.org/ns/shacl#optional": "true".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#flags".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :"PatternConstraintComponent-pattern", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:string".freeze, - "sh:path": "sh:pattern".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#string".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#pattern".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :PropertyConstraintComponent, comment: "A constraint component that can be used to verify that all value nodes conform to the given property shape.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#PropertyConstraintComponent-property".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Property constraint component".freeze, - "sh:parameter": "sh:PropertyConstraintComponent-property".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"PropertyConstraintComponent-property", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:property".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#property".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :QualifiedMaxCountConstraintComponent, comment: "A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": ["http://www.w3.org/ns/shacl#QualifiedMaxCountConstraintComponent-qualifiedMaxCount".freeze, "http://www.w3.org/ns/shacl#QualifiedMaxCountConstraintComponent-qualifiedValueShape".freeze, "http://www.w3.org/ns/shacl#QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint".freeze], + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Qualified-max-count constraint component".freeze, - "sh:parameter": ["sh:QualifiedMaxCountConstraintComponent-qualifiedMaxCount".freeze, "sh:QualifiedMaxCountConstraintComponent-qualifiedValueShape".freeze, "sh:QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint".freeze], - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"QualifiedMaxCountConstraintComponent-qualifiedMaxCount", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:integer".freeze, - "sh:path": "sh:qualifiedMaxCount".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedMaxCount".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :"QualifiedMaxCountConstraintComponent-qualifiedValueShape", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:qualifiedValueShape".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedValueShape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :"QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:boolean".freeze, - "sh:optional": "true".freeze, - "sh:path": "sh:qualifiedValueShapesDisjoint".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#boolean".freeze, + "http://www.w3.org/ns/shacl#optional": "true".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :QualifiedMinCountConstraintComponent, comment: "A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": ["http://www.w3.org/ns/shacl#QualifiedMinCountConstraintComponent-qualifiedMinCount".freeze, "http://www.w3.org/ns/shacl#QualifiedMinCountConstraintComponent-qualifiedValueShape".freeze, "http://www.w3.org/ns/shacl#QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint".freeze], + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Qualified-min-count constraint component".freeze, - "sh:parameter": ["sh:QualifiedMinCountConstraintComponent-qualifiedMinCount".freeze, "sh:QualifiedMinCountConstraintComponent-qualifiedValueShape".freeze, "sh:QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint".freeze], - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"QualifiedMinCountConstraintComponent-qualifiedMinCount", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:integer".freeze, - "sh:path": "sh:qualifiedMinCount".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#integer".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedMinCount".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :"QualifiedMinCountConstraintComponent-qualifiedValueShape", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:qualifiedValueShape".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedValueShape".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :"QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:boolean".freeze, - "sh:optional": "true".freeze, - "sh:path": "sh:qualifiedValueShapesDisjoint".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#boolean".freeze, + "http://www.w3.org/ns/shacl#optional": "true".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#qualifiedValueShapesDisjoint".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :SPARQLConstraintComponent, comment: "A constraint component that can be used to define constraints based on SPARQL queries.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#SPARQLConstraintComponent-sparql".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "SPARQL constraint component".freeze, - "sh:parameter": "sh:SPARQLConstraintComponent-sparql".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"SPARQLConstraintComponent-sparql", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:sparql".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#sparql".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :UniqueLangConstraintComponent, comment: "A constraint component that can be used to specify that no pair of value nodes may use the same language tag.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#UniqueLangConstraintComponent-uniqueLang".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Unique-languages constraint component".freeze, - "sh:parameter": "sh:UniqueLangConstraintComponent-uniqueLang".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"UniqueLangConstraintComponent-uniqueLang", - isDefinedBy: "sh:".freeze, - "sh:datatype": "xsd:boolean".freeze, - "sh:maxCount": "1".freeze, - "sh:path": "sh:uniqueLang".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#datatype": "http://www.w3.org/2001/XMLSchema#boolean".freeze, + "http://www.w3.org/ns/shacl#maxCount": "1".freeze, + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#uniqueLang".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :Violation, comment: "The severity for a violation validation result.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Violation".freeze, - type: "sh:Severity".freeze + type: "http://www.w3.org/ns/shacl#Severity".freeze term :Warning, comment: "The severity for a warning validation result.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Warning".freeze, - type: "sh:Severity".freeze + type: "http://www.w3.org/ns/shacl#Severity".freeze term :XoneConstraintComponent, comment: "A constraint component that can be used to restrict the value nodes so that they conform to exactly one out of several provided shapes.".freeze, - isDefinedBy: "sh:".freeze, + "http://www.w3.org/ns/shacl#parameter": "http://www.w3.org/ns/shacl#XoneConstraintComponent-xone".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "Exactly one constraint component".freeze, - "sh:parameter": "sh:XoneConstraintComponent-xone".freeze, - type: "sh:ConstraintComponent".freeze + type: "http://www.w3.org/ns/shacl#ConstraintComponent".freeze term :"XoneConstraintComponent-xone", - isDefinedBy: "sh:".freeze, - "sh:path": "sh:xone".freeze, - type: "sh:Parameter".freeze + "http://www.w3.org/ns/shacl#path": "http://www.w3.org/ns/shacl#xone".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, + type: "http://www.w3.org/ns/shacl#Parameter".freeze term :this, comment: "A node expression that represents the current focus node.".freeze, - isDefinedBy: "sh:".freeze, + isDefinedBy: "http://www.w3.org/ns/shacl#".freeze, label: "this".freeze, - type: "rdfs:Resource".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze end end diff --git a/lib/rdf/vocab/sioc.rb b/lib/rdf/vocab/sioc.rb index a53ad31..98a79e7 100644 --- a/lib/rdf/vocab/sioc.rb +++ b/lib/rdf/vocab/sioc.rb @@ -3,1129 +3,725 @@ # This file generated automatically using rdf vocabulary format from http://rdfs.org/sioc/ns# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # SIOC Core Ontology Namespace - # # - # # SIOC (Semantically-Interlinked Online Communities) is an ontology for describing the information in online communities. This information can be used to export information from online communities and to link them together. The scope of the application areas that SIOC can be used for includes (and is not limited to) weblogs, message boards, mailing lists and chat channels. - # # @version Revision: 1.36 - # # @see http://rdfs.org/sioc/spec - # class SIOC < RDF::StrictVocabulary - # # Community is a high-level concept that defines an online community and what it consists of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Community - # - # # An area in which content Items are contained. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Container - # - # # A discussion area on which Posts or entries are made. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Forum - # - # # An Item is something which can be in a Container. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Item - # - # # An article or message that can be posted to a Forum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Post - # - # # A Role is a function of a UserAccount within a scope of a particular Forum, Site, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Role - # - # # A Site can be the location of an online community or set of communities, with UserAccounts and Usergroups creating Items in a set of Containers. It can be thought of as a web-accessible data Space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Site - # - # # A Space is a place where data resides, e.g. on a website, desktop, fileshare, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Space - # - # # A container for a series of threaded discussion Posts or Items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Thread - # - # # UserAccount is now preferred. This is a deprecated class for a User in an online community site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :User - # - # # A user account in an online community site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :UserAccount - # - # # A set of UserAccounts whose owners have a common purpose or interest. Can be used for access control purposes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Usergroup - # - # # Specifies that this Item is about a particular resource, e.g. a Post describing a book, hotel, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :about - # - # # Refers to the foaf:Agent or foaf:Person who owns this sioc:UserAccount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :account_of - # - # # Refers to who (e.g. a UserAccount, e-mail address, etc.) a particular Item is addressed to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :addressed_to - # - # # A Site that the UserAccount is an administrator of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :administrator_of - # - # # The URI of a file attached to an Item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :attachment - # - # # An image or depiction used to represent this UserAccount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :avatar - # - # # An Item that this Container contains. - # # @return [RDF::Vocabulary::Term] - # attr_reader :container_of - # - # # The content of the Item in plain text format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :content - # - # # The encoded content of the Post, contained in CDATA areas. - # # @return [RDF::Vocabulary::Term] - # attr_reader :content_encoded - # - # # When this was created, in ISO 8601 format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :created_at - # - # # A resource that the UserAccount is a creator of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :creator_of - # - # # When this was delivered, in ISO 8601 format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :delivered_at - # - # # The content of the Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # The Item that this discussion is about. - # # @return [RDF::Vocabulary::Term] - # attr_reader :discussion_of - # - # # Links to a previous (older) revision of this Item or Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :earlier_version - # - # # An electronic mail address of the UserAccount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :email - # - # # An electronic mail address of the UserAccount, encoded using SHA1. - # # @return [RDF::Vocabulary::Term] - # attr_reader :email_sha1 - # - # # This links Items to embedded statements, facts and structured content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :embeds_knowledge - # - # # A feed (e.g. RSS, Atom, etc.) pertaining to this resource (e.g. for a Forum, Site, UserAccount, etc.). - # # @return [RDF::Vocabulary::Term] - # attr_reader :feed - # - # # First (real) name of this User. Synonyms include given name or christian name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :first_name - # - # # Indicates that one UserAccount follows another UserAccount (e.g. for microblog posts or other content item updates). - # # @return [RDF::Vocabulary::Term] - # attr_reader :follows - # - # # A UserAccount that has this Role. - # # @return [RDF::Vocabulary::Term] - # attr_reader :function_of - # - # # A URI for the application used to generate this Item. - # # @return [RDF::Vocabulary::Term] - # attr_reader :generator - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :group_of - # - # # A UserAccount that is an administrator of this Site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_administrator - # - # # The Container to which this Item belongs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_container - # - # # This is the UserAccount that made this resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_creator - # - # # A discussion that is related to this Item. The discussion can be anything, for example, a sioc:Forum or sioc:Thread, a sioct:WikiArticle or simply a foaf:Document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_discussion - # - # # A Role that this UserAccount has. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_function - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_group - # - # # The Site that hosts this Container. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_host - # - # # A UserAccount that is a member of this Usergroup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_member - # - # # A UserAccount that is a moderator of this Forum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_moderator - # - # # A UserAccount that modified this resource (e.g. Item, Container, Space). - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_modifier - # - # # A UserAccount that this resource is owned by. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_owner - # - # # A Container or Forum that this Container or Forum is a child of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_parent - # - # # An resource that is a part of this subject. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_part - # - # # Points to an Item or Post that is a reply or response to this Item or Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_reply - # - # # A resource that this Role applies to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_scope - # - # # A data Space which this resource is a part of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_space - # - # # A UserAccount that is subscribed to this Container. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_subscriber - # - # # Points to a Usergroup that has certain access to this Space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_usergroup - # - # # A Container that is hosted on this Site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :host_of - # - # # An identifier of a SIOC concept instance. For example, a user ID. Must be unique for instances of each type of SIOC concept within the same site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :id - # - # # The IP address used when creating this Item, UserAccount, etc. This can be associated with a creator. Some wiki articles list the IP addresses for the creator or modifiers when the usernames are absent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ip_address - # - # # The date and time of the last activity associated with a SIOC concept instance, and expressed in ISO 8601 format. This could be due to a reply Post or Comment, a modification to an Item, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :last_activity_date - # - # # The date and time of the last Post (or Item) in a Forum (or a Container), in ISO 8601 format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :last_item_date - # - # # Last (real) name of this user. Synonyms include surname or family name. - # # @return [RDF::Vocabulary::Term] - # attr_reader :last_name - # - # # The date and time of the last reply Post or Comment, which could be associated with a starter Item or Post or with a Thread, and expressed in ISO 8601 format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :last_reply_date - # - # # Links to a later (newer) revision of this Item or Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :later_version - # - # # Links to the latest revision of this Item or Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :latest_version - # - # # Used to indicate some form of endorsement by a UserAccount or Agent of an Item, Container, Space, UserAccount, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :likes - # - # # A URI of a document which contains this SIOC object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :link - # - # # Links extracted from hyperlinks within a SIOC concept, e.g. Post or Site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :links_to - # - # # A Usergroup that this UserAccount is a member of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :member_of - # - # # Refers to a UserAccount that a particular Item mentions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mentions - # - # # A Forum that a UserAccount is a moderator of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :moderator_of - # - # # When this was modified, in ISO 8601 format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :modified_at - # - # # A resource that this UserAccount has modified. - # # @return [RDF::Vocabulary::Term] - # attr_reader :modifier_of - # - # # The name of a SIOC concept instance, e.g. a username for a UserAccount, group name for a Usergroup, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # Next Item or Post in a given Container sorted by date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :next_by_date - # - # # Links to the next revision of this Item or Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :next_version - # - # # A note associated with this resource, for example, if it has been edited by a UserAccount. - # # @return [RDF::Vocabulary::Term] - # attr_reader :note - # - # # The number of unique authors (UserAccounts and unregistered posters) who have contributed to this Item, Thread, Post, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :num_authors - # - # # The number of Posts (or Items) in a Forum (or a Container). - # # @return [RDF::Vocabulary::Term] - # attr_reader :num_items - # - # # The number of replies that this Item, Thread, Post, etc. has. Useful for when the reply structure is absent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :num_replies - # - # # The number of Threads (AKA discussion topics) in a Forum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :num_threads - # - # # The number of times this Item, Thread, UserAccount profile, etc. has been viewed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :num_views - # - # # A resource owned by a particular UserAccount, for example, a weblog or image gallery. - # # @return [RDF::Vocabulary::Term] - # attr_reader :owner_of - # - # # A child Container or Forum that this Container or Forum is a parent of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :parent_of - # - # # A resource that the subject is a part of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :part_of - # - # # Previous Item or Post in a given Container sorted by date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :previous_by_date - # - # # Links to the previous revision of this Item or Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :previous_version - # - # # When this was read, in ISO 8601 format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :read_at - # - # # Links either created explicitly or extracted implicitly on the HTML level from the Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reference - # - # # Related resources for this resource, e.g. for Posts, perhaps determined implicitly from topics or references. - # # @return [RDF::Vocabulary::Term] - # attr_reader :related_to - # - # # Links to an Item or Post which this Item or Post is a reply to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reply_of - # - # # For the reply-to address set in email messages, IMs, etc. The property name was chosen to avoid confusion with has_reply/reply_of (the reply graph). - # # @return [RDF::Vocabulary::Term] - # attr_reader :respond_to - # - # # A Role that has a scope of this resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :scope_of - # - # # For shared Items where there is a certain creator_of and an intermediary who shares or forwards it (e.g. as a sibling Item). - # # @return [RDF::Vocabulary::Term] - # attr_reader :shared_by - # - # # An Item may have a sibling or a twin that exists in a different Container, but the siblings may differ in some small way (for example, language, category, etc.). The sibling of this Item should be self-describing (that is, it should contain all available information). - # # @return [RDF::Vocabulary::Term] - # attr_reader :sibling - # - # # A resource which belongs to this data Space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :space_of - # - # # Keyword(s) describing subject of the Post. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subject - # - # # A Container that a UserAccount is subscribed to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subscriber_of - # - # # This is the title (subject line) of the Post. Note that for a Post within a threaded discussion that has no parents, it would detail the topic thread. - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # A topic of interest, linking to the appropriate URI, e.g. in the Open Directory Project or of a SKOS category. - # # @return [RDF::Vocabulary::Term] - # attr_reader :topic - # - # # A Space that the Usergroup has access to. - # # @return [RDF::Vocabulary::Term] - # attr_reader :usergroup_of - # - # end SIOC = Class.new(RDF::StrictVocabulary("http://rdfs.org/sioc/ns#")) do # Ontology definition ontology :"http://rdfs.org/sioc/ns#", - "dc:description": "SIOC (Semantically-Interlinked Online Communities) is an ontology for describing the information in online communities. \nThis information can be used to export information from online communities and to link them together. The scope of the application areas that SIOC can be used for includes (and is not limited to) weblogs, message boards, mailing lists and chat channels.".freeze, - "dc:title": "SIOC Core Ontology Namespace".freeze, - "owl:versionInfo": "Revision: 1.36".freeze, - "rdfs:seeAlso": "http://rdfs.org/sioc/spec".freeze, - type: ["owl:Ontology".freeze, "owl:Thing".freeze] + "http://purl.org/dc/terms/description": "SIOC (Semantically-Interlinked Online Communities) is an ontology for describing the information in online communities. \nThis information can be used to export information from online communities and to link them together. The scope of the application areas that SIOC can be used for includes (and is not limited to) weblogs, message boards, mailing lists and chat channels.".freeze, + "http://purl.org/dc/terms/title": "SIOC Core Ontology Namespace".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/spec".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "Revision: 1.36".freeze, + type: ["http://www.w3.org/2002/07/owl#Ontology".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] # Class definitions term :Community, comment: "Community is a high-level concept that defines an online community and what it consists of.".freeze, - isDefinedBy: "sioc:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://rdfs.org/sioc/ns#Item".freeze, "http://rdfs.org/sioc/ns#Role".freeze, "http://rdfs.org/sioc/ns#UserAccount".freeze], + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Community".freeze, - "owl:disjointWith": ["sioc:Item".freeze, "sioc:Role".freeze, "sioc:UserAccount".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Container, comment: "An area in which content Items are contained.".freeze, - isDefinedBy: "sioc:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://rdfs.org/sioc/ns#Item".freeze, "http://rdfs.org/sioc/ns#Role".freeze, "http://rdfs.org/sioc/ns#UserAccount".freeze, "http://rdfs.org/sioc/ns#Usergroup".freeze], + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Container".freeze, - "owl:disjointWith": ["sioc:Item".freeze, "sioc:Role".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Forum, comment: "A discussion area on which Posts or entries are made.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Forum".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Item, comment: "An Item is something which can be in a Container.".freeze, - isDefinedBy: "sioc:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://rdfs.org/sioc/ns#Container".freeze, "http://rdfs.org/sioc/ns#Role".freeze, "http://rdfs.org/sioc/ns#Space".freeze, "http://rdfs.org/sioc/ns#UserAccount".freeze, "http://rdfs.org/sioc/ns#Usergroup".freeze], + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Item".freeze, - "owl:disjointWith": ["sioc:Container".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Post, comment: "An article or message that can be posted to a Forum.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Post".freeze, - subClassOf: ["foaf:Document".freeze, "sioc:Item".freeze], - type: "owl:Class".freeze + subClassOf: ["http://rdfs.org/sioc/ns#Item".freeze, "http://xmlns.com/foaf/0.1/Document".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Role, comment: "A Role is a function of a UserAccount within a scope of a particular Forum, Site, etc.".freeze, - isDefinedBy: "sioc:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://rdfs.org/sioc/ns#Container".freeze, "http://rdfs.org/sioc/ns#Item".freeze, "http://rdfs.org/sioc/ns#Space".freeze, "http://rdfs.org/sioc/ns#UserAccount".freeze, "http://rdfs.org/sioc/ns#Usergroup".freeze], + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Role".freeze, - "owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Space".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Site, comment: "A Site can be the location of an online community or set of communities, with UserAccounts and Usergroups creating Items in a set of Containers. It can be thought of as a web-accessible data Space.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Site".freeze, - subClassOf: "sioc:Space".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Space".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Space, comment: "A Space is a place where data resides, e.g. on a website, desktop, fileshare, etc.".freeze, - isDefinedBy: "sioc:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://rdfs.org/sioc/ns#Item".freeze, "http://rdfs.org/sioc/ns#Role".freeze, "http://rdfs.org/sioc/ns#UserAccount".freeze, "http://rdfs.org/sioc/ns#Usergroup".freeze], + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Space".freeze, - "owl:disjointWith": ["sioc:Item".freeze, "sioc:Role".freeze, "sioc:UserAccount".freeze, "sioc:Usergroup".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Thread, comment: "A container for a series of threaded discussion Posts or Items.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Thread".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :User, comment: "UserAccount is now preferred. This is a deprecated class for a User in an online community site.".freeze, - equivalentClass: "sioc:UserAccount".freeze, - isDefinedBy: "sioc:".freeze, + equivalentClass: "http://rdfs.org/sioc/ns#UserAccount".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://rdfs.org/sioc/ns#Container".freeze, "http://rdfs.org/sioc/ns#Item".freeze, "http://rdfs.org/sioc/ns#Role".freeze, "http://rdfs.org/sioc/ns#Space".freeze, "http://rdfs.org/sioc/ns#Usergroup".freeze], + "http://www.w3.org/2002/07/owl#versionInfo": "This class is deprecated. Use sioc:UserAccount from the SIOC ontology instead.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "User".freeze, - "owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:Usergroup".freeze], - "owl:versionInfo": "This class is deprecated. Use sioc:UserAccount from the SIOC ontology instead.".freeze, - subClassOf: "foaf:OnlineAccount".freeze, - type: "owl:DeprecatedClass".freeze + subClassOf: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze, + type: "http://www.w3.org/2002/07/owl#DeprecatedClass".freeze term :UserAccount, comment: "A user account in an online community site.".freeze, - isDefinedBy: "sioc:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://rdfs.org/sioc/ns#Container".freeze, "http://rdfs.org/sioc/ns#Item".freeze, "http://rdfs.org/sioc/ns#Role".freeze, "http://rdfs.org/sioc/ns#Space".freeze, "http://rdfs.org/sioc/ns#Usergroup".freeze], + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "User Account".freeze, - "owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:Usergroup".freeze], - subClassOf: "foaf:OnlineAccount".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Usergroup, comment: "A set of UserAccounts whose owners have a common purpose or interest. Can be used for access control purposes.".freeze, - isDefinedBy: "sioc:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://rdfs.org/sioc/ns#Container".freeze, "http://rdfs.org/sioc/ns#Item".freeze, "http://rdfs.org/sioc/ns#Role".freeze, "http://rdfs.org/sioc/ns#Space".freeze, "http://rdfs.org/sioc/ns#UserAccount".freeze], + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "Usergroup".freeze, - "owl:disjointWith": ["sioc:Container".freeze, "sioc:Item".freeze, "sioc:Role".freeze, "sioc:Space".freeze, "sioc:UserAccount".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :about, comment: "Specifies that this Item is about a particular resource, e.g. a Post describing a book, hotel, etc.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "about".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :account_of, comment: "Refers to the foaf:Agent or foaf:Person who owns this sioc:UserAccount.".freeze, - domain: "sioc:UserAccount".freeze, - inverseOf: "foaf:account".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + inverseOf: "http://xmlns.com/foaf/0.1/account".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "account of".freeze, - range: "foaf:Agent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :addressed_to, comment: "Refers to who (e.g. a UserAccount, e-mail address, etc.) a particular Item is addressed to.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "addressed to".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :administrator_of, comment: "A Site that the UserAccount is an administrator of.".freeze, - domain: "sioc:UserAccount".freeze, - inverseOf: "sioc:has_administrator".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_administrator".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "administrator of".freeze, - range: "sioc:Site".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Site".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :attachment, comment: "The URI of a file attached to an Item.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "attachment".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :avatar, comment: "An image or depiction used to represent this UserAccount.".freeze, - domain: "sioc:UserAccount".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "avatar".freeze, - subPropertyOf: "foaf:depiction".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://xmlns.com/foaf/0.1/depiction".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :container_of, comment: "An Item that this Container contains.".freeze, - domain: "sioc:Container".freeze, - inverseOf: "sioc:has_container".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Container".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_container".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "container of".freeze, - range: "sioc:Item".freeze, - subPropertyOf: "dc:hasPart".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + subPropertyOf: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :content, comment: "The content of the Item in plain text format.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "content".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :content_encoded, comment: "The encoded content of the Post, contained in CDATA areas.".freeze, - domain: "sioc:Post".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Post".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use content:encoded from the RSS 1.0 content module instead.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "content encoded".freeze, - "owl:versionInfo": "This property is deprecated. Use content:encoded from the RSS 1.0 content module instead.".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :created_at, comment: "When this was created, in ISO 8601 format.".freeze, - domain: "sioc:Post".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Post".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use dcterms:created from the Dublin Core ontology instead.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "created at".freeze, - "owl:versionInfo": "This property is deprecated. Use dcterms:created from the Dublin Core ontology instead.".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :creator_of, comment: "A resource that the UserAccount is a creator of.".freeze, - domain: "sioc:UserAccount".freeze, - inverseOf: "sioc:has_creator".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_creator".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "creator of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :delivered_at, comment: "When this was delivered, in ISO 8601 format.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "delivered at".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :description, comment: "The content of the Post.".freeze, - domain: "sioc:Post".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Post".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use sioc:content or other methods (AtomOwl, content:encoded from RSS 1.0, etc.) instead.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "description".freeze, - "owl:versionInfo": "This property is deprecated. Use sioc:content or other methods (AtomOwl, content:encoded from RSS 1.0, etc.) instead.".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :discussion_of, comment: "The Item that this discussion is about.".freeze, - inverseOf: "sioc:has_discussion".freeze, - isDefinedBy: "sioc:".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_discussion".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "discussion of".freeze, - range: "sioc:Item".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :earlier_version, comment: "Links to a previous (older) revision of this Item or Post.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:later_version".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#later_version".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "earlier version".freeze, - range: "sioc:Item".freeze, - type: "owl:TransitiveProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + type: "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze property :email, comment: "An electronic mail address of the UserAccount.".freeze, - domain: "sioc:UserAccount".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "email".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :email_sha1, comment: "An electronic mail address of the UserAccount, encoded using SHA1.".freeze, - domain: "sioc:UserAccount".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "email sha1".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :embeds_knowledge, comment: "This links Items to embedded statements, facts and structured content.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "embeds knowledge".freeze, range: "http://www.w3.org/2004/03/trix/rdfg-1/Graph".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :feed, comment: "A feed (e.g. RSS, Atom, etc.) pertaining to this resource (e.g. for a Forum, Site, UserAccount, etc.).".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "feed".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :first_name, comment: "First (real) name of this User. Synonyms include given name or christian name.".freeze, - domain: "sioc:UserAccount".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use foaf:name or foaf:firstName from the FOAF vocabulary instead.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "first name".freeze, - "owl:versionInfo": "This property is deprecated. Use foaf:name or foaf:firstName from the FOAF vocabulary instead.".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :follows, comment: "Indicates that one UserAccount follows another UserAccount (e.g. for microblog posts or other content item updates).".freeze, - domain: "sioc:UserAccount".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "follows".freeze, - range: "sioc:UserAccount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :function_of, comment: "A UserAccount that has this Role.".freeze, - domain: "sioc:Role".freeze, - inverseOf: "sioc:has_function".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Role".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_function".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "function of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generator, comment: "A URI for the application used to generate this Item.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "generator".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :group_of, - inverseOf: "sioc:has_group".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property has been renamed. Use sioc:usergroup_of instead.".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_group".freeze, label: "group of".freeze, - "owl:versionInfo": "This property has been renamed. Use sioc:usergroup_of instead.".freeze, - type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :has_administrator, comment: "A UserAccount that is an administrator of this Site.".freeze, - domain: "sioc:Site".freeze, - inverseOf: "sioc:administrator_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Site".freeze, + inverseOf: "http://rdfs.org/sioc/ns#administrator_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has administrator".freeze, - range: "sioc:UserAccount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_container, comment: "The Container to which this Item belongs.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:container_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#container_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has container".freeze, - range: "sioc:Container".freeze, - subPropertyOf: "dc:partOf".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Container".freeze, + subPropertyOf: "http://purl.org/dc/terms/partOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_creator, comment: "This is the UserAccount that made this resource.".freeze, - inverseOf: "sioc:creator_of".freeze, - isDefinedBy: "sioc:".freeze, + inverseOf: "http://rdfs.org/sioc/ns#creator_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has creator".freeze, - range: "sioc:UserAccount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_discussion, comment: "A discussion that is related to this Item. The discussion can be anything, for example, a sioc:Forum or sioc:Thread, a sioct:WikiArticle or simply a foaf:Document.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:discussion_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#discussion_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has discussion".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_function, comment: "A Role that this UserAccount has.".freeze, - inverseOf: "sioc:function_of".freeze, - isDefinedBy: "sioc:".freeze, + inverseOf: "http://rdfs.org/sioc/ns#function_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has function".freeze, - range: "sioc:Role".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Role".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_group, - inverseOf: "sioc:group_of".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property has been renamed. Use sioc:has_usergroup instead.".freeze, + inverseOf: "http://rdfs.org/sioc/ns#group_of".freeze, label: "has group".freeze, - "owl:versionInfo": "This property has been renamed. Use sioc:has_usergroup instead.".freeze, - type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :has_host, comment: "The Site that hosts this Container.".freeze, - domain: "sioc:Container".freeze, - inverseOf: "sioc:host_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Container".freeze, + inverseOf: "http://rdfs.org/sioc/ns#host_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has host".freeze, - range: "sioc:Site".freeze, - subPropertyOf: "sioc:has_space".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Site".freeze, + subPropertyOf: "http://rdfs.org/sioc/ns#has_space".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_member, comment: "A UserAccount that is a member of this Usergroup.".freeze, - domain: "sioc:Usergroup".freeze, - inverseOf: "sioc:member_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Usergroup".freeze, + inverseOf: "http://rdfs.org/sioc/ns#member_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has member".freeze, - range: "sioc:UserAccount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_moderator, comment: "A UserAccount that is a moderator of this Forum.".freeze, - domain: "sioc:Forum".freeze, - inverseOf: "sioc:moderator_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Forum".freeze, + inverseOf: "http://rdfs.org/sioc/ns#moderator_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has moderator".freeze, - range: "sioc:UserAccount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_modifier, comment: "A UserAccount that modified this resource (e.g. Item, Container, Space).".freeze, - inverseOf: "sioc:modifier_of".freeze, - isDefinedBy: "sioc:".freeze, + inverseOf: "http://rdfs.org/sioc/ns#modifier_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has modifier".freeze, - range: "sioc:UserAccount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_owner, comment: "A UserAccount that this resource is owned by.".freeze, - inverseOf: "sioc:owner_of".freeze, - isDefinedBy: "sioc:".freeze, + inverseOf: "http://rdfs.org/sioc/ns#owner_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has owner".freeze, - range: "sioc:UserAccount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_parent, comment: "A Container or Forum that this Container or Forum is a child of.".freeze, - domain: "sioc:Container".freeze, - inverseOf: "sioc:parent_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Container".freeze, + inverseOf: "http://rdfs.org/sioc/ns#parent_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has parent".freeze, - range: "sioc:Container".freeze, - subPropertyOf: "dc:partOf".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Container".freeze, + subPropertyOf: "http://purl.org/dc/terms/partOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_part, comment: "An resource that is a part of this subject.".freeze, - inverseOf: "sioc:part_of".freeze, - isDefinedBy: "sioc:".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use dcterms:hasPart from the Dublin Core ontology instead.".freeze, + inverseOf: "http://rdfs.org/sioc/ns#part_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has part".freeze, - "owl:versionInfo": "This property is deprecated. Use dcterms:hasPart from the Dublin Core ontology instead.".freeze, - type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :has_reply, comment: "Points to an Item or Post that is a reply or response to this Item or Post.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:reply_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#reply_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has reply".freeze, - range: "sioc:Item".freeze, - subPropertyOf: "sioc:related_to".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + subPropertyOf: "http://rdfs.org/sioc/ns#related_to".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_scope, comment: "A resource that this Role applies to.".freeze, - domain: "sioc:Role".freeze, - inverseOf: "sioc:scope_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Role".freeze, + inverseOf: "http://rdfs.org/sioc/ns#scope_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has scope".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_space, comment: "A data Space which this resource is a part of.".freeze, - inverseOf: "sioc:space_of".freeze, - isDefinedBy: "sioc:".freeze, + inverseOf: "http://rdfs.org/sioc/ns#space_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has space".freeze, - range: "sioc:Space".freeze, - subPropertyOf: "dc:partOf".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Space".freeze, + subPropertyOf: "http://purl.org/dc/terms/partOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_subscriber, comment: "A UserAccount that is subscribed to this Container.".freeze, - domain: "sioc:Container".freeze, - inverseOf: "sioc:subscriber_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Container".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/ns#feed".freeze, + inverseOf: "http://rdfs.org/sioc/ns#subscriber_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has subscriber".freeze, - range: "sioc:UserAccount".freeze, - "rdfs:seeAlso": "sioc:feed".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :has_usergroup, comment: "Points to a Usergroup that has certain access to this Space.".freeze, - domain: "sioc:Space".freeze, - inverseOf: "sioc:usergroup_of".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Space".freeze, + inverseOf: "http://rdfs.org/sioc/ns#usergroup_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "has usergroup".freeze, - range: "sioc:Usergroup".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Usergroup".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :host_of, comment: "A Container that is hosted on this Site.".freeze, - domain: "sioc:Site".freeze, - inverseOf: "sioc:has_host".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Site".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_host".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "host of".freeze, - range: "sioc:Container".freeze, - subPropertyOf: "sioc:space_of".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Container".freeze, + subPropertyOf: "http://rdfs.org/sioc/ns#space_of".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :id, comment: "An identifier of a SIOC concept instance. For example, a user ID. Must be unique for instances of each type of SIOC concept within the same site.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "id".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :ip_address, comment: "The IP address used when creating this Item, UserAccount, etc. This can be associated with a creator. Some wiki articles list the IP addresses for the creator or modifiers when the usernames are absent.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "ip address".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :last_activity_date, comment: "The date and time of the last activity associated with a SIOC concept instance, and expressed in ISO 8601 format. This could be due to a reply Post or Comment, a modification to an Item, etc.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "last activity date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :last_item_date, comment: "The date and time of the last Post (or Item) in a Forum (or a Container), in ISO 8601 format.".freeze, - domain: "sioc:Container".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Container".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "last item date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :last_name, comment: "Last (real) name of this user. Synonyms include surname or family name.".freeze, - domain: "sioc:UserAccount".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use foaf:name or foaf:surname from the FOAF vocabulary instead.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "last name".freeze, - "owl:versionInfo": "This property is deprecated. Use foaf:name or foaf:surname from the FOAF vocabulary instead.".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :last_reply_date, comment: "The date and time of the last reply Post or Comment, which could be associated with a starter Item or Post or with a Thread, and expressed in ISO 8601 format.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "last reply date".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :later_version, comment: "Links to a later (newer) revision of this Item or Post.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:earlier_version".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#earlier_version".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "later version".freeze, - range: "sioc:Item".freeze, - type: "owl:TransitiveProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + type: "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze property :latest_version, comment: "Links to the latest revision of this Item or Post.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "latest version".freeze, - range: "sioc:Item".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :likes, comment: "Used to indicate some form of endorsement by a UserAccount or Agent of an Item, Container, Space, UserAccount, etc.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "likes".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :link, comment: "A URI of a document which contains this SIOC object.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "link".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :links_to, comment: "Links extracted from hyperlinks within a SIOC concept, e.g. Post or Site.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "links to".freeze, - subPropertyOf: "dc:references".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/dc/terms/references".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :member_of, comment: "A Usergroup that this UserAccount is a member of.".freeze, - domain: "sioc:UserAccount".freeze, - inverseOf: "sioc:has_member".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_member".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "member of".freeze, - range: "sioc:Usergroup".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Usergroup".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :mentions, comment: "Refers to a UserAccount that a particular Item mentions.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "mentions".freeze, - range: "sioc:UserAccount".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :moderator_of, comment: "A Forum that a UserAccount is a moderator of.".freeze, - domain: "sioc:UserAccount".freeze, - inverseOf: "sioc:has_moderator".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_moderator".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "moderator of".freeze, - range: "sioc:Forum".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Forum".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :modified_at, comment: "When this was modified, in ISO 8601 format.".freeze, - domain: "sioc:Post".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Post".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use dcterms:modified from the Dublin Core ontology instead.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "modified at".freeze, - "owl:versionInfo": "This property is deprecated. Use dcterms:modified from the Dublin Core ontology instead.".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :modifier_of, comment: "A resource that this UserAccount has modified.".freeze, - domain: "sioc:UserAccount".freeze, - inverseOf: "sioc:has_modifier".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_modifier".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "modifier of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :name, comment: "The name of a SIOC concept instance, e.g. a username for a UserAccount, group name for a Usergroup, etc.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "name".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :next_by_date, comment: "Next Item or Post in a given Container sorted by date.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:previous_by_date".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#previous_by_date".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "next by date".freeze, - range: "sioc:Item".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :next_version, comment: "Links to the next revision of this Item or Post.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:previous_version".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#previous_version".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "next version".freeze, - range: "sioc:Item".freeze, - subPropertyOf: "sioc:later_version".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + subPropertyOf: "http://rdfs.org/sioc/ns#later_version".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :note, comment: "A note associated with this resource, for example, if it has been edited by a UserAccount.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "note".freeze, - range: "rdfs:Literal".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :num_authors, comment: "The number of unique authors (UserAccounts and unregistered posters) who have contributed to this Item, Thread, Post, etc.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "num authors".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :num_items, comment: "The number of Posts (or Items) in a Forum (or a Container).".freeze, - domain: "sioc:Container".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Container".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "num items".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :num_replies, comment: "The number of replies that this Item, Thread, Post, etc. has. Useful for when the reply structure is absent.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "num replies".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :num_threads, comment: "The number of Threads (AKA discussion topics) in a Forum.".freeze, - domain: "sioc:Forum".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Forum".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "num threads".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :num_views, comment: "The number of times this Item, Thread, UserAccount profile, etc. has been viewed.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "num views".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :owner_of, comment: "A resource owned by a particular UserAccount, for example, a weblog or image gallery.".freeze, - domain: "sioc:UserAccount".freeze, - inverseOf: "sioc:has_owner".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_owner".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "owner of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :parent_of, comment: "A child Container or Forum that this Container or Forum is a parent of.".freeze, - domain: "sioc:Container".freeze, - inverseOf: "sioc:has_parent".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Container".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_parent".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "parent of".freeze, - range: "sioc:Container".freeze, - subPropertyOf: "dc:hasPart".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Container".freeze, + subPropertyOf: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :part_of, comment: "A resource that the subject is a part of.".freeze, - inverseOf: "sioc:has_part".freeze, - isDefinedBy: "sioc:".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use dcterms:isPartOf from the Dublin Core ontology instead.".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_part".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "part of".freeze, - "owl:versionInfo": "This property is deprecated. Use dcterms:isPartOf from the Dublin Core ontology instead.".freeze, - type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :previous_by_date, comment: "Previous Item or Post in a given Container sorted by date.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:next_by_date".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#next_by_date".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "previous by date".freeze, - range: "sioc:Item".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :previous_version, comment: "Links to the previous revision of this Item or Post.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:next_version".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#next_version".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "previous version".freeze, - range: "sioc:Item".freeze, - subPropertyOf: "sioc:earlier_version".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + subPropertyOf: "http://rdfs.org/sioc/ns#earlier_version".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :read_at, comment: "When this was read, in ISO 8601 format.".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "read at".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :reference, comment: "Links either created explicitly or extracted implicitly on the HTML level from the Post.".freeze, - domain: "sioc:Post".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Post".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "Renamed to sioc:links_to.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "reference".freeze, - "owl:versionInfo": "Renamed to sioc:links_to.".freeze, - type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :related_to, comment: "Related resources for this resource, e.g. for Posts, perhaps determined implicitly from topics or references.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "related to".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :reply_of, comment: "Links to an Item or Post which this Item or Post is a reply to.".freeze, - domain: "sioc:Item".freeze, - inverseOf: "sioc:has_reply".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_reply".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "reply of".freeze, - range: "sioc:Item".freeze, - subPropertyOf: "sioc:related_to".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + subPropertyOf: "http://rdfs.org/sioc/ns#related_to".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :respond_to, comment: "For the reply-to address set in email messages, IMs, etc. The property name was chosen to avoid confusion with has_reply/reply_of (the reply graph).".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "respond to".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :scope_of, comment: "A Role that has a scope of this resource.".freeze, - inverseOf: "sioc:has_scope".freeze, - isDefinedBy: "sioc:".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_scope".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "scope of".freeze, - range: "sioc:Role".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Role".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :shared_by, comment: "For shared Items where there is a certain creator_of and an intermediary who shares or forwards it (e.g. as a sibling Item).".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/ns#sibling".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "shared by".freeze, - range: "sioc:UserAccount".freeze, - "rdfs:seeAlso": "sioc:sibling".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#UserAccount".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sibling, comment: "An Item may have a sibling or a twin that exists in a different Container, but the siblings may differ in some small way (for example, language, category, etc.). The sibling of this Item should be self-describing (that is, it should contain all available information).".freeze, - domain: "sioc:Item".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Item".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "sibling".freeze, - range: "sioc:Item".freeze, - type: "owl:SymmetricProperty".freeze + range: "http://rdfs.org/sioc/ns#Item".freeze, + type: "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze property :space_of, comment: "A resource which belongs to this data Space.".freeze, - domain: "sioc:Space".freeze, - inverseOf: "sioc:has_space".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Space".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_space".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "space of".freeze, - subPropertyOf: "dc:hasPart".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/dc/terms/hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subject, comment: "Keyword(s) describing subject of the Post.".freeze, - domain: "sioc:Post".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Post".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use dcterms:subject from the Dublin Core ontology for text keywords and sioc:topic if the subject can be represented by a URI instead.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "subject".freeze, - "owl:versionInfo": "This property is deprecated. Use dcterms:subject from the Dublin Core ontology for text keywords and sioc:topic if the subject can be represented by a URI instead.".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :subscriber_of, comment: "A Container that a UserAccount is subscribed to.".freeze, - domain: "sioc:UserAccount".freeze, - inverseOf: "sioc:has_subscriber".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#UserAccount".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/ns#feed".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_subscriber".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "subscriber of".freeze, - range: "sioc:Container".freeze, - "rdfs:seeAlso": "sioc:feed".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :title, comment: "This is the title (subject line) of the Post. Note that for a Post within a threaded discussion that has no parents, it would detail the topic thread.".freeze, - domain: "sioc:Post".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Post".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "This property is deprecated. Use dcterms:title from the Dublin Core ontology instead.".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "title".freeze, - "owl:versionInfo": "This property is deprecated. Use dcterms:title from the Dublin Core ontology instead.".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#DeprecatedProperty".freeze] property :topic, comment: "A topic of interest, linking to the appropriate URI, e.g. in the Open Directory Project or of a SKOS category.".freeze, - isDefinedBy: "sioc:".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "topic".freeze, - subPropertyOf: "dc:subject".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/dc/terms/subject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usergroup_of, comment: "A Space that the Usergroup has access to.".freeze, - domain: "sioc:Usergroup".freeze, - inverseOf: "sioc:has_usergroup".freeze, - isDefinedBy: "sioc:".freeze, + domain: "http://rdfs.org/sioc/ns#Usergroup".freeze, + inverseOf: "http://rdfs.org/sioc/ns#has_usergroup".freeze, + isDefinedBy: "http://rdfs.org/sioc/ns#".freeze, label: "usergroup of".freeze, - range: "sioc:Space".freeze, - type: "owl:ObjectProperty".freeze + range: "http://rdfs.org/sioc/ns#Space".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze end end diff --git a/lib/rdf/vocab/siocservices.rb b/lib/rdf/vocab/siocservices.rb index af8f63d..807d5ae 100644 --- a/lib/rdf/vocab/siocservices.rb +++ b/lib/rdf/vocab/siocservices.rb @@ -3,109 +3,68 @@ # This file generated automatically using rdf vocabulary format from http://rdfs.org/sioc/services# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # SIOC Services Ontology Module Namespace - # # - # # Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining basic information on community-related web services. - # # @see http://rdfs.org/sioc/spec/#sec-modules - # class SiocServices < RDF::StrictVocabulary - # # A Service is web service associated with a Site or part of it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Service - # - # # A Service associated with this SIOC object. - # # @return [RDF::Vocabulary::Term] - # attr_reader :has_service - # - # # Maximum number of results results returned by a web service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :max_results - # - # # Format of results returned by a web service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :results_format - # - # # Links to a web service definition of this sioc:Service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :service_definition - # - # # URL of a web service endpoint. - # # @return [RDF::Vocabulary::Term] - # attr_reader :service_endpoint - # - # # A SIOC object this Service is associated with. - # # @return [RDF::Vocabulary::Term] - # attr_reader :service_of - # - # # A protocol used by a web service. Possible protocol values include SOAP, REST, SPARQL-QUERY, GData and OpenSearch. These will be added to this module later. - # # @return [RDF::Vocabulary::Term] - # attr_reader :service_protocol - # - # end SiocServices = Class.new(RDF::StrictVocabulary("http://rdfs.org/sioc/services#")) do # Ontology definition ontology :"http://rdfs.org/sioc/services#", - "dc:description": "Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining basic information on community-related web services.".freeze, - "dc:title": "SIOC Services Ontology Module Namespace".freeze, - "owl:imports": "sioc:".freeze, - "rdfs:seeAlso": "http://rdfs.org/sioc/spec/#sec-modules".freeze, - type: ["owl:Ontology".freeze, "owl:Thing".freeze] + "http://purl.org/dc/terms/description": "Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining basic information on community-related web services.".freeze, + "http://purl.org/dc/terms/title": "SIOC Services Ontology Module Namespace".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/spec/#sec-modules".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://rdfs.org/sioc/ns#".freeze, + type: ["http://www.w3.org/2002/07/owl#Ontology".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] # Class definitions term :Service, comment: "A Service is web service associated with a Site or part of it.".freeze, - isDefinedBy: "siocservices:".freeze, + isDefinedBy: "http://rdfs.org/sioc/services#".freeze, label: "Service".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :has_service, comment: "A Service associated with this SIOC object.".freeze, - inverseOf: "siocservices:service_of".freeze, - isDefinedBy: "siocservices:".freeze, + inverseOf: "http://rdfs.org/sioc/services#service_of".freeze, + isDefinedBy: "http://rdfs.org/sioc/services#".freeze, label: "has service".freeze, - range: "siocservices:Service".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdfs.org/sioc/services#Service".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :max_results, comment: "Maximum number of results results returned by a web service.".freeze, - domain: "siocservices:Service".freeze, - isDefinedBy: "siocservices:".freeze, + domain: "http://rdfs.org/sioc/services#Service".freeze, + isDefinedBy: "http://rdfs.org/sioc/services#".freeze, label: "max results".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :results_format, comment: "Format of results returned by a web service.".freeze, - domain: "siocservices:Service".freeze, - isDefinedBy: "siocservices:".freeze, + domain: "http://rdfs.org/sioc/services#Service".freeze, + isDefinedBy: "http://rdfs.org/sioc/services#".freeze, label: "results format".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :service_definition, comment: "Links to a web service definition of this sioc:Service.".freeze, - domain: "siocservices:Service".freeze, - isDefinedBy: "siocservices:".freeze, + domain: "http://rdfs.org/sioc/services#Service".freeze, + isDefinedBy: "http://rdfs.org/sioc/services#".freeze, label: "service definition".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :service_endpoint, comment: "URL of a web service endpoint.".freeze, - domain: "siocservices:Service".freeze, - isDefinedBy: "siocservices:".freeze, + domain: "http://rdfs.org/sioc/services#Service".freeze, + isDefinedBy: "http://rdfs.org/sioc/services#".freeze, label: "service endpoint".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :service_of, comment: "A SIOC object this Service is associated with.".freeze, - domain: "siocservices:Service".freeze, - inverseOf: "siocservices:has_service".freeze, - isDefinedBy: "siocservices:".freeze, + domain: "http://rdfs.org/sioc/services#Service".freeze, + inverseOf: "http://rdfs.org/sioc/services#has_service".freeze, + isDefinedBy: "http://rdfs.org/sioc/services#".freeze, label: "service of".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :service_protocol, comment: "A protocol used by a web service. Possible protocol values include SOAP, REST, SPARQL-QUERY, GData and OpenSearch. These will be added to this module later.".freeze, - domain: "siocservices:Service".freeze, - isDefinedBy: "siocservices:".freeze, + domain: "http://rdfs.org/sioc/services#Service".freeze, + isDefinedBy: "http://rdfs.org/sioc/services#".freeze, label: "service protocol".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] end end diff --git a/lib/rdf/vocab/sioctypes.rb b/lib/rdf/vocab/sioctypes.rb index ffc90cf..facc204 100644 --- a/lib/rdf/vocab/sioctypes.rb +++ b/lib/rdf/vocab/sioctypes.rb @@ -3,432 +3,271 @@ # This file generated automatically using rdf vocabulary format from http://rdfs.org/sioc/types# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # SIOC Types Ontology Module Namespace - # # - # # Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining subclasses and subproperties of SIOC terms. - # # @see http://rdfs.org/sioc/spec/#sec-modules - # class SiocTypes < RDF::StrictVocabulary - # # Describes a collection of personal or organisational addresses. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AddressBook - # - # # Describes a set of annotations, for example, those created by a particular user or related to a particular topic. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AnnotationSet - # - # # A Post that provides an answer in reply to a Question. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Answer - # - # # Describes a discussion area where logical arguments can take place. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ArgumentativeDiscussion - # - # # Describes a channel for distributing audio or sound files, for example, a podcast. - # # @return [RDF::Vocabulary::Term] - # attr_reader :AudioChannel - # - # # A Post that is the best answer to a Question, as chosen by the UserAccount who asked the Question or as voted by a Community of UserAccounts. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BestAnswer - # - # # Describes a post that is specifically made on a weblog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BlogPost - # - # # Describes a post that is specifically made on a message board. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BoardPost - # - # # Describes a shared collection of bookmarks. - # # @return [RDF::Vocabulary::Term] - # attr_reader :BookmarkFolder - # - # # Describes a briefcase or file service. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Briefcase - # - # # Category is used on the object of sioc:topic to indicate that this resource is a category on a site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Category - # - # # Describes a channel for chat or instant messages, for example, via IRC or IM. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ChatChannel - # - # # Comment is a subtype of sioc:Post and allows one to explicitly indicate that this SIOC post is a comment. Note that comments have a narrower scope than sioc:Post and may not apply to all types of community site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Comment - # - # # Describes a calendar of events. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EventCalendar - # - # # Describes a list or a collection of one's favourite things. - # # @return [RDF::Vocabulary::Term] - # attr_reader :FavouriteThings - # - # # Describes an image gallery, for example, a photo album. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ImageGallery - # - # # Describes an instant message, e.g. sent via Jabber. - # # @return [RDF::Vocabulary::Term] - # attr_reader :InstantMessage - # - # # Describes an electronic mail message, e.g. a post sent to a mailing list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MailMessage - # - # # Describes an electronic mailing list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MailingList - # - # # Describes a message board, also known as an online bulletin board or discussion forum. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MessageBoard - # - # # Describes a microblog, i.e. a blog consisting of short text messages. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Microblog - # - # # Describes a post that is specifically made on a microblog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :MicroblogPost - # - # # Describes a list of the items someone has available to offer. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferList - # - # # Describes a list of media items that have been played or can be played. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Playlist - # - # # Describes a posted item that contains a poll or survey content. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Poll - # - # # Describes a project directory. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ProjectDirectory - # - # # A Post that asks a Question. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Question - # - # # Describes a list of books or other materials that have been read or are suggested for reading. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReadingList - # - # # Describes a collection of resumes. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ResumeBank - # - # # Describes an area where reviews are posted. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ReviewArea - # - # # Describes a shared set of feed subscriptions. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SubscriptionList - # - # # Describes an area where survey data can be collected, e.g. from polls. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SurveyCollection - # - # # Tag is used on the object of sioc:topic to indicate that this resource is a tag on a site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tag - # - # # Describes a channel for distributing videos (moving image) files, for example, a video podcast. - # # @return [RDF::Vocabulary::Term] - # attr_reader :VideoChannel - # - # # Describes a weblog (blog), i.e. an online journal. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Weblog - # - # # Describes a wiki space. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Wiki - # - # # Describes a wiki article. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WikiArticle - # - # # Describes a list of the items someone wishes to get. - # # @return [RDF::Vocabulary::Term] - # attr_reader :WishList - # - # end SiocTypes = Class.new(RDF::StrictVocabulary("http://rdfs.org/sioc/types#")) do # Ontology definition ontology :"http://rdfs.org/sioc/types#", - "dc:description": "Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining subclasses and subproperties of SIOC terms.".freeze, - "dc:title": "SIOC Types Ontology Module Namespace".freeze, - "owl:imports": "sioc:".freeze, - "rdfs:seeAlso": "http://rdfs.org/sioc/spec/#sec-modules".freeze, - type: ["owl:Ontology".freeze, "owl:Thing".freeze] + "http://purl.org/dc/terms/description": "Extends the SIOC Core Ontology (Semantically-Interlinked Online Communities) by defining subclasses and subproperties of SIOC terms.".freeze, + "http://purl.org/dc/terms/title": "SIOC Types Ontology Module Namespace".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/spec/#sec-modules".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://rdfs.org/sioc/ns#".freeze, + type: ["http://www.w3.org/2002/07/owl#Ontology".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze] # Class definitions term :AddressBook, comment: "Describes a collection of personal or organisational addresses.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://xmlns.com/foaf/0.1/Agent".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Address Book".freeze, - "rdfs:seeAlso": "foaf:Agent".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AnnotationSet, comment: "Describes a set of annotations, for example, those created by a particular user or related to a particular topic.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2000/10/annotation-ns#Annotation".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Annotation Set".freeze, - "rdfs:seeAlso": "http://www.w3.org/2000/10/annotation-ns#Annotation".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Answer, comment: "A Post that provides an answer in reply to a Question.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Answer".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Post".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ArgumentativeDiscussion, comment: "Describes a discussion area where logical arguments can take place.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/ibis#Idea".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Argumentative Discussion".freeze, - "rdfs:seeAlso": "http://purl.org/ibis#Idea".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Forum".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioChannel, comment: "Describes a channel for distributing audio or sound files, for example, a podcast.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/dc/dcmitype/Sound".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Audio Channel".freeze, - "rdfs:seeAlso": "dcmitype:Sound".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BestAnswer, comment: "A Post that is the best answer to a Question, as chosen by the UserAccount who asked the Question or as voted by a Community of UserAccounts.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Best Answer".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Post".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BlogPost, comment: "Describes a post that is specifically made on a weblog.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#Weblog".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Blog Post".freeze, - "rdfs:seeAlso": "sioctypes:Weblog".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Post".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BoardPost, comment: "Describes a post that is specifically made on a message board.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#MessageBoard".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Board Post".freeze, - "rdfs:seeAlso": "sioctypes:MessageBoard".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Post".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BookmarkFolder, comment: "Describes a shared collection of bookmarks.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2002/01/bookmark#Bookmark".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Bookmark Folder".freeze, - "rdfs:seeAlso": "http://www.w3.org/2002/01/bookmark#Bookmark".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Briefcase, comment: "Describes a briefcase or file service.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://xmlns.com/foaf/0.1/Document".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Briefcase".freeze, - "rdfs:seeAlso": "foaf:Document".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Category, comment: "Category is used on the object of sioc:topic to indicate that this resource is a category on a site.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Category".freeze, subClassOf: "http://www.w3.org/2008/05/skos#Concept".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ChatChannel, comment: "Describes a channel for chat or instant messages, for example, via IRC or IM.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#InstantMessage".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Chat Channel".freeze, - "rdfs:seeAlso": "sioctypes:InstantMessage".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Forum".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Comment, comment: "Comment is a subtype of sioc:Post and allows one to explicitly indicate that this SIOC post is a comment. Note that comments have a narrower scope than sioc:Post and may not apply to all types of community site.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#Forum".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Comment".freeze, - "rdfs:seeAlso": "sioctypes:Forum".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Post".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EventCalendar, comment: "Describes a calendar of events.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2002/12/cal/icaltzd#VEVENT".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Event Calendar".freeze, - "rdfs:seeAlso": "ical:VEVENT".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FavouriteThings, comment: "Describes a list or a collection of one's favourite things.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Favourite Things".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ImageGallery, comment: "Describes an image gallery, for example, a photo album.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2003/12/exif/ns/IFD".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Image Gallery".freeze, - "rdfs:seeAlso": "http://www.w3.org/2003/12/exif/ns/IFD".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InstantMessage, comment: "Describes an instant message, e.g. sent via Jabber.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#ChatChannel".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Instant Message".freeze, - "rdfs:seeAlso": "sioctypes:ChatChannel".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Post".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MailMessage, comment: "Describes an electronic mail message, e.g. a post sent to a mailing list.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#MailingList".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Mail Message".freeze, - "rdfs:seeAlso": "sioctypes:MailingList".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Post".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MailingList, comment: "Describes an electronic mailing list.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#MailMessage".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Mailing List".freeze, - "rdfs:seeAlso": "sioctypes:MailMessage".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Forum".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MessageBoard, comment: "Describes a message board, also known as an online bulletin board or discussion forum.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#BoardPost".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Message Board".freeze, - "rdfs:seeAlso": "sioctypes:BoardPost".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Forum".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Microblog, comment: "Describes a microblog, i.e. a blog consisting of short text messages.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#MicroblogPost".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Microblog".freeze, - "rdfs:seeAlso": "sioctypes:MicroblogPost".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Forum".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MicroblogPost, comment: "Describes a post that is specifically made on a microblog.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#Microblog".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Microblog Post".freeze, - "rdfs:seeAlso": "sioctypes:Microblog".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Post".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OfferList, comment: "Describes a list of the items someone has available to offer.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Offer List".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Playlist, comment: "Describes a list of media items that have been played or can be played.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Playlist".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Poll, comment: "Describes a posted item that contains a poll or survey content.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#SurveyCollection".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Poll".freeze, - "rdfs:seeAlso": "sioctypes:SurveyCollection".freeze, - subClassOf: "sioc:Item".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Item".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProjectDirectory, comment: "Describes a project directory.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://usefulinc.com/ns/doap#Project".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Project Directory".freeze, - "rdfs:seeAlso": "doap:Project".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Question, comment: "A Post that asks a Question.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Question".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Post".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReadingList, comment: "Describes a list of books or other materials that have been read or are suggested for reading.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Reading List".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ResumeBank, comment: "Describes a collection of resumes.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://captsolo.net/semweb/resume/cv.rdfs#Resume".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Resume Bank".freeze, - "rdfs:seeAlso": "http://captsolo.net/semweb/resume/cv.rdfs#Resume".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReviewArea, comment: "Describes an area where reviews are posted.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/stuff/rev#Review".freeze, "http://www.isi.edu/webscripter/communityreview/abstract-review-o#Review".freeze], + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Review Area".freeze, - "rdfs:seeAlso": ["http://purl.org/stuff/rev#Review".freeze, "http://www.isi.edu/webscripter/communityreview/abstract-review-o#Review".freeze], - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SubscriptionList, comment: "Describes a shared set of feed subscriptions.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://atomowl.org/ontologies/atomrdf#Feed".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Subscription List".freeze, - "rdfs:seeAlso": "http://atomowl.org/ontologies/atomrdf#Feed".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SurveyCollection, comment: "Describes an area where survey data can be collected, e.g. from polls.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#Poll".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Survey Collection".freeze, - "rdfs:seeAlso": "sioctypes:Poll".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Tag, comment: "Tag is used on the object of sioc:topic to indicate that this resource is a tag on a site.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Tag".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VideoChannel, comment: "Describes a channel for distributing videos (moving image) files, for example, a video podcast.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/dc/dcmitype/MovingImage".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Video Channel".freeze, - "rdfs:seeAlso": "dcmitype:MovingImage".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Weblog, comment: "Describes a weblog (blog), i.e. an online journal.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#BlogPost".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Weblog".freeze, - "rdfs:seeAlso": "sioctypes:BlogPost".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Forum".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Wiki, comment: "Describes a wiki space.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#WikiArticle".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Wiki".freeze, - "rdfs:seeAlso": "sioctypes:WikiArticle".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WikiArticle, comment: "Describes a wiki article.".freeze, - isDefinedBy: "sioctypes:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://rdfs.org/sioc/types#Wiki".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Wiki Article".freeze, - "rdfs:seeAlso": "sioctypes:Wiki".freeze, - subClassOf: "sioc:Item".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Item".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WishList, comment: "Describes a list of the items someone wishes to get.".freeze, - isDefinedBy: "sioctypes:".freeze, + isDefinedBy: "http://rdfs.org/sioc/types#".freeze, label: "Wish List".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze + subClassOf: "http://rdfs.org/sioc/ns#Container".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze end end diff --git a/lib/rdf/vocab/skos.rb b/lib/rdf/vocab/skos.rb index 5a5eeb9..706d016 100644 --- a/lib/rdf/vocab/skos.rb +++ b/lib/rdf/vocab/skos.rb @@ -3,369 +3,247 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2004/02/skos/core# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # SKOS Vocabulary - # # - # # An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies. - # # @see http://www.w3.org/TR/skos-reference/ - # class SKOS < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :Collection - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Concept - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConceptScheme - # - # # @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. - # # @return [RDF::Vocabulary::Term] - # attr_reader :altLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :broadMatch - # - # # Broader concepts are typically rendered as parents in a concept hierarchy (tree). - # # @return [RDF::Vocabulary::Term] - # attr_reader :broader - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :broaderTransitive - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :changeNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :closeMatch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :definition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :editorialNote - # - # # skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch. - # # @return [RDF::Vocabulary::Term] - # attr_reader :exactMatch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :example - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTopConcept - # - # # skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties. - # # - # # The range of skos:hiddenLabel is the class of RDF plain literals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hiddenLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :historyNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inScheme - # - # # These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice. - # # @return [RDF::Vocabulary::Term] - # attr_reader :mappingRelation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :member - # - # # For any resource, every item in the list given as the value of the skos:memberList property is also a value of the skos:member property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :memberList - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :narrowMatch - # - # # Narrower concepts are typically rendered as children in a concept hierarchy (tree). - # # @return [RDF::Vocabulary::Term] - # attr_reader :narrower - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :narrowerTransitive - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :note - # - # # skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties. - # # - # # A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag. - # # - # # The range of skos:prefLabel is the class of RDF plain literals. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefLabel - # - # # skos:related is disjoint with skos:broaderTransitive - # # @return [RDF::Vocabulary::Term] - # attr_reader :related - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :relatedMatch - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :scopeNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :semanticRelation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :topConceptOf - # - # end SKOS = Class.new(RDF::StrictVocabulary("http://www.w3.org/2004/02/skos/core#")) do # Ontology definition ontology :"http://www.w3.org/2004/02/skos/core#", - "dc:contributor": ["Dave Beckett".freeze, "Nikki Rogers".freeze, "Participants in W3C's Semantic Web Deployment Working Group.".freeze], - "dc:creator": ["Alistair Miles".freeze, "Sean Bechhofer".freeze], - "dc:description": "An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.".freeze, - "dc:title": "SKOS Vocabulary".freeze, - "rdfs:seeAlso": "http://www.w3.org/TR/skos-reference/".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/terms/contributor": ["Dave Beckett".freeze, "Nikki Rogers".freeze, "Participants in W3C's Semantic Web Deployment Working Group.".freeze], + "http://purl.org/dc/terms/creator": ["Alistair Miles".freeze, "Sean Bechhofer".freeze], + "http://purl.org/dc/terms/description": "An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.".freeze, + "http://purl.org/dc/terms/title": "SKOS Vocabulary".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/TR/skos-reference/".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Collection, definition: "A meaningful collection of concepts.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/2004/02/skos/core#Concept".freeze, "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze], + "http://www.w3.org/2004/02/skos/core#scopeNote": "Labelled collections can be used where you would like a set of concepts to be displayed under a 'node label' in the hierarchy.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "Collection".freeze, - "owl:disjointWith": ["skos:Concept".freeze, "skos:ConceptScheme".freeze], - "skos:scopeNote": "Labelled collections can be used where you would like a set of concepts to be displayed under a 'node label' in the hierarchy.".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Concept, definition: "An idea or notion; a unit of thought.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "Concept".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ConceptScheme, definition: "A set of concepts, optionally including statements about semantic relationships between those concepts.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/2004/02/skos/core#Concept".freeze, + "http://www.w3.org/2004/02/skos/core#example": "Thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A concept scheme may be defined to include concepts from different sources.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "Concept Scheme".freeze, - "owl:disjointWith": "skos:Concept".freeze, - "skos:example": "Thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.".freeze, - "skos:scopeNote": "A concept scheme may be defined to include concepts from different sources.".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OrderedCollection, definition: "An ordered collection of concepts, where both the grouping and the ordering are meaningful.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a 'node label'.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "Ordered Collection".freeze, - "skos:scopeNote": "Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a 'node label'.".freeze, - subClassOf: "skos:Collection".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2004/02/skos/core#Collection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :altLabel, comment: ["The range of skos:altLabel is the class of RDF plain literals.".freeze, "skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.".freeze], definition: "An alternative lexical label for a resource.".freeze, + "http://www.w3.org/2004/02/skos/core#example": "Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "alternative label".freeze, - "skos:example": "Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).".freeze, - subPropertyOf: "rdfs:label".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :broadMatch, definition: "skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.".freeze, - inverseOf: "skos:narrowMatch".freeze, + inverseOf: "http://www.w3.org/2004/02/skos/core#narrowMatch".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has broader match".freeze, - subPropertyOf: ["skos:broader".freeze, "skos:mappingRelation".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: ["http://www.w3.org/2004/02/skos/core#broader".freeze, "http://www.w3.org/2004/02/skos/core#mappingRelation".freeze], + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :broader, comment: "Broader concepts are typically rendered as parents in a concept hierarchy (tree).".freeze, definition: "Relates a concept to a concept that is more general in meaning.".freeze, - inverseOf: "skos:narrower".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.".freeze, + inverseOf: "http://www.w3.org/2004/02/skos/core#narrower".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has broader".freeze, - "skos:scopeNote": "By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.".freeze, - subPropertyOf: "skos:broaderTransitive".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#broaderTransitive".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :broaderTransitive, definition: "skos:broaderTransitive is a transitive superproperty of skos:broader.".freeze, - inverseOf: "skos:narrowerTransitive".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.".freeze, + inverseOf: "http://www.w3.org/2004/02/skos/core#narrowerTransitive".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has broader transitive".freeze, - "skos:scopeNote": "By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.".freeze, - subPropertyOf: "skos:semanticRelation".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#semanticRelation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :changeNote, definition: "A note about a modification to a concept.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "change note".freeze, - subPropertyOf: "skos:note".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#note".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :closeMatch, definition: "skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \"compound errors\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has close match".freeze, - subPropertyOf: "skos:mappingRelation".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#mappingRelation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :definition, definition: "A statement or formal explanation of the meaning of a concept.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "definition".freeze, - subPropertyOf: "skos:note".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#note".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :editorialNote, definition: "A note for an editor, translator or maintainer of the vocabulary.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "editorial note".freeze, - subPropertyOf: "skos:note".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#note".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :exactMatch, comment: "skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.".freeze, definition: "skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has exact match".freeze, - subPropertyOf: "skos:closeMatch".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "owl:TransitiveProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#closeMatch".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :example, definition: "An example of the use of a concept.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "example".freeze, - subPropertyOf: "skos:note".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#note".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :hasTopConcept, definition: "Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.".freeze, - domain: "skos:ConceptScheme".freeze, - inverseOf: "skos:topConceptOf".freeze, + domain: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, + inverseOf: "http://www.w3.org/2004/02/skos/core#topConceptOf".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has top concept".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hiddenLabel, comment: ["The range of skos:hiddenLabel is the class of RDF plain literals.".freeze, "skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.".freeze], definition: "A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "hidden label".freeze, - subPropertyOf: "rdfs:label".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :historyNote, definition: "A note about the past state/use/meaning of a concept.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "history note".freeze, - subPropertyOf: "skos:note".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#note".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :inScheme, definition: "Relates a resource (for example a concept) to a concept scheme in which it is included.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "A concept may be a member of more than one concept scheme.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "is in scheme".freeze, - range: "skos:ConceptScheme".freeze, - "skos:scopeNote": "A concept may be a member of more than one concept scheme.".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :mappingRelation, comment: "These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.".freeze, definition: "Relates two concepts coming, by convention, from different schemes, and that have comparable meanings".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "is in mapping relation with".freeze, - subPropertyOf: "skos:semanticRelation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#semanticRelation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :member, definition: "Relates a collection to one of its members.".freeze, - domain: "skos:Collection".freeze, + domain: "http://www.w3.org/2004/02/skos/core#Collection".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has member".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("skos:Concept".freeze, "skos:Collection".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2004/02/skos/core#Concept".freeze, "http://www.w3.org/2004/02/skos/core#Collection".freeze) ), - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :memberList, comment: "For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property.".freeze, definition: "Relates an ordered collection to the RDF list containing its members.".freeze, - domain: "skos:OrderedCollection".freeze, + domain: "http://www.w3.org/2004/02/skos/core#OrderedCollection".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has member list".freeze, - range: "rdf:List".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :narrowMatch, definition: "skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.".freeze, - inverseOf: "skos:broadMatch".freeze, + inverseOf: "http://www.w3.org/2004/02/skos/core#broadMatch".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has narrower match".freeze, - subPropertyOf: ["skos:mappingRelation".freeze, "skos:narrower".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: ["http://www.w3.org/2004/02/skos/core#mappingRelation".freeze, "http://www.w3.org/2004/02/skos/core#narrower".freeze], + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :narrower, comment: "Narrower concepts are typically rendered as children in a concept hierarchy (tree).".freeze, definition: "Relates a concept to a concept that is more specific in meaning.".freeze, - inverseOf: "skos:broader".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.".freeze, + inverseOf: "http://www.w3.org/2004/02/skos/core#broader".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has narrower".freeze, - "skos:scopeNote": "By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.".freeze, - subPropertyOf: "skos:narrowerTransitive".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#narrowerTransitive".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :narrowerTransitive, definition: "skos:narrowerTransitive is a transitive superproperty of skos:narrower.".freeze, - inverseOf: "skos:broaderTransitive".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.".freeze, + inverseOf: "http://www.w3.org/2004/02/skos/core#broaderTransitive".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has narrower transitive".freeze, - "skos:scopeNote": "By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.".freeze, - subPropertyOf: "skos:semanticRelation".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#semanticRelation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :notation, definition: "A notation, also known as classification code, is a string of characters such as \"T58.5\" or \"303.4833\" used to uniquely identify a concept within the scope of a given concept scheme.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "By convention, skos:notation is used with a typed literal in the object position of the triple.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "notation".freeze, - "skos:scopeNote": "By convention, skos:notation is used with a typed literal in the object position of the triple.".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :note, definition: "A general note, for any purpose.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This property may be used directly, or as a super-property for more specific note types.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "note".freeze, - "skos:scopeNote": "This property may be used directly, or as a super-property for more specific note types.".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :prefLabel, comment: ["A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.".freeze, "The range of skos:prefLabel is the class of RDF plain literals.".freeze, "skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties.".freeze], definition: "The preferred lexical label for a resource, in a given language.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "preferred label".freeze, - subPropertyOf: "rdfs:label".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#label".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :related, comment: "skos:related is disjoint with skos:broaderTransitive".freeze, definition: "Relates a concept to a concept with which there is an associative semantic relationship.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has related".freeze, - subPropertyOf: "skos:semanticRelation".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#semanticRelation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :relatedMatch, definition: "skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "has related match".freeze, - subPropertyOf: ["skos:mappingRelation".freeze, "skos:related".freeze], - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "rdf:Property".freeze] + subPropertyOf: ["http://www.w3.org/2004/02/skos/core#mappingRelation".freeze, "http://www.w3.org/2004/02/skos/core#related".freeze], + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :scopeNote, definition: "A note that helps to clarify the meaning and/or the use of a concept.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "scope note".freeze, - subPropertyOf: "skos:note".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#note".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :semanticRelation, definition: "Links a concept to a concept related by meaning.".freeze, - domain: "skos:Concept".freeze, + domain: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "is in semantic relation with".freeze, - range: "skos:Concept".freeze, - "skos:scopeNote": "This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :topConceptOf, definition: "Relates a concept to the concept scheme that it is a top level concept of.".freeze, - domain: "skos:Concept".freeze, - inverseOf: "skos:hasTopConcept".freeze, + domain: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + inverseOf: "http://www.w3.org/2004/02/skos/core#hasTopConcept".freeze, isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze, label: "is top concept in scheme".freeze, - range: "skos:ConceptScheme".freeze, - subPropertyOf: "skos:inScheme".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, + subPropertyOf: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] end end diff --git a/lib/rdf/vocab/skosxl.rb b/lib/rdf/vocab/skosxl.rb index e916799..c44914e 100644 --- a/lib/rdf/vocab/skosxl.rb +++ b/lib/rdf/vocab/skosxl.rb @@ -3,103 +3,70 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2008/05/skos-xl# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # SKOS XL Vocabulary - # # - # # An RDF vocabulary extending SKOS and allowing the description and linking of lexical entities. - # # @see http://www.w3.org/2008/05/skos - # class SKOSXL < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :Label - # - # # If C skosxl:altLabel L and L skosxl:literalForm V, then X skos:altLabel V. - # # @return [RDF::Vocabulary::Term] - # attr_reader :altLabel - # - # # If C skosxl:hiddenLabel L and L skosxl:literalForm V, then C skos:hiddenLabel V. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hiddenLabel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :labelRelation - # - # # The range of skosxl:literalForm is the class of RDF plain literals. - # # - # # If two instances of the class skosxl:Label have the same literal form, they are not necessarily the same resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :literalForm - # - # # If C skosxl:prefLabel L and L skosxl:literalForm V, then X skos:prefLabel V. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prefLabel - # - # end SKOSXL = Class.new(RDF::StrictVocabulary("http://www.w3.org/2008/05/skos-xl#")) do # Ontology definition ontology :"http://www.w3.org/2008/05/skos-xl#", - "dc:contributor": "Participants in W3C's Semantic Web Deployment Working Group.".freeze, - "dc:creator": ["Alistair Miles".freeze, "Sean Bechhofer".freeze], - "dc:description": "An RDF vocabulary extending SKOS and allowing the description and linking of lexical entities.".freeze, - "dc:title": "SKOS XL Vocabulary".freeze, - "owl:imports": "http://www.w3.org/2004/02/skos/core".freeze, - "rdfs:seeAlso": "http://www.w3.org/2008/05/skos".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/terms/contributor": "Participants in W3C's Semantic Web Deployment Working Group.".freeze, + "http://purl.org/dc/terms/creator": ["Alistair Miles".freeze, "Sean Bechhofer".freeze], + "http://purl.org/dc/terms/description": "An RDF vocabulary extending SKOS and allowing the description and linking of lexical entities.".freeze, + "http://purl.org/dc/terms/title": "SKOS XL Vocabulary".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2008/05/skos".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://www.w3.org/2004/02/skos/core".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Label, definition: "A special class of lexical entities.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/2004/02/skos/core#Collection".freeze, "http://www.w3.org/2004/02/skos/core#Concept".freeze, "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze], isDefinedBy: "http://www.w3.org/2008/05/skos-xl".freeze, label: "Label".freeze, - "owl:disjointWith": ["skos:Collection".freeze, "skos:Concept".freeze, "skos:ConceptScheme".freeze], subClassOf: term( cardinality: "1".freeze, - onProperty: "skosxl:literalForm".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.w3.org/2008/05/skos-xl#literalForm".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :altLabel, comment: "If C skosxl:altLabel L and L skosxl:literalForm V, then X skos:altLabel V.".freeze, definition: "The property skosxl:altLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:altLabel.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2004/02/skos/core#altLabel".freeze, isDefinedBy: "http://www.w3.org/2008/05/skos-xl".freeze, label: "alternative label".freeze, - range: "skosxl:Label".freeze, - "rdfs:seeAlso": "skos:altLabel".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2008/05/skos-xl#Label".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hiddenLabel, comment: "If C skosxl:hiddenLabel L and L skosxl:literalForm V, then C skos:hiddenLabel V.".freeze, definition: "The property skosxl:hiddenLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:hiddenLabel.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2004/02/skos/core#hiddenLabel".freeze, isDefinedBy: "http://www.w3.org/2008/05/skos-xl".freeze, label: "hidden label".freeze, - range: "skosxl:Label".freeze, - "rdfs:seeAlso": "skos:hiddenLabel".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2008/05/skos-xl#Label".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :labelRelation, definition: "The property skosxl:labelRelation is used for representing binary ('direct') relations between instances of the class skosxl:Label.".freeze, - domain: "skosxl:Label".freeze, + domain: "http://www.w3.org/2008/05/skos-xl#Label".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "skosxl:labelRelation is not intended to be used directly, but rather as the basis for a design pattern which can be refined for more specific labeling scenarios.".freeze, isDefinedBy: "http://www.w3.org/2008/05/skos-xl".freeze, label: "label relation".freeze, - range: "skosxl:Label".freeze, - "skos:scopeNote": "skosxl:labelRelation is not intended to be used directly, but rather as the basis for a design pattern which can be refined for more specific labeling scenarios.".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2008/05/skos-xl#Label".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :literalForm, comment: ["If two instances of the class skosxl:Label have the same literal form, they are not necessarily the same resource.".freeze, "The range of skosxl:literalForm is the class of RDF plain literals.".freeze], definition: "The property skosxl:literalForm is used to give the literal form of an skosxl:Label.".freeze, - domain: "skosxl:Label".freeze, + domain: "http://www.w3.org/2008/05/skos-xl#Label".freeze, isDefinedBy: "http://www.w3.org/2008/05/skos-xl".freeze, label: "literal form".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :prefLabel, comment: "If C skosxl:prefLabel L and L skosxl:literalForm V, then X skos:prefLabel V.".freeze, definition: "The property skosxl:prefLabel is used to associate an skosxl:Label with a skos:Concept. The property is analogous to skos:prefLabel.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2004/02/skos/core#prefLabel".freeze, isDefinedBy: "http://www.w3.org/2008/05/skos-xl".freeze, label: "preferred label".freeze, - range: "skosxl:Label".freeze, - "rdfs:seeAlso": "skos:prefLabel".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2008/05/skos-xl#Label".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] end end diff --git a/lib/rdf/vocab/v.rb b/lib/rdf/vocab/v.rb index 946ee53..4a8ea20 100644 --- a/lib/rdf/vocab/v.rb +++ b/lib/rdf/vocab/v.rb @@ -3,669 +3,375 @@ # This file generated automatically using rdf vocabulary format from http://rdf.data-vocabulary.org/# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class V < RDF::StrictVocabulary - # # Postal address for a Person or Organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Address - # - # # Represents a single Breadcrumb in a Breadcrumb trail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Breadcrumb - # - # # Represents the steps to make a dish. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Instructions - # - # # Represents the nutrition information about a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Nutrition - # - # # Represents an offer to sell a product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Offer - # - # # Represents a collection of offers to sell a product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferAggregate - # - # # An Organization is a business, agency, school, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # Represents a Person, living/dead/fictional. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # Represents a product or service in a Review or Review-aggregate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Product - # - # # Represents a rating in a Review or Review-aggregate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rating - # - # # A single instance of a Recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Recipe - # - # # Represents ingredients used in a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecipeIngredient - # - # # A single instance of a Review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Review - # - # # Represents the length of time it takes to prepare a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimeRange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquaintance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :address - # - # # An affiliation can be specified by a string literal or an Organization instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amount - # - # # An author of the recipe can be specified by a string literal or a Person instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :author - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :availability - # - # # The average of an aggregate value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :average - # - # # The best value of a rating scale (default 5). - # # @return [RDF::Vocabulary::Term] - # attr_reader :best - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :brand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :calories - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :carbohydrates - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :category - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :child - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cholesterol - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :colleague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :condition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :contact - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cookTime - # - # # The total number of items used in an aggregate (e.g., number of reviews). - # # @return [RDF::Vocabulary::Term] - # attr_reader :count - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # The date of the review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dtreviewed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fiber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :friend - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highprice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :image - # - # # Represents ingredients used in a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredient - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :instruction - # - # # Represents the steps to make a dish. - # # @return [RDF::Vocabulary::Term] - # attr_reader :instructions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemoffered - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemreviewed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowprice - # - # # The maximum value of an aggregated Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :max - # - # # The minimum value of an aggregated Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :min - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nickname - # - # # Represents the nutrition information about a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutrition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :offercount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :offerdetails - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :offerurl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :photo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prepTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :price - # - # # The price range of products and services offered by a restaurant, business or other organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pricerange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pricevaliduntil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :protein - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :published - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :quantity - # - # # A rating can be specified by a string literal or a Rating instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rating - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :region - # - # # A reviewer can be specified by a string literal or a Person instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :saturatedFat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seller - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sugar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :summary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tag - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tel - # - # # Represents the length of time it takes to prepare a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeRange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unsaturatedFat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :url - # - # # The value of a single Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :value - # - # # The poorest value of a rating scale (default 1). - # # @return [RDF::Vocabulary::Term] - # attr_reader :worst - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :yield - # - # end V = Class.new(RDF::StrictVocabulary("http://rdf.data-vocabulary.org/#")) do # Class definitions term :Address, comment: "Postal address for a Person or Organization.".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Breadcrumb, comment: "Represents a single Breadcrumb in a Breadcrumb trail.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Instructions, comment: "Represents the steps to make a dish.".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Nutrition, comment: "Represents the nutrition information about a recipe.".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Offer, comment: "Represents an offer to sell a product.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OfferAggregate, comment: "Represents a collection of offers to sell a product.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Organization, comment: "An Organization is a business, agency, school, etc.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Person, comment: "Represents a Person, living/dead/fictional.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Product, comment: "Represents a product or service in a Review or Review-aggregate.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Rating, comment: "Represents a rating in a Review or Review-aggregate.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Recipe, comment: "A single instance of a Recipe.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :RecipeIngredient, comment: "Represents ingredients used in a recipe.".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Review, comment: "A single instance of a Review.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :"Review-aggregate", comment: "Represents data from a collection of reviews.\n Can be used whether or not there is instance-level Review data on the page.\n ".freeze, - subClassOf: "v:Review".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://rdf.data-vocabulary.org/#Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TimeRange, comment: "Represents the length of time it takes to prepare a recipe.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :acquaintance, - domain: "v:Person".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :address, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Person".freeze, "v:Organization".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Person".freeze, "http://rdf.data-vocabulary.org/#Organization".freeze) ), - range: "v:Address".freeze, - type: "rdf:Property".freeze + range: "http://rdf.data-vocabulary.org/#Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :affiliation, comment: "An affiliation can be specified by a string literal or an Organization instance.".freeze, - domain: "v:Person".freeze, + domain: "http://rdf.data-vocabulary.org/#Person".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("v:Organization".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Organization".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :amount, - domain: "v:RecipeIngredient".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#RecipeIngredient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :author, comment: "An author of the recipe can be specified by a string literal or a Person instance.".freeze, - domain: "v:Recipe".freeze, + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("v:Person".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Person".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availability, - domain: "v:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :average, comment: "The average of an aggregate value.".freeze, - domain: "v:Rating".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :best, comment: "The best value of a rating scale (default 5).".freeze, - domain: "v:Rating".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :brand, - domain: "v:Product".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :calories, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :carbohydrates, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :category, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Organization".freeze, "v:Product".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Organization".freeze, "http://rdf.data-vocabulary.org/#Product".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :child, - domain: "v:Breadcrumb".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Breadcrumb".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cholesterol, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colleague, - domain: "v:Person".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :condition, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Offer".freeze, "v:OfferAggregate".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Offer".freeze, "http://rdf.data-vocabulary.org/#OfferAggregate".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contact, - domain: "v:Person".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cookTime, - domain: "v:Recipe".freeze, + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("v:TimeRange".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#TimeRange".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :count, comment: "The total number of items used in an aggregate (e.g., number of reviews).".freeze, - domain: "v:Review-aggregate".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Review-aggregate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"country-name", - domain: "v:Address".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :currency, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Offer".freeze, "v:OfferAggregate".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Offer".freeze, "http://rdf.data-vocabulary.org/#OfferAggregate".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Review".freeze, "v:Product".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Review".freeze, "http://rdf.data-vocabulary.org/#Product".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dtreviewed, comment: "The date of the review.".freeze, - domain: "v:Review".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Review".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duration, - domain: "v:Recipe".freeze, + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("v:TimeRange".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#TimeRange".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fat, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fiber, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :friend, - domain: "v:Person".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :highprice, - domain: "v:OfferAggregate".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#OfferAggregate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifier, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Product".freeze, "v:Offer".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Product".freeze, "http://rdf.data-vocabulary.org/#Offer".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :image, - domain: "v:Product".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ingredient, comment: "Represents ingredients used in a recipe.".freeze, - domain: "v:Recipe".freeze, - range: "v:RecipeIngredient".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, + range: "http://rdf.data-vocabulary.org/#RecipeIngredient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instruction, - domain: "v:Instructions".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Instructions".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instructions, comment: "Represents the steps to make a dish.".freeze, - domain: "v:Recipe".freeze, - range: "v:Instructions".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, + range: "http://rdf.data-vocabulary.org/#Instructions".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemoffered, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Offer".freeze, "v:OfferAggregate".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Offer".freeze, "http://rdf.data-vocabulary.org/#OfferAggregate".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemreviewed, - domain: "v:Review".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Review".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locality, - domain: "v:Address".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lowprice, - domain: "v:OfferAggregate".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#OfferAggregate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :max, comment: "The maximum value of an aggregated Rating.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Rating".freeze, "v:TimeRange".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Rating".freeze, "http://rdf.data-vocabulary.org/#TimeRange".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :min, comment: "The minimum value of an aggregated Rating.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Rating".freeze, "v:TimeRange".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Rating".freeze, "http://rdf.data-vocabulary.org/#TimeRange".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :name, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nickname, - domain: "v:Person".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nutrition, comment: "Represents the nutrition information about a recipe.".freeze, - domain: "v:Recipe".freeze, - range: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, + range: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offercount, - domain: "v:OfferAggregate".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#OfferAggregate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offerdetails, - domain: "v:Product".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offerurl, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Offer".freeze, "v:OfferAggregate".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Offer".freeze, "http://rdf.data-vocabulary.org/#OfferAggregate".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :photo, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"postal-code", - domain: "v:Address".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prepTime, - domain: "v:Recipe".freeze, + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("v:TimeRange".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#TimeRange".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :price, - domain: "v:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pricerange, comment: "The price range of products and services offered\n by a restaurant, business or other organization.\n ".freeze, - domain: "v:Organization".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pricevaliduntil, - domain: "v:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :protein, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :published, - domain: "v:Recipe".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :quantity, - domain: "v:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rating, comment: "A rating can be specified by a string literal or a Rating instance.".freeze, - domain: "v:Review".freeze, + domain: "http://rdf.data-vocabulary.org/#Review".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("v:Rating".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Rating".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeType, - domain: "v:Recipe".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :region, - domain: "v:Address".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewer, comment: "A reviewer can be specified by a string literal or a Person instance.".freeze, - domain: "v:Review".freeze, + domain: "http://rdf.data-vocabulary.org/#Review".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("v:Person".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Person".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :role, - domain: "v:Person".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :saturatedFat, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seller, - domain: "v:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servingSize, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"street-address", - domain: "v:Address".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sugar, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :summary, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Review".freeze, "v:Recipe".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Review".freeze, "http://rdf.data-vocabulary.org/#Recipe".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tag, - domain: "v:Recipe".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tel, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Person".freeze, "v:Organization".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Person".freeze, "http://rdf.data-vocabulary.org/#Organization".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timeRange, comment: "Represents the length of time it takes to prepare a recipe.".freeze, - domain: "v:Recipe".freeze, - range: "v:TimeRange".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, + range: "http://rdf.data-vocabulary.org/#TimeRange".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Person".freeze, "v:Breadcrumb".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Person".freeze, "http://rdf.data-vocabulary.org/#Breadcrumb".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalTime, - domain: "v:Recipe".freeze, + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("v:TimeRange".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#TimeRange".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :unsaturatedFat, - domain: "v:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :url, domain: term( - type: "owl:Class".freeze, - unionOf: list("v:Person".freeze, "v:Organization".freeze, "v:Product".freeze, "v:Breadcrumb".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://rdf.data-vocabulary.org/#Person".freeze, "http://rdf.data-vocabulary.org/#Organization".freeze, "http://rdf.data-vocabulary.org/#Product".freeze, "http://rdf.data-vocabulary.org/#Breadcrumb".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :value, comment: "The value of a single Rating.".freeze, - domain: "v:Rating".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :worst, comment: "The poorest value of a rating scale (default 1).".freeze, - domain: "v:Rating".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yield, - domain: "v:Recipe".freeze, - type: "rdf:Property".freeze + domain: "http://rdf.data-vocabulary.org/#Recipe".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/vcard.rb b/lib/rdf/vocab/vcard.rb index 2c7adc1..7e74410 100644 --- a/lib/rdf/vocab/vcard.rb +++ b/lib/rdf/vocab/vcard.rb @@ -3,1500 +3,870 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2006/vcard/ns# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Ontology for vCard - # # - # # Ontology for vCard based on RFC6350 - # # @version Final - # class VCARD < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :Acquaintance - # - # # To specify the components of the delivery address for the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Address - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Agent - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :BBS - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Car - # - # # Also called mobile telephone - # # @return [RDF::Vocabulary::Term] - # attr_reader :Cell - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Child - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Colleague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Contact - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Coresident - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Coworker - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Crush - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Date - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dom - # - # # To specify the electronic mail address for communication with the object the vCard represents. Use the hasEmail object property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Email - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Emergency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Fax - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Female - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Friend - # - # # Used for gender codes. The URI of the gender code must be used as the value for Gender. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Gender - # - # # Object representing a group of persons or entities. A group object will usually contain hasMember properties to specify the members of the group. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Group - # - # # This implies that the property is related to an individual's personal life - # # @return [RDF::Vocabulary::Term] - # attr_reader :Home - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :ISDN - # - # # An object representing a single person or entity - # # @return [RDF::Vocabulary::Term] - # attr_reader :Individual - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Internet - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Intl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Kin - # - # # The parent class for all objects - # # @return [RDF::Vocabulary::Term] - # attr_reader :Kind - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Label - # - # # An object representing a named geographical place - # # @return [RDF::Vocabulary::Term] - # attr_reader :Location - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Male - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Me - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Met - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Modem - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Msg - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Muse - # - # # To specify the components of the name of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :Name - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Neighbor - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :None - # - # # An object representing an organization. An organization is a single entity, and might represent a business or government, a department or division within a business or government, a club, an association, or the like. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Other - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :PCS - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pager - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Parcel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Parent - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Postal - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :Pref - # - # # Used for relation type codes. The URI of the relation type code must be used as the value for the Relation Type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RelatedType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sibling - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Spouse - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Sweetheart - # - # # This class is deprecated. Use the hasTelephone object property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Tel - # - # # Used for telephone type codes. The URI of the telephone type code must be used as the value for the Telephone Type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TelephoneType - # - # # Also called sms telephone - # # @return [RDF::Vocabulary::Term] - # attr_reader :Text - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :TextPhone - # - # # Used for type codes. The URI of the type code must be used as the value for Type. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Type - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Unknown - # - # # The vCard class is equivalent to the new Kind class, which is the parent for the four explicit types of vCards (Individual, Organization, Location, Group) - # # @return [RDF::Vocabulary::Term] - # attr_reader :VCard - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Video - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Voice - # - # # This implies that the property is related to an individual's work place - # # @return [RDF::Vocabulary::Term] - # attr_reader :Work - # - # # This class is deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :X400 - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :adr - # - # # This object property has been deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :agent - # - # # The date of marriage, or equivalent, of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :anniversary - # - # # To specify the birth date of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :bday - # - # # The category information about the object, also known as tags - # # @return [RDF::Vocabulary::Term] - # attr_reader :category - # - # # This data property has been deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :class - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :email - # - # # The formatted text corresponding to the name of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :fn - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :geo - # - # # Used to support property parameters for the additional name data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAdditionalName - # - # # To specify the components of the delivery address for the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasAddress - # - # # To specify the busy time associated with the object. (Was called FBURL in RFC6350) - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCalendarBusy - # - # # To specify the calendar associated with the object. (Was called CALURI in RFC6350) - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCalendarLink - # - # # To specify the calendar user address to which a scheduling request be sent for the object. (Was called CALADRURI in RFC6350) - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCalendarRequest - # - # # Used to support property parameters for the category data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCategory - # - # # Used to support property parameters for the country name data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasCountryName - # - # # To specify the electronic mail address for communication with the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasEmail - # - # # Used to support property parameters for the formatted name data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFN - # - # # Used to support property parameters for the family name data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasFamilyName - # - # # To specify the sex or gender identity of the object. URIs are recommended to enable interoperable sex and gender codes to be used. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasGender - # - # # To specify information related to the global positioning of the object. May also be used as a property parameter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasGeo - # - # # Used to support property parameters for the given name data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasGivenName - # - # # Used to support property parameters for the honorific prefix data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasHonorificPrefix - # - # # Used to support property parameters for the honorific suffix data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasHonorificSuffix - # - # # To specify the instant messaging and presence protocol communications with the object. (Was called IMPP in RFC6350) - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasInstantMessage - # - # # To specify a public key or authentication certificate associated with the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasKey - # - # # Used to support property parameters for the language data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLanguage - # - # # Used to support property parameters for the locality data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLocality - # - # # To specify a graphic image of a logo associated with the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasLogo - # - # # To include a member in the group this object represents. (This property can only be used by Group individuals) - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasMember - # - # # To specify the components of the name of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasName - # - # # Used to support property parameters for the nickname data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNickname - # - # # Used to support property parameters for the note data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasNote - # - # # Used to support property parameters for the organization name data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOrganizationName - # - # # Used to support property parameters for the organization unit name data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasOrganizationUnit - # - # # To specify an image or photograph information that annotates some aspect of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPhoto - # - # # Used to support property parameters for the postal code data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPostalCode - # - # # Used to support property parameters for the region data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRegion - # - # # To specify a relationship between another entity and the entity represented by this object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRelated - # - # # Used to support property parameters for the role data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasRole - # - # # To specify a digital sound content information that annotates some aspect of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSound - # - # # To identify the source of directory information of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasSource - # - # # Used to support property parameters for the street address data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasStreetAddress - # - # # To specify the telephone number for telephony communication with the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTelephone - # - # # Used to support property parameters for the title data property - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasTitle - # - # # To specify a value that represents a globally unique identifier corresponding to the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasUID - # - # # To specify a uniform resource locator associated with the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasURL - # - # # Used to indicate the resource value of an object property that requires property parameters - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasValue - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :key - # - # # This data property has been deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :label - # - # # To specify the language that may be used for contacting the object. May also be used as a property parameter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :language - # - # # This data property has been deprecated. See hasGeo - # # @return [RDF::Vocabulary::Term] - # attr_reader :latitude - # - # # The locality (e.g. city or town) associated with the address of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :locality - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :logo - # - # # This data property has been deprecated. See hasGeo - # # @return [RDF::Vocabulary::Term] - # attr_reader :longitude - # - # # This data property has been deprecated - # # @return [RDF::Vocabulary::Term] - # attr_reader :mailer - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :n - # - # # The nick name associated with the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :nickname - # - # # A note associated with the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :note - # - # # This object property has been mapped. Use the organization-name data property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :org - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :photo - # - # # To specify the identifier for the product that created the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :prodid - # - # # The region (e.g. state or province) associated with the address of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :region - # - # # To specify revision information about the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :rev - # - # # To specify the function or part played in a particular situation by the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :sound - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :tel - # - # # To specify the position or job of the object - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # To indicate time zone information that is specific to the object. May also be used as a property parameter. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tz - # - # # This object property has been mapped - # # @return [RDF::Vocabulary::Term] - # attr_reader :url - # - # # Used to indicate the literal value of a data property that requires property parameters - # # @return [RDF::Vocabulary::Term] - # attr_reader :value - # - # end VCARD = Class.new(RDF::StrictVocabulary("http://www.w3.org/2006/vcard/ns#")) do # Ontology definition ontology :"http://www.w3.org/2006/vcard/ns#", comment: "Ontology for vCard based on RFC6350".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "Final".freeze, label: "Ontology for vCard".freeze, - "owl:versionInfo": "Final".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Acquaintance, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Acquaintance".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Address, comment: "To specify the components of the delivery address for the object".freeze, equivalentClass: term( - type: "owl:Class".freeze, - unionOf: list(term( - intersectionOf: list(term( - onProperty: "vcard:country-name".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "vcard:country-name".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - ), term( - intersectionOf: list(term( - onProperty: "vcard:locality".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "vcard:locality".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - ), term( - intersectionOf: list(term( - onProperty: "vcard:postal-code".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "vcard:postal-code".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - ), term( - intersectionOf: list(term( - onProperty: "vcard:region".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "vcard:region".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - ), term( - intersectionOf: list(term( - onProperty: "vcard:street-address".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "vcard:street-address".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g14020".freeze, "_:g14060".freeze, "_:g14100".freeze, "_:g14140".freeze, "_:g14180".freeze) ), isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Address".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Agent, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Agent".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BBS, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "BBS".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Car, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Car".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Cell, comment: "Also called mobile telephone".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Cell".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Child, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Child".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Colleague, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Colleague".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Contact, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Contact".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Coresident, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Coresident".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Coworker, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Coworker".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Crush, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Crush".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Date, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Date".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dom, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Dom".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Email, comment: "To specify the electronic mail address for communication with the object the vCard represents. Use the hasEmail object property.".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Email".freeze, - "owl:deprecated": "true".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Emergency, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Emergency".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Fax, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Fax".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Female, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Female".freeze, - subClassOf: "vcard:Gender".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Gender".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Friend, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Friend".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Gender, comment: "Used for gender codes. The URI of the gender code must be used as the value for Gender.".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Gender".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Group, comment: "Object representing a group of persons or entities. A group object will usually contain hasMember properties to specify the members of the group.".freeze, equivalentClass: term( - intersectionOf: list(term( - onProperty: "vcard:hasMember".freeze, - someValuesFrom: "vcard:Kind".freeze, - type: "owl:Restriction".freeze - ), term( - onProperty: "vcard:hasMember".freeze, - "owl:minQualifiedCardinality": "1".freeze, - "owl:onClass": "vcard:Kind".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze + intersectionOf: list("_:g13740".freeze, "_:g13780".freeze), + type: "http://www.w3.org/2002/07/owl#Class".freeze ), + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/2006/vcard/ns#Individual".freeze, "http://www.w3.org/2006/vcard/ns#Location".freeze, "http://www.w3.org/2006/vcard/ns#Organization".freeze], isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Group".freeze, - "owl:disjointWith": ["vcard:Individual".freeze, "vcard:Location".freeze, "vcard:Organization".freeze], - subClassOf: "vcard:Kind".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Kind".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Home, comment: "This implies that the property is related to an individual's personal life".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Home".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ISDN, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "ISDN".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Individual, comment: "An object representing a single person or entity".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.w3.org/2006/vcard/ns#Location".freeze, "http://www.w3.org/2006/vcard/ns#Organization".freeze], isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Individual".freeze, - "owl:disjointWith": ["vcard:Location".freeze, "vcard:Organization".freeze], - subClassOf: "vcard:Kind".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Kind".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Internet, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Internet".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Intl, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Intl".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Kin, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Kin".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Kind, comment: "The parent class for all objects".freeze, - equivalentClass: ["vcard:VCard".freeze, term( - onProperty: "vcard:fn".freeze, - "owl:minQualifiedCardinality": "1".freeze, - "owl:onDataRange": "xsd:string".freeze, - type: "owl:Restriction".freeze + equivalentClass: ["http://www.w3.org/2006/vcard/ns#VCard".freeze, term( + "http://www.w3.org/2002/07/owl#minQualifiedCardinality": "1".freeze, + "http://www.w3.org/2002/07/owl#onDataRange": "http://www.w3.org/2001/XMLSchema#string".freeze, + onProperty: "http://www.w3.org/2006/vcard/ns#fn".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )], isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Kind".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Label, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Label".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Location, comment: "An object representing a named geographical place".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.w3.org/2006/vcard/ns#Organization".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Location".freeze, - "owl:disjointWith": "vcard:Organization".freeze, - subClassOf: "vcard:Kind".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Kind".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Male, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Male".freeze, - subClassOf: "vcard:Gender".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Gender".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Me, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Me".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Met, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Met".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Modem, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Modem".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Msg, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Msg".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Muse, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Muse".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Name, comment: "To specify the components of the name of the object".freeze, equivalentClass: term( - type: "owl:Class".freeze, - unionOf: list(term( - intersectionOf: list(term( - onProperty: "vcard:additional-name".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - minCardinality: "0".freeze, - onProperty: "vcard:additional-name".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - ), term( - intersectionOf: list(term( - onProperty: "vcard:family-name".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "vcard:family-name".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - ), term( - intersectionOf: list(term( - onProperty: "vcard:given-name".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - maxCardinality: "1".freeze, - onProperty: "vcard:given-name".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - ), term( - intersectionOf: list(term( - onProperty: "vcard:honorific-prefix".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - minCardinality: "0".freeze, - onProperty: "vcard:honorific-prefix".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - ), term( - intersectionOf: list(term( - onProperty: "vcard:honorific-suffix".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze - ), term( - minCardinality: "0".freeze, - onProperty: "vcard:honorific-suffix".freeze, - type: "owl:Restriction".freeze - )), - type: "owl:Class".freeze - )) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("_:g14320".freeze, "_:g14360".freeze, "_:g14400".freeze, "_:g14440".freeze, "_:g14480".freeze) ), isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Name".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Neighbor, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Neighbor".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :None, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "None".freeze, - subClassOf: "vcard:Gender".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Gender".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Organization, comment: "An object representing an organization. An organization is a single entity, and might represent a business or government, a department or division within a business or government, a club, an association, or the like.\n".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Organization".freeze, - subClassOf: "vcard:Kind".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Kind".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Other, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Other".freeze, - subClassOf: "vcard:Gender".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Gender".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PCS, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "PCS".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Pager, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Pager".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Parcel, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Parcel".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Parent, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Parent".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Postal, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Postal".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Pref, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Pref".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RelatedType, comment: "Used for relation type codes. The URI of the relation type code must be used as the value for the Relation Type.".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Relation Type".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Sibling, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Sibling".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Spouse, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Spouse".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Sweetheart, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Sweetheart".freeze, - subClassOf: "vcard:RelatedType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#RelatedType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Tel, comment: "This class is deprecated. Use the hasTelephone object property.".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Tel".freeze, - "owl:deprecated": "true".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TelephoneType, comment: "Used for telephone type codes. The URI of the telephone type code must be used as the value for the Telephone Type.".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Phone".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Text, comment: "Also called sms telephone".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Text".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TextPhone, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Text phone".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Type, comment: "Used for type codes. The URI of the type code must be used as the value for Type.".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Type".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Unknown, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Unknown".freeze, - subClassOf: "vcard:Gender".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Gender".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VCard, comment: "The vCard class is equivalent to the new Kind class, which is the parent for the four explicit types of vCards (Individual, Organization, Location, Group)".freeze, - equivalentClass: "vcard:Kind".freeze, + equivalentClass: "http://www.w3.org/2006/vcard/ns#Kind".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "VCard".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Video, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Video".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Voice, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Voice".freeze, - subClassOf: "vcard:TelephoneType".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#TelephoneType".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Work, comment: "This implies that the property is related to an individual's work place".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "Work".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :X400, comment: "This class is deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "X400".freeze, - "owl:deprecated": "true".freeze, - subClassOf: "vcard:Type".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#Type".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :"additional-name", comment: "The additional name associated with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "additional name".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :adr, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasAddress".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasAddress".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "address".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :agent, comment: "This object property has been deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "agent".freeze, - "owl:deprecated": "true".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :anniversary, comment: "The date of marriage, or equivalent, of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "anniversary".freeze, range: term( - type: "rdfs:Datatype".freeze, - unionOf: list("xsd:dateTime".freeze, "xsd:gYear".freeze) + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze, + unionOf: list("http://www.w3.org/2001/XMLSchema#dateTime".freeze, "http://www.w3.org/2001/XMLSchema#gYear".freeze) ), - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :bday, comment: "To specify the birth date of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "birth date".freeze, range: term( - type: "rdfs:Datatype".freeze, - unionOf: list("xsd:dateTime".freeze, "xsd:dateTimeStamp".freeze, "xsd:gYear".freeze) + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze, + unionOf: list("http://www.w3.org/2001/XMLSchema#dateTime".freeze, "http://www.w3.org/2001/XMLSchema#dateTimeStamp".freeze, "http://www.w3.org/2001/XMLSchema#gYear".freeze) ), - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :category, comment: "The category information about the object, also known as tags".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "category".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :class, comment: "This data property has been deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "class".freeze, - "owl:deprecated": "true".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :"country-name", comment: "The country name associated with the address of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "country name".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :email, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasEmail".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasEmail".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "email".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"extended-address", comment: "This data property has been deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "extended address".freeze, - "owl:deprecated": "true".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :"family-name", comment: "The family name associated with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "family name".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :fn, comment: "The formatted text corresponding to the name of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "formatted name".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :geo, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasGeo".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasGeo".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "geo".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"given-name", comment: "The given name associated with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "given name".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasAdditionalName, comment: "Used to support property parameters for the additional name data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has additional name".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasAddress, comment: "To specify the components of the delivery address for the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has address".freeze, - range: "vcard:Address".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2006/vcard/ns#Address".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCalendarBusy, comment: "To specify the busy time associated with the object. (Was called FBURL in RFC6350)".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has calendar busy".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCalendarLink, comment: "To specify the calendar associated with the object. (Was called CALURI in RFC6350)".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has calendar link".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCalendarRequest, comment: "To specify the calendar user address to which a scheduling request be sent for the object. (Was called CALADRURI in RFC6350)".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has calendar request".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCategory, comment: "Used to support property parameters for the category data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has category".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCountryName, comment: "Used to support property parameters for the country name data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has country name".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEmail, comment: "To specify the electronic mail address for communication with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has email".freeze, - range: "vcard:Email".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2006/vcard/ns#Email".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasFN, comment: "Used to support property parameters for the formatted name data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has formatted name".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasFamilyName, comment: "Used to support property parameters for the family name data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has family name".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasGender, comment: "To specify the sex or gender identity of the object. URIs are recommended to enable interoperable sex and gender codes to be used.".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has gender".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasGeo, comment: "To specify information related to the global positioning of the object. May also be used as a property parameter.".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has geo".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasGivenName, comment: "Used to support property parameters for the given name data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has given name".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasHonorificPrefix, comment: "Used to support property parameters for the honorific prefix data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has honorific prefix".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasHonorificSuffix, comment: "Used to support property parameters for the honorific suffix data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has honorific suffix".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasInstantMessage, comment: "To specify the instant messaging and presence protocol communications with the object. (Was called IMPP in RFC6350)".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has messaging".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasKey, comment: "To specify a public key or authentication certificate associated with the object".freeze, - equivalentProperty: "vcard:key".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#key".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has key".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasLanguage, comment: "Used to support property parameters for the language data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has language".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasLocality, comment: "Used to support property parameters for the locality data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has locality".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasLogo, comment: "To specify a graphic image of a logo associated with the object ".freeze, - equivalentProperty: "vcard:logo".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#logo".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has logo".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMember, comment: "To include a member in the group this object represents. (This property can only be used by Group individuals)".freeze, - domain: "vcard:Group".freeze, + domain: "http://www.w3.org/2006/vcard/ns#Group".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has member".freeze, - range: "vcard:Kind".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2006/vcard/ns#Kind".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasName, comment: "To specify the components of the name of the object".freeze, - equivalentProperty: "vcard:n".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#n".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has name".freeze, - range: "vcard:Name".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2006/vcard/ns#Name".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasNickname, comment: "Used to support property parameters for the nickname data property".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/2006/vcard/ns#nickname".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has nickname".freeze, - "rdfs:seeAlso": "vcard:nickname".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasNote, comment: "Used to support property parameters for the note data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has note".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasOrganizationName, comment: "Used to support property parameters for the organization name data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has organization name".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasOrganizationUnit, comment: "Used to support property parameters for the organization unit name data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has organization unit name".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPhoto, comment: "To specify an image or photograph information that annotates some aspect of the object".freeze, - equivalentProperty: "vcard:photo".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#photo".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has photo".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPostalCode, comment: "Used to support property parameters for the postal code data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has postal code".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRegion, comment: "Used to support property parameters for the region data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has region".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRelated, comment: "To specify a relationship between another entity and the entity represented by this object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has related".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRole, comment: "Used to support property parameters for the role data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has role".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSound, comment: "To specify a digital sound content information that annotates some aspect of the object".freeze, - equivalentProperty: "vcard:sound".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#sound".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has sound".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSource, comment: "To identify the source of directory information of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has source".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasStreetAddress, comment: "Used to support property parameters for the street address data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has street address".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTelephone, comment: "To specify the telephone number for telephony communication with the object".freeze, - equivalentProperty: "vcard:tel".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#tel".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has telephone".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTitle, comment: "Used to support property parameters for the title data property".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has title".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasUID, comment: "To specify a value that represents a globally unique identifier corresponding to the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has uid".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasURL, comment: "To specify a uniform resource locator associated with the object".freeze, - equivalentProperty: "vcard:url".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#url".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has url".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasValue, comment: "Used to indicate the resource value of an object property that requires property parameters".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "has value".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"honorific-prefix", comment: "The honorific prefix of the name associated with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "honorific prefix".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :"honorific-suffix", comment: "The honorific suffix of the name associated with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "honorific suffix".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :key, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasKey".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasKey".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "key".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :label, comment: "This data property has been deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "label".freeze, - "owl:deprecated": "true".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :language, comment: "To specify the language that may be used for contacting the object. May also be used as a property parameter.".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "language".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :latitude, comment: "This data property has been deprecated. See hasGeo".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "latitude".freeze, - "owl:deprecated": "true".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :locality, comment: "The locality (e.g. city or town) associated with the address of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "locality".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :logo, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasLogo".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasLogo".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "logo".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :longitude, comment: "This data property has been deprecated. See hasGeo".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "longitude".freeze, - "owl:deprecated": "true".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :mailer, comment: "This data property has been deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "mailer".freeze, - "owl:deprecated": "true".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :n, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasName".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasName".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "name".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :nickname, comment: "The nick name associated with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "nickname".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :note, comment: "A note associated with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "note".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :org, comment: "This object property has been mapped. Use the organization-name data property.".freeze, - equivalentProperty: "vcard:organization-name".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#organization-name".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "organization".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"organization-name", comment: "To specify the organizational name associated with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "organization name".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :"organization-unit", comment: "To specify the organizational unit name associated with the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "organizational unit name".freeze, - range: "xsd:string".freeze, - subPropertyOf: "vcard:organization-name".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://www.w3.org/2006/vcard/ns#organization-name".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :photo, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasPhoto".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasPhoto".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "photo".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"post-office-box", comment: "This data property has been deprecated".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "post office box".freeze, - "owl:deprecated": "true".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :"postal-code", comment: "The postal code associated with the address of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "postal code".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :prodid, comment: "To specify the identifier for the product that created the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "product id".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :region, comment: "The region (e.g. state or province) associated with the address of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "region".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :rev, comment: "To specify revision information about the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "revision".freeze, - range: "xsd:dateTime".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :role, comment: "To specify the function or part played in a particular situation by the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "role".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :"sort-string", comment: "To specify the string to be used for national-language-specific sorting. Used as a property parameter only.".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "sort as".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :sound, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasSound".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasSound".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "sound".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"street-address", comment: "The street address associated with the address of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "street address".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :tel, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasTelephone".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasTelephone".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "telephone".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :title, comment: "To specify the position or job of the object".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "title".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :tz, comment: "To indicate time zone information that is specific to the object. May also be used as a property parameter.".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "time zone".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :url, comment: "This object property has been mapped".freeze, - equivalentProperty: "vcard:hasURL".freeze, + equivalentProperty: "http://www.w3.org/2006/vcard/ns#hasURL".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "url".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :value, comment: "Used to indicate the literal value of a data property that requires property parameters".freeze, isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze, label: "value".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze end end diff --git a/lib/rdf/vocab/vmd.rb b/lib/rdf/vocab/vmd.rb index 2b4409f..3b21c30 100644 --- a/lib/rdf/vocab/vmd.rb +++ b/lib/rdf/vocab/vmd.rb @@ -3,669 +3,375 @@ # This file generated automatically using rdf vocabulary format from http://data-vocabulary.org/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class VMD < RDF::StrictVocabulary - # # Postal address for a Person or Organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Address - # - # # Represents a single Breadcrumb in a Breadcrumb trail. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Breadcrumb - # - # # Represents the steps to make a dish. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Instructions - # - # # Represents the nutrition information about a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Nutrition - # - # # Represents an offer to sell a product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Offer - # - # # Represents a collection of offers to sell a product. - # # @return [RDF::Vocabulary::Term] - # attr_reader :OfferAggregate - # - # # An Organization is a business, agency, school, etc. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Organization - # - # # Represents a Person, living/dead/fictional. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Person - # - # # Represents a product or service in a Review or Review-aggregate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Product - # - # # Represents a rating in a Review or Review-aggregate. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Rating - # - # # A single instance of a Recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Recipe - # - # # Represents ingredients used in a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :RecipeIngredient - # - # # A single instance of a Review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Review - # - # # Represents the length of time it takes to prepare a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TimeRange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :acquaintance - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :address - # - # # An affiliation can be specified by a string literal or an Organization instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :affiliation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :amount - # - # # An author of the recipe can be specified by a string literal or a Person instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :author - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :availability - # - # # The average of an aggregate value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :average - # - # # The best value of a rating scale (default 5). - # # @return [RDF::Vocabulary::Term] - # attr_reader :best - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :brand - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :calories - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :carbohydrates - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :category - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :child - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cholesterol - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :colleague - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :condition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :contact - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :cookTime - # - # # The total number of items used in an aggregate (e.g., number of reviews). - # # @return [RDF::Vocabulary::Term] - # attr_reader :count - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :currency - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :description - # - # # The date of the review. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dtreviewed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :duration - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :fiber - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :friend - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :highprice - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :identifier - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :image - # - # # Represents ingredients used in a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :ingredient - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :instruction - # - # # Represents the steps to make a dish. - # # @return [RDF::Vocabulary::Term] - # attr_reader :instructions - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemoffered - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :itemreviewed - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :locality - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :lowprice - # - # # The maximum value of an aggregated Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :max - # - # # The minimum value of an aggregated Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :min - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :name - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :nickname - # - # # Represents the nutrition information about a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :nutrition - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :offercount - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :offerdetails - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :offerurl - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :photo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :prepTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :price - # - # # The price range of products and services offered by a restaurant, business or other organization. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pricerange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :pricevaliduntil - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :protein - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :published - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :quantity - # - # # A rating can be specified by a string literal or a Rating instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rating - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :recipeType - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :region - # - # # A reviewer can be specified by a string literal or a Person instance. - # # @return [RDF::Vocabulary::Term] - # attr_reader :reviewer - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :saturatedFat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :seller - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :servingSize - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sugar - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :summary - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tag - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :tel - # - # # Represents the length of time it takes to prepare a recipe. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timeRange - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :title - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :totalTime - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :unsaturatedFat - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :url - # - # # The value of a single Rating. - # # @return [RDF::Vocabulary::Term] - # attr_reader :value - # - # # The poorest value of a rating scale (default 1). - # # @return [RDF::Vocabulary::Term] - # attr_reader :worst - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :yield - # - # end VMD = Class.new(RDF::StrictVocabulary("http://data-vocabulary.org/")) do # Class definitions term :Address, comment: "Postal address for a Person or Organization.".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Breadcrumb, comment: "Represents a single Breadcrumb in a Breadcrumb trail.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Instructions, comment: "Represents the steps to make a dish.".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Nutrition, comment: "Represents the nutrition information about a recipe.".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Offer, comment: "Represents an offer to sell a product.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OfferAggregate, comment: "Represents a collection of offers to sell a product.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Organization, comment: "An Organization is a business, agency, school, etc.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Person, comment: "Represents a Person, living/dead/fictional.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Product, comment: "Represents a product or service in a Review or Review-aggregate.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Rating, comment: "Represents a rating in a Review or Review-aggregate.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Recipe, comment: "A single instance of a Recipe.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :RecipeIngredient, comment: "Represents ingredients used in a recipe.".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Review, comment: "A single instance of a Review.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :"Review-aggregate", comment: "Represents data from a collection of reviews.\n Can be used whether or not there is instance-level Review data on the page.\n ".freeze, - subClassOf: "vmd:Review".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://data-vocabulary.org/Review".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TimeRange, comment: "Represents the length of time it takes to prepare a recipe.".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :acquaintance, - domain: "vmd:Person".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :address, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Person".freeze, "vmd:Organization".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Person".freeze, "http://data-vocabulary.org/Organization".freeze) ), - range: "vmd:Address".freeze, - type: "rdf:Property".freeze + range: "http://data-vocabulary.org/Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :affiliation, comment: "An affiliation can be specified by a string literal or an Organization instance.".freeze, - domain: "vmd:Person".freeze, + domain: "http://data-vocabulary.org/Person".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Organization".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Organization".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :amount, - domain: "vmd:RecipeIngredient".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/RecipeIngredient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :author, comment: "An author of the recipe can be specified by a string literal or a Person instance.".freeze, - domain: "vmd:Recipe".freeze, + domain: "http://data-vocabulary.org/Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Person".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Person".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availability, - domain: "vmd:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :average, comment: "The average of an aggregate value.".freeze, - domain: "vmd:Rating".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :best, comment: "The best value of a rating scale (default 5).".freeze, - domain: "vmd:Rating".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :brand, - domain: "vmd:Product".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :calories, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :carbohydrates, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :category, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Organization".freeze, "vmd:Product".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Organization".freeze, "http://data-vocabulary.org/Product".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :child, - domain: "vmd:Breadcrumb".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Breadcrumb".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cholesterol, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :colleague, - domain: "vmd:Person".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :condition, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Offer".freeze, "vmd:OfferAggregate".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Offer".freeze, "http://data-vocabulary.org/OfferAggregate".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contact, - domain: "vmd:Person".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cookTime, - domain: "vmd:Recipe".freeze, + domain: "http://data-vocabulary.org/Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("vmd:TimeRange".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/TimeRange".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :count, comment: "The total number of items used in an aggregate (e.g., number of reviews).".freeze, - domain: "vmd:Review-aggregate".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Review-aggregate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"country-name", - domain: "vmd:Address".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :currency, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Offer".freeze, "vmd:OfferAggregate".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Offer".freeze, "http://data-vocabulary.org/OfferAggregate".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Review".freeze, "vmd:Product".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Review".freeze, "http://data-vocabulary.org/Product".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dtreviewed, comment: "The date of the review.".freeze, - domain: "vmd:Review".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Review".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :duration, - domain: "vmd:Recipe".freeze, + domain: "http://data-vocabulary.org/Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("vmd:TimeRange".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/TimeRange".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fat, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :fiber, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :friend, - domain: "vmd:Person".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :highprice, - domain: "vmd:OfferAggregate".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/OfferAggregate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :identifier, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Product".freeze, "vmd:Offer".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Product".freeze, "http://data-vocabulary.org/Offer".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :image, - domain: "vmd:Product".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :ingredient, comment: "Represents ingredients used in a recipe.".freeze, - domain: "vmd:Recipe".freeze, - range: "vmd:RecipeIngredient".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Recipe".freeze, + range: "http://data-vocabulary.org/RecipeIngredient".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instruction, - domain: "vmd:Instructions".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Instructions".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :instructions, comment: "Represents the steps to make a dish.".freeze, - domain: "vmd:Recipe".freeze, - range: "vmd:Instructions".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Recipe".freeze, + range: "http://data-vocabulary.org/Instructions".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemoffered, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Offer".freeze, "vmd:OfferAggregate".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Offer".freeze, "http://data-vocabulary.org/OfferAggregate".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itemreviewed, - domain: "vmd:Review".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Review".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :locality, - domain: "vmd:Address".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :lowprice, - domain: "vmd:OfferAggregate".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/OfferAggregate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :max, comment: "The maximum value of an aggregated Rating.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Rating".freeze, "vmd:TimeRange".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Rating".freeze, "http://data-vocabulary.org/TimeRange".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :min, comment: "The minimum value of an aggregated Rating.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Rating".freeze, "vmd:TimeRange".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Rating".freeze, "http://data-vocabulary.org/TimeRange".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :name, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nickname, - domain: "vmd:Person".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :nutrition, comment: "Represents the nutrition information about a recipe.".freeze, - domain: "vmd:Recipe".freeze, - range: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Recipe".freeze, + range: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offercount, - domain: "vmd:OfferAggregate".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/OfferAggregate".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offerdetails, - domain: "vmd:Product".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Product".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :offerurl, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Offer".freeze, "vmd:OfferAggregate".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Offer".freeze, "http://data-vocabulary.org/OfferAggregate".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :photo, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"postal-code", - domain: "vmd:Address".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prepTime, - domain: "vmd:Recipe".freeze, + domain: "http://data-vocabulary.org/Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("vmd:TimeRange".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/TimeRange".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :price, - domain: "vmd:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pricerange, comment: "The price range of products and services offered\n by a restaurant, business or other organization.\n ".freeze, - domain: "vmd:Organization".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Organization".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :pricevaliduntil, - domain: "vmd:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :protein, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :published, - domain: "vmd:Recipe".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Recipe".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :quantity, - domain: "vmd:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rating, comment: "A rating can be specified by a string literal or a Rating instance.".freeze, - domain: "vmd:Review".freeze, + domain: "http://data-vocabulary.org/Review".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Rating".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Rating".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :recipeType, - domain: "vmd:Recipe".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Recipe".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :region, - domain: "vmd:Address".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :reviewer, comment: "A reviewer can be specified by a string literal or a Person instance.".freeze, - domain: "vmd:Review".freeze, + domain: "http://data-vocabulary.org/Review".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Person".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Person".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :role, - domain: "vmd:Person".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Person".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :saturatedFat, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :seller, - domain: "vmd:Offer".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Offer".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :servingSize, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :"street-address", - domain: "vmd:Address".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Address".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sugar, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :summary, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Review".freeze, "vmd:Recipe".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Review".freeze, "http://data-vocabulary.org/Recipe".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tag, - domain: "vmd:Recipe".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Recipe".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tel, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Person".freeze, "vmd:Organization".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Person".freeze, "http://data-vocabulary.org/Organization".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timeRange, comment: "Represents the length of time it takes to prepare a recipe.".freeze, - domain: "vmd:Recipe".freeze, - range: "vmd:TimeRange".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Recipe".freeze, + range: "http://data-vocabulary.org/TimeRange".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :title, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Person".freeze, "vmd:Breadcrumb".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Person".freeze, "http://data-vocabulary.org/Breadcrumb".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalTime, - domain: "vmd:Recipe".freeze, + domain: "http://data-vocabulary.org/Recipe".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("vmd:TimeRange".freeze, "xsd:string".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/TimeRange".freeze, "http://www.w3.org/2001/XMLSchema#string".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :unsaturatedFat, - domain: "vmd:Nutrition".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Nutrition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :url, domain: term( - type: "owl:Class".freeze, - unionOf: list("vmd:Person".freeze, "vmd:Organization".freeze, "vmd:Product".freeze, "vmd:Breadcrumb".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://data-vocabulary.org/Person".freeze, "http://data-vocabulary.org/Organization".freeze, "http://data-vocabulary.org/Product".freeze, "http://data-vocabulary.org/Breadcrumb".freeze) ), - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :value, comment: "The value of a single Rating.".freeze, - domain: "vmd:Rating".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :worst, comment: "The poorest value of a rating scale (default 1).".freeze, - domain: "vmd:Rating".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Rating".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :yield, - domain: "vmd:Recipe".freeze, - type: "rdf:Property".freeze + domain: "http://data-vocabulary.org/Recipe".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/void.rb b/lib/rdf/vocab/void.rb index 1cb0e18..94a1308 100644 --- a/lib/rdf/vocab/void.rb +++ b/lib/rdf/vocab/void.rb @@ -3,308 +3,184 @@ # This file generated automatically using rdf vocabulary format from http://rdfs.org/ns/void# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class VOID < RDF::StrictVocabulary - # # A set of RDF triples that are published, maintained or aggregated by a single provider. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Dataset - # - # # A web resource whose foaf:primaryTopic or foaf:topics include void:Datasets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :DatasetDescription - # - # # A collection of RDF links between two void:Datasets. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Linkset - # - # # A technical feature of a void:Dataset, such as a supported RDF serialization format. - # # @return [RDF::Vocabulary::Term] - # attr_reader :TechnicalFeature - # - # # The rdfs:Class that is the rdf:type of all entities in a class-based partition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :class - # - # # A subset of a void:Dataset that contains only the entities of a certain rdfs:Class. - # # @return [RDF::Vocabulary::Term] - # attr_reader :classPartition - # - # # The total number of distinct classes in a void:Dataset. In other words, the number of distinct resources occuring as objects of rdf:type triples in the dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :classes - # - # # An RDF dump, partial or complete, of a void:Dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dataDump - # - # # The total number of distinct objects in a void:Dataset. In other words, the number of distinct resources that occur in the object position of triples in the dataset. Literals are included in this count. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distinctObjects - # - # # The total number of distinct subjects in a void:Dataset. In other words, the number of distinct resources that occur in the subject position of triples in the dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :distinctSubjects - # - # # The total number of documents, for datasets that are published as a set of individual documents, such as RDF/XML documents or RDFa-annotated web pages. Non-RDF documents, such as web pages in HTML or images, are usually not included in this count. This property is intended for datasets where the total number of triples or entities is hard to determine. void:triples or void:entities should be preferred where practical. - # # @return [RDF::Vocabulary::Term] - # attr_reader :documents - # - # # The total number of entities that are described in a void:Dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :entities - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :exampleResource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :feature - # - # # Points to the void:Dataset that a document is a part of. - # # @return [RDF::Vocabulary::Term] - # attr_reader :inDataset - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :linkPredicate - # - # # The dataset describing the objects of the triples contained in the Linkset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :objectsTarget - # - # # An OpenSearch description document for a free-text search service over a void:Dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :openSearchDescription - # - # # The total number of distinct properties in a void:Dataset. In other words, the number of distinct resources that occur in the predicate position of triples in the dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :properties - # - # # The rdf:Property that is the predicate of all triples in a property-based partition. - # # @return [RDF::Vocabulary::Term] - # attr_reader :property - # - # # A subset of a void:Dataset that contains only the triples of a certain rdf:Property. - # # @return [RDF::Vocabulary::Term] - # attr_reader :propertyPartition - # - # # A top concept or entry point for a void:Dataset that is structured in a tree-like fashion. All resources in a dataset can be reached by following links from its root resources in a small number of steps. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rootResource - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sparqlEndpoint - # - # # The dataset describing the subjects of triples contained in the Linkset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subjectsTarget - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :subset - # - # # One of the two datasets linked by the Linkset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :target - # - # # The total number of triples contained in a void:Dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :triples - # - # # Defines a simple URI look-up protocol for accessing a dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :uriLookupEndpoint - # - # # Defines a regular expression pattern matching URIs in the dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :uriRegexPattern - # - # # A URI that is a common string prefix of all the entity URIs in a void:Dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :uriSpace - # - # # A vocabulary that is used in the dataset. - # # @return [RDF::Vocabulary::Term] - # attr_reader :vocabulary - # - # end VOID = Class.new(RDF::StrictVocabulary("http://rdfs.org/ns/void#")) do # Class definitions term :Dataset, comment: "A set of RDF triples that are published, maintained or aggregated by a single provider.".freeze, label: "dataset".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2002/07/owl#Class".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :DatasetDescription, comment: "A web resource whose foaf:primaryTopic or foaf:topics include void:Datasets.".freeze, label: "dataset description".freeze, - subClassOf: "foaf:Document".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://xmlns.com/foaf/0.1/Document".freeze, + type: ["http://www.w3.org/2002/07/owl#Class".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :Linkset, comment: "A collection of RDF links between two void:Datasets.".freeze, label: "linkset".freeze, - subClassOf: "void:Dataset".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://rdfs.org/ns/void#Dataset".freeze, + type: ["http://www.w3.org/2002/07/owl#Class".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] term :TechnicalFeature, comment: "A technical feature of a void:Dataset, such as a supported RDF serialization format.".freeze, label: "technical feature".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2002/07/owl#Class".freeze, "http://www.w3.org/2000/01/rdf-schema#Class".freeze] # Property definitions property :class, comment: "The rdfs:Class that is the rdf:type of all entities in a class-based partition.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "class".freeze, - range: "rdfs:Class".freeze, - type: ["owl:FunctionalProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :classPartition, comment: "A subset of a void:Dataset that contains only the entities of a certain rdfs:Class.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "class partition".freeze, - range: "void:Dataset".freeze, - subPropertyOf: "void:subset".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/ns/void#Dataset".freeze, + subPropertyOf: "http://rdfs.org/ns/void#subset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :classes, comment: "The total number of distinct classes in a void:Dataset. In other words, the number of distinct resources occuring as objects of rdf:type triples in the dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "classes".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :dataDump, comment: "An RDF dump, partial or complete, of a void:Dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "Data Dump".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :distinctObjects, comment: "The total number of distinct objects in a void:Dataset. In other words, the number of distinct resources that occur in the object position of triples in the dataset. Literals are included in this count.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "distinct objects".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :distinctSubjects, comment: "The total number of distinct subjects in a void:Dataset. In other words, the number of distinct resources that occur in the subject position of triples in the dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "distinct subjects".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :documents, comment: "The total number of documents, for datasets that are published as a set of individual documents, such as RDF/XML documents or RDFa-annotated web pages. Non-RDF documents, such as web pages in HTML or images, are usually not included in this count. This property is intended for datasets where the total number of triples or entities is hard to determine. void:triples or void:entities should be preferred where practical.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "number of documents".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :entities, comment: "The total number of entities that are described in a void:Dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "number of entities".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :exampleResource, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "example resource of dataset".freeze, - range: "rdfs:Resource".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :feature, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "feature".freeze, - range: "void:TechnicalFeature".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/ns/void#TechnicalFeature".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :inDataset, comment: "Points to the void:Dataset that a document is a part of.".freeze, - domain: "foaf:Document".freeze, + domain: "http://xmlns.com/foaf/0.1/Document".freeze, label: "in dataset".freeze, - range: "void:Dataset".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/ns/void#Dataset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :linkPredicate, - domain: "void:Linkset".freeze, + domain: "http://rdfs.org/ns/void#Linkset".freeze, label: "a link predicate".freeze, - range: "rdf:Property".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :objectsTarget, comment: "The dataset describing the objects of the triples contained in the Linkset.".freeze, - domain: "void:Linkset".freeze, + domain: "http://rdfs.org/ns/void#Linkset".freeze, label: "Objects Target".freeze, - range: "void:Dataset".freeze, - subPropertyOf: "void:target".freeze, - type: ["owl:FunctionalProperty".freeze, "rdf:Property".freeze] + range: "http://rdfs.org/ns/void#Dataset".freeze, + subPropertyOf: "http://rdfs.org/ns/void#target".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :openSearchDescription, comment: "An OpenSearch description document for a free-text search service over a void:Dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "open search description".freeze, - range: "foaf:Document".freeze, - type: "rdf:Property".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :properties, comment: "The total number of distinct properties in a void:Dataset. In other words, the number of distinct resources that occur in the predicate position of triples in the dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "number of properties".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :property, comment: "The rdf:Property that is the predicate of all triples in a property-based partition.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "property".freeze, - range: "rdf:Property".freeze, - type: ["owl:FunctionalProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :propertyPartition, comment: "A subset of a void:Dataset that contains only the triples of a certain rdf:Property.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "property partition".freeze, - range: "void:Dataset".freeze, - subPropertyOf: "void:subset".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/ns/void#Dataset".freeze, + subPropertyOf: "http://rdfs.org/ns/void#subset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rootResource, comment: "A top concept or entry point for a void:Dataset that is structured in a tree-like fashion. All resources in a dataset can be reached by following links from its root resources in a small number of steps.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "root resource".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sparqlEndpoint, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "has a SPARQL endpoint at".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subjectsTarget, comment: "The dataset describing the subjects of triples contained in the Linkset.".freeze, - domain: "void:Linkset".freeze, + domain: "http://rdfs.org/ns/void#Linkset".freeze, label: "Subjects Target".freeze, - range: "void:Dataset".freeze, - subPropertyOf: "void:target".freeze, - type: ["owl:FunctionalProperty".freeze, "rdf:Property".freeze] + range: "http://rdfs.org/ns/void#Dataset".freeze, + subPropertyOf: "http://rdfs.org/ns/void#target".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :subset, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "has subset".freeze, - range: "void:Dataset".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/ns/void#Dataset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :target, comment: "One of the two datasets linked by the Linkset.".freeze, - domain: "void:Linkset".freeze, + domain: "http://rdfs.org/ns/void#Linkset".freeze, label: "Target".freeze, - range: "void:Dataset".freeze, - type: "rdf:Property".freeze + range: "http://rdfs.org/ns/void#Dataset".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :triples, comment: "The total number of triples contained in a void:Dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "number of triples".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :uriLookupEndpoint, comment: "Defines a simple URI look-up protocol for accessing a dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "has an URI look-up endpoint at".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :uriRegexPattern, comment: "Defines a regular expression pattern matching URIs in the dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "has URI regular expression pattern".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :uriSpace, comment: "A URI that is a common string prefix of all the entity URIs in a void:Dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "URI space".freeze, - range: "rdfs:Literal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :vocabulary, comment: "A vocabulary that is used in the dataset.".freeze, - domain: "void:Dataset".freeze, + domain: "http://rdfs.org/ns/void#Dataset".freeze, label: "vocabulary".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/vs.rb b/lib/rdf/vocab/vs.rb index a282411..fffdeab 100644 --- a/lib/rdf/vocab/vs.rb +++ b/lib/rdf/vocab/vs.rb @@ -3,61 +3,39 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2003/06/sw-vocab-status/ns# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # SemWeb Vocab Status ontology - # # - # # This vocabulary was created in the FOAF project, based on experience with FOAF, Dublin Core and other early RDF vocabularies. Deployment experience shows that changing namespace URIs is expensive and unrewarding, so this vocabulary provides terms to support in-place evolution of structured data vocabularies. By indicating status at the level of terms rather than vocabularies, dictionary-style, fine grained improvements become easier. Different organizations and parties can agree or disagree on the status of a vocabulary term; however the status published alongside the term may deserve special attention. Future work could include patterns for citing announcements and decisions, or using SKOS to decentralise the extension of the basic status levels. - # # - # # An RDF vocabulary for relating SW vocabulary terms to their status. - # class VS < RDF::StrictVocabulary - # # more information about the status etc of a term, typically human oriented - # # @return [RDF::Vocabulary::Term] - # attr_reader :moreinfo - # - # # the status of a vocabulary term, expressed as a short symbolic string; known values include 'unstable','testing', 'stable' and 'archaic' - # # @return [RDF::Vocabulary::Term] - # attr_reader :term_status - # - # # human-oriented documentation, examples etc for use of this term - # # @return [RDF::Vocabulary::Term] - # attr_reader :userdocs - # - # end VS = Class.new(RDF::StrictVocabulary("http://www.w3.org/2003/06/sw-vocab-status/ns#")) do # Ontology definition ontology :"http://www.w3.org/2003/06/sw-vocab-status/ns#", comment: "This vocabulary was created in the FOAF project, based on experience with FOAF, Dublin Core and other early RDF vocabularies. Deployment experience shows that changing namespace URIs is expensive and unrewarding, so this vocabulary provides terms to support in-place evolution of structured data vocabularies. By indicating status at the level of terms rather than vocabularies, dictionary-style, fine grained improvements become easier. Different organizations and parties can agree or disagree on the status of a vocabulary term; however the status published alongside the term may deserve special attention. Future work could include patterns for citing announcements and decisions, or using SKOS to decentralise the extension of the basic status levels.".freeze, - "dc11:contributor": "Pierre-Yves Vandenbussche".freeze, - "dc11:creator": ["Dan Brickley".freeze, "Leigh Dodds".freeze, "Libby Miller".freeze], - "dc11:description": "An RDF vocabulary for relating SW vocabulary terms to their status.".freeze, - "dc11:issued": "2003-06-01".freeze, - "dc11:modified": "2011-12-12".freeze, - "dc11:title": "SemWeb Vocab Status ontology".freeze, + "http://purl.org/dc/elements/1.1/contributor": "Pierre-Yves Vandenbussche".freeze, + "http://purl.org/dc/elements/1.1/creator": ["Dan Brickley".freeze, "Leigh Dodds".freeze, "Libby Miller".freeze], + "http://purl.org/dc/elements/1.1/description": "An RDF vocabulary for relating SW vocabulary terms to their status.".freeze, + "http://purl.org/dc/elements/1.1/issued": "2003-06-01".freeze, + "http://purl.org/dc/elements/1.1/modified": "2011-12-12".freeze, + "http://purl.org/dc/elements/1.1/title": "SemWeb Vocab Status ontology".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "vs".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://www.w3.org/2003/06/sw-vocab-status/ns#".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Property definitions property :moreinfo, comment: "more information about the status etc of a term, typically human oriented".freeze, - isDefinedBy: "vs:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/2003/06/sw-vocab-status/ns#".freeze, label: "more info".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :term_status, comment: "the status of a vocabulary term, expressed as a short symbolic string; known values include 'unstable','testing', 'stable' and 'archaic'".freeze, - isDefinedBy: "vs:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/2003/06/sw-vocab-status/ns#".freeze, label: "term status".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :userdocs, comment: "human-oriented documentation, examples etc for use of this term".freeze, - isDefinedBy: "vs:".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://www.w3.org/2003/06/sw-vocab-status/ns#".freeze, label: "user docs".freeze, - type: "rdf:Property".freeze, - "vs:term_status": "unstable".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/rdf/vocab/wdrs.rb b/lib/rdf/vocab/wdrs.rb index 2720e3e..8e9ced4 100644 --- a/lib/rdf/vocab/wdrs.rb +++ b/lib/rdf/vocab/wdrs.rb @@ -3,237 +3,144 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/2007/05/powder-s# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # POWDER-S Vocabulary - # # - # # This file specifies the set of classes and properties used in the RDF/OWL version of POWDER documents. - # # @version 2 June 2017 - # class WDRS < RDF::StrictVocabulary - # # A POWDER document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Document - # - # # A software agent able to process POWDER documents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Processor - # - # # A pointer to a document that describes how Description Resources created by a FOAF Agent or a DC Terms Agent may be authenticated - # # @return [RDF::Vocabulary::Term] - # attr_reader :authenticate - # - # # A property that takes a Boolean value to declare whether the author of the data certifies the described resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :certified - # - # # A property that links a resource to a POWDER document that certifies it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :certifiedby - # - # # A property denoting a description of the specific error found in a given POWDER document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :data_error - # - # # An RDF property to exactly match the describedby relationship type introduced in http://www.w3.org/TR/powder-dr/#assoc-linking and formally defined in appendix D of the same document, i.e. the relationship A 'describedby' B asserts that resource B provides a description of resource A. There are no constraints on the format or representation of either A or B, neither are there any further constraints on either resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :describedby - # - # # A property denoting the code of any error encountered by the POWDER processor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :error_code - # - # # This property is meant to be used in OWL2 instead of wdrs:matchesregex. It denotes the string data range corresponding to a set of IRIs. - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasIRI - # - # # This property denotes the author of a POWDER document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :issuedby - # - # # Points to a graphic summary for the resources in a given class. Typically, it is a logo denoting conformance of a given (set of) resource(s) to a given set of criteria. - # # @return [RDF::Vocabulary::Term] - # attr_reader :logo - # - # # This is the key 'include' property for IRI set definitions in POWDER-S. It is necessary to take account of the POWDER Semantic Extension to process this fully. The value is a regular expression that is matched against an IRI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :matchesregex - # - # # Property used in results returned from a POWDER Processor that has no data about the candidate resource. The value is the IRI of the processor. - # # @return [RDF::Vocabulary::Term] - # attr_reader :notknownto - # - # # This is the key 'exclude' property for IRI set definitions in POWDER-S. It is necessary to take account of the POWDER Semantic Extension to process this fully. The value is a regular expression that is matched against an IRI. - # # @return [RDF::Vocabulary::Term] - # attr_reader :notmatchesregex - # - # # A property denoting a description of the specific software error. - # # @return [RDF::Vocabulary::Term] - # attr_reader :proc_error - # - # # Links to a Base64-encoded binary SHA-1 hash of the described resource. May be used by POWDER Processors when assessing trustworthiness of a DR. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sha1sum - # - # # A property that links a POWDER document to some other data source that supports the descriptions provided. - # # @return [RDF::Vocabulary::Term] - # attr_reader :supportedby - # - # # Property linking to a free-text tag which may include spaces. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tag - # - # # This property provides a summary of the descriptorset that it annotates, suitable for display to end users. - # # @return [RDF::Vocabulary::Term] - # attr_reader :text - # - # # Provides a timestamp that a POWDER Processor may use when assessing trustworthiness of a POWDER document. Informally, a POWDER Processor should normally ignore data in the document before the given date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validfrom - # - # # Provides a timestamp that a POWDER Processor may use when assessing trustworthiness of a POWDER document. Informally, a POWDER Processor should normally ignore data in the document after the given date. - # # @return [RDF::Vocabulary::Term] - # attr_reader :validuntil - # - # end WDRS = Class.new(RDF::StrictVocabulary("http://www.w3.org/2007/05/powder-s#")) do # Ontology definition ontology :"http://www.w3.org/2007/05/powder-s#", comment: "This file specifies the set of classes and properties used in the RDF/OWL version of POWDER documents.".freeze, - "dc:issued": "2009-09-01".freeze, - "dc:modified": ["2010-11-08".freeze, "2017-06-02".freeze], + "http://purl.org/dc/terms/issued": "2009-09-01".freeze, + "http://purl.org/dc/terms/modified": ["2010-11-08".freeze, "2017-06-02".freeze], "http://purl.org/vocab/vann/preferredNamespacePrefix": "wdrs".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://www.w3.org/2007/05/powder-s#".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://www.w3.org/2007/05/powder-s".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "2 June 2017".freeze, label: "POWDER-S Vocabulary".freeze, - "owl:priorVersion": "http://www.w3.org/2007/05/powder-s".freeze, - "owl:versionInfo": "2 June 2017".freeze, - type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze] + type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze] # Class definitions term :Document, comment: "A POWDER document.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#structure".freeze, label: "POWDER document".freeze, - subClassOf: "owl:Ontology".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2002/07/owl#Ontology".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Processor, comment: "A software agent able to process POWDER documents.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#powderprocessor".freeze, label: "POWDER processor".freeze, - subClassOf: "dc:Agent".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://purl.org/dc/terms/Agent".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :authenticate, comment: "A pointer to a document that describes how Description Resources created by a FOAF Agent or a DC Terms Agent may be authenticated".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#discover".freeze, label: "authenticate".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :certified, comment: "A property that takes a Boolean value to declare whether the author of the data certifies the described resource.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#certification".freeze, label: "certified".freeze, - range: "xsd:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :certifiedby, comment: "A property that links a resource to a POWDER document that certifies it.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#certification".freeze, label: "certified by".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :data_error, comment: "A property denoting a description of the specific error found in a given POWDER document.".freeze, - domain: "wdrs:Document".freeze, + domain: "http://www.w3.org/2007/05/powder-s#Document".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#ppErrorhandling".freeze, label: "data error".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :describedby, comment: "An RDF property to exactly match the describedby relationship type introduced in http://www.w3.org/TR/powder-dr/#assoc-linking and formally defined in appendix D of the same document, i.e. the relationship A 'describedby' B asserts that resource B provides a description of resource A. There are no constraints on the format or representation of either A or B, neither are there any further constraints on either resource.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#semlink".freeze, label: "described by".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :error_code, comment: "A property denoting the code of any error encountered by the POWDER processor.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#ppErrorhandling".freeze, label: "error code".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasIRI, comment: "This property is meant to be used in OWL2 instead of wdrs:matchesregex. It denotes the string data range corresponding to a set of IRIs.".freeze, - domain: "rdfs:Resource".freeze, + domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, isDefinedBy: "http://www.w3.org/TR/powder-formal/#oxRegexSemantics".freeze, label: "has IRI".freeze, - range: "xsd:anyURI".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :issuedby, comment: "This property denotes the author of a POWDER document.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#line3".freeze, label: "issued by".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :logo, comment: "Points to a graphic summary for the resources in a given class. Typically, it is a logo denoting conformance of a given (set of) resource(s) to a given set of criteria.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#line13".freeze, label: "logo".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :matchesregex, comment: "This is the key 'include' property for IRI set definitions in POWDER-S. It is necessary to take account of the POWDER Semantic Extension to process this fully. The value is a regular expression that is matched against an IRI.".freeze, - domain: "rdfs:Resource".freeze, + domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/TR/xpath-functions/#regex-syntax".freeze, isDefinedBy: "http://www.w3.org/TR/powder-formal/#regexSemantics".freeze, label: "matches regular expression".freeze, - range: "xsd:string".freeze, - "rdfs:seeAlso": "http://www.w3.org/TR/xpath-functions/#regex-syntax".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :notknownto, comment: "Property used in results returned from a POWDER Processor that has no data about the candidate resource. The value is the IRI of the processor.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#powderprocessor".freeze, label: "not known to".freeze, - range: "wdrs:Processor".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2007/05/powder-s#Processor".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :notmatchesregex, comment: "This is the key 'exclude' property for IRI set definitions in POWDER-S. It is necessary to take account of the POWDER Semantic Extension to process this fully. The value is a regular expression that is matched against an IRI.".freeze, - domain: "rdfs:Resource".freeze, + domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.w3.org/TR/xpath-functions/#regex-syntax".freeze, isDefinedBy: "http://www.w3.org/TR/powder-formal/#regexSemantics".freeze, label: "matches regular expression".freeze, - range: "xsd:string".freeze, - "rdfs:seeAlso": "http://www.w3.org/TR/xpath-functions/#regex-syntax".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :proc_error, comment: "A property denoting a description of the specific software error.".freeze, - domain: "wdrs:Processor".freeze, + domain: "http://www.w3.org/2007/05/powder-s#Processor".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#ppErrorhandling".freeze, label: "processing error".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :sha1sum, comment: "Links to a Base64-encoded binary SHA-1 hash of the described resource. May be used by POWDER Processors when assessing trustworthiness of a DR.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#certification".freeze, label: "SHA-1 sum".freeze, - range: "xsd:base64Binary".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2001/XMLSchema#base64Binary".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :supportedby, comment: "A property that links a POWDER document to some other data source that supports the descriptions provided.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#supportedBy".freeze, label: "supported by".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :tag, comment: "Property linking to a free-text tag which may include spaces.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#tags".freeze, label: "tag".freeze, - range: "xsd:token".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#token".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :text, comment: "This property provides a summary of the descriptorset that it annotates, suitable for display to end users.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#line13".freeze, label: "text that may be displayed".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :validfrom, comment: "Provides a timestamp that a POWDER Processor may use when assessing trustworthiness of a POWDER document. Informally, a POWDER Processor should normally ignore data in the document before the given date.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#certification".freeze, label: "valid from".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :validuntil, comment: "Provides a timestamp that a POWDER Processor may use when assessing trustworthiness of a POWDER document. Informally, a POWDER Processor should normally ignore data in the document after the given date.".freeze, isDefinedBy: "http://www.w3.org/TR/powder-dr/#certification".freeze, label: "valid until".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] end end diff --git a/lib/rdf/vocab/wot.rb b/lib/rdf/vocab/wot.rb index a83c937..3fb637f 100644 --- a/lib/rdf/vocab/wot.rb +++ b/lib/rdf/vocab/wot.rb @@ -3,245 +3,164 @@ # This file generated automatically using rdf vocabulary format from http://xmlns.com/wot/0.1/ require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # Web Of Trust vocabulary - # # - # # Web Of Trust (wot) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language. - # # @see http://xmlns.com/foaf/0.1/ - # class WOT < RDF::StrictVocabulary - # # An encrypted document intended for a set of recipients. - # # @return [RDF::Vocabulary::Term] - # attr_reader :EncryptedDocument - # - # # An endorsement resource containing a detached ascii signature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :Endorsement - # - # # A class used to represent a PGP/GPG public key for a user (an agent, person, group or organization). - # # @return [RDF::Vocabulary::Term] - # attr_reader :PubKey - # - # # An event describing the action of a public key being signed by some other public key. - # # @return [RDF::Vocabulary::Term] - # attr_reader :SigEvent - # - # # A user (agent, person, group or organization) of a PGP/GPG public key. - # # @return [RDF::Vocabulary::Term] - # attr_reader :User - # - # # A property linking a document to an endorsement resource containing a detached ascii signature. - # # @return [RDF::Vocabulary::Term] - # attr_reader :assurance - # - # # A property linking an encrypted document to a recipient. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encryptedTo - # - # # A property linking an encrypted document to the public key that was used to encrypt it. - # # @return [RDF::Vocabulary::Term] - # attr_reader :encrypter - # - # # A public key hex fingerprint string (40 digits, white space insignificant). - # # @return [RDF::Vocabulary::Term] - # attr_reader :fingerprint - # - # # A property to link a PubKey from a User - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasKey - # - # # A public key hex identifier string (8 digits). - # # @return [RDF::Vocabulary::Term] - # attr_reader :hex_id - # - # # A property linking a public key to the user of the key. - # # @return [RDF::Vocabulary::Term] - # attr_reader :identity - # - # # A numeric string representing the length, in bytes, of a public key. - # # @return [RDF::Vocabulary::Term] - # attr_reader :length - # - # # The location of an ascii version of a public key. - # # @return [RDF::Vocabulary::Term] - # attr_reader :pubkeyAddress - # - # # The date of a public key signature event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sigdate - # - # # A property linking a public key to a public key signature event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :signed - # - # # A property linking a public key signature event to the public key that was used to sign. - # # @return [RDF::Vocabulary::Term] - # attr_reader :signer - # - # # The time (of day) of a public key signature event. - # # @return [RDF::Vocabulary::Term] - # attr_reader :sigtime - # - # end WOT = Class.new(RDF::StrictVocabulary("http://xmlns.com/wot/0.1/")) do # Ontology definition ontology :"http://xmlns.com/wot/0.1/", - "dc11:date": "2004-02-23".freeze, - "dc11:description": "Web Of Trust (wot) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.".freeze, - "dc11:title": "Web Of Trust vocabulary".freeze, - "owl:imports": ["http://www.w3.org/2000/01/rdf-schema".freeze, "http://www.w3.org/2002/07/owl".freeze], - "rdfs:seeAlso": "foaf:".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/elements/1.1/date": "2004-02-23".freeze, + "http://purl.org/dc/elements/1.1/description": "Web Of Trust (wot) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.".freeze, + "http://purl.org/dc/elements/1.1/title": "Web Of Trust vocabulary".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://xmlns.com/foaf/0.1/".freeze, + "http://www.w3.org/2002/07/owl#imports": ["http://www.w3.org/2000/01/rdf-schema".freeze, "http://www.w3.org/2002/07/owl".freeze], + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :EncryptedDocument, comment: "An encrypted document intended for a set of recipients.".freeze, - isDefinedBy: "wot:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://xmlns.com/wot/0.1/Endorsement".freeze, "http://xmlns.com/wot/0.1/PubKey".freeze, "http://xmlns.com/wot/0.1/SigEvent".freeze, "http://xmlns.com/wot/0.1/User".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Encrypted Document".freeze, - "owl:disjointWith": ["wot:Endorsement".freeze, "wot:PubKey".freeze, "wot:SigEvent".freeze, "wot:User".freeze], - subClassOf: ["foaf:Document".freeze, "http://xmlns.com/wordnet/1.6/Endorsement-4".freeze], - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: ["http://xmlns.com/foaf/0.1/Document".freeze, "http://xmlns.com/wordnet/1.6/Endorsement-4".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Endorsement, comment: "An endorsement resource containing a detached ascii signature.".freeze, - isDefinedBy: "wot:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://xmlns.com/wot/0.1/EncryptedDocument".freeze, "http://xmlns.com/wot/0.1/PubKey".freeze, "http://xmlns.com/wot/0.1/SigEvent".freeze, "http://xmlns.com/wot/0.1/User".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Endorsement".freeze, - "owl:disjointWith": ["wot:EncryptedDocument".freeze, "wot:PubKey".freeze, "wot:SigEvent".freeze, "wot:User".freeze], - subClassOf: ["foaf:Document".freeze, "http://xmlns.com/wordnet/1.6/Endorsement-4".freeze], - type: "owl:Class".freeze, - "vs:term_status": "unstable".freeze + subClassOf: ["http://xmlns.com/foaf/0.1/Document".freeze, "http://xmlns.com/wordnet/1.6/Endorsement-4".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PubKey, comment: "A class used to represent a PGP/GPG public key for a user (an agent, person, group or organization).".freeze, - isDefinedBy: "wot:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://xmlns.com/wot/0.1/EncryptedDocument".freeze, "http://xmlns.com/wot/0.1/Endorsement".freeze, "http://xmlns.com/wot/0.1/SigEvent".freeze, "http://xmlns.com/wot/0.1/User".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Public Key".freeze, - "owl:disjointWith": ["wot:EncryptedDocument".freeze, "wot:Endorsement".freeze, "wot:SigEvent".freeze, "wot:User".freeze], subClassOf: "http://xmlns.com/wordnet/1.6/Credential".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SigEvent, comment: "An event describing the action of a public key being signed by some other public key.".freeze, - isDefinedBy: "wot:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://xmlns.com/wot/0.1/EncryptedDocument".freeze, "http://xmlns.com/wot/0.1/Endorsement".freeze, "http://xmlns.com/wot/0.1/PubKey".freeze, "http://xmlns.com/wot/0.1/User".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Key Signing Event".freeze, - "owl:disjointWith": ["wot:EncryptedDocument".freeze, "wot:Endorsement".freeze, "wot:PubKey".freeze, "wot:User".freeze], subClassOf: ["http://www.w3.org/2002/12/cal/ical#Vevent".freeze, "http://xmlns.com/wordnet/1.6/Event".freeze], - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :User, comment: "A user (agent, person, group or organization) of a PGP/GPG public key.".freeze, - isDefinedBy: "wot:".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://xmlns.com/wot/0.1/EncryptedDocument".freeze, "http://xmlns.com/wot/0.1/Endorsement".freeze, "http://xmlns.com/wot/0.1/PubKey".freeze, "http://xmlns.com/wot/0.1/SigEvent".freeze], + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Key User".freeze, - "owl:disjointWith": ["wot:EncryptedDocument".freeze, "wot:Endorsement".freeze, "wot:PubKey".freeze, "wot:SigEvent".freeze], - subClassOf: "foaf:Agent".freeze, - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :assurance, comment: "A property linking a document to an endorsement resource containing a detached ascii signature.".freeze, - domain: "foaf:Document".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/foaf/0.1/Document".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Assurance".freeze, - range: "wot:Endorsement".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://xmlns.com/wot/0.1/Endorsement".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :encryptedTo, comment: "A property linking an encrypted document to a recipient.".freeze, - domain: "wot:EncryptedDocument".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/EncryptedDocument".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Encrypted to".freeze, - range: "wot:PubKey".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/wot/0.1/PubKey".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :encrypter, comment: "A property linking an encrypted document to the public key that was used to encrypt it.".freeze, - domain: "wot:EncryptedDocument".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/EncryptedDocument".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Encrypted by".freeze, - range: "wot:PubKey".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/wot/0.1/PubKey".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :fingerprint, comment: "A public key hex fingerprint string (40 digits, white space insignificant).".freeze, - domain: "wot:PubKey".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/PubKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Fingerprint".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze], - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :hasKey, comment: "A property to link a PubKey from a User".freeze, - domain: "wot:User".freeze, - inverseOf: "wot:identity".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/User".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + inverseOf: "http://xmlns.com/wot/0.1/identity".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "has Key".freeze, - range: "wot:PubKey".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://xmlns.com/wot/0.1/PubKey".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hex_id, comment: "A public key hex identifier string (8 digits).".freeze, - domain: "wot:PubKey".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/PubKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Hex identifier".freeze, - range: "xsd:string".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identity, comment: "A property linking a public key to the user of the key.".freeze, - domain: "wot:PubKey".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/PubKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Identity".freeze, - range: "wot:User".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "testing".freeze + range: "http://xmlns.com/wot/0.1/User".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :length, comment: "A numeric string representing the length, in bytes, of a public key.".freeze, - domain: "wot:PubKey".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/PubKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Length".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :pubkeyAddress, comment: "The location of an ascii version of a public key.".freeze, - domain: "wot:PubKey".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/PubKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Address".freeze, - range: "foaf:Document".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://xmlns.com/foaf/0.1/Document".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sigdate, comment: "The date of a public key signature event.".freeze, - domain: "wot:SigEvent".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/SigEvent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Signature date".freeze, - range: "xsd:date".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :signed, comment: "A property linking a public key to a public key signature event.".freeze, - domain: "wot:PubKey".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/PubKey".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Signed".freeze, - range: "wot:SigEvent".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://xmlns.com/wot/0.1/SigEvent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :signer, comment: "A property linking a public key signature event to the public key that was used to sign.".freeze, - domain: "wot:SigEvent".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/SigEvent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Signer".freeze, - range: "wot:PubKey".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze], - "vs:term_status": "unstable".freeze + range: "http://xmlns.com/wot/0.1/PubKey".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sigtime, comment: "The time (of day) of a public key signature event.".freeze, - domain: "wot:SigEvent".freeze, - isDefinedBy: "wot:".freeze, + domain: "http://xmlns.com/wot/0.1/SigEvent".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze, + isDefinedBy: "http://xmlns.com/wot/0.1/".freeze, label: "Signature time".freeze, - range: "xsd:time".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "unstable".freeze + range: "http://www.w3.org/2001/XMLSchema#time".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze end end diff --git a/lib/rdf/vocab/xhtml.rb b/lib/rdf/vocab/xhtml.rb index e83c35b..95cab1e 100644 --- a/lib/rdf/vocab/xhtml.rb +++ b/lib/rdf/vocab/xhtml.rb @@ -3,16 +3,11 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/1999/xhtml# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class XHTML < RDF::Vocabulary - # end XHTML = Class.new(RDF::Vocabulary("http://www.w3.org/1999/xhtml#")) do # Ontology definition ontology :"http://www.w3.org/1999/xhtml#", - "http://www.w3.org/2003/g/data-view#namespaceTransformation": "http://www.w3.org/2008/07/rdfa-xslt".freeze, - "xhv:stylesheet": "http://www.w3.org/StyleSheets/TR/base".freeze + "http://www.w3.org/1999/xhtml/vocab#stylesheet": "http://www.w3.org/StyleSheets/TR/base".freeze, + "http://www.w3.org/2003/g/data-view#namespaceTransformation": "http://www.w3.org/2008/07/rdfa-xslt".freeze end end diff --git a/lib/rdf/vocab/xhv.rb b/lib/rdf/vocab/xhv.rb index 97499bd..804a48b 100644 --- a/lib/rdf/vocab/xhv.rb +++ b/lib/rdf/vocab/xhv.rb @@ -3,646 +3,305 @@ # This file generated automatically using rdf vocabulary format from http://www.w3.org/1999/xhtml/vocab# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # class XHV < RDF::Vocabulary - # # A message with important, and usually time-sensitive, information. Also see alertdialog and status. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alert - # - # # A type of dialog that contains an alert message, where initial focus goes to the dialog or an element within it. Also see alert and dialog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alertdialog - # - # # alternate designates alternate versions for a resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :alternate - # - # # appendix refers to a resource serving as an appendix in a collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :appendix - # - # # A region declared as a web application, as opposed to a web document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :application - # - # # A section of a page consisting of an independent part of a document, page, or site. - # # @return [RDF::Vocabulary::Term] - # attr_reader :article - # - # # banner contains the prime heading or internal title of a page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :banner - # - # # bookmark refers to a bookmark - a link to a key entry point within an extended document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :bookmark - # - # # An input that allows for user-triggered actions when clicked or pressed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :button - # - # # chapter refers to a resource serving as a chapter in a collction. - # # @return [RDF::Vocabulary::Term] - # attr_reader :chapter - # - # # An checkable input that has three possible values: true, false, or mixed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :checkbox - # - # # cite refers to a resource that defines a citation. - # # @return [RDF::Vocabulary::Term] - # attr_reader :cite - # - # # A cell containing header information for a column. - # # @return [RDF::Vocabulary::Term] - # attr_reader :columnheader - # - # # A presentation of a select; usually similar to a textbox where users can type ahead to select an option, or type to enter arbitrary text as a new item in the list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :combobox - # - # # secondary indicates that the section supports but is separable from the main content of resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :complementary - # - # # contentinfo has meta information about the content on the page or the page as a whole. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contentinfo - # - # # contents refers to a resource serving as a table of contents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :contents - # - # # copyright refers to a copyright statement for the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :copyright - # - # # definition indicates the definition of a term or concept. - # # @return [RDF::Vocabulary::Term] - # attr_reader :definition - # - # # A dialog is an application window that is designed to interrupt the current processing of an application in order to prompt the user to enter information or require a response. Also see alertdialog. - # # @return [RDF::Vocabulary::Term] - # attr_reader :dialog - # - # # A list of references to members of a group, such as a static table of contents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :directory - # - # # A region containing related information that is declared as document content, as opposed to a web application. - # # @return [RDF::Vocabulary::Term] - # attr_reader :document - # - # # first refers the first item in a collection (see also start and top). - # # @return [RDF::Vocabulary::Term] - # attr_reader :first - # - # # glossary refers to a resource providing a glossary of terms. - # # @return [RDF::Vocabulary::Term] - # attr_reader :glossary - # - # # A grid contains cells of tabular data arranged in rows and columns, like a table. - # # @return [RDF::Vocabulary::Term] - # attr_reader :grid - # - # # A cell in a grid or treegrid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :gridcell - # - # # A set of user interface objects which would not be included in a page summary or table of contents by an assistive technology. - # # @return [RDF::Vocabulary::Term] - # attr_reader :group - # - # # A heading for a section of the page. - # # @return [RDF::Vocabulary::Term] - # attr_reader :heading - # - # # help refers to a resource offering help. - # # @return [RDF::Vocabulary::Term] - # attr_reader :help - # - # # icon refers to a resource that represents an icon. - # # @return [RDF::Vocabulary::Term] - # attr_reader :icon - # - # # A container for a collection of elements that form an image. - # # @return [RDF::Vocabulary::Term] - # attr_reader :img - # - # # index refers to a resource providing an index. - # # @return [RDF::Vocabulary::Term] - # attr_reader :index - # - # # itsRules indicates that the designated resource is an [ITS] rule set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :itsRules - # - # # last refers to the last resource in a collection of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :last - # - # # license refers to a resource that defines the associated license. - # # @return [RDF::Vocabulary::Term] - # attr_reader :license - # - # # An interactive reference to an internal or external resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :link - # - # # A group of non-interactive list items. - # # @return [RDF::Vocabulary::Term] - # attr_reader :list - # - # # A widget that allows the user to select one or more items from a list of choices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :listbox - # - # # A single item in a list, listbox, or directory. - # # @return [RDF::Vocabulary::Term] - # attr_reader :listitem - # - # # A type of live region where new information is added in meaningful order and old information may disappear. Also see marquee. - # # @return [RDF::Vocabulary::Term] - # attr_reader :log - # - # # main acts as the main content of the document. - # # @return [RDF::Vocabulary::Term] - # attr_reader :main - # - # # A type of live region where non-essential information changes frequently. Also see log. - # # @return [RDF::Vocabulary::Term] - # attr_reader :marquee - # - # # An element that represents a mathematical expression. - # # @return [RDF::Vocabulary::Term] - # attr_reader :math - # - # # A type of widget that offers a list of choices to the user. - # # @return [RDF::Vocabulary::Term] - # attr_reader :menu - # - # # A presentation of menu that usually remains visible and is usually presented horizontally. - # # @return [RDF::Vocabulary::Term] - # attr_reader :menubar - # - # # An option in a group of choices contained by a menu or menubar. - # # @return [RDF::Vocabulary::Term] - # attr_reader :menuitem - # - # # A checkable menuitem that has three possible values: true, false, or mixed. - # # @return [RDF::Vocabulary::Term] - # attr_reader :menuitemcheckbox - # - # # A checkable menuitem in a group of menuitemradio roles, only one of which can be checked at a time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :menuitemradio - # - # # meta refers to a resource that provides metadata. - # # @return [RDF::Vocabulary::Term] - # attr_reader :meta - # - # # navigation indicates a collection of items suitable for navigating the document or related documents. - # # @return [RDF::Vocabulary::Term] - # attr_reader :navigation - # - # # next refers to the next resource (after the current one) in an ordered collection of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :next - # - # # note indicates the content is parenthetic or ancillary to the main content of the resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :note - # - # # A selectable item in a select list. - # # @return [RDF::Vocabulary::Term] - # attr_reader :option - # - # # p3pv1 refers to a P3P Policy Reference File [P3P]. - # # @return [RDF::Vocabulary::Term] - # attr_reader :p3pv1 - # - # # An element whose role is presentational and does not need to be mapped to the accessibility API. - # # @return [RDF::Vocabulary::Term] - # attr_reader :presentation - # - # # prev refers to a previous resource (before the current one) in an ordered collection of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :prev - # - # # An element that displays the progress status for tasks that take a long time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :progressbar - # - # # A checkable input in a group of radio roles, only one of which can be checked at a time. - # # @return [RDF::Vocabulary::Term] - # attr_reader :radio - # - # # A group of radio buttons. - # # @return [RDF::Vocabulary::Term] - # attr_reader :radiogroup - # - # # A large perceivable section of a web page or document, that the author feels should be included in a summary of page features. - # # @return [RDF::Vocabulary::Term] - # attr_reader :region - # - # # role indicates the purpose of the resource. See the XHTML Role Vocabulary for roles in this vocabulary space, and XHTMLROLE for information on extending the collection of roles. - # # @return [RDF::Vocabulary::Term] - # attr_reader :role - # - # # A row of cells in a grid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :row - # - # # A cell containing header information for a row in a grid. - # # @return [RDF::Vocabulary::Term] - # attr_reader :rowheader - # - # # search indicates that the section provides a search facility. - # # @return [RDF::Vocabulary::Term] - # attr_reader :search - # - # # section refers to a resource serving as a section in a collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :section - # - # # A divider that separates and distinguishes sections of content or groups of menuitems. - # # @return [RDF::Vocabulary::Term] - # attr_reader :separator - # - # # A user input where the user selects a value from within a given range. - # # @return [RDF::Vocabulary::Term] - # attr_reader :slider - # - # # A form of range that expects a user to select from amongst discrete choices. - # # @return [RDF::Vocabulary::Term] - # attr_reader :spinbutton - # - # # start refers to the first resource in a collection of resources. - # # @return [RDF::Vocabulary::Term] - # attr_reader :start - # - # # A container whose content is advisory information for the user but is not important enough to justify an alert. Also see alert. - # # @return [RDF::Vocabulary::Term] - # attr_reader :status - # - # # stylesheet refers to a resource serving as a stylesheet for a resource. - # # @return [RDF::Vocabulary::Term] - # attr_reader :stylesheet - # - # # subsection refers to a resource serving as a subsection in a collection. - # # @return [RDF::Vocabulary::Term] - # attr_reader :subsection - # - # # A header for a tabpanel. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tab - # - # # A list of tab elements, which are references to tabpanel elements. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tablist - # - # # A container for the resources associated with a tab. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tabpanel - # - # # Input that allows free-form text as their value. - # # @return [RDF::Vocabulary::Term] - # attr_reader :textbox - # - # # A numerical counter which indicates an amount of elapsed time from a start point, or the time remaining until an end point. - # # @return [RDF::Vocabulary::Term] - # attr_reader :timer - # - # # A collection of commonly used function buttons represented in compact visual form. - # # @return [RDF::Vocabulary::Term] - # attr_reader :toolbar - # - # # A contextual popup that displays a description for an element in a mouse hover or keyboard focused state. Supplement to the normal tooltip processing of the user agent. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tooltip - # - # # top is a synonym for start. - # # @return [RDF::Vocabulary::Term] - # attr_reader :top - # - # # A type of list that may contain sub-level nested groups that can be collapsed and expanded. - # # @return [RDF::Vocabulary::Term] - # attr_reader :tree - # - # # A grid whose rows can be expanded and collapsed in the same manner as for a tree. - # # @return [RDF::Vocabulary::Term] - # attr_reader :treegrid - # - # # An option item of a tree. This is an element within a tree that may be expanded or collapsed if it contains a sub-level group of treeitems. - # # @return [RDF::Vocabulary::Term] - # attr_reader :treeitem - # - # # up refers to a resource "above" in a hierarchically structured set. - # # @return [RDF::Vocabulary::Term] - # attr_reader :up - # - # end XHV = Class.new(RDF::Vocabulary("http://www.w3.org/1999/xhtml/vocab#")) do # Ontology definition ontology :"http://www.w3.org/1999/xhtml/vocab#", - "xhv:stylesheet": "http://www.w3.org/StyleSheets/TR/base.css".freeze + "http://www.w3.org/1999/xhtml/vocab#stylesheet": "http://www.w3.org/StyleSheets/TR/base.css".freeze # Property definitions property :alert, comment: "A message\n with important, and usually time-sensitive, information. Also see\n alertdialog and status.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alertdialog, comment: "A\n type of dialog that contains an alert message, where initial focus goes\n to the dialog or an element within it. Also see alert and dialog.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :alternate, comment: "alternate designates alternate\n versions for a resource.".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :appendix, comment: "appendix refers to a resource serving\n as an appendix in a collection. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :application, comment: "A\n region declared as a web application, as opposed to a web document.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :article, comment: "A\n section of a page consisting of an independent part of a document, page,\n or site.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :banner, comment: "banner contains the prime heading or\n internal title of a page. ".freeze, - "rdfs:member": "xhv:role-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :bookmark, comment: "bookmark refers to a bookmark - a link\n to a key entry point within an extended document. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :button, comment: "An input\n that allows for user-triggered actions when clicked or pressed.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :chapter, comment: "chapter refers to a resource serving\n as a chapter in a collction. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :checkbox, comment: "An\n checkable input that has three possible values: true, false, or\n mixed.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :cite, comment: "cite refers to a resource that defines\n a citation. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :columnheader, comment: "A\n cell containing header information for a column.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :combobox, comment: "A\n presentation of a select; usually similar to a textbox where users can\n type ahead to select an option, or type to enter arbitrary text as a new\n item in the list.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :complementary, comment: "secondary indicates that the section\n supports but is separable from the main content of resource.".freeze, - "rdfs:member": "xhv:role-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contentinfo, comment: "contentinfo has meta information about\n the content on the page or the page as a whole.".freeze, - "rdfs:member": "xhv:role-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :contents, comment: "contents refers to a resource serving\n as a table of contents. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :copyright, comment: "copyright refers to a copyright\n statement for the resource. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :definition, comment: "definition indicates the definition of\n a term or concept.".freeze, - "rdfs:member": "xhv:role-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :dialog, comment: "A dialog\n is an application window that is designed to interrupt the current\n processing of an application in order to prompt the user to enter\n information or require a response. Also see alertdialog.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :directory, comment: "A list\n of references to members of a group, such as a static table of\n contents.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :document, comment: "A\n region containing related information that is declared as document\n content, as opposed to a web application.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :first, comment: "first refers the first item in a\n collection (see also start and top).".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :glossary, comment: "glossary refers to a resource\n providing a glossary of terms. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :grid, comment: "A grid\n contains cells of tabular data arranged in rows and columns, like a\n table.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :gridcell, comment: "A cell\n in a grid or treegrid.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :group, comment: "A set of\n user interface objects which would not be included in a page summary or\n table of contents by an assistive technology.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :heading, comment: "A\n heading for a section of the page.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :help, comment: "help refers to a resource offering\n help. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :icon, comment: "icon refers to a resource that\n represents an icon. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :img, comment: "A container\n for a collection of elements that form an image.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :index, comment: "index refers to a resource providing\n an index. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :itsRules, comment: "itsRules indicates that the designated\n resource is an [ITS] rule set.".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :last, comment: "last refers to the last resource in a\n collection of resources. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :license, comment: "license refers to a resource that\n defines the associated license. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :link, comment: "An\n interactive reference to an internal or external resource.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :list, comment: "A group of\n non-interactive list items.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :listbox, comment: "A widget\n that allows the user to select one or more items from a list of\n choices.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :listitem, comment: "A\n single item in a list, listbox, or directory.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :log, comment: "A type of\n live region where new information is added in meaningful order and old\n information may disappear. Also see marquee.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :main, comment: "main acts as the main content of the\n document. ".freeze, - "rdfs:member": "xhv:role-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :marquee, comment: "A type\n of live region where non-essential information changes frequently. Also\n see log.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :math, comment: "An element\n that represents a mathematical expression.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :menu, comment: "A type of\n widget that offers a list of choices to the user.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :menubar, comment: "A\n presentation of menu that usually remains visible and is usually\n presented horizontally.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :menuitem, comment: "An\n option in a group of choices contained by a menu or menubar.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :menuitemcheckbox, comment: "A checkable menuitem that has three possible\n values: true, false, or mixed.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :menuitemradio, comment: "A\n checkable menuitem in a group of menuitemradio roles, only one of which\n can be checked at a time.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :meta, comment: "meta refers to a resource that\n provides metadata. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :navigation, comment: "navigation indicates a collection of\n items suitable for navigating the document or related documents.".freeze, - "rdfs:member": "xhv:role-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :next, comment: "next refers to the next resource\n (after the current one) in an ordered collection of resources. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :note, comment: "note indicates the content is\n parenthetic or ancillary to the main content of the resource. ".freeze, - "rdfs:member": "xhv:role-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :option, comment: "A\n selectable item in a select list.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :p3pv1, comment: "p3pv1 refers to a P3P Policy Reference\n File [P3P]. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :presentation, comment: "An\n element whose role is presentational and does not need to be mapped to\n the accessibility API.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :prev, comment: "prev refers to a previous resource\n (before the current one) in an ordered collection of resources. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :progressbar, comment: "An\n element that displays the progress status for tasks that take a long\n time.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :radio, comment: "A\n checkable input in a group of radio roles, only one of which can be\n checked at a time.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :radiogroup, comment: "A\n group of radio buttons.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :region, comment: "A large\n perceivable section of a web page or document, that the author feels\n should be included in a summary of page features.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :role, comment: "role indicates the purpose of the\n resource. See the XHTML Role\n Vocabulary for roles in this vocabulary space, and XHTMLROLE for information on extending the\n collection of roles. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: ["rdf:Bag".freeze, "rdf:Property".freeze] + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze] property :row, comment: "A row of\n cells in a grid.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :rowheader, comment: "A cell\n containing header information for a row in a grid.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :search, comment: "search indicates that the section\n provides a search facility. ".freeze, - "rdfs:member": "xhv:role-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :section, comment: "section refers to a resource serving\n as a section in a collection. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :separator, comment: "A\n divider that separates and distinguishes sections of content or groups of\n menuitems.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :slider, comment: "A user\n input where the user selects a value from within a given range.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :spinbutton, comment: "A\n form of range that expects a user to select from amongst discrete\n choices.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :start, comment: "start refers to the first resource in\n a collection of resources. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :status, comment: "A\n container whose content is advisory information for the user but is not\n important enough to justify an alert. Also see alert.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :stylesheet, comment: "stylesheet refers to a resource\n serving as a stylesheet for a resource. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :subsection, comment: "subsection refers to a resource\n serving as a subsection in a collection. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tab, comment: "A header for\n a tabpanel.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tablist, comment: "A list\n of tab elements, which are references to tabpanel elements.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tabpanel, comment: "A\n container for the resources associated with a tab.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :textbox, comment: "Input\n that allows free-form text as their value.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :timer, comment: "A\n numerical counter which indicates an amount of elapsed time from a start\n point, or the time remaining until an end point.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :toolbar, comment: "A\n collection of commonly used function buttons represented in compact\n visual form.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tooltip, comment: "A\n contextual popup that displays a description for an element in a mouse\n hover or keyboard focused state. Supplement to the normal tooltip\n processing of the user agent.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :top, comment: "top is a synonym for start. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tree, comment: "A type of\n list that may contain sub-level nested groups that can be collapsed and\n expanded.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :treegrid, comment: "A grid\n whose rows can be expanded and collapsed in the same manner as for a\n tree.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :treeitem, comment: "An\n option item of a tree. This is an element within a tree that may be\n expanded or collapsed if it contains a sub-level group of treeitems.".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :up, comment: "up refers to a resource \"above\" in a\n hierarchically structured set. ".freeze, - "rdfs:member": "xhv:relrev-properties".freeze, - type: "rdf:Property".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze # Extra definitions term :"relrev-properties", - "rdfs:member": "xhv:role-properties".freeze, - type: "rdf:Bag".freeze + "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag".freeze term :"role-properties", - type: ["rdf:Bag".freeze, "rdfs:member".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag".freeze, "http://www.w3.org/2000/01/rdf-schema#member".freeze] end end diff --git a/lib/rdf/vocab/xkos.rb b/lib/rdf/vocab/xkos.rb index ddfa33e..8314751 100644 --- a/lib/rdf/vocab/xkos.rb +++ b/lib/rdf/vocab/xkos.rb @@ -3,430 +3,277 @@ # This file generated automatically using rdf vocabulary format from http://rdf-vocabulary.ddialliance.org/xkos# require 'rdf' module RDF::Vocab - # @!parse - # # Vocabulary for - # # - # # 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.0.2 - 2016-03-15 - # # @version Version 1.0.1 - 2014-11-26 - # # @version Version 1.1 - 2016-03-20 - # class XKOS < RDF::StrictVocabulary - # # @return [RDF::Vocabulary::Term] - # attr_reader :ClassificationLevel - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ConceptAssociation - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :Correspondence - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :ExplanatoryNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :additionalContentNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :after - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :before - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :belongsTo - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :caseLaw - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :causal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :causedBy - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :causes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :classifiedUnder - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :compares - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coreContentNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :covers - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coversExhaustively - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :coversMutuallyExclusively - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :depth - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :disjoint - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :exclusionNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :follows - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :generalizes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :hasPart - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :inclusionNote - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :isPartOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :levels - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :madeOf - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :maxLength - # - # # successeur immédiat dans la séquence - # # - # # immediate successor in the sequence - # # @return [RDF::Vocabulary::Term] - # attr_reader :next - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :notationPattern - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :numberOfLevels - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :organizedBy - # - # # This property is expected to store plain text literals, without HTML or XML markup. - # # @return [RDF::Vocabulary::Term] - # attr_reader :plainText - # - # # predecessor in the sequence - # # @return [RDF::Vocabulary::Term] - # attr_reader :precedes - # - # # immediate predecessor in the sequence - # # @return [RDF::Vocabulary::Term] - # attr_reader :previous - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sequential - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :sourceConcept - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :specializes - # - # # successeur dans la séquence - # # - # # successor in the sequence - # # @return [RDF::Vocabulary::Term] - # attr_reader :succeeds - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :supersedes - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :targetConcept - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :temporal - # - # # @return [RDF::Vocabulary::Term] - # attr_reader :variant - # - # end XKOS = Class.new(RDF::StrictVocabulary("http://rdf-vocabulary.ddialliance.org/xkos#")) do # Ontology definition ontology :"http://rdf-vocabulary.ddialliance.org/xkos#", - "cc:license": "http://creativecommons.org/licenses/by/4.0/".freeze, comment: "This ontology is based on work initiated at Dagstuhl Schloss in September 2011".freeze, - "dc11:contributor": ["Daniel Gillman".freeze, "Jannik Jensen".freeze, "R.T.A.M. Grim".freeze, "Richard Cyganiak".freeze, "Thomas Bosch".freeze, "Wendy L. Thomas".freeze, "Yves Jaques".freeze], - "dc11:creator": "Franck Cotton".freeze, - "dc11:rights": "Copyright © 2016 The DDI Alliance".freeze, - "dc11:title": "XKOS: an SKOS extension for representing statistical classifications".freeze, + "http://creativecommons.org/ns#license": "http://creativecommons.org/licenses/by/4.0/".freeze, + "http://purl.org/dc/elements/1.1/contributor": ["Daniel Gillman".freeze, "Jannik Jensen".freeze, "R.T.A.M. Grim".freeze, "Richard Cyganiak".freeze, "Thomas Bosch".freeze, "Wendy L. Thomas".freeze, "Yves Jaques".freeze], + "http://purl.org/dc/elements/1.1/creator": "Franck Cotton".freeze, + "http://purl.org/dc/elements/1.1/rights": "Copyright © 2016 The DDI Alliance".freeze, + "http://purl.org/dc/elements/1.1/title": "XKOS: an SKOS extension for representing statistical classifications".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "xkos".freeze, - "http://purl.org/vocab/vann/preferredNamespaceUri": "xkos:".freeze, + "http://purl.org/vocab/vann/preferredNamespaceUri": "http://rdf-vocabulary.ddialliance.org/xkos#".freeze, "http://purl.org/vocommons/voaf#classNumber": "4".freeze, "http://purl.org/vocommons/voaf#extends": "http://www.w3.org/2004/02/skos/core".freeze, "http://purl.org/vocommons/voaf#propertyNumber": "40".freeze, - "owl:versionInfo": ["Version 1.0.1 - 2014-11-26".freeze, "Version 1.0.2 - 2016-03-15".freeze, "Version 1.0.3 - 2016-03-15".freeze, "Version 1.1 - 2016-03-20".freeze], - type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze] + "http://www.w3.org/2002/07/owl#versionInfo": ["Version 1.0.1 - 2014-11-26".freeze, "Version 1.0.2 - 2016-03-15".freeze, "Version 1.0.3 - 2016-03-15".freeze, "Version 1.1 - 2016-03-20".freeze], + type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze] # Class definitions term :ClassificationLevel, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "Classification level".freeze, - subClassOf: "skos:Collection".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/2004/02/skos/core#Collection".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ConceptAssociation, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "Concept association".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Correspondence, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "Correspondence".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ExplanatoryNote, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "Explanatory note".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :additionalContentNote, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "additional content".freeze, - subPropertyOf: "xkos:inclusionNote".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#inclusionNote".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :after, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "after".freeze, - subPropertyOf: "xkos:temporal".freeze, - type: ["owl:TransitiveProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#temporal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :before, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "before".freeze, - subPropertyOf: "xkos:temporal".freeze, - type: ["owl:TransitiveProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#temporal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :belongsTo, - domain: "skos:ConceptScheme".freeze, + domain: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "belongs to".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :caseLaw, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "case law".freeze, - subPropertyOf: "skos:note".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#note".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :causal, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "has causal".freeze, - subPropertyOf: "skos:related".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#related".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :causedBy, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "caused by".freeze, - subPropertyOf: "xkos:causal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#causal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :causes, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "causes".freeze, - subPropertyOf: "xkos:causal".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#causal".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :classifiedUnder, - domain: "rdfs:Resource".freeze, + domain: "http://www.w3.org/2000/01/rdf-schema#Resource".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "classified under".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :compares, - domain: "xkos:Correspondence".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/xkos#Correspondence".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "compares".freeze, - range: "skos:ConceptScheme".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :coreContentNote, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "core content".freeze, - subPropertyOf: "xkos:inclusionNote".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#inclusionNote".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :covers, domain: term( - type: "owl:Class".freeze, - unionOf: list("skos:ConceptScheme".freeze, "xkos:ClassificationLevel".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, "http://rdf-vocabulary.ddialliance.org/xkos#ClassificationLevel".freeze) ), isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "covers".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :coversExhaustively, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "covers exhaustively".freeze, - subPropertyOf: "xkos:covers".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#covers".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :coversMutuallyExclusively, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "covers mutually exclusively".freeze, - subPropertyOf: "xkos:covers".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#covers".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :depth, - domain: "xkos:ClassificationLevel".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/xkos#ClassificationLevel".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "depth".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :disjoint, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "disjoint from".freeze, - subPropertyOf: "skos:related".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#related".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :exclusionNote, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "exclusions".freeze, - subPropertyOf: "skos:scopeNote".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#scopeNote".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :follows, - domain: "skos:ConceptScheme".freeze, + domain: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "follows".freeze, - range: "skos:ConceptScheme".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :generalizes, equivalentProperty: "http://purl.org/iso25964/skos-thes#narrowerGeneric".freeze, - inverseOf: "xkos:specializes".freeze, + inverseOf: "http://rdf-vocabulary.ddialliance.org/xkos#specializes".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "generalizes".freeze, - subPropertyOf: "skos:narrower".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#narrower".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasPart, equivalentProperty: "http://purl.org/iso25964/skos-thes#narrowerPartitive".freeze, - exactMatch: "dc:hasPart".freeze, - inverseOf: "xkos:isPartOf".freeze, + exactMatch: "http://purl.org/dc/terms/hasPart".freeze, + inverseOf: "http://rdf-vocabulary.ddialliance.org/xkos#isPartOf".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "has part".freeze, - subPropertyOf: "skos:narrower".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#narrower".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :inclusionNote, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "inclusions".freeze, - subPropertyOf: "skos:scopeNote".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#scopeNote".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :isPartOf, equivalentProperty: "http://purl.org/iso25964/skos-thes#broaderPartitive".freeze, - exactMatch: "dc:isPartOf".freeze, - inverseOf: "xkos:hasPart".freeze, + exactMatch: "http://purl.org/dc/terms/isPartOf".freeze, + inverseOf: "http://rdf-vocabulary.ddialliance.org/xkos#hasPart".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "is a part of".freeze, - subPropertyOf: "skos:broader".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#broader".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :levels, - domain: "skos:ConceptScheme".freeze, + domain: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "level list".freeze, - range: "rdf:List".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#List".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :madeOf, - domain: "xkos:Correspondence".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/xkos#Correspondence".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "made of".freeze, - range: "xkos:ConceptAssociation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://rdf-vocabulary.ddialliance.org/xkos#ConceptAssociation".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :maxLength, - domain: "skosxl:Label".freeze, + domain: "http://www.w3.org/2008/05/skos-xl#Label".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "maximum length".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :next, comment: ["immediate successor in the sequence".freeze, "successeur immédiat dans la séquence".freeze], isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "next".freeze, - subPropertyOf: "xkos:succeeds".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#succeeds".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :notationPattern, - domain: "xkos:ClassificationLevel".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/xkos#ClassificationLevel".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "code pattern".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :numberOfLevels, - domain: "skos:ConceptScheme".freeze, + domain: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "number of levels".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :organizedBy, - domain: "xkos:ClassificationLevel".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/xkos#ClassificationLevel".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "organized by".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :plainText, comment: "This property is expected to store plain text literals, without HTML or XML markup.".freeze, - domain: "xkos:ExplanatoryNote".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/xkos#ExplanatoryNote".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "plain text".freeze, - range: "rdf:PlainLiteral".freeze, - type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze] property :precedes, comment: "predecessor in the sequence".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "precedes".freeze, - subPropertyOf: "xkos:sequential".freeze, - type: ["owl:TransitiveProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#sequential".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :previous, comment: "immediate predecessor in the sequence".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "previous".freeze, - subPropertyOf: "xkos:precedes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#precedes".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sequential, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "has sequential".freeze, - subPropertyOf: "skos:related".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#related".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :sourceConcept, - domain: "xkos:ConceptAssociation".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/xkos#ConceptAssociation".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "source concept".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :specializes, equivalentProperty: "http://purl.org/iso25964/skos-thes#broaderGeneric".freeze, - inverseOf: "xkos:generalizes".freeze, + inverseOf: "http://rdf-vocabulary.ddialliance.org/xkos#generalizes".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "specializes".freeze, - subPropertyOf: "skos:broader".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/2004/02/skos/core#broader".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :succeeds, comment: ["successeur dans la séquence".freeze, "successor in the sequence".freeze], isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "succeeds".freeze, - subPropertyOf: "xkos:sequential".freeze, - type: ["owl:TransitiveProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#sequential".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :supersedes, - exactMatch: "dc:replaces".freeze, + exactMatch: "http://purl.org/dc/terms/replaces".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "supersedes".freeze, - subPropertyOf: "xkos:follows".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#follows".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :targetConcept, - domain: "xkos:ConceptAssociation".freeze, + domain: "http://rdf-vocabulary.ddialliance.org/xkos#ConceptAssociation".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "target concept".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :temporal, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "has temporal".freeze, - subPropertyOf: "xkos:sequential".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://rdf-vocabulary.ddialliance.org/xkos#sequential".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :variant, - domain: "skos:ConceptScheme".freeze, + domain: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, isDefinedBy: "http://rdf-vocabulary.ddialliance.org/xkos".freeze, label: "variant".freeze, - range: "skos:ConceptScheme".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] end end diff --git a/rdf-vocab.gemspec b/rdf-vocab.gemspec index 68127a8..8997883 100755 --- a/rdf-vocab.gemspec +++ b/rdf-vocab.gemspec @@ -20,7 +20,7 @@ Gem::Specification.new do |spec| spec.required_ruby_version = '>= 2.4' - spec.add_runtime_dependency 'rdf', '~> 3.1', '>= 3.1.8' + spec.add_runtime_dependency 'rdf', '~> 3.1', '>= 3.1.12' # Either of these are required for HTML vocabulary generation spec.add_development_dependency 'haml', '~> 5.1' @@ -29,16 +29,17 @@ Gem::Specification.new do |spec| spec.add_development_dependency 'json-ld', '~> 3.1' spec.add_development_dependency 'json-schema', '~> 2.8' spec.add_development_dependency 'jsonpath', '~> 1.0' - spec.add_development_dependency 'ld-patch', '~> 3.1', '>= 3.1.2' + spec.add_development_dependency 'ld-patch', '~> 3.1', '>= 3.1.3' spec.add_development_dependency 'nokogiri', '~> 1.10' - spec.add_development_dependency 'nokogumbo', '~> 2.0' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rdf-ordered-repo', '~> 3.1', '>= 3.1.1' spec.add_development_dependency 'rdf-rdfa', '~> 3.1' - spec.add_development_dependency 'rdf-reasoner', '~> 0.6' + spec.add_development_dependency 'rdf-rdfxml', '~> 3.1', '>= 3.1.1' + spec.add_development_dependency 'rdf-reasoner', '~> 0.7' spec.add_development_dependency 'rdf-turtle', '~> 3.1' spec.add_development_dependency 'rspec', '~> 3.10' spec.add_development_dependency 'rspec-its', '~> 1.3' + spec.add_development_dependency 'uuidtools', '~> 2.2' # needed by json-schema spec.add_development_dependency 'yard', '~> 0.9' spec.extra_rdoc_files = %w(LICENSE README.md) diff --git a/spec/extensions_spec.rb b/spec/extensions_spec.rb index 0c8d852..60feeec 100644 --- a/spec/extensions_spec.rb +++ b/spec/extensions_spec.rb @@ -421,7 +421,7 @@ expect(graph).to be_valid end - it "generates HTML" do + it "generates HTML", if: (RUBY_PLATFORM != 'java') do stringio = StringIO.new RDF::CLI.exec(["gen-vocab"], base_uri: vocab.to_uri, output_format: :html, output: stringio) expect(stringio.string).not_to be_empty